blob: c7ae18f8db904b70be19c53ea01fce132df4a8a3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Sterbac1d7c512018-04-03 19:23:33 +02002
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/bitops.h>
4#include <linux/slab.h>
5#include <linux/bio.h>
6#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/pagemap.h>
8#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05009#include <linux/spinlock.h>
10#include <linux/blkdev.h>
11#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050012#include <linux/writeback.h>
13#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070014#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060015#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050016#include "extent_io.h"
17#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040018#include "ctree.h"
19#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020020#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010021#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040022#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040023#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080024#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020025#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050026
Chris Masond1310b22008-01-24 16:13:08 -050027static struct kmem_cache *extent_state_cache;
28static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040029static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050030
Filipe Manana27a35072014-07-06 20:09:59 +010031static inline bool extent_state_in_tree(const struct extent_state *state)
32{
33 return !RB_EMPTY_NODE(&state->rb_node);
34}
35
Eric Sandeen6d49ba12013-04-22 16:12:31 +000036#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050037static LIST_HEAD(buffers);
38static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040039
Chris Masond3977122009-01-05 21:25:51 -050040static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000041
42static inline
43void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
44{
45 unsigned long flags;
46
47 spin_lock_irqsave(&leak_lock, flags);
48 list_add(new, head);
49 spin_unlock_irqrestore(&leak_lock, flags);
50}
51
52static inline
53void btrfs_leak_debug_del(struct list_head *entry)
54{
55 unsigned long flags;
56
57 spin_lock_irqsave(&leak_lock, flags);
58 list_del(entry);
59 spin_unlock_irqrestore(&leak_lock, flags);
60}
61
62static inline
63void btrfs_leak_debug_check(void)
64{
65 struct extent_state *state;
66 struct extent_buffer *eb;
67
68 while (!list_empty(&states)) {
69 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010070 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010071 state->start, state->end, state->state,
72 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020073 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000074 list_del(&state->leak_list);
75 kmem_cache_free(extent_state_cache, state);
76 }
77
78 while (!list_empty(&buffers)) {
79 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Liu Boaf2679e2018-01-25 11:02:48 -070080 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
81 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000082 list_del(&eb->leak_list);
83 kmem_cache_free(extent_buffer_cache, eb);
84 }
85}
David Sterba8d599ae2013-04-30 15:22:23 +000086
Josef Bacika5dee372013-12-13 10:02:44 -050087#define btrfs_debug_check_extent_io_range(tree, start, end) \
88 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000089static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000091{
Josef Bacikc6100a42017-05-05 11:57:13 -040092 if (tree->ops && tree->ops->check_extent_io_range)
93 tree->ops->check_extent_io_range(tree->private_data, caller,
94 start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000095}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000096#else
97#define btrfs_leak_debug_add(new, head) do {} while (0)
98#define btrfs_leak_debug_del(entry) do {} while (0)
99#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000100#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400101#endif
Chris Masond1310b22008-01-24 16:13:08 -0500102
Chris Masond1310b22008-01-24 16:13:08 -0500103#define BUFFER_LRU_MAX 64
104
105struct tree_entry {
106 u64 start;
107 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500108 struct rb_node rb_node;
109};
110
111struct extent_page_data {
112 struct bio *bio;
113 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500114 /* tells writepage not to lock the state bits for this range
115 * it still does the unlocking
116 */
Chris Masonffbd5172009-04-20 15:50:09 -0400117 unsigned int extent_locked:1;
118
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600119 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400120 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500121};
122
David Sterba57599c72018-03-01 17:56:34 +0100123static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800124 struct extent_changeset *changeset,
125 int set)
126{
127 int ret;
128
129 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100130 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800131 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100132 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800133 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100134 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800135 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100136 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800137 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100138 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800139}
140
David Sterbaaab6e9e2017-11-30 18:00:02 +0100141static void flush_write_bio(struct extent_page_data *epd);
David Sterbae2932ee2017-06-23 04:16:17 +0200142
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400143static inline struct btrfs_fs_info *
144tree_fs_info(struct extent_io_tree *tree)
145{
Josef Bacikc6100a42017-05-05 11:57:13 -0400146 if (tree->ops)
147 return tree->ops->tree_fs_info(tree->private_data);
148 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400149}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400150
Chris Masond1310b22008-01-24 16:13:08 -0500151int __init extent_io_init(void)
152{
David Sterba837e1972012-09-07 03:00:48 -0600153 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200154 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300155 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500156 if (!extent_state_cache)
157 return -ENOMEM;
158
David Sterba837e1972012-09-07 03:00:48 -0600159 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200160 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300161 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500162 if (!extent_buffer_cache)
163 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400164
165 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
NeilBrown011067b2017-06-18 14:38:57 +1000166 offsetof(struct btrfs_io_bio, bio),
167 BIOSET_NEED_BVECS);
Chris Mason9be33952013-05-17 18:30:14 -0400168 if (!btrfs_bioset)
169 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700170
171 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
172 goto free_bioset;
173
Chris Masond1310b22008-01-24 16:13:08 -0500174 return 0;
175
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700176free_bioset:
177 bioset_free(btrfs_bioset);
178 btrfs_bioset = NULL;
179
Chris Mason9be33952013-05-17 18:30:14 -0400180free_buffer_cache:
181 kmem_cache_destroy(extent_buffer_cache);
182 extent_buffer_cache = NULL;
183
Chris Masond1310b22008-01-24 16:13:08 -0500184free_state_cache:
185 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400186 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500187 return -ENOMEM;
188}
189
David Sterbae67c7182018-02-19 17:24:18 +0100190void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500191{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000192 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000193
194 /*
195 * Make sure all delayed rcu free are flushed before we
196 * destroy caches.
197 */
198 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800199 kmem_cache_destroy(extent_state_cache);
200 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400201 if (btrfs_bioset)
202 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500203}
204
205void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400206 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500207{
Eric Paris6bef4d32010-02-23 19:43:04 +0000208 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500209 tree->ops = NULL;
210 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500211 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400212 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500213}
Chris Masond1310b22008-01-24 16:13:08 -0500214
Christoph Hellwigb2950862008-12-02 09:54:17 -0500215static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500216{
217 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500218
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100219 /*
220 * The given mask might be not appropriate for the slab allocator,
221 * drop the unsupported bits
222 */
223 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500224 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400225 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500226 return state;
227 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100228 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100229 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000230 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200231 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500232 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100233 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500234 return state;
235}
Chris Masond1310b22008-01-24 16:13:08 -0500236
Chris Mason4845e442010-05-25 20:56:50 -0400237void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500238{
Chris Masond1310b22008-01-24 16:13:08 -0500239 if (!state)
240 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200241 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100242 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000243 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100244 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500245 kmem_cache_free(extent_state_cache, state);
246 }
247}
Chris Masond1310b22008-01-24 16:13:08 -0500248
Filipe Mananaf2071b22014-02-12 15:05:53 +0000249static struct rb_node *tree_insert(struct rb_root *root,
250 struct rb_node *search_start,
251 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000252 struct rb_node *node,
253 struct rb_node ***p_in,
254 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500255{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000256 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500257 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500258 struct tree_entry *entry;
259
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000260 if (p_in && parent_in) {
261 p = *p_in;
262 parent = *parent_in;
263 goto do_insert;
264 }
265
Filipe Mananaf2071b22014-02-12 15:05:53 +0000266 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500267 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500268 parent = *p;
269 entry = rb_entry(parent, struct tree_entry, rb_node);
270
271 if (offset < entry->start)
272 p = &(*p)->rb_left;
273 else if (offset > entry->end)
274 p = &(*p)->rb_right;
275 else
276 return parent;
277 }
278
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000279do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500280 rb_link_node(node, parent, p);
281 rb_insert_color(node, root);
282 return NULL;
283}
284
Chris Mason80ea96b2008-02-01 14:51:59 -0500285static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286 struct rb_node **prev_ret,
287 struct rb_node **next_ret,
288 struct rb_node ***p_ret,
289 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500290{
Chris Mason80ea96b2008-02-01 14:51:59 -0500291 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000292 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500293 struct rb_node *prev = NULL;
294 struct rb_node *orig_prev = NULL;
295 struct tree_entry *entry;
296 struct tree_entry *prev_entry = NULL;
297
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000298 while (*n) {
299 prev = *n;
300 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500301 prev_entry = entry;
302
303 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000304 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500305 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000306 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500307 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000308 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500309 }
310
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000311 if (p_ret)
312 *p_ret = n;
313 if (parent_ret)
314 *parent_ret = prev;
315
Chris Masond1310b22008-01-24 16:13:08 -0500316 if (prev_ret) {
317 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500318 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500319 prev = rb_next(prev);
320 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
321 }
322 *prev_ret = prev;
323 prev = orig_prev;
324 }
325
326 if (next_ret) {
327 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500328 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500329 prev = rb_prev(prev);
330 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
331 }
332 *next_ret = prev;
333 }
334 return NULL;
335}
336
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000337static inline struct rb_node *
338tree_search_for_insert(struct extent_io_tree *tree,
339 u64 offset,
340 struct rb_node ***p_ret,
341 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500342{
Chris Mason70dec802008-01-29 09:59:12 -0500343 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500344 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500345
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000346 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500347 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500348 return prev;
349 return ret;
350}
351
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000352static inline struct rb_node *tree_search(struct extent_io_tree *tree,
353 u64 offset)
354{
355 return tree_search_for_insert(tree, offset, NULL, NULL);
356}
357
Josef Bacik9ed74f22009-09-11 16:12:44 -0400358static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
359 struct extent_state *other)
360{
361 if (tree->ops && tree->ops->merge_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400362 tree->ops->merge_extent_hook(tree->private_data, new, other);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400363}
364
Chris Masond1310b22008-01-24 16:13:08 -0500365/*
366 * utility function to look for merge candidates inside a given range.
367 * Any extents with matching state are merged together into a single
368 * extent in the tree. Extents with EXTENT_IO in their state field
369 * are not merged because the end_io handlers need to be able to do
370 * operations on them without sleeping (or doing allocations/splits).
371 *
372 * This should be called with the tree lock held.
373 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000374static void merge_state(struct extent_io_tree *tree,
375 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500376{
377 struct extent_state *other;
378 struct rb_node *other_node;
379
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400380 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000381 return;
Chris Masond1310b22008-01-24 16:13:08 -0500382
383 other_node = rb_prev(&state->rb_node);
384 if (other_node) {
385 other = rb_entry(other_node, struct extent_state, rb_node);
386 if (other->end == state->start - 1 &&
387 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400388 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500389 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500390 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100391 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500392 free_extent_state(other);
393 }
394 }
395 other_node = rb_next(&state->rb_node);
396 if (other_node) {
397 other = rb_entry(other_node, struct extent_state, rb_node);
398 if (other->start == state->end + 1 &&
399 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400400 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400401 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400402 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100403 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400404 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500405 }
406 }
Chris Masond1310b22008-01-24 16:13:08 -0500407}
408
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000409static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100410 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500411{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000412 if (tree->ops && tree->ops->set_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400413 tree->ops->set_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500414}
415
416static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100417 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500418{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400419 if (tree->ops && tree->ops->clear_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400420 tree->ops->clear_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500421}
422
Xiao Guangrong3150b692011-07-14 03:19:08 +0000423static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800424 struct extent_state *state, unsigned *bits,
425 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000426
Chris Masond1310b22008-01-24 16:13:08 -0500427/*
428 * insert an extent_state struct into the tree. 'bits' are set on the
429 * struct before it is inserted.
430 *
431 * This may return -EEXIST if the extent is already there, in which case the
432 * state struct is freed.
433 *
434 * The tree lock is not taken internally. This is a utility function and
435 * probably isn't what you want to call (see set/clear_extent_bit).
436 */
437static int insert_state(struct extent_io_tree *tree,
438 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000439 struct rb_node ***p,
440 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800441 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500442{
443 struct rb_node *node;
444
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000445 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500446 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200447 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500448 state->start = start;
449 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400450
Qu Wenruod38ed272015-10-12 14:53:37 +0800451 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000452
Filipe Mananaf2071b22014-02-12 15:05:53 +0000453 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500454 if (node) {
455 struct extent_state *found;
456 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400457 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200458 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500459 return -EEXIST;
460 }
461 merge_state(tree, state);
462 return 0;
463}
464
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000465static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400466 u64 split)
467{
468 if (tree->ops && tree->ops->split_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400469 tree->ops->split_extent_hook(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400470}
471
Chris Masond1310b22008-01-24 16:13:08 -0500472/*
473 * split a given extent state struct in two, inserting the preallocated
474 * struct 'prealloc' as the newly created second half. 'split' indicates an
475 * offset inside 'orig' where it should be split.
476 *
477 * Before calling,
478 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
479 * are two extent state structs in the tree:
480 * prealloc: [orig->start, split - 1]
481 * orig: [ split, orig->end ]
482 *
483 * The tree locks are not taken by this function. They need to be held
484 * by the caller.
485 */
486static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
487 struct extent_state *prealloc, u64 split)
488{
489 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400490
491 split_cb(tree, orig, split);
492
Chris Masond1310b22008-01-24 16:13:08 -0500493 prealloc->start = orig->start;
494 prealloc->end = split - 1;
495 prealloc->state = orig->state;
496 orig->start = split;
497
Filipe Mananaf2071b22014-02-12 15:05:53 +0000498 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
499 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500500 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500501 free_extent_state(prealloc);
502 return -EEXIST;
503 }
504 return 0;
505}
506
Li Zefancdc6a392012-03-12 16:39:48 +0800507static struct extent_state *next_state(struct extent_state *state)
508{
509 struct rb_node *next = rb_next(&state->rb_node);
510 if (next)
511 return rb_entry(next, struct extent_state, rb_node);
512 else
513 return NULL;
514}
515
Chris Masond1310b22008-01-24 16:13:08 -0500516/*
517 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800518 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500519 *
520 * If no bits are set on the state struct after clearing things, the
521 * struct is freed and removed from the tree
522 */
Li Zefancdc6a392012-03-12 16:39:48 +0800523static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
524 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800525 unsigned *bits, int wake,
526 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500527{
Li Zefancdc6a392012-03-12 16:39:48 +0800528 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100529 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100530 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500531
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400532 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500533 u64 range = state->end - state->start + 1;
534 WARN_ON(range > tree->dirty_bytes);
535 tree->dirty_bytes -= range;
536 }
Chris Mason291d6732008-01-29 15:55:23 -0500537 clear_state_cb(tree, state, bits);
David Sterba57599c72018-03-01 17:56:34 +0100538 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
539 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400540 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500541 if (wake)
542 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400543 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800544 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100545 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500546 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100547 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500548 free_extent_state(state);
549 } else {
550 WARN_ON(1);
551 }
552 } else {
553 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800554 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500555 }
Li Zefancdc6a392012-03-12 16:39:48 +0800556 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500557}
558
Xiao Guangrong82337672011-04-20 06:44:57 +0000559static struct extent_state *
560alloc_extent_state_atomic(struct extent_state *prealloc)
561{
562 if (!prealloc)
563 prealloc = alloc_extent_state(GFP_ATOMIC);
564
565 return prealloc;
566}
567
Eric Sandeen48a3b632013-04-25 20:41:01 +0000568static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400569{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400570 btrfs_panic(tree_fs_info(tree), err,
571 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400572}
573
Chris Masond1310b22008-01-24 16:13:08 -0500574/*
575 * clear some bits on a range in the tree. This may require splitting
576 * or inserting elements in the tree, so the gfp mask is used to
577 * indicate which allocations or sleeping are allowed.
578 *
579 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
580 * the given range from the tree regardless of state (ie for truncate).
581 *
582 * the range [start, end] is inclusive.
583 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100584 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500585 */
David Sterba66b0c882017-10-31 16:30:47 +0100586int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800587 unsigned bits, int wake, int delete,
588 struct extent_state **cached_state,
589 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500590{
591 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400592 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500593 struct extent_state *prealloc = NULL;
594 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400595 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500596 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000597 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500598
Josef Bacika5dee372013-12-13 10:02:44 -0500599 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000600
Josef Bacik7ee9e442013-06-21 16:37:03 -0400601 if (bits & EXTENT_DELALLOC)
602 bits |= EXTENT_NORESERVE;
603
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400604 if (delete)
605 bits |= ~EXTENT_CTLBITS;
606 bits |= EXTENT_FIRST_DELALLOC;
607
Josef Bacik2ac55d42010-02-03 19:33:23 +0000608 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
609 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500610again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800611 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000612 /*
613 * Don't care for allocation failure here because we might end
614 * up not needing the pre-allocated extent state at all, which
615 * is the case if we only have in the tree extent states that
616 * cover our input range and don't cover too any other range.
617 * If we end up needing a new extent state we allocate it later.
618 */
Chris Masond1310b22008-01-24 16:13:08 -0500619 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500620 }
621
Chris Masoncad321a2008-12-17 14:51:42 -0500622 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400623 if (cached_state) {
624 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000625
626 if (clear) {
627 *cached_state = NULL;
628 cached_state = NULL;
629 }
630
Filipe Manana27a35072014-07-06 20:09:59 +0100631 if (cached && extent_state_in_tree(cached) &&
632 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000633 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200634 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400635 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400636 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400637 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000638 if (clear)
639 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400640 }
Chris Masond1310b22008-01-24 16:13:08 -0500641 /*
642 * this search will find the extents that end after
643 * our range starts
644 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500645 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500646 if (!node)
647 goto out;
648 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400649hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500650 if (state->start > end)
651 goto out;
652 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400653 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500654
Liu Bo04493142012-02-16 18:34:37 +0800655 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800656 if (!(state->state & bits)) {
657 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800658 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800659 }
Liu Bo04493142012-02-16 18:34:37 +0800660
Chris Masond1310b22008-01-24 16:13:08 -0500661 /*
662 * | ---- desired range ---- |
663 * | state | or
664 * | ------------- state -------------- |
665 *
666 * We need to split the extent we found, and may flip
667 * bits on second half.
668 *
669 * If the extent we found extends past our range, we
670 * just split and search again. It'll get split again
671 * the next time though.
672 *
673 * If the extent we found is inside our range, we clear
674 * the desired bit on it.
675 */
676
677 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000678 prealloc = alloc_extent_state_atomic(prealloc);
679 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500680 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400681 if (err)
682 extent_io_tree_panic(tree, err);
683
Chris Masond1310b22008-01-24 16:13:08 -0500684 prealloc = NULL;
685 if (err)
686 goto out;
687 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800688 state = clear_state_bit(tree, state, &bits, wake,
689 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800690 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500691 }
692 goto search_again;
693 }
694 /*
695 * | ---- desired range ---- |
696 * | state |
697 * We need to split the extent, and clear the bit
698 * on the first half
699 */
700 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000701 prealloc = alloc_extent_state_atomic(prealloc);
702 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500703 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400704 if (err)
705 extent_io_tree_panic(tree, err);
706
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (wake)
708 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400709
Qu Wenruofefdc552015-10-12 15:35:38 +0800710 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400711
Chris Masond1310b22008-01-24 16:13:08 -0500712 prealloc = NULL;
713 goto out;
714 }
Chris Mason42daec22009-09-23 19:51:09 -0400715
Qu Wenruofefdc552015-10-12 15:35:38 +0800716 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800717next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400718 if (last_end == (u64)-1)
719 goto out;
720 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800721 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800722 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500723
724search_again:
725 if (start > end)
726 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500727 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800728 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500729 cond_resched();
730 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200731
732out:
733 spin_unlock(&tree->lock);
734 if (prealloc)
735 free_extent_state(prealloc);
736
737 return 0;
738
Chris Masond1310b22008-01-24 16:13:08 -0500739}
Chris Masond1310b22008-01-24 16:13:08 -0500740
Jeff Mahoney143bede2012-03-01 14:56:26 +0100741static void wait_on_state(struct extent_io_tree *tree,
742 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500743 __releases(tree->lock)
744 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500745{
746 DEFINE_WAIT(wait);
747 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500748 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500749 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500750 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500751 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500752}
753
754/*
755 * waits for one or more bits to clear on a range in the state tree.
756 * The range [start, end] is inclusive.
757 * The tree lock is taken by this function
758 */
David Sterba41074882013-04-29 13:38:46 +0000759static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
760 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500761{
762 struct extent_state *state;
763 struct rb_node *node;
764
Josef Bacika5dee372013-12-13 10:02:44 -0500765 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000766
Chris Masoncad321a2008-12-17 14:51:42 -0500767 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500768again:
769 while (1) {
770 /*
771 * this search will find all the extents that end after
772 * our range starts
773 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500774 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100775process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500776 if (!node)
777 break;
778
779 state = rb_entry(node, struct extent_state, rb_node);
780
781 if (state->start > end)
782 goto out;
783
784 if (state->state & bits) {
785 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200786 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500787 wait_on_state(tree, state);
788 free_extent_state(state);
789 goto again;
790 }
791 start = state->end + 1;
792
793 if (start > end)
794 break;
795
Filipe Mananac50d3e72014-03-31 14:53:25 +0100796 if (!cond_resched_lock(&tree->lock)) {
797 node = rb_next(node);
798 goto process_node;
799 }
Chris Masond1310b22008-01-24 16:13:08 -0500800 }
801out:
Chris Masoncad321a2008-12-17 14:51:42 -0500802 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500803}
Chris Masond1310b22008-01-24 16:13:08 -0500804
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000805static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500806 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800807 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500808{
David Sterba9ee49a042015-01-14 19:52:13 +0100809 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100810 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400811
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000812 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400813 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500814 u64 range = state->end - state->start + 1;
815 tree->dirty_bytes += range;
816 }
David Sterba57599c72018-03-01 17:56:34 +0100817 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
818 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400819 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500820}
821
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100822static void cache_state_if_flags(struct extent_state *state,
823 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100824 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400825{
826 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100827 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400828 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200829 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400830 }
831 }
832}
833
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100834static void cache_state(struct extent_state *state,
835 struct extent_state **cached_ptr)
836{
837 return cache_state_if_flags(state, cached_ptr,
838 EXTENT_IOBITS | EXTENT_BOUNDARY);
839}
840
Chris Masond1310b22008-01-24 16:13:08 -0500841/*
Chris Mason1edbb732009-09-02 13:24:36 -0400842 * set some bits on a range in the tree. This may require allocations or
843 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500844 *
Chris Mason1edbb732009-09-02 13:24:36 -0400845 * If any of the exclusive bits are set, this will fail with -EEXIST if some
846 * part of the range already has the desired bits set. The start of the
847 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500848 *
Chris Mason1edbb732009-09-02 13:24:36 -0400849 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500850 */
Chris Mason1edbb732009-09-02 13:24:36 -0400851
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100852static int __must_check
853__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100854 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000855 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800856 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500857{
858 struct extent_state *state;
859 struct extent_state *prealloc = NULL;
860 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000861 struct rb_node **p;
862 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500863 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500864 u64 last_start;
865 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400866
Josef Bacika5dee372013-12-13 10:02:44 -0500867 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000868
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400869 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500870again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800871 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200872 /*
873 * Don't care for allocation failure here because we might end
874 * up not needing the pre-allocated extent state at all, which
875 * is the case if we only have in the tree extent states that
876 * cover our input range and don't cover too any other range.
877 * If we end up needing a new extent state we allocate it later.
878 */
Chris Masond1310b22008-01-24 16:13:08 -0500879 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500880 }
881
Chris Masoncad321a2008-12-17 14:51:42 -0500882 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400883 if (cached_state && *cached_state) {
884 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400885 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100886 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400887 node = &state->rb_node;
888 goto hit_next;
889 }
890 }
Chris Masond1310b22008-01-24 16:13:08 -0500891 /*
892 * this search will find all the extents that end after
893 * our range starts.
894 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000895 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500896 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000897 prealloc = alloc_extent_state_atomic(prealloc);
898 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000899 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800900 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400901 if (err)
902 extent_io_tree_panic(tree, err);
903
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000904 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500905 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500906 goto out;
907 }
Chris Masond1310b22008-01-24 16:13:08 -0500908 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400909hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500910 last_start = state->start;
911 last_end = state->end;
912
913 /*
914 * | ---- desired range ---- |
915 * | state |
916 *
917 * Just lock what we found and keep going
918 */
919 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400920 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500921 *failed_start = state->start;
922 err = -EEXIST;
923 goto out;
924 }
Chris Mason42daec22009-09-23 19:51:09 -0400925
Qu Wenruod38ed272015-10-12 14:53:37 +0800926 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400927 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500928 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400929 if (last_end == (u64)-1)
930 goto out;
931 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800932 state = next_state(state);
933 if (start < end && state && state->start == start &&
934 !need_resched())
935 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500936 goto search_again;
937 }
938
939 /*
940 * | ---- desired range ---- |
941 * | state |
942 * or
943 * | ------------- state -------------- |
944 *
945 * We need to split the extent we found, and may flip bits on
946 * second half.
947 *
948 * If the extent we found extends past our
949 * range, we just split and search again. It'll get split
950 * again the next time though.
951 *
952 * If the extent we found is inside our range, we set the
953 * desired bit on it.
954 */
955 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400956 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500957 *failed_start = start;
958 err = -EEXIST;
959 goto out;
960 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500964 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400965 if (err)
966 extent_io_tree_panic(tree, err);
967
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
969 if (err)
970 goto out;
971 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800972 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400973 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500974 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400975 if (last_end == (u64)-1)
976 goto out;
977 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800978 state = next_state(state);
979 if (start < end && state && state->start == start &&
980 !need_resched())
981 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500982 }
983 goto search_again;
984 }
985 /*
986 * | ---- desired range ---- |
987 * | state | or | state |
988 *
989 * There's a hole, we need to insert something in it and
990 * ignore the extent we found.
991 */
992 if (state->start > start) {
993 u64 this_end;
994 if (end < last_start)
995 this_end = end;
996 else
Chris Masond3977122009-01-05 21:25:51 -0500997 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000998
999 prealloc = alloc_extent_state_atomic(prealloc);
1000 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001001
1002 /*
1003 * Avoid to free 'prealloc' if it can be merged with
1004 * the later extent.
1005 */
Chris Masond1310b22008-01-24 16:13:08 -05001006 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001007 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001008 if (err)
1009 extent_io_tree_panic(tree, err);
1010
Chris Mason2c64c532009-09-02 15:04:12 -04001011 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001012 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001013 start = this_end + 1;
1014 goto search_again;
1015 }
1016 /*
1017 * | ---- desired range ---- |
1018 * | state |
1019 * We need to split the extent, and set the bit
1020 * on the first half
1021 */
1022 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001023 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001024 *failed_start = start;
1025 err = -EEXIST;
1026 goto out;
1027 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001028
1029 prealloc = alloc_extent_state_atomic(prealloc);
1030 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001031 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001032 if (err)
1033 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001034
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, prealloc);
1038 prealloc = NULL;
1039 goto out;
1040 }
1041
David Sterbab5a4ba12016-04-27 01:02:15 +02001042search_again:
1043 if (start > end)
1044 goto out;
1045 spin_unlock(&tree->lock);
1046 if (gfpflags_allow_blocking(mask))
1047 cond_resched();
1048 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001049
1050out:
Chris Masoncad321a2008-12-17 14:51:42 -05001051 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001052 if (prealloc)
1053 free_extent_state(prealloc);
1054
1055 return err;
1056
Chris Masond1310b22008-01-24 16:13:08 -05001057}
Chris Masond1310b22008-01-24 16:13:08 -05001058
David Sterba41074882013-04-29 13:38:46 +00001059int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001060 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001061 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001062{
1063 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001064 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001065}
1066
1067
Josef Bacik462d6fa2011-09-26 13:56:12 -04001068/**
Liu Bo10983f22012-07-11 15:26:19 +08001069 * convert_extent_bit - convert all bits in a given range from one bit to
1070 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071 * @tree: the io tree to search
1072 * @start: the start offset in bytes
1073 * @end: the end offset in bytes (inclusive)
1074 * @bits: the bits to set in this range
1075 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001076 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001077 *
1078 * This will go through and set bits for the given range. If any states exist
1079 * already in this range they are set with the given bit and cleared of the
1080 * clear_bits. This is only meant to be used by things that are mergeable, ie
1081 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1082 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001083 *
1084 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001085 */
1086int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001087 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001088 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089{
1090 struct extent_state *state;
1091 struct extent_state *prealloc = NULL;
1092 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001093 struct rb_node **p;
1094 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 int err = 0;
1096 u64 last_start;
1097 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001098 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099
Josef Bacika5dee372013-12-13 10:02:44 -05001100 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001101
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102again:
David Sterba210aa272016-04-26 23:54:39 +02001103 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001104 /*
1105 * Best effort, don't worry if extent state allocation fails
1106 * here for the first iteration. We might have a cached state
1107 * that matches exactly the target range, in which case no
1108 * extent state allocations are needed. We'll only know this
1109 * after locking the tree.
1110 */
David Sterba210aa272016-04-26 23:54:39 +02001111 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001112 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001113 return -ENOMEM;
1114 }
1115
1116 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001117 if (cached_state && *cached_state) {
1118 state = *cached_state;
1119 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001120 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001121 node = &state->rb_node;
1122 goto hit_next;
1123 }
1124 }
1125
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 /*
1127 * this search will find all the extents that end after
1128 * our range starts.
1129 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001130 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131 if (!node) {
1132 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001133 if (!prealloc) {
1134 err = -ENOMEM;
1135 goto out;
1136 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001137 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001138 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001139 if (err)
1140 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001141 cache_state(prealloc, cached_state);
1142 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 goto out;
1144 }
1145 state = rb_entry(node, struct extent_state, rb_node);
1146hit_next:
1147 last_start = state->start;
1148 last_end = state->end;
1149
1150 /*
1151 * | ---- desired range ---- |
1152 * | state |
1153 *
1154 * Just lock what we found and keep going
1155 */
1156 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001157 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001158 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001159 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160 if (last_end == (u64)-1)
1161 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001163 if (start < end && state && state->start == start &&
1164 !need_resched())
1165 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 goto search_again;
1167 }
1168
1169 /*
1170 * | ---- desired range ---- |
1171 * | state |
1172 * or
1173 * | ------------- state -------------- |
1174 *
1175 * We need to split the extent we found, and may flip bits on
1176 * second half.
1177 *
1178 * If the extent we found extends past our
1179 * range, we just split and search again. It'll get split
1180 * again the next time though.
1181 *
1182 * If the extent we found is inside our range, we set the
1183 * desired bit on it.
1184 */
1185 if (state->start < start) {
1186 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001187 if (!prealloc) {
1188 err = -ENOMEM;
1189 goto out;
1190 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001192 if (err)
1193 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 if (err)
1196 goto out;
1197 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001198 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001199 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001200 state = clear_state_bit(tree, state, &clear_bits, 0,
1201 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 if (last_end == (u64)-1)
1203 goto out;
1204 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001205 if (start < end && state && state->start == start &&
1206 !need_resched())
1207 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 }
1209 goto search_again;
1210 }
1211 /*
1212 * | ---- desired range ---- |
1213 * | state | or | state |
1214 *
1215 * There's a hole, we need to insert something in it and
1216 * ignore the extent we found.
1217 */
1218 if (state->start > start) {
1219 u64 this_end;
1220 if (end < last_start)
1221 this_end = end;
1222 else
1223 this_end = last_start - 1;
1224
1225 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001226 if (!prealloc) {
1227 err = -ENOMEM;
1228 goto out;
1229 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001230
1231 /*
1232 * Avoid to free 'prealloc' if it can be merged with
1233 * the later extent.
1234 */
1235 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001236 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001237 if (err)
1238 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001239 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001240 prealloc = NULL;
1241 start = this_end + 1;
1242 goto search_again;
1243 }
1244 /*
1245 * | ---- desired range ---- |
1246 * | state |
1247 * We need to split the extent, and set the bit
1248 * on the first half
1249 */
1250 if (state->start <= end && state->end > end) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256
1257 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001258 if (err)
1259 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001260
Qu Wenruod38ed272015-10-12 14:53:37 +08001261 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001262 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001263 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001264 prealloc = NULL;
1265 goto out;
1266 }
1267
Josef Bacik462d6fa2011-09-26 13:56:12 -04001268search_again:
1269 if (start > end)
1270 goto out;
1271 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001272 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001273 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001274 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001275
1276out:
1277 spin_unlock(&tree->lock);
1278 if (prealloc)
1279 free_extent_state(prealloc);
1280
1281 return err;
1282}
1283
Chris Masond1310b22008-01-24 16:13:08 -05001284/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001285int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001286 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001287{
1288 /*
1289 * We don't support EXTENT_LOCKED yet, as current changeset will
1290 * record any bits changed, so for EXTENT_LOCKED case, it will
1291 * either fail with -EEXIST or changeset will record the whole
1292 * range.
1293 */
1294 BUG_ON(bits & EXTENT_LOCKED);
1295
David Sterba2c53b912016-04-26 23:54:39 +02001296 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001297 changeset);
1298}
1299
Qu Wenruofefdc552015-10-12 15:35:38 +08001300int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1301 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001302 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001303{
1304 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001305 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001306}
1307
Qu Wenruofefdc552015-10-12 15:35:38 +08001308int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001309 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001310{
1311 /*
1312 * Don't support EXTENT_LOCKED case, same reason as
1313 * set_record_extent_bits().
1314 */
1315 BUG_ON(bits & EXTENT_LOCKED);
1316
David Sterbaf734c442016-04-26 23:54:39 +02001317 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001318 changeset);
1319}
1320
Chris Masond352ac62008-09-29 15:18:18 -04001321/*
1322 * either insert or lock state struct between start and end use mask to tell
1323 * us if waiting is desired.
1324 */
Chris Mason1edbb732009-09-02 13:24:36 -04001325int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001326 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001327{
1328 int err;
1329 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001330
Chris Masond1310b22008-01-24 16:13:08 -05001331 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001332 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001333 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001334 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001335 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001336 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1337 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001338 } else
Chris Masond1310b22008-01-24 16:13:08 -05001339 break;
Chris Masond1310b22008-01-24 16:13:08 -05001340 WARN_ON(start > end);
1341 }
1342 return err;
1343}
Chris Masond1310b22008-01-24 16:13:08 -05001344
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001345int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001346{
1347 int err;
1348 u64 failed_start;
1349
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001350 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001351 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001352 if (err == -EEXIST) {
1353 if (failed_start > start)
1354 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001355 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001356 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001357 }
Josef Bacik25179202008-10-29 14:49:05 -04001358 return 1;
1359}
Josef Bacik25179202008-10-29 14:49:05 -04001360
David Sterbabd1fa4f2015-12-03 13:08:59 +01001361void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001362{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001363 unsigned long index = start >> PAGE_SHIFT;
1364 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001365 struct page *page;
1366
1367 while (index <= end_index) {
1368 page = find_get_page(inode->i_mapping, index);
1369 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1370 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001371 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001372 index++;
1373 }
Chris Mason4adaa612013-03-26 13:07:00 -04001374}
1375
David Sterbaf6311572015-12-03 13:08:59 +01001376void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001377{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001378 unsigned long index = start >> PAGE_SHIFT;
1379 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001380 struct page *page;
1381
1382 while (index <= end_index) {
1383 page = find_get_page(inode->i_mapping, index);
1384 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001385 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001386 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001387 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001388 index++;
1389 }
Chris Mason4adaa612013-03-26 13:07:00 -04001390}
1391
Chris Masond1310b22008-01-24 16:13:08 -05001392/*
Chris Masond1310b22008-01-24 16:13:08 -05001393 * helper function to set both pages and extents in the tree writeback
1394 */
David Sterba35de6db2015-12-03 13:08:59 +01001395static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001396{
Josef Bacikc6100a42017-05-05 11:57:13 -04001397 tree->ops->set_range_writeback(tree->private_data, start, end);
Chris Masond1310b22008-01-24 16:13:08 -05001398}
Chris Masond1310b22008-01-24 16:13:08 -05001399
Chris Masond352ac62008-09-29 15:18:18 -04001400/* find the first state struct with 'bits' set after 'start', and
1401 * return it. tree->lock must be held. NULL will returned if
1402 * nothing was found after 'start'
1403 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001404static struct extent_state *
1405find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001406 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001407{
1408 struct rb_node *node;
1409 struct extent_state *state;
1410
1411 /*
1412 * this search will find all the extents that end after
1413 * our range starts.
1414 */
1415 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001416 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001417 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001418
Chris Masond3977122009-01-05 21:25:51 -05001419 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001420 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001421 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001422 return state;
Chris Masond3977122009-01-05 21:25:51 -05001423
Chris Masond7fc6402008-02-18 12:12:38 -05001424 node = rb_next(node);
1425 if (!node)
1426 break;
1427 }
1428out:
1429 return NULL;
1430}
Chris Masond7fc6402008-02-18 12:12:38 -05001431
Chris Masond352ac62008-09-29 15:18:18 -04001432/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001433 * find the first offset in the io tree with 'bits' set. zero is
1434 * returned if we find something, and *start_ret and *end_ret are
1435 * set to reflect the state struct that was found.
1436 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001437 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001438 */
1439int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001440 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001441 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001442{
1443 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001444 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001445 int ret = 1;
1446
1447 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001448 if (cached_state && *cached_state) {
1449 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001450 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001451 n = rb_next(&state->rb_node);
1452 while (n) {
1453 state = rb_entry(n, struct extent_state,
1454 rb_node);
1455 if (state->state & bits)
1456 goto got_it;
1457 n = rb_next(n);
1458 }
1459 free_extent_state(*cached_state);
1460 *cached_state = NULL;
1461 goto out;
1462 }
1463 free_extent_state(*cached_state);
1464 *cached_state = NULL;
1465 }
1466
Xiao Guangrong69261c42011-07-14 03:19:45 +00001467 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001468got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001469 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001470 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001471 *start_ret = state->start;
1472 *end_ret = state->end;
1473 ret = 0;
1474 }
Josef Bacike6138872012-09-27 17:07:30 -04001475out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001476 spin_unlock(&tree->lock);
1477 return ret;
1478}
1479
1480/*
Chris Masond352ac62008-09-29 15:18:18 -04001481 * find a contiguous range of bytes in the file marked as delalloc, not
1482 * more than 'max_bytes'. start and end are used to return the range,
1483 *
1484 * 1 is returned if we find something, 0 if nothing was in the tree
1485 */
Chris Masonc8b97812008-10-29 14:49:59 -04001486static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001487 u64 *start, u64 *end, u64 max_bytes,
1488 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001489{
1490 struct rb_node *node;
1491 struct extent_state *state;
1492 u64 cur_start = *start;
1493 u64 found = 0;
1494 u64 total_bytes = 0;
1495
Chris Masoncad321a2008-12-17 14:51:42 -05001496 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001497
Chris Masond1310b22008-01-24 16:13:08 -05001498 /*
1499 * this search will find all the extents that end after
1500 * our range starts.
1501 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001502 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001503 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001504 if (!found)
1505 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001506 goto out;
1507 }
1508
Chris Masond3977122009-01-05 21:25:51 -05001509 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001510 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001511 if (found && (state->start != cur_start ||
1512 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001513 goto out;
1514 }
1515 if (!(state->state & EXTENT_DELALLOC)) {
1516 if (!found)
1517 *end = state->end;
1518 goto out;
1519 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001520 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001521 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001522 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001523 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001524 }
Chris Masond1310b22008-01-24 16:13:08 -05001525 found++;
1526 *end = state->end;
1527 cur_start = state->end + 1;
1528 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001529 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001530 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001531 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001532 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001533 break;
1534 }
1535out:
Chris Masoncad321a2008-12-17 14:51:42 -05001536 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001537 return found;
1538}
1539
Liu Boda2c7002017-02-10 16:41:05 +01001540static int __process_pages_contig(struct address_space *mapping,
1541 struct page *locked_page,
1542 pgoff_t start_index, pgoff_t end_index,
1543 unsigned long page_ops, pgoff_t *index_ret);
1544
Jeff Mahoney143bede2012-03-01 14:56:26 +01001545static noinline void __unlock_for_delalloc(struct inode *inode,
1546 struct page *locked_page,
1547 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001548{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001549 unsigned long index = start >> PAGE_SHIFT;
1550 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001551
Liu Bo76c00212017-02-10 16:42:14 +01001552 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001553 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001554 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001555
Liu Bo76c00212017-02-10 16:42:14 +01001556 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1557 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001558}
1559
1560static noinline int lock_delalloc_pages(struct inode *inode,
1561 struct page *locked_page,
1562 u64 delalloc_start,
1563 u64 delalloc_end)
1564{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001565 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001566 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001567 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001568 int ret;
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 && index == end_index)
1572 return 0;
1573
Liu Bo76c00212017-02-10 16:42:14 +01001574 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1575 end_index, PAGE_LOCK, &index_ret);
1576 if (ret == -EAGAIN)
1577 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1578 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001579 return ret;
1580}
1581
1582/*
1583 * find a contiguous range of bytes in the file marked as delalloc, not
1584 * more than 'max_bytes'. start and end are used to return the range,
1585 *
1586 * 1 is returned if we find something, 0 if nothing was in the tree
1587 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001588STATIC u64 find_lock_delalloc_range(struct inode *inode,
1589 struct extent_io_tree *tree,
1590 struct page *locked_page, u64 *start,
1591 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001592{
1593 u64 delalloc_start;
1594 u64 delalloc_end;
1595 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001596 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001597 int ret;
1598 int loops = 0;
1599
1600again:
1601 /* step one, find a bunch of delalloc bytes starting at start */
1602 delalloc_start = *start;
1603 delalloc_end = 0;
1604 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001605 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001606 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001607 *start = delalloc_start;
1608 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001609 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001610 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001611 }
1612
1613 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001614 * start comes from the offset of locked_page. We have to lock
1615 * pages in order, so we can't process delalloc bytes before
1616 * locked_page
1617 */
Chris Masond3977122009-01-05 21:25:51 -05001618 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001619 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001620
1621 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001622 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001623 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001624 if (delalloc_end + 1 - delalloc_start > max_bytes)
1625 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001626
Chris Masonc8b97812008-10-29 14:49:59 -04001627 /* step two, lock all the pages after the page that has start */
1628 ret = lock_delalloc_pages(inode, locked_page,
1629 delalloc_start, delalloc_end);
1630 if (ret == -EAGAIN) {
1631 /* some of the pages are gone, lets avoid looping by
1632 * shortening the size of the delalloc range we're searching
1633 */
Chris Mason9655d292009-09-02 15:22:30 -04001634 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001635 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001636 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001637 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001638 loops = 1;
1639 goto again;
1640 } else {
1641 found = 0;
1642 goto out_failed;
1643 }
1644 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001645 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001646
1647 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001648 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001649
1650 /* then test to make sure it is all still delalloc */
1651 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001652 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001653 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001654 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001655 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001656 __unlock_for_delalloc(inode, locked_page,
1657 delalloc_start, delalloc_end);
1658 cond_resched();
1659 goto again;
1660 }
Chris Mason9655d292009-09-02 15:22:30 -04001661 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001662 *start = delalloc_start;
1663 *end = delalloc_end;
1664out_failed:
1665 return found;
1666}
1667
Liu Boda2c7002017-02-10 16:41:05 +01001668static int __process_pages_contig(struct address_space *mapping,
1669 struct page *locked_page,
1670 pgoff_t start_index, pgoff_t end_index,
1671 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001672{
Liu Bo873695b2017-02-02 17:49:22 -08001673 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001674 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001675 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001676 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001677 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001678 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001679 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001680
Liu Boda2c7002017-02-10 16:41:05 +01001681 if (page_ops & PAGE_LOCK) {
1682 ASSERT(page_ops == PAGE_LOCK);
1683 ASSERT(index_ret && *index_ret == start_index);
1684 }
1685
Filipe Manana704de492014-10-06 22:14:22 +01001686 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001687 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001688
Chris Masond3977122009-01-05 21:25:51 -05001689 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001690 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001691 min_t(unsigned long,
1692 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001693 if (ret == 0) {
1694 /*
1695 * Only if we're going to lock these pages,
1696 * can we find nothing at @index.
1697 */
1698 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001699 err = -EAGAIN;
1700 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001701 }
Chris Mason8b62b722009-09-02 16:53:46 -04001702
Liu Boda2c7002017-02-10 16:41:05 +01001703 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001704 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001705 SetPagePrivate2(pages[i]);
1706
Chris Masonc8b97812008-10-29 14:49:59 -04001707 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001708 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001709 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001710 continue;
1711 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001712 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001713 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001714 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001715 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001716 if (page_ops & PAGE_SET_ERROR)
1717 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001718 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001719 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001720 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001721 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001722 if (page_ops & PAGE_LOCK) {
1723 lock_page(pages[i]);
1724 if (!PageDirty(pages[i]) ||
1725 pages[i]->mapping != mapping) {
1726 unlock_page(pages[i]);
1727 put_page(pages[i]);
1728 err = -EAGAIN;
1729 goto out;
1730 }
1731 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001732 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001733 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001734 }
1735 nr_pages -= ret;
1736 index += ret;
1737 cond_resched();
1738 }
Liu Boda2c7002017-02-10 16:41:05 +01001739out:
1740 if (err && index_ret)
1741 *index_ret = start_index + pages_locked - 1;
1742 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001743}
Chris Masonc8b97812008-10-29 14:49:59 -04001744
Liu Bo873695b2017-02-02 17:49:22 -08001745void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1746 u64 delalloc_end, struct page *locked_page,
1747 unsigned clear_bits,
1748 unsigned long page_ops)
1749{
1750 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001751 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001752
1753 __process_pages_contig(inode->i_mapping, locked_page,
1754 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001755 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001756}
1757
Chris Masond352ac62008-09-29 15:18:18 -04001758/*
1759 * count the number of bytes in the tree that have a given bit(s)
1760 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1761 * cached. The total number found is returned.
1762 */
Chris Masond1310b22008-01-24 16:13:08 -05001763u64 count_range_bits(struct extent_io_tree *tree,
1764 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001765 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001766{
1767 struct rb_node *node;
1768 struct extent_state *state;
1769 u64 cur_start = *start;
1770 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001771 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001772 int found = 0;
1773
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301774 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001775 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001776
Chris Masoncad321a2008-12-17 14:51:42 -05001777 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001778 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1779 total_bytes = tree->dirty_bytes;
1780 goto out;
1781 }
1782 /*
1783 * this search will find all the extents that end after
1784 * our range starts.
1785 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001786 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001787 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001788 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001789
Chris Masond3977122009-01-05 21:25:51 -05001790 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001791 state = rb_entry(node, struct extent_state, rb_node);
1792 if (state->start > search_end)
1793 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001794 if (contig && found && state->start > last + 1)
1795 break;
1796 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001797 total_bytes += min(search_end, state->end) + 1 -
1798 max(cur_start, state->start);
1799 if (total_bytes >= max_bytes)
1800 break;
1801 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001802 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001803 found = 1;
1804 }
Chris Masonec29ed52011-02-23 16:23:20 -05001805 last = state->end;
1806 } else if (contig && found) {
1807 break;
Chris Masond1310b22008-01-24 16:13:08 -05001808 }
1809 node = rb_next(node);
1810 if (!node)
1811 break;
1812 }
1813out:
Chris Masoncad321a2008-12-17 14:51:42 -05001814 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001815 return total_bytes;
1816}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001817
Chris Masond352ac62008-09-29 15:18:18 -04001818/*
1819 * set the private field for a given byte offset in the tree. If there isn't
1820 * an extent_state there already, this does nothing.
1821 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001822static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001823 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001824{
1825 struct rb_node *node;
1826 struct extent_state *state;
1827 int ret = 0;
1828
Chris Masoncad321a2008-12-17 14:51:42 -05001829 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001830 /*
1831 * this search will find all the extents that end after
1832 * our range starts.
1833 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001834 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001835 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001836 ret = -ENOENT;
1837 goto out;
1838 }
1839 state = rb_entry(node, struct extent_state, rb_node);
1840 if (state->start != start) {
1841 ret = -ENOENT;
1842 goto out;
1843 }
David Sterba47dc1962016-02-11 13:24:13 +01001844 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001845out:
Chris Masoncad321a2008-12-17 14:51:42 -05001846 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001847 return ret;
1848}
1849
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001850static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001851 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001852{
1853 struct rb_node *node;
1854 struct extent_state *state;
1855 int ret = 0;
1856
Chris Masoncad321a2008-12-17 14:51:42 -05001857 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001858 /*
1859 * this search will find all the extents that end after
1860 * our range starts.
1861 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001862 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001863 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001864 ret = -ENOENT;
1865 goto out;
1866 }
1867 state = rb_entry(node, struct extent_state, rb_node);
1868 if (state->start != start) {
1869 ret = -ENOENT;
1870 goto out;
1871 }
David Sterba47dc1962016-02-11 13:24:13 +01001872 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001873out:
Chris Masoncad321a2008-12-17 14:51:42 -05001874 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001875 return ret;
1876}
1877
1878/*
1879 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001880 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001881 * has the bits set. Otherwise, 1 is returned if any bit in the
1882 * range is found set.
1883 */
1884int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001885 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001886{
1887 struct extent_state *state = NULL;
1888 struct rb_node *node;
1889 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001890
Chris Masoncad321a2008-12-17 14:51:42 -05001891 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001892 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001893 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001894 node = &cached->rb_node;
1895 else
1896 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001897 while (node && start <= end) {
1898 state = rb_entry(node, struct extent_state, rb_node);
1899
1900 if (filled && state->start > start) {
1901 bitset = 0;
1902 break;
1903 }
1904
1905 if (state->start > end)
1906 break;
1907
1908 if (state->state & bits) {
1909 bitset = 1;
1910 if (!filled)
1911 break;
1912 } else if (filled) {
1913 bitset = 0;
1914 break;
1915 }
Chris Mason46562ce2009-09-23 20:23:16 -04001916
1917 if (state->end == (u64)-1)
1918 break;
1919
Chris Masond1310b22008-01-24 16:13:08 -05001920 start = state->end + 1;
1921 if (start > end)
1922 break;
1923 node = rb_next(node);
1924 if (!node) {
1925 if (filled)
1926 bitset = 0;
1927 break;
1928 }
1929 }
Chris Masoncad321a2008-12-17 14:51:42 -05001930 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001931 return bitset;
1932}
Chris Masond1310b22008-01-24 16:13:08 -05001933
1934/*
1935 * helper function to set a given page up to date if all the
1936 * extents in the tree for that page are up to date
1937 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001938static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001939{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001940 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001941 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001942 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001943 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001944}
1945
Josef Bacik7870d082017-05-05 11:57:15 -04001946int free_io_failure(struct extent_io_tree *failure_tree,
1947 struct extent_io_tree *io_tree,
1948 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001949{
1950 int ret;
1951 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001952
David Sterba47dc1962016-02-11 13:24:13 +01001953 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001954 ret = clear_extent_bits(failure_tree, rec->start,
1955 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001956 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001957 if (ret)
1958 err = ret;
1959
Josef Bacik7870d082017-05-05 11:57:15 -04001960 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001961 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001962 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001963 if (ret && !err)
1964 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001965
1966 kfree(rec);
1967 return err;
1968}
1969
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001970/*
1971 * this bypasses the standard btrfs submit functions deliberately, as
1972 * the standard behavior is to write all copies in a raid setup. here we only
1973 * want to write the one bad copy. so we do the mapping for ourselves and issue
1974 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001975 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001976 * actually prevents the read that triggered the error from finishing.
1977 * currently, there can be no more than two copies of every data bit. thus,
1978 * exactly one rewrite is required.
1979 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001980int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1981 u64 length, u64 logical, struct page *page,
1982 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001983{
1984 struct bio *bio;
1985 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001986 u64 map_length = 0;
1987 u64 sector;
1988 struct btrfs_bio *bbio = NULL;
1989 int ret;
1990
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001991 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001992 BUG_ON(!mirror_num);
1993
David Sterbac5e4c3d2017-06-12 17:29:41 +02001994 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001995 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001996 map_length = length;
1997
Filipe Mananab5de8d02016-05-27 22:21:27 +01001998 /*
1999 * Avoid races with device replace and make sure our bbio has devices
2000 * associated to its stripes that don't go away while we are doing the
2001 * read repair operation.
2002 */
2003 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002004 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002005 /*
2006 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2007 * to update all raid stripes, but here we just want to correct
2008 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2009 * stripe's dev and sector.
2010 */
2011 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2012 &map_length, &bbio, 0);
2013 if (ret) {
2014 btrfs_bio_counter_dec(fs_info);
2015 bio_put(bio);
2016 return -EIO;
2017 }
2018 ASSERT(bbio->mirror_num == 1);
2019 } else {
2020 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2021 &map_length, &bbio, mirror_num);
2022 if (ret) {
2023 btrfs_bio_counter_dec(fs_info);
2024 bio_put(bio);
2025 return -EIO;
2026 }
2027 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028 }
Liu Boc7253282017-03-29 10:53:58 -07002029
2030 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002031 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002032 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002033 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002034 if (!dev || !dev->bdev ||
2035 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002036 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002037 bio_put(bio);
2038 return -EIO;
2039 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002040 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002041 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002042 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002043
Mike Christie4e49ea42016-06-05 14:31:41 -05002044 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002046 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002048 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049 return -EIO;
2050 }
2051
David Sterbab14af3b2015-10-08 10:43:10 +02002052 btrfs_info_rl_in_rcu(fs_info,
2053 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002054 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002055 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002056 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002057 bio_put(bio);
2058 return 0;
2059}
2060
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002061int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2062 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002063{
Josef Bacikea466792012-03-26 21:57:36 -04002064 u64 start = eb->start;
2065 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002066 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002067
David Howellsbc98a422017-07-17 08:45:34 +01002068 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002069 return -EROFS;
2070
Josef Bacikea466792012-03-26 21:57:36 -04002071 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002072 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002073
Josef Bacik6ec656b2017-05-05 11:57:14 -04002074 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002075 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002076 if (ret)
2077 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002078 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002079 }
2080
2081 return ret;
2082}
2083
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002084/*
2085 * each time an IO finishes, we do a fast check in the IO failure tree
2086 * to see if we need to process or clean up an io_failure_record
2087 */
Josef Bacik7870d082017-05-05 11:57:15 -04002088int clean_io_failure(struct btrfs_fs_info *fs_info,
2089 struct extent_io_tree *failure_tree,
2090 struct extent_io_tree *io_tree, u64 start,
2091 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092{
2093 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002095 struct extent_state *state;
2096 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002098
2099 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002100 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2101 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 if (!ret)
2103 return 0;
2104
Josef Bacik7870d082017-05-05 11:57:15 -04002105 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 if (ret)
2107 return 0;
2108
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002109 BUG_ON(!failrec->this_mirror);
2110
2111 if (failrec->in_validation) {
2112 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002113 btrfs_debug(fs_info,
2114 "clean_io_failure: freeing dummy error at %llu",
2115 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002116 goto out;
2117 }
David Howellsbc98a422017-07-17 08:45:34 +01002118 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002119 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120
Josef Bacik7870d082017-05-05 11:57:15 -04002121 spin_lock(&io_tree->lock);
2122 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002123 failrec->start,
2124 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002125 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126
Miao Xie883d0de2013-07-25 19:22:35 +08002127 if (state && state->start <= failrec->start &&
2128 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002129 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2130 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002131 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002132 repair_io_failure(fs_info, ino, start, failrec->len,
2133 failrec->logical, page, pg_offset,
2134 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135 }
2136 }
2137
2138out:
Josef Bacik7870d082017-05-05 11:57:15 -04002139 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002140
Miao Xie454ff3d2014-09-12 18:43:58 +08002141 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142}
2143
Miao Xief6124962014-09-12 18:44:04 +08002144/*
2145 * Can be called when
2146 * - hold extent lock
2147 * - under ordered extent
2148 * - the inode is freeing
2149 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002150void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002151{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002152 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002153 struct io_failure_record *failrec;
2154 struct extent_state *state, *next;
2155
2156 if (RB_EMPTY_ROOT(&failure_tree->state))
2157 return;
2158
2159 spin_lock(&failure_tree->lock);
2160 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2161 while (state) {
2162 if (state->start > end)
2163 break;
2164
2165 ASSERT(state->end <= end);
2166
2167 next = next_state(state);
2168
David Sterba47dc1962016-02-11 13:24:13 +01002169 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002170 free_extent_state(state);
2171 kfree(failrec);
2172
2173 state = next;
2174 }
2175 spin_unlock(&failure_tree->lock);
2176}
2177
Miao Xie2fe63032014-09-12 18:43:59 +08002178int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002179 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002181 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002182 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002183 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2185 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2186 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002188 u64 logical;
2189
David Sterba47dc1962016-02-11 13:24:13 +01002190 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 if (ret) {
2192 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2193 if (!failrec)
2194 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002195
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002196 failrec->start = start;
2197 failrec->len = end - start + 1;
2198 failrec->this_mirror = 0;
2199 failrec->bio_flags = 0;
2200 failrec->in_validation = 0;
2201
2202 read_lock(&em_tree->lock);
2203 em = lookup_extent_mapping(em_tree, start, failrec->len);
2204 if (!em) {
2205 read_unlock(&em_tree->lock);
2206 kfree(failrec);
2207 return -EIO;
2208 }
2209
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002210 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002211 free_extent_map(em);
2212 em = NULL;
2213 }
2214 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002215 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002216 kfree(failrec);
2217 return -EIO;
2218 }
Miao Xie2fe63032014-09-12 18:43:59 +08002219
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 logical = start - em->start;
2221 logical = em->block_start + logical;
2222 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2223 logical = em->block_start;
2224 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2225 extent_set_compress_type(&failrec->bio_flags,
2226 em->compress_type);
2227 }
Miao Xie2fe63032014-09-12 18:43:59 +08002228
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002229 btrfs_debug(fs_info,
2230 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2231 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002232
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002233 failrec->logical = logical;
2234 free_extent_map(em);
2235
2236 /* set the bits in the private failure tree */
2237 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002238 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002239 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002240 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 /* set the bits in the inode's tree */
2242 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002243 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002244 if (ret < 0) {
2245 kfree(failrec);
2246 return ret;
2247 }
2248 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002249 btrfs_debug(fs_info,
2250 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2251 failrec->logical, failrec->start, failrec->len,
2252 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002253 /*
2254 * when data can be on disk more than twice, add to failrec here
2255 * (e.g. with a list for failed_mirror) to make
2256 * clean_io_failure() clean all those errors at once.
2257 */
2258 }
Miao Xie2fe63032014-09-12 18:43:59 +08002259
2260 *failrec_ret = failrec;
2261
2262 return 0;
2263}
2264
Ming Leia0b60d72017-12-18 20:22:11 +08002265bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002266 struct io_failure_record *failrec, int failed_mirror)
2267{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002268 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002269 int num_copies;
2270
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002271 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 if (num_copies == 1) {
2273 /*
2274 * we only have a single copy of the data, so don't bother with
2275 * all the retry and error correction code that follows. no
2276 * matter what the error is, it is very likely to persist.
2277 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002278 btrfs_debug(fs_info,
2279 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2280 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002281 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002282 }
2283
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002284 /*
2285 * there are two premises:
2286 * a) deliver good data to the caller
2287 * b) correct the bad sectors on disk
2288 */
Ming Leia0b60d72017-12-18 20:22:11 +08002289 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002290 /*
2291 * to fulfill b), we need to know the exact failing sectors, as
2292 * we don't want to rewrite any more than the failed ones. thus,
2293 * we need separate read requests for the failed bio
2294 *
2295 * if the following BUG_ON triggers, our validation request got
2296 * merged. we need separate requests for our algorithm to work.
2297 */
2298 BUG_ON(failrec->in_validation);
2299 failrec->in_validation = 1;
2300 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002301 } else {
2302 /*
2303 * we're ready to fulfill a) and b) alongside. get a good copy
2304 * of the failed sector and if we succeed, we have setup
2305 * everything for repair_io_failure to do the rest for us.
2306 */
2307 if (failrec->in_validation) {
2308 BUG_ON(failrec->this_mirror != failed_mirror);
2309 failrec->in_validation = 0;
2310 failrec->this_mirror = 0;
2311 }
2312 failrec->failed_mirror = failed_mirror;
2313 failrec->this_mirror++;
2314 if (failrec->this_mirror == failed_mirror)
2315 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002316 }
2317
Miao Xiefacc8a222013-07-25 19:22:34 +08002318 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002319 btrfs_debug(fs_info,
2320 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2321 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002322 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002323 }
2324
Liu Boc3cfb652017-07-13 15:00:50 -07002325 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002326}
2327
2328
2329struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2330 struct io_failure_record *failrec,
2331 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002332 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002333{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002334 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002335 struct bio *bio;
2336 struct btrfs_io_bio *btrfs_failed_bio;
2337 struct btrfs_io_bio *btrfs_bio;
2338
David Sterbac5e4c3d2017-06-12 17:29:41 +02002339 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002340 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002341 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002342 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002343 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002344 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345
Miao Xiefacc8a222013-07-25 19:22:34 +08002346 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2347 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002348 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2349
2350 btrfs_bio = btrfs_io_bio(bio);
2351 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002352 icsum *= csum_size;
2353 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002354 csum_size);
2355 }
2356
Miao Xie2fe63032014-09-12 18:43:59 +08002357 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002358
Miao Xie2fe63032014-09-12 18:43:59 +08002359 return bio;
2360}
2361
2362/*
2363 * this is a generic handler for readpage errors (default
2364 * readpage_io_failed_hook). if other copies exist, read those and write back
2365 * good data to the failed position. does not investigate in remapping the
2366 * failed extent elsewhere, hoping the device will be smart enough to do this as
2367 * needed
2368 */
2369
2370static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2371 struct page *page, u64 start, u64 end,
2372 int failed_mirror)
2373{
2374 struct io_failure_record *failrec;
2375 struct inode *inode = page->mapping->host;
2376 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002377 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002378 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002379 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002380 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002381 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002382 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002383
Mike Christie1f7ad752016-06-05 14:31:51 -05002384 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002385
2386 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2387 if (ret)
2388 return ret;
2389
Ming Leia0b60d72017-12-18 20:22:11 +08002390 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002391 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002392 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002393 return -EIO;
2394 }
2395
Ming Leia0b60d72017-12-18 20:22:11 +08002396 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002397 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002398
2399 phy_offset >>= inode->i_sb->s_blocksize_bits;
2400 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2401 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002402 (int)phy_offset, failed_bio->bi_end_io,
2403 NULL);
Mike Christie1f7ad752016-06-05 14:31:51 -05002404 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie2fe63032014-09-12 18:43:59 +08002405
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002406 btrfs_debug(btrfs_sb(inode->i_sb),
2407 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2408 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002409
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002410 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002411 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002412 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002413 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002414 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002415 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002416 }
2417
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002418 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002419}
2420
Chris Masond1310b22008-01-24 16:13:08 -05002421/* lots and lots of room for performance fixes in the end_bio funcs */
2422
David Sterbab5227c02015-12-03 13:08:59 +01002423void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002424{
2425 int uptodate = (err == 0);
2426 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002427 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002428
2429 tree = &BTRFS_I(page->mapping->host)->io_tree;
2430
David Sterbac3988d62017-02-17 15:18:32 +01002431 if (tree->ops && tree->ops->writepage_end_io_hook)
2432 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2433 uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002434
Jeff Mahoney87826df2012-02-15 16:23:57 +01002435 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002436 ClearPageUptodate(page);
2437 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002438 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002439 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002440 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002441}
2442
Chris Masond1310b22008-01-24 16:13:08 -05002443/*
2444 * after a writepage IO is done, we need to:
2445 * clear the uptodate bits on error
2446 * clear the writeback bits in the extent tree for this IO
2447 * end_page_writeback if the page has no more pending IO
2448 *
2449 * Scheduling is not allowed, so the extent state tree is expected
2450 * to have one and only one object corresponding to this IO.
2451 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002452static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002453{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002454 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002455 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002456 u64 start;
2457 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002458 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002459
David Sterbac09abff2017-07-13 18:10:07 +02002460 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002461 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002462 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002463 struct inode *inode = page->mapping->host;
2464 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002465
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002466 /* We always issue full-page reads, but if some block
2467 * in a page fails to read, blk_update_request() will
2468 * advance bv_offset and adjust bv_len to compensate.
2469 * Print a warning for nonzero offsets, and an error
2470 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002471 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2472 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002473 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002474 "partial page write in btrfs with offset %u and length %u",
2475 bvec->bv_offset, bvec->bv_len);
2476 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002477 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002478 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002479 bvec->bv_offset, bvec->bv_len);
2480 }
Chris Masond1310b22008-01-24 16:13:08 -05002481
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002482 start = page_offset(page);
2483 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002484
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002485 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002486 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002487 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002488
Chris Masond1310b22008-01-24 16:13:08 -05002489 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002490}
2491
Miao Xie883d0de2013-07-25 19:22:35 +08002492static void
2493endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2494 int uptodate)
2495{
2496 struct extent_state *cached = NULL;
2497 u64 end = start + len - 1;
2498
2499 if (uptodate && tree->track_uptodate)
2500 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002501 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002502}
2503
Chris Masond1310b22008-01-24 16:13:08 -05002504/*
2505 * after a readpage IO is done, we need to:
2506 * clear the uptodate bits on error
2507 * set the uptodate bits if things worked
2508 * set the page up to date if all extents in the tree are uptodate
2509 * clear the lock bit in the extent tree
2510 * unlock the page if there are no other extents locked for it
2511 *
2512 * Scheduling is not allowed, so the extent state tree is expected
2513 * to have one and only one object corresponding to this IO.
2514 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002515static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002516{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002517 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002518 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002519 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002520 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002521 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002522 u64 start;
2523 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002524 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002525 u64 extent_start = 0;
2526 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002527 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002528 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002529 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002530
David Sterbac09abff2017-07-13 18:10:07 +02002531 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002532 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002533 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002534 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002535 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002536
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002537 btrfs_debug(fs_info,
2538 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002539 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002540 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002541 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002542 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002543
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002544 /* We always issue full-page reads, but if some block
2545 * in a page fails to read, blk_update_request() will
2546 * advance bv_offset and adjust bv_len to compensate.
2547 * Print a warning for nonzero offsets, and an error
2548 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002549 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2550 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002551 btrfs_err(fs_info,
2552 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002553 bvec->bv_offset, bvec->bv_len);
2554 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002555 btrfs_info(fs_info,
2556 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002557 bvec->bv_offset, bvec->bv_len);
2558 }
Chris Masond1310b22008-01-24 16:13:08 -05002559
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002560 start = page_offset(page);
2561 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002562 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002563
Chris Mason9be33952013-05-17 18:30:14 -04002564 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002565 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002566 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2567 page, start, end,
2568 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002569 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002570 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002571 else
Josef Bacik7870d082017-05-05 11:57:15 -04002572 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2573 failure_tree, tree, start,
2574 page,
2575 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002576 }
Josef Bacikea466792012-03-26 21:57:36 -04002577
Miao Xief2a09da2013-07-25 19:22:33 +08002578 if (likely(uptodate))
2579 goto readpage_ok;
2580
David Sterba20a7db82017-02-17 16:24:29 +01002581 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002582 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002583 if (ret == -EAGAIN) {
2584 /*
2585 * Data inode's readpage_io_failed_hook() always
2586 * returns -EAGAIN.
2587 *
2588 * The generic bio_readpage_error handles errors
2589 * the following way: If possible, new read
2590 * requests are created and submitted and will
2591 * end up in end_bio_extent_readpage as well (if
2592 * we're lucky, not in the !uptodate case). In
2593 * that case it returns 0 and we just go on with
2594 * the next page in our bio. If it can't handle
2595 * the error it will return -EIO and we remain
2596 * responsible for that page.
2597 */
2598 ret = bio_readpage_error(bio, offset, page,
2599 start, end, mirror);
2600 if (ret == 0) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002601 uptodate = !bio->bi_status;
Liu Bo9d0d1c82017-03-24 15:04:50 -07002602 offset += len;
2603 continue;
2604 }
Chris Mason7e383262008-04-09 16:28:12 -04002605 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002606
2607 /*
2608 * metadata's readpage_io_failed_hook() always returns
2609 * -EIO and fixes nothing. -EIO is also returned if
2610 * data inode error could not be fixed.
2611 */
2612 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002613 }
Miao Xief2a09da2013-07-25 19:22:33 +08002614readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002615 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002616 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002617 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002618 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002619
2620 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002621 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002622 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002623 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002624 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002625 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002626 ClearPageUptodate(page);
2627 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002628 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002629 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002630 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002631
2632 if (unlikely(!uptodate)) {
2633 if (extent_len) {
2634 endio_readpage_release_extent(tree,
2635 extent_start,
2636 extent_len, 1);
2637 extent_start = 0;
2638 extent_len = 0;
2639 }
2640 endio_readpage_release_extent(tree, start,
2641 end - start + 1, 0);
2642 } else if (!extent_len) {
2643 extent_start = start;
2644 extent_len = end + 1 - start;
2645 } else if (extent_start + extent_len == start) {
2646 extent_len += end + 1 - start;
2647 } else {
2648 endio_readpage_release_extent(tree, extent_start,
2649 extent_len, uptodate);
2650 extent_start = start;
2651 extent_len = end + 1 - start;
2652 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002653 }
Chris Masond1310b22008-01-24 16:13:08 -05002654
Miao Xie883d0de2013-07-25 19:22:35 +08002655 if (extent_len)
2656 endio_readpage_release_extent(tree, extent_start, extent_len,
2657 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002658 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002659 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
Chris Masond1310b22008-01-24 16:13:08 -05002660 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002661}
2662
Chris Mason9be33952013-05-17 18:30:14 -04002663/*
David Sterba184f9992017-06-12 17:29:39 +02002664 * Initialize the members up to but not including 'bio'. Use after allocating a
2665 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2666 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002667 */
David Sterba184f9992017-06-12 17:29:39 +02002668static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002669{
David Sterba184f9992017-06-12 17:29:39 +02002670 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2671}
2672
2673/*
David Sterba6e707bc2017-06-02 17:26:26 +02002674 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2675 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2676 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002677 */
David Sterbac821e7f32017-06-02 18:35:36 +02002678struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002679{
2680 struct bio *bio;
2681
David Sterba9f2179a2017-06-02 17:55:44 +02002682 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002683 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002684 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002685 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002686 return bio;
2687}
2688
David Sterba8b6c1d52017-06-02 17:48:13 +02002689struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002690{
Miao Xie23ea8e52014-09-12 18:43:54 +08002691 struct btrfs_io_bio *btrfs_bio;
2692 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002693
David Sterba6e707bc2017-06-02 17:26:26 +02002694 /* Bio allocation backed by a bioset does not fail */
David Sterba8b6c1d52017-06-02 17:48:13 +02002695 new = bio_clone_fast(bio, GFP_NOFS, btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002696 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002697 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002698 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002699 return new;
2700}
Chris Mason9be33952013-05-17 18:30:14 -04002701
David Sterbac5e4c3d2017-06-12 17:29:41 +02002702struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002703{
Miao Xiefacc8a222013-07-25 19:22:34 +08002704 struct bio *bio;
2705
David Sterba6e707bc2017-06-02 17:26:26 +02002706 /* Bio allocation backed by a bioset does not fail */
David Sterbac5e4c3d2017-06-12 17:29:41 +02002707 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002708 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002709 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002710}
2711
Liu Boe4770942017-05-16 10:57:14 -07002712struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002713{
2714 struct bio *bio;
2715 struct btrfs_io_bio *btrfs_bio;
2716
2717 /* this will never fail when it's backed by a bioset */
Liu Boe4770942017-05-16 10:57:14 -07002718 bio = bio_clone_fast(orig, GFP_NOFS, btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002719 ASSERT(bio);
2720
2721 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002722 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002723
2724 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002725 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002726 return bio;
2727}
Chris Mason9be33952013-05-17 18:30:14 -04002728
Mike Christie1f7ad752016-06-05 14:31:51 -05002729static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2730 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002731{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002732 blk_status_t ret = 0;
Ming Leic45a8f22017-12-18 20:22:05 +08002733 struct bio_vec *bvec = bio_last_bvec_all(bio);
Chris Mason70dec802008-01-29 09:59:12 -05002734 struct page *page = bvec->bv_page;
2735 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002736 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002737
Miao Xie4eee4fa2012-12-21 09:17:45 +00002738 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002739
David Woodhouse902b22f2008-08-20 08:51:49 -04002740 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002741
David Sterba20c98012017-02-17 15:59:35 +01002742 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002743 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002744 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002745 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002746 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002747
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002748 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002749}
2750
David Sterba4b81ba42017-06-06 19:14:26 +02002751/*
2752 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002753 * @tree: tree so we can call our merge_bio hook
2754 * @wbc: optional writeback control for io accounting
2755 * @page: page to add to the bio
2756 * @pg_offset: offset of the new bio or to check whether we are adding
2757 * a contiguous page to the previous one
2758 * @size: portion of page that we want to write
2759 * @offset: starting offset in the page
2760 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002761 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002762 * @end_io_func: end_io callback for new bio
2763 * @mirror_num: desired mirror to read/write
2764 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2765 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002766 */
2767static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002768 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002769 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002770 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002771 struct block_device *bdev,
2772 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002773 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002774 int mirror_num,
2775 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002776 unsigned long bio_flags,
2777 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002778{
2779 int ret = 0;
2780 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002781 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002782 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002783
David Sterba5c2b1fd2017-06-06 19:22:55 +02002784 ASSERT(bio_ret);
2785
2786 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002787 bool contig;
2788 bool can_merge = true;
2789
Chris Masond1310b22008-01-24 16:13:08 -05002790 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002791 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002792 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002793 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002794 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002795
David Sterba0c8508a2017-06-12 20:00:43 +02002796 if (tree->ops && tree->ops->merge_bio_hook(page, offset,
2797 page_size, bio, bio_flags))
2798 can_merge = false;
2799
2800 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002801 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002802 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002803 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002804 if (ret < 0) {
2805 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002806 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002807 }
Chris Masond1310b22008-01-24 16:13:08 -05002808 bio = NULL;
2809 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002810 if (wbc)
2811 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002812 return 0;
2813 }
2814 }
Chris Masonc8b97812008-10-29 14:49:59 -04002815
David Sterba6273b7f2017-10-04 17:30:11 +02002816 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002817 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002818 bio->bi_end_io = end_io_func;
2819 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002820 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002821 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002822 if (wbc) {
2823 wbc_init_bio(wbc, bio);
2824 wbc_account_io(wbc, page, page_size);
2825 }
Chris Mason70dec802008-01-29 09:59:12 -05002826
David Sterba5c2b1fd2017-06-06 19:22:55 +02002827 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002828
2829 return ret;
2830}
2831
Eric Sandeen48a3b632013-04-25 20:41:01 +00002832static void attach_extent_buffer_page(struct extent_buffer *eb,
2833 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002834{
2835 if (!PagePrivate(page)) {
2836 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002837 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002838 set_page_private(page, (unsigned long)eb);
2839 } else {
2840 WARN_ON(page->private != (unsigned long)eb);
2841 }
2842}
2843
Chris Masond1310b22008-01-24 16:13:08 -05002844void set_page_extent_mapped(struct page *page)
2845{
2846 if (!PagePrivate(page)) {
2847 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002848 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002849 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002850 }
2851}
2852
Miao Xie125bac012013-07-25 19:22:37 +08002853static struct extent_map *
2854__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2855 u64 start, u64 len, get_extent_t *get_extent,
2856 struct extent_map **em_cached)
2857{
2858 struct extent_map *em;
2859
2860 if (em_cached && *em_cached) {
2861 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002862 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002863 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002864 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002865 return em;
2866 }
2867
2868 free_extent_map(em);
2869 *em_cached = NULL;
2870 }
2871
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02002872 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002873 if (em_cached && !IS_ERR_OR_NULL(em)) {
2874 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002875 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002876 *em_cached = em;
2877 }
2878 return em;
2879}
Chris Masond1310b22008-01-24 16:13:08 -05002880/*
2881 * basic readpage implementation. Locked extent state structs are inserted
2882 * into the tree that are removed when the IO is done (by the end_io
2883 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002884 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002885 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002886 */
Miao Xie99740902013-07-25 19:22:36 +08002887static int __do_readpage(struct extent_io_tree *tree,
2888 struct page *page,
2889 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002890 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002891 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002892 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002893 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002894{
2895 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002896 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002897 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002898 u64 cur = start;
2899 u64 extent_offset;
2900 u64 last_byte = i_size_read(inode);
2901 u64 block_start;
2902 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002903 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
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002915 if (!PageUptodate(page)) {
2916 if (cleancache_get_page(page) == 0) {
2917 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002918 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002919 goto out;
2920 }
2921 }
2922
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002923 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002924 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002925 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002926
2927 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002928 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002929 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002930 memset(userpage + zero_offset, 0, iosize);
2931 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002932 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002933 }
2934 }
Chris Masond1310b22008-01-24 16:13:08 -05002935 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002936 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002937 u64 offset;
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,
David Sterbae43bbe52017-12-12 21:43:52 +01002951 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05002952 break;
2953 }
Miao Xie125bac012013-07-25 19:22:37 +08002954 em = __get_extent_map(inode, page, pg_offset, cur,
2955 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002956 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002957 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002958 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002959 break;
2960 }
Chris Masond1310b22008-01-24 16:13:08 -05002961 extent_offset = cur - em->start;
2962 BUG_ON(extent_map_end(em) <= cur);
2963 BUG_ON(end < cur);
2964
Li Zefan261507a02010-12-17 14:21:50 +08002965 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002966 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002967 extent_set_compress_type(&this_bio_flag,
2968 em->compress_type);
2969 }
Chris Masonc8b97812008-10-29 14:49:59 -04002970
Chris Masond1310b22008-01-24 16:13:08 -05002971 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2972 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002973 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002974 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2975 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002976 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002977 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002978 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002979 disk_io_size = iosize;
2980 }
Chris Masond1310b22008-01-24 16:13:08 -05002981 bdev = em->bdev;
2982 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002983 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2984 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002985
2986 /*
2987 * If we have a file range that points to a compressed extent
2988 * and it's followed by a consecutive file range that points to
2989 * to the same compressed extent (possibly with a different
2990 * offset and/or length, so it either points to the whole extent
2991 * or only part of it), we must make sure we do not submit a
2992 * single bio to populate the pages for the 2 ranges because
2993 * this makes the compressed extent read zero out the pages
2994 * belonging to the 2nd range. Imagine the following scenario:
2995 *
2996 * File layout
2997 * [0 - 8K] [8K - 24K]
2998 * | |
2999 * | |
3000 * points to extent X, points to extent X,
3001 * offset 4K, length of 8K offset 0, length 16K
3002 *
3003 * [extent X, compressed length = 4K uncompressed length = 16K]
3004 *
3005 * If the bio to read the compressed extent covers both ranges,
3006 * it will decompress extent X into the pages belonging to the
3007 * first range and then it will stop, zeroing out the remaining
3008 * pages that belong to the other range that points to extent X.
3009 * So here we make sure we submit 2 bios, one for the first
3010 * range and another one for the third range. Both will target
3011 * the same physical extent from disk, but we can't currently
3012 * make the compressed bio endio callback populate the pages
3013 * for both ranges because each compressed bio is tightly
3014 * coupled with a single extent map, and each range can have
3015 * an extent map with a different offset value relative to the
3016 * uncompressed data of our extent and different lengths. This
3017 * is a corner case so we prioritize correctness over
3018 * non-optimal behavior (submitting 2 bios for the same extent).
3019 */
3020 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3021 prev_em_start && *prev_em_start != (u64)-1 &&
3022 *prev_em_start != em->orig_start)
3023 force_bio_submit = true;
3024
3025 if (prev_em_start)
3026 *prev_em_start = em->orig_start;
3027
Chris Masond1310b22008-01-24 16:13:08 -05003028 free_extent_map(em);
3029 em = NULL;
3030
3031 /* we've found a hole, just zero and go on */
3032 if (block_start == EXTENT_MAP_HOLE) {
3033 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003034 struct extent_state *cached = NULL;
3035
Cong Wang7ac687d2011-11-25 23:14:28 +08003036 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003037 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003038 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003039 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003040
3041 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003042 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003043 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003044 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003045 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003046 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003047 continue;
3048 }
3049 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003050 if (test_range_bit(tree, cur, cur_end,
3051 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003052 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003053 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003054 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003055 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003056 continue;
3057 }
Chris Mason70dec802008-01-29 09:59:12 -05003058 /* we have an inline extent but it didn't get marked up
3059 * to date. Error out
3060 */
3061 if (block_start == EXTENT_MAP_INLINE) {
3062 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003063 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003064 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003065 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003066 continue;
3067 }
Chris Masond1310b22008-01-24 16:13:08 -05003068
David Sterba4b81ba42017-06-06 19:14:26 +02003069 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003070 page, offset, disk_io_size,
3071 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003072 end_bio_extent_readpage, mirror_num,
3073 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003074 this_bio_flag,
3075 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003076 if (!ret) {
3077 nr++;
3078 *bio_flags = this_bio_flag;
3079 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003080 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003081 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003082 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003083 }
Chris Masond1310b22008-01-24 16:13:08 -05003084 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003085 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003086 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003087out:
Chris Masond1310b22008-01-24 16:13:08 -05003088 if (!nr) {
3089 if (!PageError(page))
3090 SetPageUptodate(page);
3091 unlock_page(page);
3092 }
Liu Bobaf863b2016-07-11 10:39:07 -07003093 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003094}
3095
Miao Xie99740902013-07-25 19:22:36 +08003096static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3097 struct page *pages[], int nr_pages,
3098 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003099 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003100 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003101 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003102 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003103{
3104 struct inode *inode;
3105 struct btrfs_ordered_extent *ordered;
3106 int index;
3107
3108 inode = pages[0]->mapping->host;
3109 while (1) {
3110 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003111 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003112 end - start + 1);
3113 if (!ordered)
3114 break;
3115 unlock_extent(tree, start, end);
3116 btrfs_start_ordered_extent(inode, ordered, 1);
3117 btrfs_put_ordered_extent(ordered);
3118 }
3119
3120 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003121 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
3122 bio, 0, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003123 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003124 }
3125}
3126
3127static void __extent_readpages(struct extent_io_tree *tree,
3128 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003129 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003130 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003131 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003132 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003133{
Stefan Behrens35a36212013-08-14 18:12:25 +02003134 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003135 u64 end = 0;
3136 u64 page_start;
3137 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003138 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003139
3140 for (index = 0; index < nr_pages; index++) {
3141 page_start = page_offset(pages[index]);
3142 if (!end) {
3143 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003144 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003145 first_index = index;
3146 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003147 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003148 } else {
3149 __do_contiguous_readpages(tree, &pages[first_index],
3150 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003151 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003152 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003153 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003154 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003155 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003156 first_index = index;
3157 }
3158 }
3159
3160 if (end)
3161 __do_contiguous_readpages(tree, &pages[first_index],
3162 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003163 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003164 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003165}
3166
3167static int __extent_read_full_page(struct extent_io_tree *tree,
3168 struct page *page,
3169 get_extent_t *get_extent,
3170 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003171 unsigned long *bio_flags,
3172 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003173{
3174 struct inode *inode = page->mapping->host;
3175 struct btrfs_ordered_extent *ordered;
3176 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003177 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003178 int ret;
3179
3180 while (1) {
3181 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003182 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003183 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003184 if (!ordered)
3185 break;
3186 unlock_extent(tree, start, end);
3187 btrfs_start_ordered_extent(inode, ordered, 1);
3188 btrfs_put_ordered_extent(ordered);
3189 }
3190
Miao Xie125bac012013-07-25 19:22:37 +08003191 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003192 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003193 return ret;
3194}
3195
Chris Masond1310b22008-01-24 16:13:08 -05003196int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003197 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003198{
3199 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003200 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003201 int ret;
3202
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003203 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003204 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003205 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003206 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003207 return ret;
3208}
Chris Masond1310b22008-01-24 16:13:08 -05003209
David Sterba3d4b9492017-02-10 19:33:41 +01003210static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003211 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003212{
3213 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003214}
3215
Chris Masond1310b22008-01-24 16:13:08 -05003216/*
Chris Mason40f76582014-05-21 13:35:51 -07003217 * helper for __extent_writepage, doing all of the delayed allocation setup.
3218 *
3219 * This returns 1 if our fill_delalloc function did all the work required
3220 * to write the page (copy into inline extent). In this case the IO has
3221 * been started and the page is already unlocked.
3222 *
3223 * This returns 0 if all went well (page still locked)
3224 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003225 */
Chris Mason40f76582014-05-21 13:35:51 -07003226static noinline_for_stack int writepage_delalloc(struct inode *inode,
3227 struct page *page, struct writeback_control *wbc,
3228 struct extent_page_data *epd,
3229 u64 delalloc_start,
3230 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003231{
Chris Mason40f76582014-05-21 13:35:51 -07003232 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003233 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003234 u64 nr_delalloc;
3235 u64 delalloc_to_write = 0;
3236 u64 delalloc_end = 0;
3237 int ret;
3238 int page_started = 0;
3239
3240 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3241 return 0;
3242
3243 while (delalloc_end < page_end) {
3244 nr_delalloc = find_lock_delalloc_range(inode, tree,
3245 page,
3246 &delalloc_start,
3247 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003248 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003249 if (nr_delalloc == 0) {
3250 delalloc_start = delalloc_end + 1;
3251 continue;
3252 }
3253 ret = tree->ops->fill_delalloc(inode, page,
3254 delalloc_start,
3255 delalloc_end,
3256 &page_started,
Liu Bof82b7352017-10-23 23:18:16 -06003257 nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003258 /* File system has been set read-only */
3259 if (ret) {
3260 SetPageError(page);
3261 /* fill_delalloc should be return < 0 for error
3262 * but just in case, we use > 0 here meaning the
3263 * IO is started, so we don't want to return > 0
3264 * unless things are going well.
3265 */
3266 ret = ret < 0 ? ret : -EIO;
3267 goto done;
3268 }
3269 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003270 * delalloc_end is already one less than the total length, so
3271 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003272 */
3273 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003274 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003275 delalloc_start = delalloc_end + 1;
3276 }
3277 if (wbc->nr_to_write < delalloc_to_write) {
3278 int thresh = 8192;
3279
3280 if (delalloc_to_write < thresh * 2)
3281 thresh = delalloc_to_write;
3282 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3283 thresh);
3284 }
3285
3286 /* did the fill delalloc function already unlock and start
3287 * the IO?
3288 */
3289 if (page_started) {
3290 /*
3291 * we've unlocked the page, so we can't update
3292 * the mapping's writeback index, just update
3293 * nr_to_write.
3294 */
3295 wbc->nr_to_write -= *nr_written;
3296 return 1;
3297 }
3298
3299 ret = 0;
3300
3301done:
3302 return ret;
3303}
3304
3305/*
3306 * helper for __extent_writepage. This calls the writepage start hooks,
3307 * and does the loop to map the page into extents and bios.
3308 *
3309 * We return 1 if the IO is started and the page is unlocked,
3310 * 0 if all went well (page still locked)
3311 * < 0 if there were errors (page still locked)
3312 */
3313static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3314 struct page *page,
3315 struct writeback_control *wbc,
3316 struct extent_page_data *epd,
3317 loff_t i_size,
3318 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003319 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003320{
Chris Masond1310b22008-01-24 16:13:08 -05003321 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003322 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003323 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003324 u64 end;
3325 u64 cur = start;
3326 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003327 u64 block_start;
3328 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003329 struct extent_map *em;
3330 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003331 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003332 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003333 int ret = 0;
3334 int nr = 0;
3335 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003336
Chris Mason247e7432008-07-17 12:53:51 -04003337 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003338 ret = tree->ops->writepage_start_hook(page, start,
3339 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003340 if (ret) {
3341 /* Fixup worker will requeue */
3342 if (ret == -EBUSY)
3343 wbc->pages_skipped++;
3344 else
3345 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003346
David Sterba3d4b9492017-02-10 19:33:41 +01003347 update_nr_written(wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003348 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003349 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003350 }
3351 }
3352
Chris Mason11c83492009-04-20 15:50:09 -04003353 /*
3354 * we don't want to touch the inode after unlocking the page,
3355 * so we update the mapping writeback index now
3356 */
David Sterba3d4b9492017-02-10 19:33:41 +01003357 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003358
Chris Masond1310b22008-01-24 16:13:08 -05003359 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003360 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003361 if (tree->ops && tree->ops->writepage_end_io_hook)
3362 tree->ops->writepage_end_io_hook(page, start,
3363 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003364 goto done;
3365 }
3366
Chris Masond1310b22008-01-24 16:13:08 -05003367 blocksize = inode->i_sb->s_blocksize;
3368
3369 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003370 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003371 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003372
Chris Mason40f76582014-05-21 13:35:51 -07003373 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003374 if (tree->ops && tree->ops->writepage_end_io_hook)
3375 tree->ops->writepage_end_io_hook(page, cur,
3376 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003377 break;
3378 }
David Sterba3c98c622017-06-23 04:01:08 +02003379 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003380 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003381 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003382 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003383 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003384 break;
3385 }
3386
3387 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003388 em_end = extent_map_end(em);
3389 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003390 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003391 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003392 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003393 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003394 bdev = em->bdev;
3395 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003396 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003397 free_extent_map(em);
3398 em = NULL;
3399
Chris Masonc8b97812008-10-29 14:49:59 -04003400 /*
3401 * compressed and inline extents are written through other
3402 * paths in the FS
3403 */
3404 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003405 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003406 /*
3407 * end_io notification does not happen here for
3408 * compressed extents
3409 */
3410 if (!compressed && tree->ops &&
3411 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003412 tree->ops->writepage_end_io_hook(page, cur,
3413 cur + iosize - 1,
3414 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003415 else if (compressed) {
3416 /* we don't want to end_page_writeback on
3417 * a compressed extent. this happens
3418 * elsewhere
3419 */
3420 nr++;
3421 }
3422
3423 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003424 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003425 continue;
3426 }
Chris Masonc8b97812008-10-29 14:49:59 -04003427
David Sterba58409ed2016-05-04 11:46:10 +02003428 set_range_writeback(tree, cur, cur + iosize - 1);
3429 if (!PageWriteback(page)) {
3430 btrfs_err(BTRFS_I(inode)->root->fs_info,
3431 "page %lu not writeback, cur %llu end %llu",
3432 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003433 }
David Sterba58409ed2016-05-04 11:46:10 +02003434
David Sterba4b81ba42017-06-06 19:14:26 +02003435 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003436 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003437 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003438 end_bio_extent_writepage,
3439 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003440 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003441 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003442 if (PageWriteback(page))
3443 end_page_writeback(page);
3444 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003445
Chris Masond1310b22008-01-24 16:13:08 -05003446 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003447 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003448 nr++;
3449 }
3450done:
Chris Mason40f76582014-05-21 13:35:51 -07003451 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003452 return ret;
3453}
3454
3455/*
3456 * the writepage semantics are similar to regular writepage. extent
3457 * records are inserted to lock ranges in the tree, and as dirty areas
3458 * are found, they are marked writeback. Then the lock bits are removed
3459 * and the end_io handler clears the writeback ranges
3460 */
3461static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003462 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003463{
3464 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003465 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003466 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003467 int ret;
3468 int nr = 0;
3469 size_t pg_offset = 0;
3470 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003471 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003472 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003473 unsigned long nr_written = 0;
3474
Liu Boff40adf2017-08-24 18:19:48 -06003475 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003476
3477 trace___extent_writepage(page, inode, wbc);
3478
3479 WARN_ON(!PageLocked(page));
3480
3481 ClearPageError(page);
3482
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003483 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003484 if (page->index > end_index ||
3485 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003486 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003487 unlock_page(page);
3488 return 0;
3489 }
3490
3491 if (page->index == end_index) {
3492 char *userpage;
3493
3494 userpage = kmap_atomic(page);
3495 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003496 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003497 kunmap_atomic(userpage);
3498 flush_dcache_page(page);
3499 }
3500
3501 pg_offset = 0;
3502
3503 set_page_extent_mapped(page);
3504
3505 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3506 if (ret == 1)
3507 goto done_unlocked;
3508 if (ret)
3509 goto done;
3510
3511 ret = __extent_writepage_io(inode, page, wbc, epd,
3512 i_size, nr_written, write_flags, &nr);
3513 if (ret == 1)
3514 goto done_unlocked;
3515
3516done:
Chris Masond1310b22008-01-24 16:13:08 -05003517 if (nr == 0) {
3518 /* make sure the mapping tag for page dirty gets cleared */
3519 set_page_writeback(page);
3520 end_page_writeback(page);
3521 }
Filipe Manana61391d52014-05-09 17:17:40 +01003522 if (PageError(page)) {
3523 ret = ret < 0 ? ret : -EIO;
3524 end_extent_writepage(page, ret, start, page_end);
3525 }
Chris Masond1310b22008-01-24 16:13:08 -05003526 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003527 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003528
Chris Mason11c83492009-04-20 15:50:09 -04003529done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003530 return 0;
3531}
3532
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003533void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003534{
NeilBrown74316202014-07-07 15:16:04 +10003535 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3536 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003537}
3538
Chris Mason0e378df2014-05-19 20:55:27 -07003539static noinline_for_stack int
3540lock_extent_buffer_for_io(struct extent_buffer *eb,
3541 struct btrfs_fs_info *fs_info,
3542 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003543{
3544 unsigned long i, num_pages;
3545 int flush = 0;
3546 int ret = 0;
3547
3548 if (!btrfs_try_tree_write_lock(eb)) {
3549 flush = 1;
3550 flush_write_bio(epd);
3551 btrfs_tree_lock(eb);
3552 }
3553
3554 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3555 btrfs_tree_unlock(eb);
3556 if (!epd->sync_io)
3557 return 0;
3558 if (!flush) {
3559 flush_write_bio(epd);
3560 flush = 1;
3561 }
Chris Masona098d8e2012-03-21 12:09:56 -04003562 while (1) {
3563 wait_on_extent_buffer_writeback(eb);
3564 btrfs_tree_lock(eb);
3565 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3566 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003567 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003568 }
3569 }
3570
Josef Bacik51561ff2012-07-20 16:25:24 -04003571 /*
3572 * We need to do this to prevent races in people who check if the eb is
3573 * under IO since we can end up having no IO bits set for a short period
3574 * of time.
3575 */
3576 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003577 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3578 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003579 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003580 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003581 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3582 -eb->len,
3583 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003585 } else {
3586 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003587 }
3588
3589 btrfs_tree_unlock(eb);
3590
3591 if (!ret)
3592 return ret;
3593
3594 num_pages = num_extent_pages(eb->start, eb->len);
3595 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003596 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003597
3598 if (!trylock_page(p)) {
3599 if (!flush) {
3600 flush_write_bio(epd);
3601 flush = 1;
3602 }
3603 lock_page(p);
3604 }
3605 }
3606
3607 return ret;
3608}
3609
3610static void end_extent_buffer_writeback(struct extent_buffer *eb)
3611{
3612 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003613 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003614 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3615}
3616
Filipe Manana656f30d2014-09-26 12:25:56 +01003617static void set_btree_ioerr(struct page *page)
3618{
3619 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003620
3621 SetPageError(page);
3622 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3623 return;
3624
3625 /*
3626 * If writeback for a btree extent that doesn't belong to a log tree
3627 * failed, increment the counter transaction->eb_write_errors.
3628 * We do this because while the transaction is running and before it's
3629 * committing (when we call filemap_fdata[write|wait]_range against
3630 * the btree inode), we might have
3631 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3632 * returns an error or an error happens during writeback, when we're
3633 * committing the transaction we wouldn't know about it, since the pages
3634 * can be no longer dirty nor marked anymore for writeback (if a
3635 * subsequent modification to the extent buffer didn't happen before the
3636 * transaction commit), which makes filemap_fdata[write|wait]_range not
3637 * able to find the pages tagged with SetPageError at transaction
3638 * commit time. So if this happens we must abort the transaction,
3639 * otherwise we commit a super block with btree roots that point to
3640 * btree nodes/leafs whose content on disk is invalid - either garbage
3641 * or the content of some node/leaf from a past generation that got
3642 * cowed or deleted and is no longer valid.
3643 *
3644 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3645 * not be enough - we need to distinguish between log tree extents vs
3646 * non-log tree extents, and the next filemap_fdatawait_range() call
3647 * will catch and clear such errors in the mapping - and that call might
3648 * be from a log sync and not from a transaction commit. Also, checking
3649 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3650 * not done and would not be reliable - the eb might have been released
3651 * from memory and reading it back again means that flag would not be
3652 * set (since it's a runtime flag, not persisted on disk).
3653 *
3654 * Using the flags below in the btree inode also makes us achieve the
3655 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3656 * writeback for all dirty pages and before filemap_fdatawait_range()
3657 * is called, the writeback for all dirty pages had already finished
3658 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3659 * filemap_fdatawait_range() would return success, as it could not know
3660 * that writeback errors happened (the pages were no longer tagged for
3661 * writeback).
3662 */
3663 switch (eb->log_index) {
3664 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003665 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003666 break;
3667 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003668 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003669 break;
3670 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003671 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003672 break;
3673 default:
3674 BUG(); /* unexpected, logic error */
3675 }
3676}
3677
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003678static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003679{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003680 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003681 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003682 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003683
David Sterbac09abff2017-07-13 18:10:07 +02003684 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003685 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003686 struct page *page = bvec->bv_page;
3687
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003688 eb = (struct extent_buffer *)page->private;
3689 BUG_ON(!eb);
3690 done = atomic_dec_and_test(&eb->io_pages);
3691
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003692 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003693 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003694 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003695 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003696 }
3697
3698 end_page_writeback(page);
3699
3700 if (!done)
3701 continue;
3702
3703 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003704 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003705
3706 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707}
3708
Chris Mason0e378df2014-05-19 20:55:27 -07003709static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003710 struct btrfs_fs_info *fs_info,
3711 struct writeback_control *wbc,
3712 struct extent_page_data *epd)
3713{
3714 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003715 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003716 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003717 u32 nritems;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003718 unsigned long i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003719 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003720 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003721 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003722
Filipe Manana656f30d2014-09-26 12:25:56 +01003723 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003724 num_pages = num_extent_pages(eb->start, eb->len);
3725 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003726
Liu Bo851cd172016-09-23 13:44:44 -07003727 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3728 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003729 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003730 end = btrfs_node_key_ptr_offset(nritems);
3731
David Sterbab159fa22016-11-08 18:09:03 +01003732 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003733 } else {
3734 /*
3735 * leaf:
3736 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3737 */
3738 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003739 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003740 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003741 }
3742
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003743 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003744 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003745
3746 clear_page_dirty_for_io(p);
3747 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003748 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003749 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003750 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003751 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003752 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003754 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003755 if (PageWriteback(p))
3756 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003757 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3758 end_extent_buffer_writeback(eb);
3759 ret = -EIO;
3760 break;
3761 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003762 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003763 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003764 unlock_page(p);
3765 }
3766
3767 if (unlikely(ret)) {
3768 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003769 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003770 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771 unlock_page(p);
3772 }
3773 }
3774
3775 return ret;
3776}
3777
3778int btree_write_cache_pages(struct address_space *mapping,
3779 struct writeback_control *wbc)
3780{
3781 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3782 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3783 struct extent_buffer *eb, *prev_eb = NULL;
3784 struct extent_page_data epd = {
3785 .bio = NULL,
3786 .tree = tree,
3787 .extent_locked = 0,
3788 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3789 };
3790 int ret = 0;
3791 int done = 0;
3792 int nr_to_write_done = 0;
3793 struct pagevec pvec;
3794 int nr_pages;
3795 pgoff_t index;
3796 pgoff_t end; /* Inclusive */
3797 int scanned = 0;
3798 int tag;
3799
Mel Gorman86679822017-11-15 17:37:52 -08003800 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003801 if (wbc->range_cyclic) {
3802 index = mapping->writeback_index; /* Start from prev offset */
3803 end = -1;
3804 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003805 index = wbc->range_start >> PAGE_SHIFT;
3806 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003807 scanned = 1;
3808 }
3809 if (wbc->sync_mode == WB_SYNC_ALL)
3810 tag = PAGECACHE_TAG_TOWRITE;
3811 else
3812 tag = PAGECACHE_TAG_DIRTY;
3813retry:
3814 if (wbc->sync_mode == WB_SYNC_ALL)
3815 tag_pages_for_writeback(mapping, index, end);
3816 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003817 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003818 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003819 unsigned i;
3820
3821 scanned = 1;
3822 for (i = 0; i < nr_pages; i++) {
3823 struct page *page = pvec.pages[i];
3824
3825 if (!PagePrivate(page))
3826 continue;
3827
Josef Bacikb5bae262012-09-14 13:43:01 -04003828 spin_lock(&mapping->private_lock);
3829 if (!PagePrivate(page)) {
3830 spin_unlock(&mapping->private_lock);
3831 continue;
3832 }
3833
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003834 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003835
3836 /*
3837 * Shouldn't happen and normally this would be a BUG_ON
3838 * but no sense in crashing the users box for something
3839 * we can survive anyway.
3840 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303841 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003842 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003843 continue;
3844 }
3845
Josef Bacikb5bae262012-09-14 13:43:01 -04003846 if (eb == prev_eb) {
3847 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003848 continue;
3849 }
3850
Josef Bacikb5bae262012-09-14 13:43:01 -04003851 ret = atomic_inc_not_zero(&eb->refs);
3852 spin_unlock(&mapping->private_lock);
3853 if (!ret)
3854 continue;
3855
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003856 prev_eb = eb;
3857 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3858 if (!ret) {
3859 free_extent_buffer(eb);
3860 continue;
3861 }
3862
3863 ret = write_one_eb(eb, fs_info, wbc, &epd);
3864 if (ret) {
3865 done = 1;
3866 free_extent_buffer(eb);
3867 break;
3868 }
3869 free_extent_buffer(eb);
3870
3871 /*
3872 * the filesystem may choose to bump up nr_to_write.
3873 * We have to make sure to honor the new nr_to_write
3874 * at any time
3875 */
3876 nr_to_write_done = wbc->nr_to_write <= 0;
3877 }
3878 pagevec_release(&pvec);
3879 cond_resched();
3880 }
3881 if (!scanned && !done) {
3882 /*
3883 * We hit the last page and there is more work to be done: wrap
3884 * back to the start of the file
3885 */
3886 scanned = 1;
3887 index = 0;
3888 goto retry;
3889 }
3890 flush_write_bio(&epd);
3891 return ret;
3892}
3893
Chris Masond1310b22008-01-24 16:13:08 -05003894/**
Chris Mason4bef0842008-09-08 11:18:08 -04003895 * 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 -05003896 * @mapping: address space structure to write
3897 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003898 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003899 *
3900 * If a page is already under I/O, write_cache_pages() skips it, even
3901 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3902 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3903 * and msync() need to guarantee that all the data which was dirty at the time
3904 * the call was made get new I/O started against them. If wbc->sync_mode is
3905 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3906 * existing IO to complete.
3907 */
David Sterba4242b642017-02-10 19:38:24 +01003908static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003909 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003910 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003911{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003912 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003913 int ret = 0;
3914 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003915 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003916 struct pagevec pvec;
3917 int nr_pages;
3918 pgoff_t index;
3919 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003920 pgoff_t done_index;
3921 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003922 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003923 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003924
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003925 /*
3926 * We have to hold onto the inode so that ordered extents can do their
3927 * work when the IO finishes. The alternative to this is failing to add
3928 * an ordered extent if the igrab() fails there and that is a huge pain
3929 * to deal with, so instead just hold onto the inode throughout the
3930 * writepages operation. If it fails here we are freeing up the inode
3931 * anyway and we'd rather not waste our time writing out stuff that is
3932 * going to be truncated anyway.
3933 */
3934 if (!igrab(inode))
3935 return 0;
3936
Mel Gorman86679822017-11-15 17:37:52 -08003937 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003938 if (wbc->range_cyclic) {
3939 index = mapping->writeback_index; /* Start from prev offset */
3940 end = -1;
3941 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003942 index = wbc->range_start >> PAGE_SHIFT;
3943 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003944 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3945 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003946 scanned = 1;
3947 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003948 if (wbc->sync_mode == WB_SYNC_ALL)
3949 tag = PAGECACHE_TAG_TOWRITE;
3950 else
3951 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003952retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003953 if (wbc->sync_mode == WB_SYNC_ALL)
3954 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003955 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003956 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003957 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3958 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003959 unsigned i;
3960
3961 scanned = 1;
3962 for (i = 0; i < nr_pages; i++) {
3963 struct page *page = pvec.pages[i];
3964
Liu Boa91326672016-03-07 16:56:21 -08003965 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003966 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003967 * At this point we hold neither the i_pages lock nor
3968 * the page lock: the page may be truncated or
3969 * invalidated (changing page->mapping to NULL),
3970 * or even swizzled back from swapper_space to
3971 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003972 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003973 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003974 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003975 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003976 }
Chris Masond1310b22008-01-24 16:13:08 -05003977
3978 if (unlikely(page->mapping != mapping)) {
3979 unlock_page(page);
3980 continue;
3981 }
3982
Chris Masond2c3f4f2008-11-19 12:44:22 -05003983 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003984 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003985 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003986 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003987 }
Chris Masond1310b22008-01-24 16:13:08 -05003988
3989 if (PageWriteback(page) ||
3990 !clear_page_dirty_for_io(page)) {
3991 unlock_page(page);
3992 continue;
3993 }
3994
David Sterbaaab6e9e2017-11-30 18:00:02 +01003995 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003996
3997 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3998 unlock_page(page);
3999 ret = 0;
4000 }
Liu Boa91326672016-03-07 16:56:21 -08004001 if (ret < 0) {
4002 /*
4003 * done_index is set past this page,
4004 * so media errors will not choke
4005 * background writeout for the entire
4006 * file. This has consequences for
4007 * range_cyclic semantics (ie. it may
4008 * not be suitable for data integrity
4009 * writeout).
4010 */
4011 done_index = page->index + 1;
4012 done = 1;
4013 break;
4014 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004015
4016 /*
4017 * the filesystem may choose to bump up nr_to_write.
4018 * We have to make sure to honor the new nr_to_write
4019 * at any time
4020 */
4021 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004022 }
4023 pagevec_release(&pvec);
4024 cond_resched();
4025 }
Liu Bo894b36e2016-03-07 16:56:22 -08004026 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004027 /*
4028 * We hit the last page and there is more work to be done: wrap
4029 * back to the start of the file
4030 */
4031 scanned = 1;
4032 index = 0;
4033 goto retry;
4034 }
Liu Boa91326672016-03-07 16:56:21 -08004035
4036 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4037 mapping->writeback_index = done_index;
4038
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004039 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004040 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004041}
Chris Masond1310b22008-01-24 16:13:08 -05004042
David Sterbaaab6e9e2017-11-30 18:00:02 +01004043static void flush_write_bio(struct extent_page_data *epd)
Chris Masonffbd5172009-04-20 15:50:09 -04004044{
4045 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004046 int ret;
4047
Liu Bo18fdc672017-09-13 12:18:22 -06004048 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004049 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004050 epd->bio = NULL;
4051 }
4052}
4053
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004054int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004055{
4056 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004057 struct extent_page_data epd = {
4058 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004059 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004060 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004061 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004062 };
Chris Masond1310b22008-01-24 16:13:08 -05004063
Chris Masond1310b22008-01-24 16:13:08 -05004064 ret = __extent_writepage(page, wbc, &epd);
4065
David Sterbae2932ee2017-06-23 04:16:17 +02004066 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004067 return ret;
4068}
Chris Masond1310b22008-01-24 16:13:08 -05004069
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004070int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004071 int mode)
4072{
4073 int ret = 0;
4074 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004075 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004076 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004077 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4078 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004079
4080 struct extent_page_data epd = {
4081 .bio = NULL,
4082 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004083 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004084 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004085 };
4086 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004087 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004088 .nr_to_write = nr_pages * 2,
4089 .range_start = start,
4090 .range_end = end + 1,
4091 };
4092
Chris Masond3977122009-01-05 21:25:51 -05004093 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004094 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004095 if (clear_page_dirty_for_io(page))
4096 ret = __extent_writepage(page, &wbc_writepages, &epd);
4097 else {
4098 if (tree->ops && tree->ops->writepage_end_io_hook)
4099 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004100 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004101 NULL, 1);
4102 unlock_page(page);
4103 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004104 put_page(page);
4105 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004106 }
4107
David Sterbae2932ee2017-06-23 04:16:17 +02004108 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004109 return ret;
4110}
Chris Masond1310b22008-01-24 16:13:08 -05004111
4112int extent_writepages(struct extent_io_tree *tree,
4113 struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004114 struct writeback_control *wbc)
4115{
4116 int ret = 0;
4117 struct extent_page_data epd = {
4118 .bio = NULL,
4119 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004120 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004121 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004122 };
4123
David Sterba935db852017-06-23 04:30:28 +02004124 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004125 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004126 return ret;
4127}
Chris Masond1310b22008-01-24 16:13:08 -05004128
4129int extent_readpages(struct extent_io_tree *tree,
4130 struct address_space *mapping,
David Sterba09325842017-06-23 04:09:57 +02004131 struct list_head *pages, unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004132{
4133 struct bio *bio = NULL;
4134 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004135 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004136 struct page *pagepool[16];
4137 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004138 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004139 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004140 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004141
Chris Masond1310b22008-01-24 16:13:08 -05004142 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004143 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004144
4145 prefetchw(&page->flags);
4146 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004147 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004148 page->index,
4149 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004150 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004151 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004152 }
Liu Bo67c96842012-07-20 21:43:09 -06004153
4154 pagepool[nr++] = page;
4155 if (nr < ARRAY_SIZE(pagepool))
4156 continue;
David Sterbae4d17ef2017-06-23 04:09:57 +02004157 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4158 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004159 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004160 }
Miao Xie99740902013-07-25 19:22:36 +08004161 if (nr)
David Sterbae4d17ef2017-06-23 04:09:57 +02004162 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4163 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004164
Miao Xie125bac012013-07-25 19:22:37 +08004165 if (em_cached)
4166 free_extent_map(em_cached);
4167
Chris Masond1310b22008-01-24 16:13:08 -05004168 BUG_ON(!list_empty(pages));
4169 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004170 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004171 return 0;
4172}
Chris Masond1310b22008-01-24 16:13:08 -05004173
4174/*
4175 * basic invalidatepage code, this waits on any locked or writeback
4176 * ranges corresponding to the page, and then deletes any extent state
4177 * records from the tree
4178 */
4179int extent_invalidatepage(struct extent_io_tree *tree,
4180 struct page *page, unsigned long offset)
4181{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004182 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004183 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004184 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004185 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4186
Qu Wenruofda28322013-02-26 08:10:22 +00004187 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004188 if (start > end)
4189 return 0;
4190
David Sterbaff13db42015-12-03 14:30:40 +01004191 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004192 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004193 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004194 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4195 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004196 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004197 return 0;
4198}
Chris Masond1310b22008-01-24 16:13:08 -05004199
4200/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004201 * a helper for releasepage, this tests for areas of the page that
4202 * are locked or under IO and drops the related state bits if it is safe
4203 * to drop the page.
4204 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004205static int try_release_extent_state(struct extent_map_tree *map,
4206 struct extent_io_tree *tree,
4207 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004208{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004209 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004210 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004211 int ret = 1;
4212
Chris Mason211f90e2008-07-18 11:56:15 -04004213 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004214 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004215 ret = 0;
4216 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004217 /*
4218 * at this point we can safely clear everything except the
4219 * locked bit and the nodatasum bit
4220 */
David Sterba66b0c882017-10-31 16:30:47 +01004221 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004222 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004223 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004224
4225 /* if clear_extent_bit failed for enomem reasons,
4226 * we can't allow the release to continue.
4227 */
4228 if (ret < 0)
4229 ret = 0;
4230 else
4231 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004232 }
4233 return ret;
4234}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004235
4236/*
Chris Masond1310b22008-01-24 16:13:08 -05004237 * a helper for releasepage. As long as there are no locked extents
4238 * in the range corresponding to the page, both state records and extent
4239 * map records are removed
4240 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004241int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004242{
4243 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004244 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004245 u64 end = start + PAGE_SIZE - 1;
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004246 struct extent_io_tree *tree = &BTRFS_I(page->mapping->host)->io_tree;
4247 struct extent_map_tree *map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004248
Mel Gormand0164ad2015-11-06 16:28:21 -08004249 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004250 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004251 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004252 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004253 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004254 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004255 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004256 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004257 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004258 break;
4259 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004260 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4261 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004262 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004263 free_extent_map(em);
4264 break;
4265 }
4266 if (!test_range_bit(tree, em->start,
4267 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004268 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004269 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004270 remove_extent_mapping(map, em);
4271 /* once for the rb tree */
4272 free_extent_map(em);
4273 }
4274 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004275 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004276
4277 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004278 free_extent_map(em);
4279 }
Chris Masond1310b22008-01-24 16:13:08 -05004280 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004281 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004282}
Chris Masond1310b22008-01-24 16:13:08 -05004283
Chris Masonec29ed52011-02-23 16:23:20 -05004284/*
4285 * helper function for fiemap, which doesn't want to see any holes.
4286 * This maps until we find something past 'last'
4287 */
4288static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004289 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004290{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004291 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004292 struct extent_map *em;
4293 u64 len;
4294
4295 if (offset >= last)
4296 return NULL;
4297
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304298 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004299 len = last - offset;
4300 if (len == 0)
4301 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004302 len = ALIGN(len, sectorsize);
David Sterbae3350e12017-06-23 04:09:57 +02004303 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0, offset,
4304 len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004305 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004306 return em;
4307
4308 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004309 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004310 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004311
4312 /* this is a hole, advance to the next extent */
4313 offset = extent_map_end(em);
4314 free_extent_map(em);
4315 if (offset >= last)
4316 break;
4317 }
4318 return NULL;
4319}
4320
Qu Wenruo47518322017-04-07 10:43:15 +08004321/*
4322 * To cache previous fiemap extent
4323 *
4324 * Will be used for merging fiemap extent
4325 */
4326struct fiemap_cache {
4327 u64 offset;
4328 u64 phys;
4329 u64 len;
4330 u32 flags;
4331 bool cached;
4332};
4333
4334/*
4335 * Helper to submit fiemap extent.
4336 *
4337 * Will try to merge current fiemap extent specified by @offset, @phys,
4338 * @len and @flags with cached one.
4339 * And only when we fails to merge, cached one will be submitted as
4340 * fiemap extent.
4341 *
4342 * Return value is the same as fiemap_fill_next_extent().
4343 */
4344static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4345 struct fiemap_cache *cache,
4346 u64 offset, u64 phys, u64 len, u32 flags)
4347{
4348 int ret = 0;
4349
4350 if (!cache->cached)
4351 goto assign;
4352
4353 /*
4354 * Sanity check, extent_fiemap() should have ensured that new
4355 * fiemap extent won't overlap with cahced one.
4356 * Not recoverable.
4357 *
4358 * NOTE: Physical address can overlap, due to compression
4359 */
4360 if (cache->offset + cache->len > offset) {
4361 WARN_ON(1);
4362 return -EINVAL;
4363 }
4364
4365 /*
4366 * Only merges fiemap extents if
4367 * 1) Their logical addresses are continuous
4368 *
4369 * 2) Their physical addresses are continuous
4370 * So truly compressed (physical size smaller than logical size)
4371 * extents won't get merged with each other
4372 *
4373 * 3) Share same flags except FIEMAP_EXTENT_LAST
4374 * So regular extent won't get merged with prealloc extent
4375 */
4376 if (cache->offset + cache->len == offset &&
4377 cache->phys + cache->len == phys &&
4378 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4379 (flags & ~FIEMAP_EXTENT_LAST)) {
4380 cache->len += len;
4381 cache->flags |= flags;
4382 goto try_submit_last;
4383 }
4384
4385 /* Not mergeable, need to submit cached one */
4386 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4387 cache->len, cache->flags);
4388 cache->cached = false;
4389 if (ret)
4390 return ret;
4391assign:
4392 cache->cached = true;
4393 cache->offset = offset;
4394 cache->phys = phys;
4395 cache->len = len;
4396 cache->flags = flags;
4397try_submit_last:
4398 if (cache->flags & FIEMAP_EXTENT_LAST) {
4399 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4400 cache->phys, cache->len, cache->flags);
4401 cache->cached = false;
4402 }
4403 return ret;
4404}
4405
4406/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004407 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004408 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004409 * The last fiemap cache may still be cached in the following case:
4410 * 0 4k 8k
4411 * |<- Fiemap range ->|
4412 * |<------------ First extent ----------->|
4413 *
4414 * In this case, the first extent range will be cached but not emitted.
4415 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004416 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004417static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4418 struct fiemap_extent_info *fieinfo,
4419 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004420{
4421 int ret;
4422
4423 if (!cache->cached)
4424 return 0;
4425
Qu Wenruo47518322017-04-07 10:43:15 +08004426 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4427 cache->len, cache->flags);
4428 cache->cached = false;
4429 if (ret > 0)
4430 ret = 0;
4431 return ret;
4432}
4433
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004434int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004435 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004436{
Josef Bacik975f84f2010-11-23 19:36:57 +00004437 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004438 u64 off = start;
4439 u64 max = start + len;
4440 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004441 u32 found_type;
4442 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004443 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004444 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004445 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004446 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004447 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004448 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004449 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004450 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004451 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004452 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004453 u64 em_start = 0;
4454 u64 em_len = 0;
4455 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004456
4457 if (len == 0)
4458 return -EINVAL;
4459
Josef Bacik975f84f2010-11-23 19:36:57 +00004460 path = btrfs_alloc_path();
4461 if (!path)
4462 return -ENOMEM;
4463 path->leave_spinning = 1;
4464
Jeff Mahoneyda170662016-06-15 09:22:56 -04004465 start = round_down(start, btrfs_inode_sectorsize(inode));
4466 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004467
Chris Masonec29ed52011-02-23 16:23:20 -05004468 /*
4469 * lookup the last file extent. We're not using i_size here
4470 * because there might be preallocation past i_size
4471 */
David Sterbaf85b7372017-01-20 14:54:07 +01004472 ret = btrfs_lookup_file_extent(NULL, root, path,
4473 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004474 if (ret < 0) {
4475 btrfs_free_path(path);
4476 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004477 } else {
4478 WARN_ON(!ret);
4479 if (ret == 1)
4480 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004481 }
Liu Bo2d324f52016-05-17 17:21:48 -07004482
Josef Bacik975f84f2010-11-23 19:36:57 +00004483 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004484 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004485 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004486
Chris Masonec29ed52011-02-23 16:23:20 -05004487 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004488 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004489 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004490 /* have to trust i_size as the end */
4491 last = (u64)-1;
4492 last_for_get_extent = isize;
4493 } else {
4494 /*
4495 * remember the start of the last extent. There are a
4496 * bunch of different factors that go into the length of the
4497 * extent, so its much less complex to remember where it started
4498 */
4499 last = found_key.offset;
4500 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004501 }
Liu Bofe09e162013-09-22 12:54:23 +08004502 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004503
Chris Masonec29ed52011-02-23 16:23:20 -05004504 /*
4505 * we might have some extents allocated but more delalloc past those
4506 * extents. so, we trust isize unless the start of the last extent is
4507 * beyond isize
4508 */
4509 if (last < isize) {
4510 last = (u64)-1;
4511 last_for_get_extent = isize;
4512 }
4513
David Sterbaff13db42015-12-03 14:30:40 +01004514 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004515 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004516
David Sterbae3350e12017-06-23 04:09:57 +02004517 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004518 if (!em)
4519 goto out;
4520 if (IS_ERR(em)) {
4521 ret = PTR_ERR(em);
4522 goto out;
4523 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004524
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004525 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004526 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004527
Chris Masonea8efc72011-03-08 11:54:40 -05004528 /* break if the extent we found is outside the range */
4529 if (em->start >= max || extent_map_end(em) < off)
4530 break;
4531
4532 /*
4533 * get_extent may return an extent that starts before our
4534 * requested range. We have to make sure the ranges
4535 * we return to fiemap always move forward and don't
4536 * overlap, so adjust the offsets here
4537 */
4538 em_start = max(em->start, off);
4539
4540 /*
4541 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004542 * for adjusting the disk offset below. Only do this if the
4543 * extent isn't compressed since our in ram offset may be past
4544 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004545 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004546 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4547 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004548 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004549 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004550 disko = 0;
4551 flags = 0;
4552
Chris Masonea8efc72011-03-08 11:54:40 -05004553 /*
4554 * bump off for our next call to get_extent
4555 */
4556 off = extent_map_end(em);
4557 if (off >= max)
4558 end = 1;
4559
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004560 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004561 end = 1;
4562 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004563 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004564 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4565 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004566 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004567 flags |= (FIEMAP_EXTENT_DELALLOC |
4568 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004569 } else if (fieinfo->fi_extents_max) {
4570 u64 bytenr = em->block_start -
4571 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004572
Chris Masonea8efc72011-03-08 11:54:40 -05004573 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004574
4575 /*
4576 * As btrfs supports shared space, this information
4577 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004578 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4579 * then we're just getting a count and we can skip the
4580 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004581 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004582 ret = btrfs_check_shared(root,
4583 btrfs_ino(BTRFS_I(inode)),
4584 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004585 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004586 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004587 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004588 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004589 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004590 }
4591 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4592 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004593 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4594 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004595
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004596 free_extent_map(em);
4597 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004598 if ((em_start >= last) || em_len == (u64)-1 ||
4599 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004600 flags |= FIEMAP_EXTENT_LAST;
4601 end = 1;
4602 }
4603
Chris Masonec29ed52011-02-23 16:23:20 -05004604 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004605 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004606 if (IS_ERR(em)) {
4607 ret = PTR_ERR(em);
4608 goto out;
4609 }
4610 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004611 flags |= FIEMAP_EXTENT_LAST;
4612 end = 1;
4613 }
Qu Wenruo47518322017-04-07 10:43:15 +08004614 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4615 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004616 if (ret) {
4617 if (ret == 1)
4618 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004619 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004620 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004621 }
4622out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004623 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004624 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004625 free_extent_map(em);
4626out:
Liu Bofe09e162013-09-22 12:54:23 +08004627 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004628 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004629 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004630 return ret;
4631}
4632
Chris Mason727011e2010-08-06 13:21:20 -04004633static void __free_extent_buffer(struct extent_buffer *eb)
4634{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004635 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004636 kmem_cache_free(extent_buffer_cache, eb);
4637}
4638
Josef Bacika26e8c92014-03-28 17:07:27 -04004639int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004640{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004641 return (atomic_read(&eb->io_pages) ||
4642 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4643 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004644}
4645
Miao Xie897ca6e92010-10-26 20:57:29 -04004646/*
4647 * Helper for releasing extent buffer page.
4648 */
David Sterbaa50924e2014-07-31 00:51:36 +02004649static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004650{
4651 unsigned long index;
4652 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004653 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004654
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004655 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004656
David Sterbaa50924e2014-07-31 00:51:36 +02004657 index = num_extent_pages(eb->start, eb->len);
4658 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004659 return;
4660
4661 do {
4662 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004663 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004664 if (!page)
4665 continue;
4666 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004667 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004668 /*
4669 * We do this since we'll remove the pages after we've
4670 * removed the eb from the radix tree, so we could race
4671 * and have this page now attached to the new eb. So
4672 * only clear page_private if it's still connected to
4673 * this eb.
4674 */
4675 if (PagePrivate(page) &&
4676 page->private == (unsigned long)eb) {
4677 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4678 BUG_ON(PageDirty(page));
4679 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004680 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004681 * We need to make sure we haven't be attached
4682 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004683 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004684 ClearPagePrivate(page);
4685 set_page_private(page, 0);
4686 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004687 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004688 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004689
4690 if (mapped)
4691 spin_unlock(&page->mapping->private_lock);
4692
Nicholas D Steeves01327612016-05-19 21:18:45 -04004693 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004694 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004695 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004696}
4697
4698/*
4699 * Helper for releasing the extent buffer.
4700 */
4701static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4702{
David Sterbaa50924e2014-07-31 00:51:36 +02004703 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004704 __free_extent_buffer(eb);
4705}
4706
Josef Bacikf28491e2013-12-16 13:24:27 -05004707static struct extent_buffer *
4708__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004709 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004710{
4711 struct extent_buffer *eb = NULL;
4712
Michal Hockod1b5c562015-08-19 14:17:40 +02004713 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004714 eb->start = start;
4715 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004716 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004717 eb->bflags = 0;
4718 rwlock_init(&eb->lock);
4719 atomic_set(&eb->write_locks, 0);
4720 atomic_set(&eb->read_locks, 0);
4721 atomic_set(&eb->blocking_readers, 0);
4722 atomic_set(&eb->blocking_writers, 0);
4723 atomic_set(&eb->spinning_readers, 0);
4724 atomic_set(&eb->spinning_writers, 0);
4725 eb->lock_nested = 0;
4726 init_waitqueue_head(&eb->write_lock_wq);
4727 init_waitqueue_head(&eb->read_lock_wq);
4728
4729 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4730
4731 spin_lock_init(&eb->refs_lock);
4732 atomic_set(&eb->refs, 1);
4733 atomic_set(&eb->io_pages, 0);
4734
4735 /*
4736 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4737 */
4738 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4739 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4740 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4741
4742 return eb;
4743}
4744
4745struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4746{
4747 unsigned long i;
4748 struct page *p;
4749 struct extent_buffer *new;
4750 unsigned long num_pages = num_extent_pages(src->start, src->len);
4751
David Sterba3f556f72014-06-15 03:20:26 +02004752 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004753 if (new == NULL)
4754 return NULL;
4755
4756 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004757 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004758 if (!p) {
4759 btrfs_release_extent_buffer(new);
4760 return NULL;
4761 }
4762 attach_extent_buffer_page(new, p);
4763 WARN_ON(PageDirty(p));
4764 SetPageUptodate(p);
4765 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004766 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004767 }
4768
Josef Bacikdb7f3432013-08-07 14:54:37 -04004769 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4770 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4771
4772 return new;
4773}
4774
Omar Sandoval0f331222015-09-29 20:50:31 -07004775struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4776 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004777{
4778 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004779 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004780 unsigned long i;
4781
Omar Sandoval0f331222015-09-29 20:50:31 -07004782 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004783
4784 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004785 if (!eb)
4786 return NULL;
4787
4788 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004789 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004790 if (!eb->pages[i])
4791 goto err;
4792 }
4793 set_extent_buffer_uptodate(eb);
4794 btrfs_set_header_nritems(eb, 0);
4795 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4796
4797 return eb;
4798err:
4799 for (; i > 0; i--)
4800 __free_page(eb->pages[i - 1]);
4801 __free_extent_buffer(eb);
4802 return NULL;
4803}
4804
Omar Sandoval0f331222015-09-29 20:50:31 -07004805struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004806 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004807{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004808 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004809}
4810
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004811static void check_buffer_tree_ref(struct extent_buffer *eb)
4812{
Chris Mason242e18c2013-01-29 17:49:37 -05004813 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004814 /* the ref bit is tricky. We have to make sure it is set
4815 * if we have the buffer dirty. Otherwise the
4816 * code to free a buffer can end up dropping a dirty
4817 * page
4818 *
4819 * Once the ref bit is set, it won't go away while the
4820 * buffer is dirty or in writeback, and it also won't
4821 * go away while we have the reference count on the
4822 * eb bumped.
4823 *
4824 * We can't just set the ref bit without bumping the
4825 * ref on the eb because free_extent_buffer might
4826 * see the ref bit and try to clear it. If this happens
4827 * free_extent_buffer might end up dropping our original
4828 * ref by mistake and freeing the page before we are able
4829 * to add one more ref.
4830 *
4831 * So bump the ref count first, then set the bit. If someone
4832 * beat us to it, drop the ref we added.
4833 */
Chris Mason242e18c2013-01-29 17:49:37 -05004834 refs = atomic_read(&eb->refs);
4835 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4836 return;
4837
Josef Bacik594831c2012-07-20 16:11:08 -04004838 spin_lock(&eb->refs_lock);
4839 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004840 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004841 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004842}
4843
Mel Gorman2457aec2014-06-04 16:10:31 -07004844static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4845 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004846{
4847 unsigned long num_pages, i;
4848
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004849 check_buffer_tree_ref(eb);
4850
Josef Bacik5df42352012-03-15 18:24:42 -04004851 num_pages = num_extent_pages(eb->start, eb->len);
4852 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004853 struct page *p = eb->pages[i];
4854
Mel Gorman2457aec2014-06-04 16:10:31 -07004855 if (p != accessed)
4856 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004857 }
4858}
4859
Josef Bacikf28491e2013-12-16 13:24:27 -05004860struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4861 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004862{
4863 struct extent_buffer *eb;
4864
4865 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004866 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004867 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004868 if (eb && atomic_inc_not_zero(&eb->refs)) {
4869 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004870 /*
4871 * Lock our eb's refs_lock to avoid races with
4872 * free_extent_buffer. When we get our eb it might be flagged
4873 * with EXTENT_BUFFER_STALE and another task running
4874 * free_extent_buffer might have seen that flag set,
4875 * eb->refs == 2, that the buffer isn't under IO (dirty and
4876 * writeback flags not set) and it's still in the tree (flag
4877 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4878 * of decrementing the extent buffer's reference count twice.
4879 * So here we could race and increment the eb's reference count,
4880 * clear its stale flag, mark it as dirty and drop our reference
4881 * before the other task finishes executing free_extent_buffer,
4882 * which would later result in an attempt to free an extent
4883 * buffer that is dirty.
4884 */
4885 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4886 spin_lock(&eb->refs_lock);
4887 spin_unlock(&eb->refs_lock);
4888 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004889 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004890 return eb;
4891 }
4892 rcu_read_unlock();
4893
4894 return NULL;
4895}
4896
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004897#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4898struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004899 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004900{
4901 struct extent_buffer *eb, *exists = NULL;
4902 int ret;
4903
4904 eb = find_extent_buffer(fs_info, start);
4905 if (eb)
4906 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004907 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004908 if (!eb)
4909 return NULL;
4910 eb->fs_info = fs_info;
4911again:
David Sterbae1860a72016-05-09 14:11:38 +02004912 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004913 if (ret)
4914 goto free_eb;
4915 spin_lock(&fs_info->buffer_lock);
4916 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004917 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004918 spin_unlock(&fs_info->buffer_lock);
4919 radix_tree_preload_end();
4920 if (ret == -EEXIST) {
4921 exists = find_extent_buffer(fs_info, start);
4922 if (exists)
4923 goto free_eb;
4924 else
4925 goto again;
4926 }
4927 check_buffer_tree_ref(eb);
4928 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4929
4930 /*
4931 * We will free dummy extent buffer's if they come into
4932 * free_extent_buffer with a ref count of 2, but if we are using this we
4933 * want the buffers to stay in memory until we're done with them, so
4934 * bump the ref count again.
4935 */
4936 atomic_inc(&eb->refs);
4937 return eb;
4938free_eb:
4939 btrfs_release_extent_buffer(eb);
4940 return exists;
4941}
4942#endif
4943
Josef Bacikf28491e2013-12-16 13:24:27 -05004944struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004945 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004946{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004947 unsigned long len = fs_info->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004948 unsigned long num_pages = num_extent_pages(start, len);
4949 unsigned long i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004950 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004951 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004952 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004953 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004954 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004955 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004956 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004957
Jeff Mahoneyda170662016-06-15 09:22:56 -04004958 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004959 btrfs_err(fs_info, "bad tree block start %llu", start);
4960 return ERR_PTR(-EINVAL);
4961 }
4962
Josef Bacikf28491e2013-12-16 13:24:27 -05004963 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004964 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004965 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004966
David Sterba23d79d82014-06-15 02:55:29 +02004967 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004968 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004969 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004970
Chris Mason727011e2010-08-06 13:21:20 -04004971 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004972 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004973 if (!p) {
4974 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004975 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004976 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004977
4978 spin_lock(&mapping->private_lock);
4979 if (PagePrivate(p)) {
4980 /*
4981 * We could have already allocated an eb for this page
4982 * and attached one so lets see if we can get a ref on
4983 * the existing eb, and if we can we know it's good and
4984 * we can just return that one, else we know we can just
4985 * overwrite page->private.
4986 */
4987 exists = (struct extent_buffer *)p->private;
4988 if (atomic_inc_not_zero(&exists->refs)) {
4989 spin_unlock(&mapping->private_lock);
4990 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004991 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004992 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004993 goto free_eb;
4994 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004995 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004996
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004997 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004998 * Do this so attach doesn't complain and we need to
4999 * drop the ref the old guy had.
5000 */
5001 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005002 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005003 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005004 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005005 attach_extent_buffer_page(eb, p);
5006 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005007 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005008 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005009 if (!PageUptodate(p))
5010 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005011
5012 /*
5013 * see below about how we avoid a nasty race with release page
5014 * and why we unlock later
5015 */
Chris Masond1310b22008-01-24 16:13:08 -05005016 }
5017 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005018 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005019again:
David Sterbae1860a72016-05-09 14:11:38 +02005020 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005021 if (ret) {
5022 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005023 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005024 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005025
Josef Bacikf28491e2013-12-16 13:24:27 -05005026 spin_lock(&fs_info->buffer_lock);
5027 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005028 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005029 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005030 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005031 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005032 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005033 if (exists)
5034 goto free_eb;
5035 else
Josef Bacik115391d2012-03-09 09:51:43 -05005036 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005037 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005038 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005039 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005040 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005041
5042 /*
5043 * there is a race where release page may have
5044 * tried to find this extent buffer in the radix
5045 * but failed. It will tell the VM it is safe to
5046 * reclaim the, and it will clear the page private bit.
5047 * We must make sure to set the page private bit properly
5048 * after the extent buffer is in the radix tree so
5049 * it doesn't get lost
5050 */
Chris Mason727011e2010-08-06 13:21:20 -04005051 SetPageChecked(eb->pages[0]);
5052 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005053 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005054 ClearPageChecked(p);
5055 unlock_page(p);
5056 }
5057 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005058 return eb;
5059
Chris Mason6af118ce2008-07-22 11:18:07 -04005060free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005061 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005062 for (i = 0; i < num_pages; i++) {
5063 if (eb->pages[i])
5064 unlock_page(eb->pages[i]);
5065 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005066
Miao Xie897ca6e92010-10-26 20:57:29 -04005067 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005068 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005069}
Chris Masond1310b22008-01-24 16:13:08 -05005070
Josef Bacik3083ee22012-03-09 16:01:49 -05005071static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5072{
5073 struct extent_buffer *eb =
5074 container_of(head, struct extent_buffer, rcu_head);
5075
5076 __free_extent_buffer(eb);
5077}
5078
Josef Bacik3083ee22012-03-09 16:01:49 -05005079/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005080static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005081{
5082 WARN_ON(atomic_read(&eb->refs) == 0);
5083 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005084 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005085 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005086
Jan Schmidt815a51c2012-05-16 17:00:02 +02005087 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005088
Josef Bacikf28491e2013-12-16 13:24:27 -05005089 spin_lock(&fs_info->buffer_lock);
5090 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005091 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005092 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005093 } else {
5094 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005095 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005096
5097 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005098 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005099#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5100 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5101 __free_extent_buffer(eb);
5102 return 1;
5103 }
5104#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005105 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005106 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005107 }
5108 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005109
5110 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005111}
5112
Chris Masond1310b22008-01-24 16:13:08 -05005113void free_extent_buffer(struct extent_buffer *eb)
5114{
Chris Mason242e18c2013-01-29 17:49:37 -05005115 int refs;
5116 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005117 if (!eb)
5118 return;
5119
Chris Mason242e18c2013-01-29 17:49:37 -05005120 while (1) {
5121 refs = atomic_read(&eb->refs);
5122 if (refs <= 3)
5123 break;
5124 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5125 if (old == refs)
5126 return;
5127 }
5128
Josef Bacik3083ee22012-03-09 16:01:49 -05005129 spin_lock(&eb->refs_lock);
5130 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005131 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5132 atomic_dec(&eb->refs);
5133
5134 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005135 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005136 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005137 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5138 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005139
Josef Bacik3083ee22012-03-09 16:01:49 -05005140 /*
5141 * I know this is terrible, but it's temporary until we stop tracking
5142 * the uptodate bits and such for the extent buffers.
5143 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005144 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005145}
Chris Masond1310b22008-01-24 16:13:08 -05005146
Josef Bacik3083ee22012-03-09 16:01:49 -05005147void free_extent_buffer_stale(struct extent_buffer *eb)
5148{
5149 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005150 return;
5151
Josef Bacik3083ee22012-03-09 16:01:49 -05005152 spin_lock(&eb->refs_lock);
5153 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5154
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005155 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005156 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5157 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005158 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005159}
5160
Chris Mason1d4284b2012-03-28 20:31:37 -04005161void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005162{
Chris Masond1310b22008-01-24 16:13:08 -05005163 unsigned long i;
5164 unsigned long num_pages;
5165 struct page *page;
5166
Chris Masond1310b22008-01-24 16:13:08 -05005167 num_pages = num_extent_pages(eb->start, eb->len);
5168
5169 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005170 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005171 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005172 continue;
5173
Chris Masona61e6f22008-07-22 11:18:08 -04005174 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005175 WARN_ON(!PagePrivate(page));
5176
Chris Masond1310b22008-01-24 16:13:08 -05005177 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005178 xa_lock_irq(&page->mapping->i_pages);
Chris Masond1310b22008-01-24 16:13:08 -05005179 if (!PageDirty(page)) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005180 radix_tree_tag_clear(&page->mapping->i_pages,
Chris Masond1310b22008-01-24 16:13:08 -05005181 page_index(page),
5182 PAGECACHE_TAG_DIRTY);
5183 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005184 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005185 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005186 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005187 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005188 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005189}
Chris Masond1310b22008-01-24 16:13:08 -05005190
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005191int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005192{
5193 unsigned long i;
5194 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005195 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005196
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005197 check_buffer_tree_ref(eb);
5198
Chris Masonb9473432009-03-13 11:00:37 -04005199 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005200
Chris Masond1310b22008-01-24 16:13:08 -05005201 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005202 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005203 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5204
Chris Masonb9473432009-03-13 11:00:37 -04005205 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005206 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005207 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005208}
Chris Masond1310b22008-01-24 16:13:08 -05005209
David Sterba69ba3922015-12-03 13:08:59 +01005210void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005211{
5212 unsigned long i;
5213 struct page *page;
5214 unsigned long num_pages;
5215
Chris Masonb4ce94d2009-02-04 09:25:08 -05005216 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005217 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005218 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005219 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005220 if (page)
5221 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005222 }
Chris Mason1259ab72008-05-12 13:39:03 -04005223}
5224
David Sterba09c25a82015-12-03 13:08:59 +01005225void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005226{
5227 unsigned long i;
5228 struct page *page;
5229 unsigned long num_pages;
5230
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005231 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005232 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005233 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005234 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005235 SetPageUptodate(page);
5236 }
Chris Masond1310b22008-01-24 16:13:08 -05005237}
Chris Masond1310b22008-01-24 16:13:08 -05005238
Chris Masond1310b22008-01-24 16:13:08 -05005239int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005240 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005241{
5242 unsigned long i;
Chris Masond1310b22008-01-24 16:13:08 -05005243 struct page *page;
5244 int err;
5245 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005246 int locked_pages = 0;
5247 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005248 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005249 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005250 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005251 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005252
Chris Masonb4ce94d2009-02-04 09:25:08 -05005253 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005254 return 0;
5255
Chris Masond1310b22008-01-24 16:13:08 -05005256 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik8436ea912016-09-02 15:40:03 -04005257 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005258 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005259 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005260 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005261 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005262 } else {
5263 lock_page(page);
5264 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005265 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005266 }
5267 /*
5268 * We need to firstly lock all pages to make sure that
5269 * the uptodate bit of our pages won't be affected by
5270 * clear_extent_buffer_uptodate().
5271 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005272 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005273 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005274 if (!PageUptodate(page)) {
5275 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005276 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005277 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005278 }
Liu Bo2571e732016-08-03 12:33:01 -07005279
Chris Masonce9adaa2008-04-09 16:28:12 -04005280 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005281 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005282 goto unlock_exit;
5283 }
5284
Filipe Manana656f30d2014-09-26 12:25:56 +01005285 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005286 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005287 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005288 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005289 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005290
Chris Masonce9adaa2008-04-09 16:28:12 -04005291 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005292 if (ret) {
5293 atomic_dec(&eb->io_pages);
5294 unlock_page(page);
5295 continue;
5296 }
5297
Chris Masonf1885912008-04-09 16:28:12 -04005298 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005299 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005300 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005301 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005302 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005303 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005304 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005305 /*
5306 * We use &bio in above __extent_read_full_page,
5307 * so we ensure that if it returns error, the
5308 * current page fails to add itself to bio and
5309 * it's been unlocked.
5310 *
5311 * We must dec io_pages by ourselves.
5312 */
5313 atomic_dec(&eb->io_pages);
5314 }
Chris Masond1310b22008-01-24 16:13:08 -05005315 } else {
5316 unlock_page(page);
5317 }
5318 }
5319
Jeff Mahoney355808c2011-10-03 23:23:14 -04005320 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005321 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005322 if (err)
5323 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005324 }
Chris Masona86c12c2008-02-07 10:50:54 -05005325
Arne Jansenbb82ab82011-06-10 14:06:53 +02005326 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005327 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005328
Josef Bacik8436ea912016-09-02 15:40:03 -04005329 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005330 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005331 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005332 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005333 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005334 }
Chris Masond3977122009-01-05 21:25:51 -05005335
Chris Masond1310b22008-01-24 16:13:08 -05005336 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005337
5338unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005339 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005340 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005341 page = eb->pages[locked_pages];
5342 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005343 }
5344 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005345}
Chris Masond1310b22008-01-24 16:13:08 -05005346
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005347void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5348 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005349{
5350 size_t cur;
5351 size_t offset;
5352 struct page *page;
5353 char *kaddr;
5354 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005355 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5356 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005357
Liu Bof716abd2017-08-09 11:10:16 -06005358 if (start + len > eb->len) {
5359 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5360 eb->start, eb->len, start, len);
5361 memset(dst, 0, len);
5362 return;
5363 }
Chris Masond1310b22008-01-24 16:13:08 -05005364
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005365 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005366
Chris Masond3977122009-01-05 21:25:51 -05005367 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005368 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005369
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005370 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005371 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005372 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005373
5374 dst += cur;
5375 len -= cur;
5376 offset = 0;
5377 i++;
5378 }
5379}
Chris Masond1310b22008-01-24 16:13:08 -05005380
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005381int read_extent_buffer_to_user(const struct extent_buffer *eb,
5382 void __user *dstv,
5383 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005384{
5385 size_t cur;
5386 size_t offset;
5387 struct page *page;
5388 char *kaddr;
5389 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005390 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5391 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005392 int ret = 0;
5393
5394 WARN_ON(start > eb->len);
5395 WARN_ON(start + len > eb->start + eb->len);
5396
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005397 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005398
5399 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005400 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005401
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005402 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005403 kaddr = page_address(page);
5404 if (copy_to_user(dst, kaddr + offset, cur)) {
5405 ret = -EFAULT;
5406 break;
5407 }
5408
5409 dst += cur;
5410 len -= cur;
5411 offset = 0;
5412 i++;
5413 }
5414
5415 return ret;
5416}
5417
Liu Bo415b35a2016-06-17 19:16:21 -07005418/*
5419 * return 0 if the item is found within a page.
5420 * return 1 if the item spans two pages.
5421 * return -EINVAL otherwise.
5422 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005423int map_private_extent_buffer(const struct extent_buffer *eb,
5424 unsigned long start, unsigned long min_len,
5425 char **map, unsigned long *map_start,
5426 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005427{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005428 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005429 char *kaddr;
5430 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005431 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5432 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005433 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005434 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005435
Liu Bof716abd2017-08-09 11:10:16 -06005436 if (start + min_len > eb->len) {
5437 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5438 eb->start, eb->len, start, min_len);
5439 return -EINVAL;
5440 }
5441
Chris Masond1310b22008-01-24 16:13:08 -05005442 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005443 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005444
5445 if (i == 0) {
5446 offset = start_offset;
5447 *map_start = 0;
5448 } else {
5449 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005450 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005451 }
Chris Masond3977122009-01-05 21:25:51 -05005452
David Sterbafb85fc92014-07-31 01:03:53 +02005453 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005454 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005455 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005456 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005457 return 0;
5458}
Chris Masond1310b22008-01-24 16:13:08 -05005459
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005460int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5461 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005462{
5463 size_t cur;
5464 size_t offset;
5465 struct page *page;
5466 char *kaddr;
5467 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005468 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5469 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005470 int ret = 0;
5471
5472 WARN_ON(start > eb->len);
5473 WARN_ON(start + len > eb->start + eb->len);
5474
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005475 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005476
Chris Masond3977122009-01-05 21:25:51 -05005477 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005478 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005479
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005480 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005481
Chris Masona6591712011-07-19 12:04:14 -04005482 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005483 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005484 if (ret)
5485 break;
5486
5487 ptr += cur;
5488 len -= cur;
5489 offset = 0;
5490 i++;
5491 }
5492 return ret;
5493}
Chris Masond1310b22008-01-24 16:13:08 -05005494
David Sterbaf157bf72016-11-09 17:43:38 +01005495void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5496 const void *srcv)
5497{
5498 char *kaddr;
5499
5500 WARN_ON(!PageUptodate(eb->pages[0]));
5501 kaddr = page_address(eb->pages[0]);
5502 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5503 BTRFS_FSID_SIZE);
5504}
5505
5506void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5507{
5508 char *kaddr;
5509
5510 WARN_ON(!PageUptodate(eb->pages[0]));
5511 kaddr = page_address(eb->pages[0]);
5512 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5513 BTRFS_FSID_SIZE);
5514}
5515
Chris Masond1310b22008-01-24 16:13:08 -05005516void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5517 unsigned long start, unsigned long len)
5518{
5519 size_t cur;
5520 size_t offset;
5521 struct page *page;
5522 char *kaddr;
5523 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005524 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5525 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005526
5527 WARN_ON(start > eb->len);
5528 WARN_ON(start + len > eb->start + eb->len);
5529
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005530 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005531
Chris Masond3977122009-01-05 21:25:51 -05005532 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005533 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005534 WARN_ON(!PageUptodate(page));
5535
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005536 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005537 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005538 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005539
5540 src += cur;
5541 len -= cur;
5542 offset = 0;
5543 i++;
5544 }
5545}
Chris Masond1310b22008-01-24 16:13:08 -05005546
David Sterbab159fa22016-11-08 18:09:03 +01005547void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5548 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005549{
5550 size_t cur;
5551 size_t offset;
5552 struct page *page;
5553 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005554 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5555 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005556
5557 WARN_ON(start > eb->len);
5558 WARN_ON(start + len > eb->start + eb->len);
5559
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005560 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005561
Chris Masond3977122009-01-05 21:25:51 -05005562 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005563 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005564 WARN_ON(!PageUptodate(page));
5565
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005566 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005567 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005568 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005569
5570 len -= cur;
5571 offset = 0;
5572 i++;
5573 }
5574}
Chris Masond1310b22008-01-24 16:13:08 -05005575
David Sterba58e80122016-11-08 18:30:31 +01005576void copy_extent_buffer_full(struct extent_buffer *dst,
5577 struct extent_buffer *src)
5578{
5579 int i;
5580 unsigned num_pages;
5581
5582 ASSERT(dst->len == src->len);
5583
5584 num_pages = num_extent_pages(dst->start, dst->len);
5585 for (i = 0; i < num_pages; i++)
5586 copy_page(page_address(dst->pages[i]),
5587 page_address(src->pages[i]));
5588}
5589
Chris Masond1310b22008-01-24 16:13:08 -05005590void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5591 unsigned long dst_offset, unsigned long src_offset,
5592 unsigned long len)
5593{
5594 u64 dst_len = dst->len;
5595 size_t cur;
5596 size_t offset;
5597 struct page *page;
5598 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005599 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5600 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005601
5602 WARN_ON(src->len != dst_len);
5603
5604 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005605 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005606
Chris Masond3977122009-01-05 21:25:51 -05005607 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005608 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005609 WARN_ON(!PageUptodate(page));
5610
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005611 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005612
Chris Masona6591712011-07-19 12:04:14 -04005613 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005614 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005615
5616 src_offset += cur;
5617 len -= cur;
5618 offset = 0;
5619 i++;
5620 }
5621}
Chris Masond1310b22008-01-24 16:13:08 -05005622
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005623/*
5624 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5625 * given bit number
5626 * @eb: the extent buffer
5627 * @start: offset of the bitmap item in the extent buffer
5628 * @nr: bit number
5629 * @page_index: return index of the page in the extent buffer that contains the
5630 * given bit number
5631 * @page_offset: return offset into the page given by page_index
5632 *
5633 * This helper hides the ugliness of finding the byte in an extent buffer which
5634 * contains a given bit.
5635 */
5636static inline void eb_bitmap_offset(struct extent_buffer *eb,
5637 unsigned long start, unsigned long nr,
5638 unsigned long *page_index,
5639 size_t *page_offset)
5640{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005641 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005642 size_t byte_offset = BIT_BYTE(nr);
5643 size_t offset;
5644
5645 /*
5646 * The byte we want is the offset of the extent buffer + the offset of
5647 * the bitmap item in the extent buffer + the offset of the byte in the
5648 * bitmap item.
5649 */
5650 offset = start_offset + start + byte_offset;
5651
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005652 *page_index = offset >> PAGE_SHIFT;
5653 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005654}
5655
5656/**
5657 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5658 * @eb: the extent buffer
5659 * @start: offset of the bitmap item in the extent buffer
5660 * @nr: bit number to test
5661 */
5662int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5663 unsigned long nr)
5664{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005665 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005666 struct page *page;
5667 unsigned long i;
5668 size_t offset;
5669
5670 eb_bitmap_offset(eb, start, nr, &i, &offset);
5671 page = eb->pages[i];
5672 WARN_ON(!PageUptodate(page));
5673 kaddr = page_address(page);
5674 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5675}
5676
5677/**
5678 * extent_buffer_bitmap_set - set an area of a bitmap
5679 * @eb: the extent buffer
5680 * @start: offset of the bitmap item in the extent buffer
5681 * @pos: bit number of the first bit
5682 * @len: number of bits to set
5683 */
5684void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5685 unsigned long pos, unsigned long len)
5686{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005687 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005688 struct page *page;
5689 unsigned long i;
5690 size_t offset;
5691 const unsigned int size = pos + len;
5692 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005693 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005694
5695 eb_bitmap_offset(eb, start, pos, &i, &offset);
5696 page = eb->pages[i];
5697 WARN_ON(!PageUptodate(page));
5698 kaddr = page_address(page);
5699
5700 while (len >= bits_to_set) {
5701 kaddr[offset] |= mask_to_set;
5702 len -= bits_to_set;
5703 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005704 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005705 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005706 offset = 0;
5707 page = eb->pages[++i];
5708 WARN_ON(!PageUptodate(page));
5709 kaddr = page_address(page);
5710 }
5711 }
5712 if (len) {
5713 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5714 kaddr[offset] |= mask_to_set;
5715 }
5716}
5717
5718
5719/**
5720 * extent_buffer_bitmap_clear - clear an area of a bitmap
5721 * @eb: the extent buffer
5722 * @start: offset of the bitmap item in the extent buffer
5723 * @pos: bit number of the first bit
5724 * @len: number of bits to clear
5725 */
5726void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5727 unsigned long pos, unsigned long len)
5728{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005729 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005730 struct page *page;
5731 unsigned long i;
5732 size_t offset;
5733 const unsigned int size = pos + len;
5734 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005735 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005736
5737 eb_bitmap_offset(eb, start, pos, &i, &offset);
5738 page = eb->pages[i];
5739 WARN_ON(!PageUptodate(page));
5740 kaddr = page_address(page);
5741
5742 while (len >= bits_to_clear) {
5743 kaddr[offset] &= ~mask_to_clear;
5744 len -= bits_to_clear;
5745 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005746 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005747 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005748 offset = 0;
5749 page = eb->pages[++i];
5750 WARN_ON(!PageUptodate(page));
5751 kaddr = page_address(page);
5752 }
5753 }
5754 if (len) {
5755 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5756 kaddr[offset] &= ~mask_to_clear;
5757 }
5758}
5759
Sergei Trofimovich33872062011-04-11 21:52:52 +00005760static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5761{
5762 unsigned long distance = (src > dst) ? src - dst : dst - src;
5763 return distance < len;
5764}
5765
Chris Masond1310b22008-01-24 16:13:08 -05005766static void copy_pages(struct page *dst_page, struct page *src_page,
5767 unsigned long dst_off, unsigned long src_off,
5768 unsigned long len)
5769{
Chris Masona6591712011-07-19 12:04:14 -04005770 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005771 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005772 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005773
Sergei Trofimovich33872062011-04-11 21:52:52 +00005774 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005775 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005776 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005777 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005778 if (areas_overlap(src_off, dst_off, len))
5779 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005780 }
Chris Masond1310b22008-01-24 16:13:08 -05005781
Chris Mason727011e2010-08-06 13:21:20 -04005782 if (must_memmove)
5783 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5784 else
5785 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005786}
5787
5788void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5789 unsigned long src_offset, unsigned long len)
5790{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005791 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005792 size_t cur;
5793 size_t dst_off_in_page;
5794 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005795 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005796 unsigned long dst_i;
5797 unsigned long src_i;
5798
5799 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005800 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005801 "memmove bogus src_offset %lu move len %lu dst len %lu",
5802 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005803 BUG_ON(1);
5804 }
5805 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005806 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005807 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5808 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005809 BUG_ON(1);
5810 }
5811
Chris Masond3977122009-01-05 21:25:51 -05005812 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005813 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005814 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005815 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005816 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005817
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005818 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5819 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005820
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005821 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005822 src_off_in_page));
5823 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005824 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005825
David Sterbafb85fc92014-07-31 01:03:53 +02005826 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005827 dst_off_in_page, src_off_in_page, cur);
5828
5829 src_offset += cur;
5830 dst_offset += cur;
5831 len -= cur;
5832 }
5833}
Chris Masond1310b22008-01-24 16:13:08 -05005834
5835void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5836 unsigned long src_offset, unsigned long len)
5837{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005838 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005839 size_t cur;
5840 size_t dst_off_in_page;
5841 size_t src_off_in_page;
5842 unsigned long dst_end = dst_offset + len - 1;
5843 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005844 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005845 unsigned long dst_i;
5846 unsigned long src_i;
5847
5848 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005849 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005850 "memmove bogus src_offset %lu move len %lu len %lu",
5851 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005852 BUG_ON(1);
5853 }
5854 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005855 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005856 "memmove bogus dst_offset %lu move len %lu len %lu",
5857 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005858 BUG_ON(1);
5859 }
Chris Mason727011e2010-08-06 13:21:20 -04005860 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005861 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5862 return;
5863 }
Chris Masond3977122009-01-05 21:25:51 -05005864 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005865 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5866 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005867
5868 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005869 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005870 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005871 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005872
5873 cur = min_t(unsigned long, len, src_off_in_page + 1);
5874 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005875 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005876 dst_off_in_page - cur + 1,
5877 src_off_in_page - cur + 1, cur);
5878
5879 dst_end -= cur;
5880 src_end -= cur;
5881 len -= cur;
5882 }
5883}
Chris Mason6af118ce2008-07-22 11:18:07 -04005884
David Sterbaf7a52a42013-04-26 14:56:29 +00005885int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005886{
Chris Mason6af118ce2008-07-22 11:18:07 -04005887 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005888
Miao Xie19fe0a82010-10-26 20:57:29 -04005889 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005890 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005891 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005892 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005893 spin_lock(&page->mapping->private_lock);
5894 if (!PagePrivate(page)) {
5895 spin_unlock(&page->mapping->private_lock);
5896 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005897 }
5898
Josef Bacik3083ee22012-03-09 16:01:49 -05005899 eb = (struct extent_buffer *)page->private;
5900 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005901
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005902 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005903 * This is a little awful but should be ok, we need to make sure that
5904 * the eb doesn't disappear out from under us while we're looking at
5905 * this page.
5906 */
5907 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005908 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005909 spin_unlock(&eb->refs_lock);
5910 spin_unlock(&page->mapping->private_lock);
5911 return 0;
5912 }
5913 spin_unlock(&page->mapping->private_lock);
5914
Josef Bacik3083ee22012-03-09 16:01:49 -05005915 /*
5916 * If tree ref isn't set then we know the ref on this eb is a real ref,
5917 * so just return, this page will likely be freed soon anyway.
5918 */
5919 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5920 spin_unlock(&eb->refs_lock);
5921 return 0;
5922 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005923
David Sterbaf7a52a42013-04-26 14:56:29 +00005924 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005925}