blob: e9c74ce9623f5c126bdc84954760c4d07ac7f5f6 [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;
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -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
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400165 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
166 offsetof(struct btrfs_io_bio, bio),
167 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400168 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700169
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400170 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700171 goto free_bioset;
172
Chris Masond1310b22008-01-24 16:13:08 -0500173 return 0;
174
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700175free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400176 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700177
Chris Mason9be33952013-05-17 18:30:14 -0400178free_buffer_cache:
179 kmem_cache_destroy(extent_buffer_cache);
180 extent_buffer_cache = NULL;
181
Chris Masond1310b22008-01-24 16:13:08 -0500182free_state_cache:
183 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400184 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500185 return -ENOMEM;
186}
187
David Sterbae67c7182018-02-19 17:24:18 +0100188void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500189{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000190 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000191
192 /*
193 * Make sure all delayed rcu free are flushed before we
194 * destroy caches.
195 */
196 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800197 kmem_cache_destroy(extent_state_cache);
198 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400199 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500200}
201
202void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400203 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500204{
Eric Paris6bef4d32010-02-23 19:43:04 +0000205 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500206 tree->ops = NULL;
207 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500208 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400209 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500210}
Chris Masond1310b22008-01-24 16:13:08 -0500211
Christoph Hellwigb2950862008-12-02 09:54:17 -0500212static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500213{
214 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500215
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100216 /*
217 * The given mask might be not appropriate for the slab allocator,
218 * drop the unsupported bits
219 */
220 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500221 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400222 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500223 return state;
224 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100225 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100226 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000227 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200228 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500229 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100230 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500231 return state;
232}
Chris Masond1310b22008-01-24 16:13:08 -0500233
Chris Mason4845e442010-05-25 20:56:50 -0400234void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500235{
Chris Masond1310b22008-01-24 16:13:08 -0500236 if (!state)
237 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200238 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100239 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000240 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100241 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500242 kmem_cache_free(extent_state_cache, state);
243 }
244}
Chris Masond1310b22008-01-24 16:13:08 -0500245
Filipe Mananaf2071b22014-02-12 15:05:53 +0000246static struct rb_node *tree_insert(struct rb_root *root,
247 struct rb_node *search_start,
248 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000249 struct rb_node *node,
250 struct rb_node ***p_in,
251 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500252{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000253 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500254 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500255 struct tree_entry *entry;
256
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000257 if (p_in && parent_in) {
258 p = *p_in;
259 parent = *parent_in;
260 goto do_insert;
261 }
262
Filipe Mananaf2071b22014-02-12 15:05:53 +0000263 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500264 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500265 parent = *p;
266 entry = rb_entry(parent, struct tree_entry, rb_node);
267
268 if (offset < entry->start)
269 p = &(*p)->rb_left;
270 else if (offset > entry->end)
271 p = &(*p)->rb_right;
272 else
273 return parent;
274 }
275
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000276do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500277 rb_link_node(node, parent, p);
278 rb_insert_color(node, root);
279 return NULL;
280}
281
Chris Mason80ea96b2008-02-01 14:51:59 -0500282static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000283 struct rb_node **prev_ret,
284 struct rb_node **next_ret,
285 struct rb_node ***p_ret,
286 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500287{
Chris Mason80ea96b2008-02-01 14:51:59 -0500288 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000289 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500290 struct rb_node *prev = NULL;
291 struct rb_node *orig_prev = NULL;
292 struct tree_entry *entry;
293 struct tree_entry *prev_entry = NULL;
294
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000295 while (*n) {
296 prev = *n;
297 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500298 prev_entry = entry;
299
300 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000301 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500302 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000303 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500304 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000305 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500306 }
307
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000308 if (p_ret)
309 *p_ret = n;
310 if (parent_ret)
311 *parent_ret = prev;
312
Chris Masond1310b22008-01-24 16:13:08 -0500313 if (prev_ret) {
314 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500315 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500316 prev = rb_next(prev);
317 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
318 }
319 *prev_ret = prev;
320 prev = orig_prev;
321 }
322
323 if (next_ret) {
324 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500325 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500326 prev = rb_prev(prev);
327 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
328 }
329 *next_ret = prev;
330 }
331 return NULL;
332}
333
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000334static inline struct rb_node *
335tree_search_for_insert(struct extent_io_tree *tree,
336 u64 offset,
337 struct rb_node ***p_ret,
338 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500339{
Chris Mason70dec802008-01-29 09:59:12 -0500340 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500341 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500342
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000343 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500344 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500345 return prev;
346 return ret;
347}
348
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000349static inline struct rb_node *tree_search(struct extent_io_tree *tree,
350 u64 offset)
351{
352 return tree_search_for_insert(tree, offset, NULL, NULL);
353}
354
Josef Bacik9ed74f22009-09-11 16:12:44 -0400355static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
356 struct extent_state *other)
357{
358 if (tree->ops && tree->ops->merge_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400359 tree->ops->merge_extent_hook(tree->private_data, new, other);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400360}
361
Chris Masond1310b22008-01-24 16:13:08 -0500362/*
363 * utility function to look for merge candidates inside a given range.
364 * Any extents with matching state are merged together into a single
365 * extent in the tree. Extents with EXTENT_IO in their state field
366 * are not merged because the end_io handlers need to be able to do
367 * operations on them without sleeping (or doing allocations/splits).
368 *
369 * This should be called with the tree lock held.
370 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000371static void merge_state(struct extent_io_tree *tree,
372 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500373{
374 struct extent_state *other;
375 struct rb_node *other_node;
376
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400377 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000378 return;
Chris Masond1310b22008-01-24 16:13:08 -0500379
380 other_node = rb_prev(&state->rb_node);
381 if (other_node) {
382 other = rb_entry(other_node, struct extent_state, rb_node);
383 if (other->end == state->start - 1 &&
384 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400385 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500386 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500387 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100388 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500389 free_extent_state(other);
390 }
391 }
392 other_node = rb_next(&state->rb_node);
393 if (other_node) {
394 other = rb_entry(other_node, struct extent_state, rb_node);
395 if (other->start == state->end + 1 &&
396 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400397 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400398 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400399 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100400 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400401 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500402 }
403 }
Chris Masond1310b22008-01-24 16:13:08 -0500404}
405
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000406static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100407 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500408{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000409 if (tree->ops && tree->ops->set_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400410 tree->ops->set_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500411}
412
413static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100414 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500415{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400416 if (tree->ops && tree->ops->clear_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400417 tree->ops->clear_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500418}
419
Xiao Guangrong3150b692011-07-14 03:19:08 +0000420static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800421 struct extent_state *state, unsigned *bits,
422 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000423
Chris Masond1310b22008-01-24 16:13:08 -0500424/*
425 * insert an extent_state struct into the tree. 'bits' are set on the
426 * struct before it is inserted.
427 *
428 * This may return -EEXIST if the extent is already there, in which case the
429 * state struct is freed.
430 *
431 * The tree lock is not taken internally. This is a utility function and
432 * probably isn't what you want to call (see set/clear_extent_bit).
433 */
434static int insert_state(struct extent_io_tree *tree,
435 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000436 struct rb_node ***p,
437 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800438 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500439{
440 struct rb_node *node;
441
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000442 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500443 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200444 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500445 state->start = start;
446 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400447
Qu Wenruod38ed272015-10-12 14:53:37 +0800448 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000449
Filipe Mananaf2071b22014-02-12 15:05:53 +0000450 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500451 if (node) {
452 struct extent_state *found;
453 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400454 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200455 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500456 return -EEXIST;
457 }
458 merge_state(tree, state);
459 return 0;
460}
461
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000462static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400463 u64 split)
464{
465 if (tree->ops && tree->ops->split_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400466 tree->ops->split_extent_hook(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400467}
468
Chris Masond1310b22008-01-24 16:13:08 -0500469/*
470 * split a given extent state struct in two, inserting the preallocated
471 * struct 'prealloc' as the newly created second half. 'split' indicates an
472 * offset inside 'orig' where it should be split.
473 *
474 * Before calling,
475 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
476 * are two extent state structs in the tree:
477 * prealloc: [orig->start, split - 1]
478 * orig: [ split, orig->end ]
479 *
480 * The tree locks are not taken by this function. They need to be held
481 * by the caller.
482 */
483static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
484 struct extent_state *prealloc, u64 split)
485{
486 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400487
488 split_cb(tree, orig, split);
489
Chris Masond1310b22008-01-24 16:13:08 -0500490 prealloc->start = orig->start;
491 prealloc->end = split - 1;
492 prealloc->state = orig->state;
493 orig->start = split;
494
Filipe Mananaf2071b22014-02-12 15:05:53 +0000495 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
496 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500497 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500498 free_extent_state(prealloc);
499 return -EEXIST;
500 }
501 return 0;
502}
503
Li Zefancdc6a392012-03-12 16:39:48 +0800504static struct extent_state *next_state(struct extent_state *state)
505{
506 struct rb_node *next = rb_next(&state->rb_node);
507 if (next)
508 return rb_entry(next, struct extent_state, rb_node);
509 else
510 return NULL;
511}
512
Chris Masond1310b22008-01-24 16:13:08 -0500513/*
514 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800515 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500516 *
517 * If no bits are set on the state struct after clearing things, the
518 * struct is freed and removed from the tree
519 */
Li Zefancdc6a392012-03-12 16:39:48 +0800520static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
521 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800522 unsigned *bits, int wake,
523 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500524{
Li Zefancdc6a392012-03-12 16:39:48 +0800525 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100526 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100527 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500528
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400529 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500530 u64 range = state->end - state->start + 1;
531 WARN_ON(range > tree->dirty_bytes);
532 tree->dirty_bytes -= range;
533 }
Chris Mason291d6732008-01-29 15:55:23 -0500534 clear_state_cb(tree, state, bits);
David Sterba57599c72018-03-01 17:56:34 +0100535 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
536 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400537 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500538 if (wake)
539 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800541 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100542 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500543 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100544 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500545 free_extent_state(state);
546 } else {
547 WARN_ON(1);
548 }
549 } else {
550 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800551 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500552 }
Li Zefancdc6a392012-03-12 16:39:48 +0800553 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500554}
555
Xiao Guangrong82337672011-04-20 06:44:57 +0000556static struct extent_state *
557alloc_extent_state_atomic(struct extent_state *prealloc)
558{
559 if (!prealloc)
560 prealloc = alloc_extent_state(GFP_ATOMIC);
561
562 return prealloc;
563}
564
Eric Sandeen48a3b632013-04-25 20:41:01 +0000565static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400566{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400567 btrfs_panic(tree_fs_info(tree), err,
568 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400569}
570
Chris Masond1310b22008-01-24 16:13:08 -0500571/*
572 * clear some bits on a range in the tree. This may require splitting
573 * or inserting elements in the tree, so the gfp mask is used to
574 * indicate which allocations or sleeping are allowed.
575 *
576 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
577 * the given range from the tree regardless of state (ie for truncate).
578 *
579 * the range [start, end] is inclusive.
580 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100581 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500582 */
David Sterba66b0c882017-10-31 16:30:47 +0100583int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800584 unsigned bits, int wake, int delete,
585 struct extent_state **cached_state,
586 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500587{
588 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400589 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500590 struct extent_state *prealloc = NULL;
591 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400592 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500593 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000594 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500595
Josef Bacika5dee372013-12-13 10:02:44 -0500596 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000597
Josef Bacik7ee9e442013-06-21 16:37:03 -0400598 if (bits & EXTENT_DELALLOC)
599 bits |= EXTENT_NORESERVE;
600
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400601 if (delete)
602 bits |= ~EXTENT_CTLBITS;
603 bits |= EXTENT_FIRST_DELALLOC;
604
Josef Bacik2ac55d42010-02-03 19:33:23 +0000605 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
606 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500607again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800608 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000609 /*
610 * Don't care for allocation failure here because we might end
611 * up not needing the pre-allocated extent state at all, which
612 * is the case if we only have in the tree extent states that
613 * cover our input range and don't cover too any other range.
614 * If we end up needing a new extent state we allocate it later.
615 */
Chris Masond1310b22008-01-24 16:13:08 -0500616 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500617 }
618
Chris Masoncad321a2008-12-17 14:51:42 -0500619 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400620 if (cached_state) {
621 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000622
623 if (clear) {
624 *cached_state = NULL;
625 cached_state = NULL;
626 }
627
Filipe Manana27a35072014-07-06 20:09:59 +0100628 if (cached && extent_state_in_tree(cached) &&
629 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000630 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200631 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400632 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400633 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400634 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000635 if (clear)
636 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400637 }
Chris Masond1310b22008-01-24 16:13:08 -0500638 /*
639 * this search will find the extents that end after
640 * our range starts
641 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500642 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500643 if (!node)
644 goto out;
645 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400646hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500647 if (state->start > end)
648 goto out;
649 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400650 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500651
Liu Bo04493142012-02-16 18:34:37 +0800652 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800653 if (!(state->state & bits)) {
654 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800655 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800656 }
Liu Bo04493142012-02-16 18:34:37 +0800657
Chris Masond1310b22008-01-24 16:13:08 -0500658 /*
659 * | ---- desired range ---- |
660 * | state | or
661 * | ------------- state -------------- |
662 *
663 * We need to split the extent we found, and may flip
664 * bits on second half.
665 *
666 * If the extent we found extends past our range, we
667 * just split and search again. It'll get split again
668 * the next time though.
669 *
670 * If the extent we found is inside our range, we clear
671 * the desired bit on it.
672 */
673
674 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000675 prealloc = alloc_extent_state_atomic(prealloc);
676 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500677 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400678 if (err)
679 extent_io_tree_panic(tree, err);
680
Chris Masond1310b22008-01-24 16:13:08 -0500681 prealloc = NULL;
682 if (err)
683 goto out;
684 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800685 state = clear_state_bit(tree, state, &bits, wake,
686 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800687 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500688 }
689 goto search_again;
690 }
691 /*
692 * | ---- desired range ---- |
693 * | state |
694 * We need to split the extent, and clear the bit
695 * on the first half
696 */
697 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000698 prealloc = alloc_extent_state_atomic(prealloc);
699 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500700 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400701 if (err)
702 extent_io_tree_panic(tree, err);
703
Chris Masond1310b22008-01-24 16:13:08 -0500704 if (wake)
705 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400706
Qu Wenruofefdc552015-10-12 15:35:38 +0800707 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400708
Chris Masond1310b22008-01-24 16:13:08 -0500709 prealloc = NULL;
710 goto out;
711 }
Chris Mason42daec22009-09-23 19:51:09 -0400712
Qu Wenruofefdc552015-10-12 15:35:38 +0800713 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800714next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400715 if (last_end == (u64)-1)
716 goto out;
717 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800718 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800719 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500720
721search_again:
722 if (start > end)
723 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500724 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800725 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500726 cond_resched();
727 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200728
729out:
730 spin_unlock(&tree->lock);
731 if (prealloc)
732 free_extent_state(prealloc);
733
734 return 0;
735
Chris Masond1310b22008-01-24 16:13:08 -0500736}
Chris Masond1310b22008-01-24 16:13:08 -0500737
Jeff Mahoney143bede2012-03-01 14:56:26 +0100738static void wait_on_state(struct extent_io_tree *tree,
739 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500740 __releases(tree->lock)
741 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500742{
743 DEFINE_WAIT(wait);
744 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500745 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500746 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500747 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500748 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500749}
750
751/*
752 * waits for one or more bits to clear on a range in the state tree.
753 * The range [start, end] is inclusive.
754 * The tree lock is taken by this function
755 */
David Sterba41074882013-04-29 13:38:46 +0000756static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
757 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500758{
759 struct extent_state *state;
760 struct rb_node *node;
761
Josef Bacika5dee372013-12-13 10:02:44 -0500762 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000763
Chris Masoncad321a2008-12-17 14:51:42 -0500764 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500765again:
766 while (1) {
767 /*
768 * this search will find all the extents that end after
769 * our range starts
770 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500771 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100772process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500773 if (!node)
774 break;
775
776 state = rb_entry(node, struct extent_state, rb_node);
777
778 if (state->start > end)
779 goto out;
780
781 if (state->state & bits) {
782 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200783 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500784 wait_on_state(tree, state);
785 free_extent_state(state);
786 goto again;
787 }
788 start = state->end + 1;
789
790 if (start > end)
791 break;
792
Filipe Mananac50d3e72014-03-31 14:53:25 +0100793 if (!cond_resched_lock(&tree->lock)) {
794 node = rb_next(node);
795 goto process_node;
796 }
Chris Masond1310b22008-01-24 16:13:08 -0500797 }
798out:
Chris Masoncad321a2008-12-17 14:51:42 -0500799 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500800}
Chris Masond1310b22008-01-24 16:13:08 -0500801
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000802static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500803 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800804 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500805{
David Sterba9ee49a042015-01-14 19:52:13 +0100806 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100807 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400808
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000809 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400810 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500811 u64 range = state->end - state->start + 1;
812 tree->dirty_bytes += range;
813 }
David Sterba57599c72018-03-01 17:56:34 +0100814 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
815 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400816 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500817}
818
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100819static void cache_state_if_flags(struct extent_state *state,
820 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100821 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400822{
823 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100824 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400825 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200826 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400827 }
828 }
829}
830
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100831static void cache_state(struct extent_state *state,
832 struct extent_state **cached_ptr)
833{
834 return cache_state_if_flags(state, cached_ptr,
835 EXTENT_IOBITS | EXTENT_BOUNDARY);
836}
837
Chris Masond1310b22008-01-24 16:13:08 -0500838/*
Chris Mason1edbb732009-09-02 13:24:36 -0400839 * set some bits on a range in the tree. This may require allocations or
840 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500841 *
Chris Mason1edbb732009-09-02 13:24:36 -0400842 * If any of the exclusive bits are set, this will fail with -EEXIST if some
843 * part of the range already has the desired bits set. The start of the
844 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500845 *
Chris Mason1edbb732009-09-02 13:24:36 -0400846 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500847 */
Chris Mason1edbb732009-09-02 13:24:36 -0400848
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100849static int __must_check
850__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100851 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000852 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800853 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500854{
855 struct extent_state *state;
856 struct extent_state *prealloc = NULL;
857 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000858 struct rb_node **p;
859 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500860 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500861 u64 last_start;
862 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400863
Josef Bacika5dee372013-12-13 10:02:44 -0500864 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000865
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400866 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500867again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800868 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200869 /*
870 * Don't care for allocation failure here because we might end
871 * up not needing the pre-allocated extent state at all, which
872 * is the case if we only have in the tree extent states that
873 * cover our input range and don't cover too any other range.
874 * If we end up needing a new extent state we allocate it later.
875 */
Chris Masond1310b22008-01-24 16:13:08 -0500876 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500877 }
878
Chris Masoncad321a2008-12-17 14:51:42 -0500879 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400880 if (cached_state && *cached_state) {
881 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400882 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100883 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400884 node = &state->rb_node;
885 goto hit_next;
886 }
887 }
Chris Masond1310b22008-01-24 16:13:08 -0500888 /*
889 * this search will find all the extents that end after
890 * our range starts.
891 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000892 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500893 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000894 prealloc = alloc_extent_state_atomic(prealloc);
895 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000896 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800897 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400898 if (err)
899 extent_io_tree_panic(tree, err);
900
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000901 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500902 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500903 goto out;
904 }
Chris Masond1310b22008-01-24 16:13:08 -0500905 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400906hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500907 last_start = state->start;
908 last_end = state->end;
909
910 /*
911 * | ---- desired range ---- |
912 * | state |
913 *
914 * Just lock what we found and keep going
915 */
916 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400917 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500918 *failed_start = state->start;
919 err = -EEXIST;
920 goto out;
921 }
Chris Mason42daec22009-09-23 19:51:09 -0400922
Qu Wenruod38ed272015-10-12 14:53:37 +0800923 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400924 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500925 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400926 if (last_end == (u64)-1)
927 goto out;
928 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800929 state = next_state(state);
930 if (start < end && state && state->start == start &&
931 !need_resched())
932 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500933 goto search_again;
934 }
935
936 /*
937 * | ---- desired range ---- |
938 * | state |
939 * or
940 * | ------------- state -------------- |
941 *
942 * We need to split the extent we found, and may flip bits on
943 * second half.
944 *
945 * If the extent we found extends past our
946 * range, we just split and search again. It'll get split
947 * again the next time though.
948 *
949 * If the extent we found is inside our range, we set the
950 * desired bit on it.
951 */
952 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400953 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500954 *failed_start = start;
955 err = -EEXIST;
956 goto out;
957 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000958
959 prealloc = alloc_extent_state_atomic(prealloc);
960 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500961 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400962 if (err)
963 extent_io_tree_panic(tree, err);
964
Chris Masond1310b22008-01-24 16:13:08 -0500965 prealloc = NULL;
966 if (err)
967 goto out;
968 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800969 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400970 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500971 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400972 if (last_end == (u64)-1)
973 goto out;
974 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800975 state = next_state(state);
976 if (start < end && state && state->start == start &&
977 !need_resched())
978 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500979 }
980 goto search_again;
981 }
982 /*
983 * | ---- desired range ---- |
984 * | state | or | state |
985 *
986 * There's a hole, we need to insert something in it and
987 * ignore the extent we found.
988 */
989 if (state->start > start) {
990 u64 this_end;
991 if (end < last_start)
992 this_end = end;
993 else
Chris Masond3977122009-01-05 21:25:51 -0500994 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000995
996 prealloc = alloc_extent_state_atomic(prealloc);
997 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000998
999 /*
1000 * Avoid to free 'prealloc' if it can be merged with
1001 * the later extent.
1002 */
Chris Masond1310b22008-01-24 16:13:08 -05001003 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001004 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001005 if (err)
1006 extent_io_tree_panic(tree, err);
1007
Chris Mason2c64c532009-09-02 15:04:12 -04001008 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001009 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001010 start = this_end + 1;
1011 goto search_again;
1012 }
1013 /*
1014 * | ---- desired range ---- |
1015 * | state |
1016 * We need to split the extent, and set the bit
1017 * on the first half
1018 */
1019 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001020 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001021 *failed_start = start;
1022 err = -EEXIST;
1023 goto out;
1024 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001025
1026 prealloc = alloc_extent_state_atomic(prealloc);
1027 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001028 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001029 if (err)
1030 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001031
Qu Wenruod38ed272015-10-12 14:53:37 +08001032 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001033 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001034 merge_state(tree, prealloc);
1035 prealloc = NULL;
1036 goto out;
1037 }
1038
David Sterbab5a4ba142016-04-27 01:02:15 +02001039search_again:
1040 if (start > end)
1041 goto out;
1042 spin_unlock(&tree->lock);
1043 if (gfpflags_allow_blocking(mask))
1044 cond_resched();
1045 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001046
1047out:
Chris Masoncad321a2008-12-17 14:51:42 -05001048 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001049 if (prealloc)
1050 free_extent_state(prealloc);
1051
1052 return err;
1053
Chris Masond1310b22008-01-24 16:13:08 -05001054}
Chris Masond1310b22008-01-24 16:13:08 -05001055
David Sterba41074882013-04-29 13:38:46 +00001056int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001057 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001058 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001059{
1060 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001061 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001062}
1063
1064
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065/**
Liu Bo10983f22012-07-11 15:26:19 +08001066 * convert_extent_bit - convert all bits in a given range from one bit to
1067 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001068 * @tree: the io tree to search
1069 * @start: the start offset in bytes
1070 * @end: the end offset in bytes (inclusive)
1071 * @bits: the bits to set in this range
1072 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001073 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001074 *
1075 * This will go through and set bits for the given range. If any states exist
1076 * already in this range they are set with the given bit and cleared of the
1077 * clear_bits. This is only meant to be used by things that are mergeable, ie
1078 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1079 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001080 *
1081 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001082 */
1083int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001084 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001085 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001086{
1087 struct extent_state *state;
1088 struct extent_state *prealloc = NULL;
1089 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001090 struct rb_node **p;
1091 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001092 int err = 0;
1093 u64 last_start;
1094 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001095 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096
Josef Bacika5dee372013-12-13 10:02:44 -05001097 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001098
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099again:
David Sterba210aa272016-04-26 23:54:39 +02001100 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001101 /*
1102 * Best effort, don't worry if extent state allocation fails
1103 * here for the first iteration. We might have a cached state
1104 * that matches exactly the target range, in which case no
1105 * extent state allocations are needed. We'll only know this
1106 * after locking the tree.
1107 */
David Sterba210aa272016-04-26 23:54:39 +02001108 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001109 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110 return -ENOMEM;
1111 }
1112
1113 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001114 if (cached_state && *cached_state) {
1115 state = *cached_state;
1116 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001117 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001118 node = &state->rb_node;
1119 goto hit_next;
1120 }
1121 }
1122
Josef Bacik462d6fa2011-09-26 13:56:12 -04001123 /*
1124 * this search will find all the extents that end after
1125 * our range starts.
1126 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001127 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001128 if (!node) {
1129 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001130 if (!prealloc) {
1131 err = -ENOMEM;
1132 goto out;
1133 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001134 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001135 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001136 if (err)
1137 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001138 cache_state(prealloc, cached_state);
1139 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001140 goto out;
1141 }
1142 state = rb_entry(node, struct extent_state, rb_node);
1143hit_next:
1144 last_start = state->start;
1145 last_end = state->end;
1146
1147 /*
1148 * | ---- desired range ---- |
1149 * | state |
1150 *
1151 * Just lock what we found and keep going
1152 */
1153 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001154 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001155 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001156 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001157 if (last_end == (u64)-1)
1158 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001159 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001160 if (start < end && state && state->start == start &&
1161 !need_resched())
1162 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001163 goto search_again;
1164 }
1165
1166 /*
1167 * | ---- desired range ---- |
1168 * | state |
1169 * or
1170 * | ------------- state -------------- |
1171 *
1172 * We need to split the extent we found, and may flip bits on
1173 * second half.
1174 *
1175 * If the extent we found extends past our
1176 * range, we just split and search again. It'll get split
1177 * again the next time though.
1178 *
1179 * If the extent we found is inside our range, we set the
1180 * desired bit on it.
1181 */
1182 if (state->start < start) {
1183 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001184 if (!prealloc) {
1185 err = -ENOMEM;
1186 goto out;
1187 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001188 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001189 if (err)
1190 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 prealloc = NULL;
1192 if (err)
1193 goto out;
1194 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001195 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001196 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001197 state = clear_state_bit(tree, state, &clear_bits, 0,
1198 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001199 if (last_end == (u64)-1)
1200 goto out;
1201 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001202 if (start < end && state && state->start == start &&
1203 !need_resched())
1204 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001205 }
1206 goto search_again;
1207 }
1208 /*
1209 * | ---- desired range ---- |
1210 * | state | or | state |
1211 *
1212 * There's a hole, we need to insert something in it and
1213 * ignore the extent we found.
1214 */
1215 if (state->start > start) {
1216 u64 this_end;
1217 if (end < last_start)
1218 this_end = end;
1219 else
1220 this_end = last_start - 1;
1221
1222 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001223 if (!prealloc) {
1224 err = -ENOMEM;
1225 goto out;
1226 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001227
1228 /*
1229 * Avoid to free 'prealloc' if it can be merged with
1230 * the later extent.
1231 */
1232 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001233 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001234 if (err)
1235 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001236 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001237 prealloc = NULL;
1238 start = this_end + 1;
1239 goto search_again;
1240 }
1241 /*
1242 * | ---- desired range ---- |
1243 * | state |
1244 * We need to split the extent, and set the bit
1245 * on the first half
1246 */
1247 if (state->start <= end && state->end > end) {
1248 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001249 if (!prealloc) {
1250 err = -ENOMEM;
1251 goto out;
1252 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001253
1254 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001255 if (err)
1256 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001257
Qu Wenruod38ed272015-10-12 14:53:37 +08001258 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001259 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001260 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001261 prealloc = NULL;
1262 goto out;
1263 }
1264
Josef Bacik462d6fa2011-09-26 13:56:12 -04001265search_again:
1266 if (start > end)
1267 goto out;
1268 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001269 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001270 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001271 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001272
1273out:
1274 spin_unlock(&tree->lock);
1275 if (prealloc)
1276 free_extent_state(prealloc);
1277
1278 return err;
1279}
1280
Chris Masond1310b22008-01-24 16:13:08 -05001281/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001282int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001283 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001284{
1285 /*
1286 * We don't support EXTENT_LOCKED yet, as current changeset will
1287 * record any bits changed, so for EXTENT_LOCKED case, it will
1288 * either fail with -EEXIST or changeset will record the whole
1289 * range.
1290 */
1291 BUG_ON(bits & EXTENT_LOCKED);
1292
David Sterba2c53b912016-04-26 23:54:39 +02001293 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001294 changeset);
1295}
1296
Qu Wenruofefdc552015-10-12 15:35:38 +08001297int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1298 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001299 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001300{
1301 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001302 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001303}
1304
Qu Wenruofefdc552015-10-12 15:35:38 +08001305int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001306 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001307{
1308 /*
1309 * Don't support EXTENT_LOCKED case, same reason as
1310 * set_record_extent_bits().
1311 */
1312 BUG_ON(bits & EXTENT_LOCKED);
1313
David Sterbaf734c442016-04-26 23:54:39 +02001314 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001315 changeset);
1316}
1317
Chris Masond352ac62008-09-29 15:18:18 -04001318/*
1319 * either insert or lock state struct between start and end use mask to tell
1320 * us if waiting is desired.
1321 */
Chris Mason1edbb732009-09-02 13:24:36 -04001322int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001323 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001324{
1325 int err;
1326 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001327
Chris Masond1310b22008-01-24 16:13:08 -05001328 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001329 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001330 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001331 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001332 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001333 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1334 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001335 } else
Chris Masond1310b22008-01-24 16:13:08 -05001336 break;
Chris Masond1310b22008-01-24 16:13:08 -05001337 WARN_ON(start > end);
1338 }
1339 return err;
1340}
Chris Masond1310b22008-01-24 16:13:08 -05001341
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001342int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001343{
1344 int err;
1345 u64 failed_start;
1346
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001347 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001348 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001349 if (err == -EEXIST) {
1350 if (failed_start > start)
1351 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001352 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001353 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001354 }
Josef Bacik25179202008-10-29 14:49:05 -04001355 return 1;
1356}
Josef Bacik25179202008-10-29 14:49:05 -04001357
David Sterbabd1fa4f2015-12-03 13:08:59 +01001358void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001359{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001360 unsigned long index = start >> PAGE_SHIFT;
1361 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001362 struct page *page;
1363
1364 while (index <= end_index) {
1365 page = find_get_page(inode->i_mapping, index);
1366 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1367 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001368 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001369 index++;
1370 }
Chris Mason4adaa612013-03-26 13:07:00 -04001371}
1372
David Sterbaf6311572015-12-03 13:08:59 +01001373void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001374{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001375 unsigned long index = start >> PAGE_SHIFT;
1376 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001377 struct page *page;
1378
1379 while (index <= end_index) {
1380 page = find_get_page(inode->i_mapping, index);
1381 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001382 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001383 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001384 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001385 index++;
1386 }
Chris Mason4adaa612013-03-26 13:07:00 -04001387}
1388
Chris Masond1310b22008-01-24 16:13:08 -05001389/*
Chris Masond1310b22008-01-24 16:13:08 -05001390 * helper function to set both pages and extents in the tree writeback
1391 */
David Sterba35de6db2015-12-03 13:08:59 +01001392static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001393{
Josef Bacikc6100a42017-05-05 11:57:13 -04001394 tree->ops->set_range_writeback(tree->private_data, start, end);
Chris Masond1310b22008-01-24 16:13:08 -05001395}
Chris Masond1310b22008-01-24 16:13:08 -05001396
Chris Masond352ac62008-09-29 15:18:18 -04001397/* find the first state struct with 'bits' set after 'start', and
1398 * return it. tree->lock must be held. NULL will returned if
1399 * nothing was found after 'start'
1400 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001401static struct extent_state *
1402find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001403 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001404{
1405 struct rb_node *node;
1406 struct extent_state *state;
1407
1408 /*
1409 * this search will find all the extents that end after
1410 * our range starts.
1411 */
1412 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001413 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001414 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001415
Chris Masond3977122009-01-05 21:25:51 -05001416 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001417 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001418 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001419 return state;
Chris Masond3977122009-01-05 21:25:51 -05001420
Chris Masond7fc6402008-02-18 12:12:38 -05001421 node = rb_next(node);
1422 if (!node)
1423 break;
1424 }
1425out:
1426 return NULL;
1427}
Chris Masond7fc6402008-02-18 12:12:38 -05001428
Chris Masond352ac62008-09-29 15:18:18 -04001429/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001430 * find the first offset in the io tree with 'bits' set. zero is
1431 * returned if we find something, and *start_ret and *end_ret are
1432 * set to reflect the state struct that was found.
1433 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001434 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001435 */
1436int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001437 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001438 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001439{
1440 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001441 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001442 int ret = 1;
1443
1444 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001445 if (cached_state && *cached_state) {
1446 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001447 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001448 n = rb_next(&state->rb_node);
1449 while (n) {
1450 state = rb_entry(n, struct extent_state,
1451 rb_node);
1452 if (state->state & bits)
1453 goto got_it;
1454 n = rb_next(n);
1455 }
1456 free_extent_state(*cached_state);
1457 *cached_state = NULL;
1458 goto out;
1459 }
1460 free_extent_state(*cached_state);
1461 *cached_state = NULL;
1462 }
1463
Xiao Guangrong69261c42011-07-14 03:19:45 +00001464 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001465got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001466 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001467 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001468 *start_ret = state->start;
1469 *end_ret = state->end;
1470 ret = 0;
1471 }
Josef Bacike6138872012-09-27 17:07:30 -04001472out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001473 spin_unlock(&tree->lock);
1474 return ret;
1475}
1476
1477/*
Chris Masond352ac62008-09-29 15:18:18 -04001478 * find a contiguous range of bytes in the file marked as delalloc, not
1479 * more than 'max_bytes'. start and end are used to return the range,
1480 *
1481 * 1 is returned if we find something, 0 if nothing was in the tree
1482 */
Chris Masonc8b97812008-10-29 14:49:59 -04001483static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001484 u64 *start, u64 *end, u64 max_bytes,
1485 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001486{
1487 struct rb_node *node;
1488 struct extent_state *state;
1489 u64 cur_start = *start;
1490 u64 found = 0;
1491 u64 total_bytes = 0;
1492
Chris Masoncad321a2008-12-17 14:51:42 -05001493 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001494
Chris Masond1310b22008-01-24 16:13:08 -05001495 /*
1496 * this search will find all the extents that end after
1497 * our range starts.
1498 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001499 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001500 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001501 if (!found)
1502 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001503 goto out;
1504 }
1505
Chris Masond3977122009-01-05 21:25:51 -05001506 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001507 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001508 if (found && (state->start != cur_start ||
1509 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001510 goto out;
1511 }
1512 if (!(state->state & EXTENT_DELALLOC)) {
1513 if (!found)
1514 *end = state->end;
1515 goto out;
1516 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001517 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001518 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001519 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001520 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001521 }
Chris Masond1310b22008-01-24 16:13:08 -05001522 found++;
1523 *end = state->end;
1524 cur_start = state->end + 1;
1525 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001526 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001527 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001528 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001529 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001530 break;
1531 }
1532out:
Chris Masoncad321a2008-12-17 14:51:42 -05001533 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001534 return found;
1535}
1536
Liu Boda2c7002017-02-10 16:41:05 +01001537static int __process_pages_contig(struct address_space *mapping,
1538 struct page *locked_page,
1539 pgoff_t start_index, pgoff_t end_index,
1540 unsigned long page_ops, pgoff_t *index_ret);
1541
Jeff Mahoney143bede2012-03-01 14:56:26 +01001542static noinline void __unlock_for_delalloc(struct inode *inode,
1543 struct page *locked_page,
1544 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001545{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001546 unsigned long index = start >> PAGE_SHIFT;
1547 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001548
Liu Bo76c00212017-02-10 16:42:14 +01001549 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001550 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001551 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001552
Liu Bo76c00212017-02-10 16:42:14 +01001553 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1554 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001555}
1556
1557static noinline int lock_delalloc_pages(struct inode *inode,
1558 struct page *locked_page,
1559 u64 delalloc_start,
1560 u64 delalloc_end)
1561{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001562 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001563 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001564 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001565 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001566
Liu Bo76c00212017-02-10 16:42:14 +01001567 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001568 if (index == locked_page->index && index == end_index)
1569 return 0;
1570
Liu Bo76c00212017-02-10 16:42:14 +01001571 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1572 end_index, PAGE_LOCK, &index_ret);
1573 if (ret == -EAGAIN)
1574 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1575 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001576 return ret;
1577}
1578
1579/*
1580 * find a contiguous range of bytes in the file marked as delalloc, not
1581 * more than 'max_bytes'. start and end are used to return the range,
1582 *
1583 * 1 is returned if we find something, 0 if nothing was in the tree
1584 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001585STATIC u64 find_lock_delalloc_range(struct inode *inode,
1586 struct extent_io_tree *tree,
1587 struct page *locked_page, u64 *start,
1588 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001589{
1590 u64 delalloc_start;
1591 u64 delalloc_end;
1592 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001593 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001594 int ret;
1595 int loops = 0;
1596
1597again:
1598 /* step one, find a bunch of delalloc bytes starting at start */
1599 delalloc_start = *start;
1600 delalloc_end = 0;
1601 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001602 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001603 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001604 *start = delalloc_start;
1605 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001606 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001607 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001608 }
1609
1610 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001611 * start comes from the offset of locked_page. We have to lock
1612 * pages in order, so we can't process delalloc bytes before
1613 * locked_page
1614 */
Chris Masond3977122009-01-05 21:25:51 -05001615 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001616 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001617
1618 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001619 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001620 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001621 if (delalloc_end + 1 - delalloc_start > max_bytes)
1622 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001623
Chris Masonc8b97812008-10-29 14:49:59 -04001624 /* step two, lock all the pages after the page that has start */
1625 ret = lock_delalloc_pages(inode, locked_page,
1626 delalloc_start, delalloc_end);
1627 if (ret == -EAGAIN) {
1628 /* some of the pages are gone, lets avoid looping by
1629 * shortening the size of the delalloc range we're searching
1630 */
Chris Mason9655d292009-09-02 15:22:30 -04001631 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001632 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001633 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001634 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001635 loops = 1;
1636 goto again;
1637 } else {
1638 found = 0;
1639 goto out_failed;
1640 }
1641 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001642 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001643
1644 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001645 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001646
1647 /* then test to make sure it is all still delalloc */
1648 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001649 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001650 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001651 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001652 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001653 __unlock_for_delalloc(inode, locked_page,
1654 delalloc_start, delalloc_end);
1655 cond_resched();
1656 goto again;
1657 }
Chris Mason9655d292009-09-02 15:22:30 -04001658 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001659 *start = delalloc_start;
1660 *end = delalloc_end;
1661out_failed:
1662 return found;
1663}
1664
Liu Boda2c7002017-02-10 16:41:05 +01001665static int __process_pages_contig(struct address_space *mapping,
1666 struct page *locked_page,
1667 pgoff_t start_index, pgoff_t end_index,
1668 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001669{
Liu Bo873695b2017-02-02 17:49:22 -08001670 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001671 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001672 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001673 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001674 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001675 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001676 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001677
Liu Boda2c7002017-02-10 16:41:05 +01001678 if (page_ops & PAGE_LOCK) {
1679 ASSERT(page_ops == PAGE_LOCK);
1680 ASSERT(index_ret && *index_ret == start_index);
1681 }
1682
Filipe Manana704de492014-10-06 22:14:22 +01001683 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001684 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001685
Chris Masond3977122009-01-05 21:25:51 -05001686 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001687 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001688 min_t(unsigned long,
1689 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001690 if (ret == 0) {
1691 /*
1692 * Only if we're going to lock these pages,
1693 * can we find nothing at @index.
1694 */
1695 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001696 err = -EAGAIN;
1697 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001698 }
Chris Mason8b62b722009-09-02 16:53:46 -04001699
Liu Boda2c7002017-02-10 16:41:05 +01001700 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001701 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001702 SetPagePrivate2(pages[i]);
1703
Chris Masonc8b97812008-10-29 14:49:59 -04001704 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001705 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001706 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001707 continue;
1708 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001709 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001710 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001711 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001712 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001713 if (page_ops & PAGE_SET_ERROR)
1714 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001715 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001716 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001717 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001718 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001719 if (page_ops & PAGE_LOCK) {
1720 lock_page(pages[i]);
1721 if (!PageDirty(pages[i]) ||
1722 pages[i]->mapping != mapping) {
1723 unlock_page(pages[i]);
1724 put_page(pages[i]);
1725 err = -EAGAIN;
1726 goto out;
1727 }
1728 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001729 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001730 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001731 }
1732 nr_pages -= ret;
1733 index += ret;
1734 cond_resched();
1735 }
Liu Boda2c7002017-02-10 16:41:05 +01001736out:
1737 if (err && index_ret)
1738 *index_ret = start_index + pages_locked - 1;
1739 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001740}
Chris Masonc8b97812008-10-29 14:49:59 -04001741
Liu Bo873695b2017-02-02 17:49:22 -08001742void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1743 u64 delalloc_end, struct page *locked_page,
1744 unsigned clear_bits,
1745 unsigned long page_ops)
1746{
1747 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001748 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001749
1750 __process_pages_contig(inode->i_mapping, locked_page,
1751 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001752 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001753}
1754
Chris Masond352ac62008-09-29 15:18:18 -04001755/*
1756 * count the number of bytes in the tree that have a given bit(s)
1757 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1758 * cached. The total number found is returned.
1759 */
Chris Masond1310b22008-01-24 16:13:08 -05001760u64 count_range_bits(struct extent_io_tree *tree,
1761 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001762 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001763{
1764 struct rb_node *node;
1765 struct extent_state *state;
1766 u64 cur_start = *start;
1767 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001768 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001769 int found = 0;
1770
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301771 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001772 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001773
Chris Masoncad321a2008-12-17 14:51:42 -05001774 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001775 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1776 total_bytes = tree->dirty_bytes;
1777 goto out;
1778 }
1779 /*
1780 * this search will find all the extents that end after
1781 * our range starts.
1782 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001783 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001784 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001785 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001786
Chris Masond3977122009-01-05 21:25:51 -05001787 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001788 state = rb_entry(node, struct extent_state, rb_node);
1789 if (state->start > search_end)
1790 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001791 if (contig && found && state->start > last + 1)
1792 break;
1793 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001794 total_bytes += min(search_end, state->end) + 1 -
1795 max(cur_start, state->start);
1796 if (total_bytes >= max_bytes)
1797 break;
1798 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001799 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001800 found = 1;
1801 }
Chris Masonec29ed52011-02-23 16:23:20 -05001802 last = state->end;
1803 } else if (contig && found) {
1804 break;
Chris Masond1310b22008-01-24 16:13:08 -05001805 }
1806 node = rb_next(node);
1807 if (!node)
1808 break;
1809 }
1810out:
Chris Masoncad321a2008-12-17 14:51:42 -05001811 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001812 return total_bytes;
1813}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001814
Chris Masond352ac62008-09-29 15:18:18 -04001815/*
1816 * set the private field for a given byte offset in the tree. If there isn't
1817 * an extent_state there already, this does nothing.
1818 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001819static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001820 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001821{
1822 struct rb_node *node;
1823 struct extent_state *state;
1824 int ret = 0;
1825
Chris Masoncad321a2008-12-17 14:51:42 -05001826 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001827 /*
1828 * this search will find all the extents that end after
1829 * our range starts.
1830 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001831 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001832 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001833 ret = -ENOENT;
1834 goto out;
1835 }
1836 state = rb_entry(node, struct extent_state, rb_node);
1837 if (state->start != start) {
1838 ret = -ENOENT;
1839 goto out;
1840 }
David Sterba47dc1962016-02-11 13:24:13 +01001841 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001842out:
Chris Masoncad321a2008-12-17 14:51:42 -05001843 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001844 return ret;
1845}
1846
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001847static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001848 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001849{
1850 struct rb_node *node;
1851 struct extent_state *state;
1852 int ret = 0;
1853
Chris Masoncad321a2008-12-17 14:51:42 -05001854 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001855 /*
1856 * this search will find all the extents that end after
1857 * our range starts.
1858 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001859 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001860 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001861 ret = -ENOENT;
1862 goto out;
1863 }
1864 state = rb_entry(node, struct extent_state, rb_node);
1865 if (state->start != start) {
1866 ret = -ENOENT;
1867 goto out;
1868 }
David Sterba47dc1962016-02-11 13:24:13 +01001869 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001870out:
Chris Masoncad321a2008-12-17 14:51:42 -05001871 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001872 return ret;
1873}
1874
1875/*
1876 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001877 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001878 * has the bits set. Otherwise, 1 is returned if any bit in the
1879 * range is found set.
1880 */
1881int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001882 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001883{
1884 struct extent_state *state = NULL;
1885 struct rb_node *node;
1886 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001887
Chris Masoncad321a2008-12-17 14:51:42 -05001888 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001889 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001890 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001891 node = &cached->rb_node;
1892 else
1893 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001894 while (node && start <= end) {
1895 state = rb_entry(node, struct extent_state, rb_node);
1896
1897 if (filled && state->start > start) {
1898 bitset = 0;
1899 break;
1900 }
1901
1902 if (state->start > end)
1903 break;
1904
1905 if (state->state & bits) {
1906 bitset = 1;
1907 if (!filled)
1908 break;
1909 } else if (filled) {
1910 bitset = 0;
1911 break;
1912 }
Chris Mason46562ce2009-09-23 20:23:16 -04001913
1914 if (state->end == (u64)-1)
1915 break;
1916
Chris Masond1310b22008-01-24 16:13:08 -05001917 start = state->end + 1;
1918 if (start > end)
1919 break;
1920 node = rb_next(node);
1921 if (!node) {
1922 if (filled)
1923 bitset = 0;
1924 break;
1925 }
1926 }
Chris Masoncad321a2008-12-17 14:51:42 -05001927 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001928 return bitset;
1929}
Chris Masond1310b22008-01-24 16:13:08 -05001930
1931/*
1932 * helper function to set a given page up to date if all the
1933 * extents in the tree for that page are up to date
1934 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001935static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001936{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001937 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001938 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001939 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001940 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001941}
1942
Josef Bacik7870d082017-05-05 11:57:15 -04001943int free_io_failure(struct extent_io_tree *failure_tree,
1944 struct extent_io_tree *io_tree,
1945 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001946{
1947 int ret;
1948 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001949
David Sterba47dc1962016-02-11 13:24:13 +01001950 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001951 ret = clear_extent_bits(failure_tree, rec->start,
1952 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001953 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001954 if (ret)
1955 err = ret;
1956
Josef Bacik7870d082017-05-05 11:57:15 -04001957 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001958 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001959 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001960 if (ret && !err)
1961 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001962
1963 kfree(rec);
1964 return err;
1965}
1966
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001967/*
1968 * this bypasses the standard btrfs submit functions deliberately, as
1969 * the standard behavior is to write all copies in a raid setup. here we only
1970 * want to write the one bad copy. so we do the mapping for ourselves and issue
1971 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001972 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001973 * actually prevents the read that triggered the error from finishing.
1974 * currently, there can be no more than two copies of every data bit. thus,
1975 * exactly one rewrite is required.
1976 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001977int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1978 u64 length, u64 logical, struct page *page,
1979 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001980{
1981 struct bio *bio;
1982 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001983 u64 map_length = 0;
1984 u64 sector;
1985 struct btrfs_bio *bbio = NULL;
1986 int ret;
1987
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001988 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001989 BUG_ON(!mirror_num);
1990
David Sterbac5e4c3d2017-06-12 17:29:41 +02001991 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001992 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001993 map_length = length;
1994
Filipe Mananab5de8d02016-05-27 22:21:27 +01001995 /*
1996 * Avoid races with device replace and make sure our bbio has devices
1997 * associated to its stripes that don't go away while we are doing the
1998 * read repair operation.
1999 */
2000 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002001 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002002 /*
2003 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2004 * to update all raid stripes, but here we just want to correct
2005 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2006 * stripe's dev and sector.
2007 */
2008 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2009 &map_length, &bbio, 0);
2010 if (ret) {
2011 btrfs_bio_counter_dec(fs_info);
2012 bio_put(bio);
2013 return -EIO;
2014 }
2015 ASSERT(bbio->mirror_num == 1);
2016 } else {
2017 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2018 &map_length, &bbio, mirror_num);
2019 if (ret) {
2020 btrfs_bio_counter_dec(fs_info);
2021 bio_put(bio);
2022 return -EIO;
2023 }
2024 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002025 }
Liu Boc7253282017-03-29 10:53:58 -07002026
2027 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002028 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002029 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002030 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002031 if (!dev || !dev->bdev ||
2032 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002033 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002034 bio_put(bio);
2035 return -EIO;
2036 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002037 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002038 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002039 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002040
Mike Christie4e49ea42016-06-05 14:31:41 -05002041 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002042 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002043 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002044 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002045 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002046 return -EIO;
2047 }
2048
David Sterbab14af3b2015-10-08 10:43:10 +02002049 btrfs_info_rl_in_rcu(fs_info,
2050 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002051 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002052 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002053 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002054 bio_put(bio);
2055 return 0;
2056}
2057
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002058int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2059 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002060{
Josef Bacikea466792012-03-26 21:57:36 -04002061 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002062 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002063 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002064
David Howellsbc98a422017-07-17 08:45:34 +01002065 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002066 return -EROFS;
2067
Josef Bacikea466792012-03-26 21:57:36 -04002068 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002069 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002070
Josef Bacik6ec656b2017-05-05 11:57:14 -04002071 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002072 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002073 if (ret)
2074 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002075 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002076 }
2077
2078 return ret;
2079}
2080
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002081/*
2082 * each time an IO finishes, we do a fast check in the IO failure tree
2083 * to see if we need to process or clean up an io_failure_record
2084 */
Josef Bacik7870d082017-05-05 11:57:15 -04002085int clean_io_failure(struct btrfs_fs_info *fs_info,
2086 struct extent_io_tree *failure_tree,
2087 struct extent_io_tree *io_tree, u64 start,
2088 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002089{
2090 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092 struct extent_state *state;
2093 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002095
2096 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002097 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2098 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 if (!ret)
2100 return 0;
2101
Josef Bacik7870d082017-05-05 11:57:15 -04002102 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002103 if (ret)
2104 return 0;
2105
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 BUG_ON(!failrec->this_mirror);
2107
2108 if (failrec->in_validation) {
2109 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002110 btrfs_debug(fs_info,
2111 "clean_io_failure: freeing dummy error at %llu",
2112 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113 goto out;
2114 }
David Howellsbc98a422017-07-17 08:45:34 +01002115 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002116 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117
Josef Bacik7870d082017-05-05 11:57:15 -04002118 spin_lock(&io_tree->lock);
2119 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120 failrec->start,
2121 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002122 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002123
Miao Xie883d0de2013-07-25 19:22:35 +08002124 if (state && state->start <= failrec->start &&
2125 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002126 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2127 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002129 repair_io_failure(fs_info, ino, start, failrec->len,
2130 failrec->logical, page, pg_offset,
2131 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002132 }
2133 }
2134
2135out:
Josef Bacik7870d082017-05-05 11:57:15 -04002136 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002137
Miao Xie454ff3d2014-09-12 18:43:58 +08002138 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002139}
2140
Miao Xief6124962014-09-12 18:44:04 +08002141/*
2142 * Can be called when
2143 * - hold extent lock
2144 * - under ordered extent
2145 * - the inode is freeing
2146 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002147void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002148{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002149 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002150 struct io_failure_record *failrec;
2151 struct extent_state *state, *next;
2152
2153 if (RB_EMPTY_ROOT(&failure_tree->state))
2154 return;
2155
2156 spin_lock(&failure_tree->lock);
2157 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2158 while (state) {
2159 if (state->start > end)
2160 break;
2161
2162 ASSERT(state->end <= end);
2163
2164 next = next_state(state);
2165
David Sterba47dc1962016-02-11 13:24:13 +01002166 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002167 free_extent_state(state);
2168 kfree(failrec);
2169
2170 state = next;
2171 }
2172 spin_unlock(&failure_tree->lock);
2173}
2174
Miao Xie2fe63032014-09-12 18:43:59 +08002175int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002176 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002177{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002178 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002179 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2182 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2183 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002185 u64 logical;
2186
David Sterba47dc1962016-02-11 13:24:13 +01002187 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002188 if (ret) {
2189 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2190 if (!failrec)
2191 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002192
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002193 failrec->start = start;
2194 failrec->len = end - start + 1;
2195 failrec->this_mirror = 0;
2196 failrec->bio_flags = 0;
2197 failrec->in_validation = 0;
2198
2199 read_lock(&em_tree->lock);
2200 em = lookup_extent_mapping(em_tree, start, failrec->len);
2201 if (!em) {
2202 read_unlock(&em_tree->lock);
2203 kfree(failrec);
2204 return -EIO;
2205 }
2206
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002207 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002208 free_extent_map(em);
2209 em = NULL;
2210 }
2211 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002212 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 kfree(failrec);
2214 return -EIO;
2215 }
Miao Xie2fe63032014-09-12 18:43:59 +08002216
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002217 logical = start - em->start;
2218 logical = em->block_start + logical;
2219 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2220 logical = em->block_start;
2221 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2222 extent_set_compress_type(&failrec->bio_flags,
2223 em->compress_type);
2224 }
Miao Xie2fe63032014-09-12 18:43:59 +08002225
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002226 btrfs_debug(fs_info,
2227 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2228 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002229
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002230 failrec->logical = logical;
2231 free_extent_map(em);
2232
2233 /* set the bits in the private failure tree */
2234 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002235 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002237 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002238 /* set the bits in the inode's tree */
2239 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002240 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 if (ret < 0) {
2242 kfree(failrec);
2243 return ret;
2244 }
2245 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002246 btrfs_debug(fs_info,
2247 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2248 failrec->logical, failrec->start, failrec->len,
2249 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002250 /*
2251 * when data can be on disk more than twice, add to failrec here
2252 * (e.g. with a list for failed_mirror) to make
2253 * clean_io_failure() clean all those errors at once.
2254 */
2255 }
Miao Xie2fe63032014-09-12 18:43:59 +08002256
2257 *failrec_ret = failrec;
2258
2259 return 0;
2260}
2261
Ming Leia0b60d72017-12-18 20:22:11 +08002262bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002263 struct io_failure_record *failrec, int failed_mirror)
2264{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002265 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002266 int num_copies;
2267
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002268 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 if (num_copies == 1) {
2270 /*
2271 * we only have a single copy of the data, so don't bother with
2272 * all the retry and error correction code that follows. no
2273 * matter what the error is, it is very likely to persist.
2274 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002275 btrfs_debug(fs_info,
2276 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2277 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002278 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 }
2280
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002281 /*
2282 * there are two premises:
2283 * a) deliver good data to the caller
2284 * b) correct the bad sectors on disk
2285 */
Ming Leia0b60d72017-12-18 20:22:11 +08002286 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002287 /*
2288 * to fulfill b), we need to know the exact failing sectors, as
2289 * we don't want to rewrite any more than the failed ones. thus,
2290 * we need separate read requests for the failed bio
2291 *
2292 * if the following BUG_ON triggers, our validation request got
2293 * merged. we need separate requests for our algorithm to work.
2294 */
2295 BUG_ON(failrec->in_validation);
2296 failrec->in_validation = 1;
2297 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002298 } else {
2299 /*
2300 * we're ready to fulfill a) and b) alongside. get a good copy
2301 * of the failed sector and if we succeed, we have setup
2302 * everything for repair_io_failure to do the rest for us.
2303 */
2304 if (failrec->in_validation) {
2305 BUG_ON(failrec->this_mirror != failed_mirror);
2306 failrec->in_validation = 0;
2307 failrec->this_mirror = 0;
2308 }
2309 failrec->failed_mirror = failed_mirror;
2310 failrec->this_mirror++;
2311 if (failrec->this_mirror == failed_mirror)
2312 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002313 }
2314
Miao Xiefacc8a222013-07-25 19:22:34 +08002315 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002316 btrfs_debug(fs_info,
2317 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2318 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002319 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002320 }
2321
Liu Boc3cfb652017-07-13 15:00:50 -07002322 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002323}
2324
2325
2326struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2327 struct io_failure_record *failrec,
2328 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002329 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002330{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002331 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002332 struct bio *bio;
2333 struct btrfs_io_bio *btrfs_failed_bio;
2334 struct btrfs_io_bio *btrfs_bio;
2335
David Sterbac5e4c3d2017-06-12 17:29:41 +02002336 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002337 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002338 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002339 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002340 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002341 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002342
Miao Xiefacc8a222013-07-25 19:22:34 +08002343 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2344 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002345 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2346
2347 btrfs_bio = btrfs_io_bio(bio);
2348 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002349 icsum *= csum_size;
2350 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002351 csum_size);
2352 }
2353
Miao Xie2fe63032014-09-12 18:43:59 +08002354 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002355
Miao Xie2fe63032014-09-12 18:43:59 +08002356 return bio;
2357}
2358
2359/*
2360 * this is a generic handler for readpage errors (default
2361 * readpage_io_failed_hook). if other copies exist, read those and write back
2362 * good data to the failed position. does not investigate in remapping the
2363 * failed extent elsewhere, hoping the device will be smart enough to do this as
2364 * needed
2365 */
2366
2367static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2368 struct page *page, u64 start, u64 end,
2369 int failed_mirror)
2370{
2371 struct io_failure_record *failrec;
2372 struct inode *inode = page->mapping->host;
2373 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002374 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002375 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002376 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002377 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002378 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002379 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002380
Mike Christie1f7ad752016-06-05 14:31:51 -05002381 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002382
2383 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2384 if (ret)
2385 return ret;
2386
Ming Leia0b60d72017-12-18 20:22:11 +08002387 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002388 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002389 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002390 return -EIO;
2391 }
2392
Ming Leia0b60d72017-12-18 20:22:11 +08002393 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002394 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002395
2396 phy_offset >>= inode->i_sb->s_blocksize_bits;
2397 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2398 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002399 (int)phy_offset, failed_bio->bi_end_io,
2400 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002401 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002402
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002403 btrfs_debug(btrfs_sb(inode->i_sb),
2404 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2405 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002407 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002408 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002409 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002410 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002411 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002412 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002413 }
2414
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002415 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002416}
2417
Chris Masond1310b22008-01-24 16:13:08 -05002418/* lots and lots of room for performance fixes in the end_bio funcs */
2419
David Sterbab5227c02015-12-03 13:08:59 +01002420void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002421{
2422 int uptodate = (err == 0);
2423 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002424 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002425
2426 tree = &BTRFS_I(page->mapping->host)->io_tree;
2427
David Sterbac3988d62017-02-17 15:18:32 +01002428 if (tree->ops && tree->ops->writepage_end_io_hook)
2429 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2430 uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002431
Jeff Mahoney87826df2012-02-15 16:23:57 +01002432 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002433 ClearPageUptodate(page);
2434 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002435 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002436 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002437 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002438}
2439
Chris Masond1310b22008-01-24 16:13:08 -05002440/*
2441 * after a writepage IO is done, we need to:
2442 * clear the uptodate bits on error
2443 * clear the writeback bits in the extent tree for this IO
2444 * end_page_writeback if the page has no more pending IO
2445 *
2446 * Scheduling is not allowed, so the extent state tree is expected
2447 * to have one and only one object corresponding to this IO.
2448 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002449static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002450{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002451 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002452 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002453 u64 start;
2454 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002455 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002456
David Sterbac09abff2017-07-13 18:10:07 +02002457 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002458 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002459 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002460 struct inode *inode = page->mapping->host;
2461 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002462
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002463 /* We always issue full-page reads, but if some block
2464 * in a page fails to read, blk_update_request() will
2465 * advance bv_offset and adjust bv_len to compensate.
2466 * Print a warning for nonzero offsets, and an error
2467 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002468 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2469 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002470 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002471 "partial page write in btrfs with offset %u and length %u",
2472 bvec->bv_offset, bvec->bv_len);
2473 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002474 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002475 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002476 bvec->bv_offset, bvec->bv_len);
2477 }
Chris Masond1310b22008-01-24 16:13:08 -05002478
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002479 start = page_offset(page);
2480 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002481
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002482 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002483 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002484 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002485
Chris Masond1310b22008-01-24 16:13:08 -05002486 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002487}
2488
Miao Xie883d0de2013-07-25 19:22:35 +08002489static void
2490endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2491 int uptodate)
2492{
2493 struct extent_state *cached = NULL;
2494 u64 end = start + len - 1;
2495
2496 if (uptodate && tree->track_uptodate)
2497 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002498 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002499}
2500
Chris Masond1310b22008-01-24 16:13:08 -05002501/*
2502 * after a readpage IO is done, we need to:
2503 * clear the uptodate bits on error
2504 * set the uptodate bits if things worked
2505 * set the page up to date if all extents in the tree are uptodate
2506 * clear the lock bit in the extent tree
2507 * unlock the page if there are no other extents locked for it
2508 *
2509 * Scheduling is not allowed, so the extent state tree is expected
2510 * to have one and only one object corresponding to this IO.
2511 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002512static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002513{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002514 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002515 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002516 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002517 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002518 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002519 u64 start;
2520 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002521 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002522 u64 extent_start = 0;
2523 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002524 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002525 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002526 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002527
David Sterbac09abff2017-07-13 18:10:07 +02002528 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002529 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002530 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002531 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002532 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002533
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002534 btrfs_debug(fs_info,
2535 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002536 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002537 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002538 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002539 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002540
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002541 /* We always issue full-page reads, but if some block
2542 * in a page fails to read, blk_update_request() will
2543 * advance bv_offset and adjust bv_len to compensate.
2544 * Print a warning for nonzero offsets, and an error
2545 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002546 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2547 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002548 btrfs_err(fs_info,
2549 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002550 bvec->bv_offset, bvec->bv_len);
2551 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002552 btrfs_info(fs_info,
2553 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002554 bvec->bv_offset, bvec->bv_len);
2555 }
Chris Masond1310b22008-01-24 16:13:08 -05002556
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002557 start = page_offset(page);
2558 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002559 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002560
Chris Mason9be33952013-05-17 18:30:14 -04002561 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002562 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002563 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2564 page, start, end,
2565 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002566 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002567 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002568 else
Josef Bacik7870d082017-05-05 11:57:15 -04002569 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2570 failure_tree, tree, start,
2571 page,
2572 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002573 }
Josef Bacikea466792012-03-26 21:57:36 -04002574
Miao Xief2a09da2013-07-25 19:22:33 +08002575 if (likely(uptodate))
2576 goto readpage_ok;
2577
David Sterba20a7db82017-02-17 16:24:29 +01002578 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002579 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002580 if (ret == -EAGAIN) {
2581 /*
2582 * Data inode's readpage_io_failed_hook() always
2583 * returns -EAGAIN.
2584 *
2585 * The generic bio_readpage_error handles errors
2586 * the following way: If possible, new read
2587 * requests are created and submitted and will
2588 * end up in end_bio_extent_readpage as well (if
2589 * we're lucky, not in the !uptodate case). In
2590 * that case it returns 0 and we just go on with
2591 * the next page in our bio. If it can't handle
2592 * the error it will return -EIO and we remain
2593 * responsible for that page.
2594 */
2595 ret = bio_readpage_error(bio, offset, page,
2596 start, end, mirror);
2597 if (ret == 0) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002598 uptodate = !bio->bi_status;
Liu Bo9d0d1c82017-03-24 15:04:50 -07002599 offset += len;
2600 continue;
2601 }
Chris Mason7e383262008-04-09 16:28:12 -04002602 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002603
2604 /*
2605 * metadata's readpage_io_failed_hook() always returns
2606 * -EIO and fixes nothing. -EIO is also returned if
2607 * data inode error could not be fixed.
2608 */
2609 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002610 }
Miao Xief2a09da2013-07-25 19:22:33 +08002611readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002612 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002613 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002614 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002615 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002616
2617 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002618 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002619 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002620 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002621 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002622 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002623 ClearPageUptodate(page);
2624 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002625 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002626 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002627 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002628
2629 if (unlikely(!uptodate)) {
2630 if (extent_len) {
2631 endio_readpage_release_extent(tree,
2632 extent_start,
2633 extent_len, 1);
2634 extent_start = 0;
2635 extent_len = 0;
2636 }
2637 endio_readpage_release_extent(tree, start,
2638 end - start + 1, 0);
2639 } else if (!extent_len) {
2640 extent_start = start;
2641 extent_len = end + 1 - start;
2642 } else if (extent_start + extent_len == start) {
2643 extent_len += end + 1 - start;
2644 } else {
2645 endio_readpage_release_extent(tree, extent_start,
2646 extent_len, uptodate);
2647 extent_start = start;
2648 extent_len = end + 1 - start;
2649 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002650 }
Chris Masond1310b22008-01-24 16:13:08 -05002651
Miao Xie883d0de2013-07-25 19:22:35 +08002652 if (extent_len)
2653 endio_readpage_release_extent(tree, extent_start, extent_len,
2654 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002655 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002656 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
Chris Masond1310b22008-01-24 16:13:08 -05002657 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002658}
2659
Chris Mason9be33952013-05-17 18:30:14 -04002660/*
David Sterba184f9992017-06-12 17:29:39 +02002661 * Initialize the members up to but not including 'bio'. Use after allocating a
2662 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2663 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002664 */
David Sterba184f9992017-06-12 17:29:39 +02002665static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002666{
David Sterba184f9992017-06-12 17:29:39 +02002667 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2668}
2669
2670/*
David Sterba6e707bc2017-06-02 17:26:26 +02002671 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2672 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2673 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002674 */
David Sterbac821e7f32017-06-02 18:35:36 +02002675struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002676{
2677 struct bio *bio;
2678
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002679 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002680 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002681 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002682 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002683 return bio;
2684}
2685
David Sterba8b6c1d52017-06-02 17:48:13 +02002686struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002687{
Miao Xie23ea8e52014-09-12 18:43:54 +08002688 struct btrfs_io_bio *btrfs_bio;
2689 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002690
David Sterba6e707bc2017-06-02 17:26:26 +02002691 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002692 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002693 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002694 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002695 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002696 return new;
2697}
Chris Mason9be33952013-05-17 18:30:14 -04002698
David Sterbac5e4c3d2017-06-12 17:29:41 +02002699struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002700{
Miao Xiefacc8a222013-07-25 19:22:34 +08002701 struct bio *bio;
2702
David Sterba6e707bc2017-06-02 17:26:26 +02002703 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002704 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002705 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002706 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002707}
2708
Liu Boe4770942017-05-16 10:57:14 -07002709struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002710{
2711 struct bio *bio;
2712 struct btrfs_io_bio *btrfs_bio;
2713
2714 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002715 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002716 ASSERT(bio);
2717
2718 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002719 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002720
2721 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002722 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002723 return bio;
2724}
Chris Mason9be33952013-05-17 18:30:14 -04002725
Mike Christie1f7ad752016-06-05 14:31:51 -05002726static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2727 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002728{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002729 blk_status_t ret = 0;
Ming Leic45a8f22017-12-18 20:22:05 +08002730 struct bio_vec *bvec = bio_last_bvec_all(bio);
Chris Mason70dec802008-01-29 09:59:12 -05002731 struct page *page = bvec->bv_page;
2732 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002733 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002734
Miao Xie4eee4fa2012-12-21 09:17:45 +00002735 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002736
David Woodhouse902b22f2008-08-20 08:51:49 -04002737 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002738
David Sterba20c98012017-02-17 15:59:35 +01002739 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002740 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002741 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002742 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002743 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002744
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002745 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002746}
2747
David Sterba4b81ba42017-06-06 19:14:26 +02002748/*
2749 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002750 * @tree: tree so we can call our merge_bio hook
2751 * @wbc: optional writeback control for io accounting
2752 * @page: page to add to the bio
2753 * @pg_offset: offset of the new bio or to check whether we are adding
2754 * a contiguous page to the previous one
2755 * @size: portion of page that we want to write
2756 * @offset: starting offset in the page
2757 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002758 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002759 * @end_io_func: end_io callback for new bio
2760 * @mirror_num: desired mirror to read/write
2761 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2762 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002763 */
2764static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002765 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002766 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002767 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002768 struct block_device *bdev,
2769 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002770 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002771 int mirror_num,
2772 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002773 unsigned long bio_flags,
2774 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002775{
2776 int ret = 0;
2777 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002778 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002779 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002780
David Sterba5c2b1fd2017-06-06 19:22:55 +02002781 ASSERT(bio_ret);
2782
2783 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002784 bool contig;
2785 bool can_merge = true;
2786
Chris Masond1310b22008-01-24 16:13:08 -05002787 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002788 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002789 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002790 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002791 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002792
David Sterba0c8508a2017-06-12 20:00:43 +02002793 if (tree->ops && tree->ops->merge_bio_hook(page, offset,
2794 page_size, bio, bio_flags))
2795 can_merge = false;
2796
2797 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002798 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002799 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002800 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002801 if (ret < 0) {
2802 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002803 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002804 }
Chris Masond1310b22008-01-24 16:13:08 -05002805 bio = NULL;
2806 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002807 if (wbc)
2808 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002809 return 0;
2810 }
2811 }
Chris Masonc8b97812008-10-29 14:49:59 -04002812
David Sterba6273b7f2017-10-04 17:30:11 +02002813 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002814 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002815 bio->bi_end_io = end_io_func;
2816 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002817 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002818 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002819 if (wbc) {
2820 wbc_init_bio(wbc, bio);
2821 wbc_account_io(wbc, page, page_size);
2822 }
Chris Mason70dec802008-01-29 09:59:12 -05002823
David Sterba5c2b1fd2017-06-06 19:22:55 +02002824 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002825
2826 return ret;
2827}
2828
Eric Sandeen48a3b632013-04-25 20:41:01 +00002829static void attach_extent_buffer_page(struct extent_buffer *eb,
2830 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002831{
2832 if (!PagePrivate(page)) {
2833 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002834 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002835 set_page_private(page, (unsigned long)eb);
2836 } else {
2837 WARN_ON(page->private != (unsigned long)eb);
2838 }
2839}
2840
Chris Masond1310b22008-01-24 16:13:08 -05002841void set_page_extent_mapped(struct page *page)
2842{
2843 if (!PagePrivate(page)) {
2844 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002845 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002846 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002847 }
2848}
2849
Miao Xie125bac012013-07-25 19:22:37 +08002850static struct extent_map *
2851__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2852 u64 start, u64 len, get_extent_t *get_extent,
2853 struct extent_map **em_cached)
2854{
2855 struct extent_map *em;
2856
2857 if (em_cached && *em_cached) {
2858 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002859 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002860 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002861 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002862 return em;
2863 }
2864
2865 free_extent_map(em);
2866 *em_cached = NULL;
2867 }
2868
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002869 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002870 if (em_cached && !IS_ERR_OR_NULL(em)) {
2871 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002872 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002873 *em_cached = em;
2874 }
2875 return em;
2876}
Chris Masond1310b22008-01-24 16:13:08 -05002877/*
2878 * basic readpage implementation. Locked extent state structs are inserted
2879 * into the tree that are removed when the IO is done (by the end_io
2880 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002881 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002882 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002883 */
Miao Xie99740902013-07-25 19:22:36 +08002884static int __do_readpage(struct extent_io_tree *tree,
2885 struct page *page,
2886 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002887 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002888 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002889 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002890 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002891{
2892 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002893 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002894 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002895 u64 cur = start;
2896 u64 extent_offset;
2897 u64 last_byte = i_size_read(inode);
2898 u64 block_start;
2899 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002900 struct extent_map *em;
2901 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002902 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002903 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002904 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002905 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002906 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002907 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002908 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002909
2910 set_page_extent_mapped(page);
2911
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002912 if (!PageUptodate(page)) {
2913 if (cleancache_get_page(page) == 0) {
2914 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002915 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002916 goto out;
2917 }
2918 }
2919
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002920 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002921 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002922 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002923
2924 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002925 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002926 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002927 memset(userpage + zero_offset, 0, iosize);
2928 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002929 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002930 }
2931 }
Chris Masond1310b22008-01-24 16:13:08 -05002932 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002933 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002934 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002935
Chris Masond1310b22008-01-24 16:13:08 -05002936 if (cur >= last_byte) {
2937 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002938 struct extent_state *cached = NULL;
2939
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002940 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002941 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002942 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002943 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002944 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002945 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002946 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002947 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01002948 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05002949 break;
2950 }
Miao Xie125bac012013-07-25 19:22:37 +08002951 em = __get_extent_map(inode, page, pg_offset, cur,
2952 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002953 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002954 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002955 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002956 break;
2957 }
Chris Masond1310b22008-01-24 16:13:08 -05002958 extent_offset = cur - em->start;
2959 BUG_ON(extent_map_end(em) <= cur);
2960 BUG_ON(end < cur);
2961
Li Zefan261507a02010-12-17 14:21:50 +08002962 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002963 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002964 extent_set_compress_type(&this_bio_flag,
2965 em->compress_type);
2966 }
Chris Masonc8b97812008-10-29 14:49:59 -04002967
Chris Masond1310b22008-01-24 16:13:08 -05002968 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2969 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002970 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002971 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2972 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002973 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002974 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002975 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002976 disk_io_size = iosize;
2977 }
Chris Masond1310b22008-01-24 16:13:08 -05002978 bdev = em->bdev;
2979 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002980 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2981 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002982
2983 /*
2984 * If we have a file range that points to a compressed extent
2985 * and it's followed by a consecutive file range that points to
2986 * to the same compressed extent (possibly with a different
2987 * offset and/or length, so it either points to the whole extent
2988 * or only part of it), we must make sure we do not submit a
2989 * single bio to populate the pages for the 2 ranges because
2990 * this makes the compressed extent read zero out the pages
2991 * belonging to the 2nd range. Imagine the following scenario:
2992 *
2993 * File layout
2994 * [0 - 8K] [8K - 24K]
2995 * | |
2996 * | |
2997 * points to extent X, points to extent X,
2998 * offset 4K, length of 8K offset 0, length 16K
2999 *
3000 * [extent X, compressed length = 4K uncompressed length = 16K]
3001 *
3002 * If the bio to read the compressed extent covers both ranges,
3003 * it will decompress extent X into the pages belonging to the
3004 * first range and then it will stop, zeroing out the remaining
3005 * pages that belong to the other range that points to extent X.
3006 * So here we make sure we submit 2 bios, one for the first
3007 * range and another one for the third range. Both will target
3008 * the same physical extent from disk, but we can't currently
3009 * make the compressed bio endio callback populate the pages
3010 * for both ranges because each compressed bio is tightly
3011 * coupled with a single extent map, and each range can have
3012 * an extent map with a different offset value relative to the
3013 * uncompressed data of our extent and different lengths. This
3014 * is a corner case so we prioritize correctness over
3015 * non-optimal behavior (submitting 2 bios for the same extent).
3016 */
3017 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3018 prev_em_start && *prev_em_start != (u64)-1 &&
3019 *prev_em_start != em->orig_start)
3020 force_bio_submit = true;
3021
3022 if (prev_em_start)
3023 *prev_em_start = em->orig_start;
3024
Chris Masond1310b22008-01-24 16:13:08 -05003025 free_extent_map(em);
3026 em = NULL;
3027
3028 /* we've found a hole, just zero and go on */
3029 if (block_start == EXTENT_MAP_HOLE) {
3030 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003031 struct extent_state *cached = NULL;
3032
Cong Wang7ac687d2011-11-25 23:14:28 +08003033 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003034 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003035 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003036 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003037
3038 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003039 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003040 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003041 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003042 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003043 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003044 continue;
3045 }
3046 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003047 if (test_range_bit(tree, cur, cur_end,
3048 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003049 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003050 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003051 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003052 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003053 continue;
3054 }
Chris Mason70dec802008-01-29 09:59:12 -05003055 /* we have an inline extent but it didn't get marked up
3056 * to date. Error out
3057 */
3058 if (block_start == EXTENT_MAP_INLINE) {
3059 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003060 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003061 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003062 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003063 continue;
3064 }
Chris Masond1310b22008-01-24 16:13:08 -05003065
David Sterba4b81ba42017-06-06 19:14:26 +02003066 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003067 page, offset, disk_io_size,
3068 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003069 end_bio_extent_readpage, mirror_num,
3070 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003071 this_bio_flag,
3072 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003073 if (!ret) {
3074 nr++;
3075 *bio_flags = this_bio_flag;
3076 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003077 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003078 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003079 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003080 }
Chris Masond1310b22008-01-24 16:13:08 -05003081 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003082 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003083 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003084out:
Chris Masond1310b22008-01-24 16:13:08 -05003085 if (!nr) {
3086 if (!PageError(page))
3087 SetPageUptodate(page);
3088 unlock_page(page);
3089 }
Liu Bobaf863b2016-07-11 10:39:07 -07003090 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003091}
3092
Miao Xie99740902013-07-25 19:22:36 +08003093static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3094 struct page *pages[], int nr_pages,
3095 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003096 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003097 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003098 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003099 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003100{
3101 struct inode *inode;
3102 struct btrfs_ordered_extent *ordered;
3103 int index;
3104
3105 inode = pages[0]->mapping->host;
3106 while (1) {
3107 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003108 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003109 end - start + 1);
3110 if (!ordered)
3111 break;
3112 unlock_extent(tree, start, end);
3113 btrfs_start_ordered_extent(inode, ordered, 1);
3114 btrfs_put_ordered_extent(ordered);
3115 }
3116
3117 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003118 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
3119 bio, 0, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003120 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003121 }
3122}
3123
3124static void __extent_readpages(struct extent_io_tree *tree,
3125 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003126 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003127 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003128 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003129 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003130{
Stefan Behrens35a36212013-08-14 18:12:25 +02003131 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003132 u64 end = 0;
3133 u64 page_start;
3134 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003135 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003136
3137 for (index = 0; index < nr_pages; index++) {
3138 page_start = page_offset(pages[index]);
3139 if (!end) {
3140 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003141 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003142 first_index = index;
3143 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003144 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003145 } else {
3146 __do_contiguous_readpages(tree, &pages[first_index],
3147 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003148 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003149 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003150 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003151 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003152 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003153 first_index = index;
3154 }
3155 }
3156
3157 if (end)
3158 __do_contiguous_readpages(tree, &pages[first_index],
3159 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003160 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003161 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003162}
3163
3164static int __extent_read_full_page(struct extent_io_tree *tree,
3165 struct page *page,
3166 get_extent_t *get_extent,
3167 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003168 unsigned long *bio_flags,
3169 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003170{
3171 struct inode *inode = page->mapping->host;
3172 struct btrfs_ordered_extent *ordered;
3173 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003174 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003175 int ret;
3176
3177 while (1) {
3178 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003179 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003180 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003181 if (!ordered)
3182 break;
3183 unlock_extent(tree, start, end);
3184 btrfs_start_ordered_extent(inode, ordered, 1);
3185 btrfs_put_ordered_extent(ordered);
3186 }
3187
Miao Xie125bac012013-07-25 19:22:37 +08003188 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003189 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003190 return ret;
3191}
3192
Chris Masond1310b22008-01-24 16:13:08 -05003193int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003194 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003195{
3196 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003197 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003198 int ret;
3199
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003200 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003201 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003202 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003203 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003204 return ret;
3205}
Chris Masond1310b22008-01-24 16:13:08 -05003206
David Sterba3d4b9492017-02-10 19:33:41 +01003207static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003208 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003209{
3210 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003211}
3212
Chris Masond1310b22008-01-24 16:13:08 -05003213/*
Chris Mason40f76582014-05-21 13:35:51 -07003214 * helper for __extent_writepage, doing all of the delayed allocation setup.
3215 *
3216 * This returns 1 if our fill_delalloc function did all the work required
3217 * to write the page (copy into inline extent). In this case the IO has
3218 * been started and the page is already unlocked.
3219 *
3220 * This returns 0 if all went well (page still locked)
3221 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003222 */
Chris Mason40f76582014-05-21 13:35:51 -07003223static noinline_for_stack int writepage_delalloc(struct inode *inode,
3224 struct page *page, struct writeback_control *wbc,
3225 struct extent_page_data *epd,
3226 u64 delalloc_start,
3227 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003228{
Chris Mason40f76582014-05-21 13:35:51 -07003229 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003230 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003231 u64 nr_delalloc;
3232 u64 delalloc_to_write = 0;
3233 u64 delalloc_end = 0;
3234 int ret;
3235 int page_started = 0;
3236
3237 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3238 return 0;
3239
3240 while (delalloc_end < page_end) {
3241 nr_delalloc = find_lock_delalloc_range(inode, tree,
3242 page,
3243 &delalloc_start,
3244 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003245 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003246 if (nr_delalloc == 0) {
3247 delalloc_start = delalloc_end + 1;
3248 continue;
3249 }
3250 ret = tree->ops->fill_delalloc(inode, page,
3251 delalloc_start,
3252 delalloc_end,
3253 &page_started,
Liu Bof82b7352017-10-23 23:18:16 -06003254 nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003255 /* File system has been set read-only */
3256 if (ret) {
3257 SetPageError(page);
3258 /* fill_delalloc should be return < 0 for error
3259 * but just in case, we use > 0 here meaning the
3260 * IO is started, so we don't want to return > 0
3261 * unless things are going well.
3262 */
3263 ret = ret < 0 ? ret : -EIO;
3264 goto done;
3265 }
3266 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003267 * delalloc_end is already one less than the total length, so
3268 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003269 */
3270 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003271 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003272 delalloc_start = delalloc_end + 1;
3273 }
3274 if (wbc->nr_to_write < delalloc_to_write) {
3275 int thresh = 8192;
3276
3277 if (delalloc_to_write < thresh * 2)
3278 thresh = delalloc_to_write;
3279 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3280 thresh);
3281 }
3282
3283 /* did the fill delalloc function already unlock and start
3284 * the IO?
3285 */
3286 if (page_started) {
3287 /*
3288 * we've unlocked the page, so we can't update
3289 * the mapping's writeback index, just update
3290 * nr_to_write.
3291 */
3292 wbc->nr_to_write -= *nr_written;
3293 return 1;
3294 }
3295
3296 ret = 0;
3297
3298done:
3299 return ret;
3300}
3301
3302/*
3303 * helper for __extent_writepage. This calls the writepage start hooks,
3304 * and does the loop to map the page into extents and bios.
3305 *
3306 * We return 1 if the IO is started and the page is unlocked,
3307 * 0 if all went well (page still locked)
3308 * < 0 if there were errors (page still locked)
3309 */
3310static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3311 struct page *page,
3312 struct writeback_control *wbc,
3313 struct extent_page_data *epd,
3314 loff_t i_size,
3315 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003316 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003317{
Chris Masond1310b22008-01-24 16:13:08 -05003318 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003319 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003320 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003321 u64 end;
3322 u64 cur = start;
3323 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003324 u64 block_start;
3325 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003326 struct extent_map *em;
3327 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003328 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003329 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003330 int ret = 0;
3331 int nr = 0;
3332 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003333
Chris Mason247e7432008-07-17 12:53:51 -04003334 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003335 ret = tree->ops->writepage_start_hook(page, start,
3336 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003337 if (ret) {
3338 /* Fixup worker will requeue */
3339 if (ret == -EBUSY)
3340 wbc->pages_skipped++;
3341 else
3342 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003343
David Sterba3d4b9492017-02-10 19:33:41 +01003344 update_nr_written(wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003345 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003346 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003347 }
3348 }
3349
Chris Mason11c83492009-04-20 15:50:09 -04003350 /*
3351 * we don't want to touch the inode after unlocking the page,
3352 * so we update the mapping writeback index now
3353 */
David Sterba3d4b9492017-02-10 19:33:41 +01003354 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003355
Chris Masond1310b22008-01-24 16:13:08 -05003356 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003357 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003358 if (tree->ops && tree->ops->writepage_end_io_hook)
3359 tree->ops->writepage_end_io_hook(page, start,
3360 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003361 goto done;
3362 }
3363
Chris Masond1310b22008-01-24 16:13:08 -05003364 blocksize = inode->i_sb->s_blocksize;
3365
3366 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003367 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003368 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003369
Chris Mason40f76582014-05-21 13:35:51 -07003370 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003371 if (tree->ops && tree->ops->writepage_end_io_hook)
3372 tree->ops->writepage_end_io_hook(page, cur,
3373 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003374 break;
3375 }
David Sterba3c98c622017-06-23 04:01:08 +02003376 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003377 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003378 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003379 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003380 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003381 break;
3382 }
3383
3384 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003385 em_end = extent_map_end(em);
3386 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003387 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003388 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003389 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003390 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003391 bdev = em->bdev;
3392 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003393 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003394 free_extent_map(em);
3395 em = NULL;
3396
Chris Masonc8b97812008-10-29 14:49:59 -04003397 /*
3398 * compressed and inline extents are written through other
3399 * paths in the FS
3400 */
3401 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003402 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003403 /*
3404 * end_io notification does not happen here for
3405 * compressed extents
3406 */
3407 if (!compressed && tree->ops &&
3408 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003409 tree->ops->writepage_end_io_hook(page, cur,
3410 cur + iosize - 1,
3411 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003412 else if (compressed) {
3413 /* we don't want to end_page_writeback on
3414 * a compressed extent. this happens
3415 * elsewhere
3416 */
3417 nr++;
3418 }
3419
3420 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003421 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003422 continue;
3423 }
Chris Masonc8b97812008-10-29 14:49:59 -04003424
David Sterba58409ed2016-05-04 11:46:10 +02003425 set_range_writeback(tree, cur, cur + iosize - 1);
3426 if (!PageWriteback(page)) {
3427 btrfs_err(BTRFS_I(inode)->root->fs_info,
3428 "page %lu not writeback, cur %llu end %llu",
3429 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003430 }
David Sterba58409ed2016-05-04 11:46:10 +02003431
David Sterba4b81ba42017-06-06 19:14:26 +02003432 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003433 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003434 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003435 end_bio_extent_writepage,
3436 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003437 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003438 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003439 if (PageWriteback(page))
3440 end_page_writeback(page);
3441 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003442
Chris Masond1310b22008-01-24 16:13:08 -05003443 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003444 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003445 nr++;
3446 }
3447done:
Chris Mason40f76582014-05-21 13:35:51 -07003448 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003449 return ret;
3450}
3451
3452/*
3453 * the writepage semantics are similar to regular writepage. extent
3454 * records are inserted to lock ranges in the tree, and as dirty areas
3455 * are found, they are marked writeback. Then the lock bits are removed
3456 * and the end_io handler clears the writeback ranges
3457 */
3458static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003459 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003460{
3461 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003462 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003463 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003464 int ret;
3465 int nr = 0;
3466 size_t pg_offset = 0;
3467 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003468 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003469 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003470 unsigned long nr_written = 0;
3471
Liu Boff40adf2017-08-24 18:19:48 -06003472 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003473
3474 trace___extent_writepage(page, inode, wbc);
3475
3476 WARN_ON(!PageLocked(page));
3477
3478 ClearPageError(page);
3479
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003480 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003481 if (page->index > end_index ||
3482 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003483 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003484 unlock_page(page);
3485 return 0;
3486 }
3487
3488 if (page->index == end_index) {
3489 char *userpage;
3490
3491 userpage = kmap_atomic(page);
3492 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003493 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003494 kunmap_atomic(userpage);
3495 flush_dcache_page(page);
3496 }
3497
3498 pg_offset = 0;
3499
3500 set_page_extent_mapped(page);
3501
3502 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3503 if (ret == 1)
3504 goto done_unlocked;
3505 if (ret)
3506 goto done;
3507
3508 ret = __extent_writepage_io(inode, page, wbc, epd,
3509 i_size, nr_written, write_flags, &nr);
3510 if (ret == 1)
3511 goto done_unlocked;
3512
3513done:
Chris Masond1310b22008-01-24 16:13:08 -05003514 if (nr == 0) {
3515 /* make sure the mapping tag for page dirty gets cleared */
3516 set_page_writeback(page);
3517 end_page_writeback(page);
3518 }
Filipe Manana61391d52014-05-09 17:17:40 +01003519 if (PageError(page)) {
3520 ret = ret < 0 ? ret : -EIO;
3521 end_extent_writepage(page, ret, start, page_end);
3522 }
Chris Masond1310b22008-01-24 16:13:08 -05003523 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003524 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003525
Chris Mason11c83492009-04-20 15:50:09 -04003526done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003527 return 0;
3528}
3529
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003530void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003531{
NeilBrown74316202014-07-07 15:16:04 +10003532 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3533 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003534}
3535
Chris Mason0e378df2014-05-19 20:55:27 -07003536static noinline_for_stack int
3537lock_extent_buffer_for_io(struct extent_buffer *eb,
3538 struct btrfs_fs_info *fs_info,
3539 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003540{
David Sterbacc5e31a2018-03-01 18:20:27 +01003541 int i, num_pages;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003542 int flush = 0;
3543 int ret = 0;
3544
3545 if (!btrfs_try_tree_write_lock(eb)) {
3546 flush = 1;
3547 flush_write_bio(epd);
3548 btrfs_tree_lock(eb);
3549 }
3550
3551 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3552 btrfs_tree_unlock(eb);
3553 if (!epd->sync_io)
3554 return 0;
3555 if (!flush) {
3556 flush_write_bio(epd);
3557 flush = 1;
3558 }
Chris Masona098d8e82012-03-21 12:09:56 -04003559 while (1) {
3560 wait_on_extent_buffer_writeback(eb);
3561 btrfs_tree_lock(eb);
3562 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3563 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003564 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003565 }
3566 }
3567
Josef Bacik51561ff2012-07-20 16:25:24 -04003568 /*
3569 * We need to do this to prevent races in people who check if the eb is
3570 * under IO since we can end up having no IO bits set for a short period
3571 * of time.
3572 */
3573 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003574 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3575 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003576 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003577 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003578 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3579 -eb->len,
3580 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003581 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003582 } else {
3583 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 }
3585
3586 btrfs_tree_unlock(eb);
3587
3588 if (!ret)
3589 return ret;
3590
David Sterba65ad0102018-06-29 10:56:49 +02003591 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003592 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003593 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003594
3595 if (!trylock_page(p)) {
3596 if (!flush) {
3597 flush_write_bio(epd);
3598 flush = 1;
3599 }
3600 lock_page(p);
3601 }
3602 }
3603
3604 return ret;
3605}
3606
3607static void end_extent_buffer_writeback(struct extent_buffer *eb)
3608{
3609 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003610 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003611 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3612}
3613
Filipe Manana656f30d2014-09-26 12:25:56 +01003614static void set_btree_ioerr(struct page *page)
3615{
3616 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003617
3618 SetPageError(page);
3619 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3620 return;
3621
3622 /*
3623 * If writeback for a btree extent that doesn't belong to a log tree
3624 * failed, increment the counter transaction->eb_write_errors.
3625 * We do this because while the transaction is running and before it's
3626 * committing (when we call filemap_fdata[write|wait]_range against
3627 * the btree inode), we might have
3628 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3629 * returns an error or an error happens during writeback, when we're
3630 * committing the transaction we wouldn't know about it, since the pages
3631 * can be no longer dirty nor marked anymore for writeback (if a
3632 * subsequent modification to the extent buffer didn't happen before the
3633 * transaction commit), which makes filemap_fdata[write|wait]_range not
3634 * able to find the pages tagged with SetPageError at transaction
3635 * commit time. So if this happens we must abort the transaction,
3636 * otherwise we commit a super block with btree roots that point to
3637 * btree nodes/leafs whose content on disk is invalid - either garbage
3638 * or the content of some node/leaf from a past generation that got
3639 * cowed or deleted and is no longer valid.
3640 *
3641 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3642 * not be enough - we need to distinguish between log tree extents vs
3643 * non-log tree extents, and the next filemap_fdatawait_range() call
3644 * will catch and clear such errors in the mapping - and that call might
3645 * be from a log sync and not from a transaction commit. Also, checking
3646 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3647 * not done and would not be reliable - the eb might have been released
3648 * from memory and reading it back again means that flag would not be
3649 * set (since it's a runtime flag, not persisted on disk).
3650 *
3651 * Using the flags below in the btree inode also makes us achieve the
3652 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3653 * writeback for all dirty pages and before filemap_fdatawait_range()
3654 * is called, the writeback for all dirty pages had already finished
3655 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3656 * filemap_fdatawait_range() would return success, as it could not know
3657 * that writeback errors happened (the pages were no longer tagged for
3658 * writeback).
3659 */
3660 switch (eb->log_index) {
3661 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003662 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003663 break;
3664 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003665 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003666 break;
3667 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003668 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003669 break;
3670 default:
3671 BUG(); /* unexpected, logic error */
3672 }
3673}
3674
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003675static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003677 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003678 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003679 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003680
David Sterbac09abff2017-07-13 18:10:07 +02003681 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003682 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003683 struct page *page = bvec->bv_page;
3684
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003685 eb = (struct extent_buffer *)page->private;
3686 BUG_ON(!eb);
3687 done = atomic_dec_and_test(&eb->io_pages);
3688
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003689 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003690 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003691 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003692 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003693 }
3694
3695 end_page_writeback(page);
3696
3697 if (!done)
3698 continue;
3699
3700 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003701 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003702
3703 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003704}
3705
Chris Mason0e378df2014-05-19 20:55:27 -07003706static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 struct btrfs_fs_info *fs_info,
3708 struct writeback_control *wbc,
3709 struct extent_page_data *epd)
3710{
3711 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003712 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003714 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003715 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003716 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003717 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003718 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003719
Filipe Manana656f30d2014-09-26 12:25:56 +01003720 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003721 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003722 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003723
Liu Bo851cd172016-09-23 13:44:44 -07003724 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3725 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003726 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003727 end = btrfs_node_key_ptr_offset(nritems);
3728
David Sterbab159fa22016-11-08 18:09:03 +01003729 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003730 } else {
3731 /*
3732 * leaf:
3733 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3734 */
3735 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003736 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003737 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003738 }
3739
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003740 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003741 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003742
3743 clear_page_dirty_for_io(p);
3744 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003745 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003746 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003747 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003748 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003749 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003750 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003751 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003752 if (PageWriteback(p))
3753 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003754 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3755 end_extent_buffer_writeback(eb);
3756 ret = -EIO;
3757 break;
3758 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003759 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003760 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761 unlock_page(p);
3762 }
3763
3764 if (unlikely(ret)) {
3765 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003766 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003767 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003768 unlock_page(p);
3769 }
3770 }
3771
3772 return ret;
3773}
3774
3775int btree_write_cache_pages(struct address_space *mapping,
3776 struct writeback_control *wbc)
3777{
3778 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3779 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3780 struct extent_buffer *eb, *prev_eb = NULL;
3781 struct extent_page_data epd = {
3782 .bio = NULL,
3783 .tree = tree,
3784 .extent_locked = 0,
3785 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3786 };
3787 int ret = 0;
3788 int done = 0;
3789 int nr_to_write_done = 0;
3790 struct pagevec pvec;
3791 int nr_pages;
3792 pgoff_t index;
3793 pgoff_t end; /* Inclusive */
3794 int scanned = 0;
3795 int tag;
3796
Mel Gorman86679822017-11-15 17:37:52 -08003797 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003798 if (wbc->range_cyclic) {
3799 index = mapping->writeback_index; /* Start from prev offset */
3800 end = -1;
3801 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003802 index = wbc->range_start >> PAGE_SHIFT;
3803 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003804 scanned = 1;
3805 }
3806 if (wbc->sync_mode == WB_SYNC_ALL)
3807 tag = PAGECACHE_TAG_TOWRITE;
3808 else
3809 tag = PAGECACHE_TAG_DIRTY;
3810retry:
3811 if (wbc->sync_mode == WB_SYNC_ALL)
3812 tag_pages_for_writeback(mapping, index, end);
3813 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003814 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003815 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003816 unsigned i;
3817
3818 scanned = 1;
3819 for (i = 0; i < nr_pages; i++) {
3820 struct page *page = pvec.pages[i];
3821
3822 if (!PagePrivate(page))
3823 continue;
3824
Josef Bacikb5bae262012-09-14 13:43:01 -04003825 spin_lock(&mapping->private_lock);
3826 if (!PagePrivate(page)) {
3827 spin_unlock(&mapping->private_lock);
3828 continue;
3829 }
3830
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003831 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003832
3833 /*
3834 * Shouldn't happen and normally this would be a BUG_ON
3835 * but no sense in crashing the users box for something
3836 * we can survive anyway.
3837 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303838 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003839 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003840 continue;
3841 }
3842
Josef Bacikb5bae262012-09-14 13:43:01 -04003843 if (eb == prev_eb) {
3844 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003845 continue;
3846 }
3847
Josef Bacikb5bae262012-09-14 13:43:01 -04003848 ret = atomic_inc_not_zero(&eb->refs);
3849 spin_unlock(&mapping->private_lock);
3850 if (!ret)
3851 continue;
3852
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003853 prev_eb = eb;
3854 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3855 if (!ret) {
3856 free_extent_buffer(eb);
3857 continue;
3858 }
3859
3860 ret = write_one_eb(eb, fs_info, wbc, &epd);
3861 if (ret) {
3862 done = 1;
3863 free_extent_buffer(eb);
3864 break;
3865 }
3866 free_extent_buffer(eb);
3867
3868 /*
3869 * the filesystem may choose to bump up nr_to_write.
3870 * We have to make sure to honor the new nr_to_write
3871 * at any time
3872 */
3873 nr_to_write_done = wbc->nr_to_write <= 0;
3874 }
3875 pagevec_release(&pvec);
3876 cond_resched();
3877 }
3878 if (!scanned && !done) {
3879 /*
3880 * We hit the last page and there is more work to be done: wrap
3881 * back to the start of the file
3882 */
3883 scanned = 1;
3884 index = 0;
3885 goto retry;
3886 }
3887 flush_write_bio(&epd);
3888 return ret;
3889}
3890
Chris Masond1310b22008-01-24 16:13:08 -05003891/**
Chris Mason4bef0842008-09-08 11:18:08 -04003892 * 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 -05003893 * @mapping: address space structure to write
3894 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003895 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003896 *
3897 * If a page is already under I/O, write_cache_pages() skips it, even
3898 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3899 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3900 * and msync() need to guarantee that all the data which was dirty at the time
3901 * the call was made get new I/O started against them. If wbc->sync_mode is
3902 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3903 * existing IO to complete.
3904 */
David Sterba4242b642017-02-10 19:38:24 +01003905static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003906 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003907 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003908{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003909 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003910 int ret = 0;
3911 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003912 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003913 struct pagevec pvec;
3914 int nr_pages;
3915 pgoff_t index;
3916 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003917 pgoff_t done_index;
3918 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003919 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003920 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003921
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003922 /*
3923 * We have to hold onto the inode so that ordered extents can do their
3924 * work when the IO finishes. The alternative to this is failing to add
3925 * an ordered extent if the igrab() fails there and that is a huge pain
3926 * to deal with, so instead just hold onto the inode throughout the
3927 * writepages operation. If it fails here we are freeing up the inode
3928 * anyway and we'd rather not waste our time writing out stuff that is
3929 * going to be truncated anyway.
3930 */
3931 if (!igrab(inode))
3932 return 0;
3933
Mel Gorman86679822017-11-15 17:37:52 -08003934 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003935 if (wbc->range_cyclic) {
3936 index = mapping->writeback_index; /* Start from prev offset */
3937 end = -1;
3938 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003939 index = wbc->range_start >> PAGE_SHIFT;
3940 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003941 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3942 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003943 scanned = 1;
3944 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003945 if (wbc->sync_mode == WB_SYNC_ALL)
3946 tag = PAGECACHE_TAG_TOWRITE;
3947 else
3948 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003949retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003950 if (wbc->sync_mode == WB_SYNC_ALL)
3951 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003952 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003953 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003954 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3955 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003956 unsigned i;
3957
3958 scanned = 1;
3959 for (i = 0; i < nr_pages; i++) {
3960 struct page *page = pvec.pages[i];
3961
Liu Boa91326672016-03-07 16:56:21 -08003962 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003963 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003964 * At this point we hold neither the i_pages lock nor
3965 * the page lock: the page may be truncated or
3966 * invalidated (changing page->mapping to NULL),
3967 * or even swizzled back from swapper_space to
3968 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003969 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003970 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003971 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003972 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003973 }
Chris Masond1310b22008-01-24 16:13:08 -05003974
3975 if (unlikely(page->mapping != mapping)) {
3976 unlock_page(page);
3977 continue;
3978 }
3979
Chris Masond2c3f4f2008-11-19 12:44:22 -05003980 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003981 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003982 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003983 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003984 }
Chris Masond1310b22008-01-24 16:13:08 -05003985
3986 if (PageWriteback(page) ||
3987 !clear_page_dirty_for_io(page)) {
3988 unlock_page(page);
3989 continue;
3990 }
3991
David Sterbaaab6e9e2017-11-30 18:00:02 +01003992 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003993
3994 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3995 unlock_page(page);
3996 ret = 0;
3997 }
Liu Boa91326672016-03-07 16:56:21 -08003998 if (ret < 0) {
3999 /*
4000 * done_index is set past this page,
4001 * so media errors will not choke
4002 * background writeout for the entire
4003 * file. This has consequences for
4004 * range_cyclic semantics (ie. it may
4005 * not be suitable for data integrity
4006 * writeout).
4007 */
4008 done_index = page->index + 1;
4009 done = 1;
4010 break;
4011 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004012
4013 /*
4014 * the filesystem may choose to bump up nr_to_write.
4015 * We have to make sure to honor the new nr_to_write
4016 * at any time
4017 */
4018 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004019 }
4020 pagevec_release(&pvec);
4021 cond_resched();
4022 }
Liu Bo894b36e2016-03-07 16:56:22 -08004023 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004024 /*
4025 * We hit the last page and there is more work to be done: wrap
4026 * back to the start of the file
4027 */
4028 scanned = 1;
4029 index = 0;
4030 goto retry;
4031 }
Liu Boa91326672016-03-07 16:56:21 -08004032
4033 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4034 mapping->writeback_index = done_index;
4035
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004036 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004037 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004038}
Chris Masond1310b22008-01-24 16:13:08 -05004039
David Sterbaaab6e9e2017-11-30 18:00:02 +01004040static void flush_write_bio(struct extent_page_data *epd)
Chris Masonffbd5172009-04-20 15:50:09 -04004041{
4042 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004043 int ret;
4044
Liu Bo18fdc672017-09-13 12:18:22 -06004045 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004046 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004047 epd->bio = NULL;
4048 }
4049}
4050
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004051int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004052{
4053 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004054 struct extent_page_data epd = {
4055 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004056 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004057 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004058 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004059 };
Chris Masond1310b22008-01-24 16:13:08 -05004060
Chris Masond1310b22008-01-24 16:13:08 -05004061 ret = __extent_writepage(page, wbc, &epd);
4062
David Sterbae2932ee2017-06-23 04:16:17 +02004063 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004064 return ret;
4065}
Chris Masond1310b22008-01-24 16:13:08 -05004066
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004067int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004068 int mode)
4069{
4070 int ret = 0;
4071 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004072 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004073 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004074 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4075 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004076
4077 struct extent_page_data epd = {
4078 .bio = NULL,
4079 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004080 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004081 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004082 };
4083 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004084 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004085 .nr_to_write = nr_pages * 2,
4086 .range_start = start,
4087 .range_end = end + 1,
4088 };
4089
Chris Masond3977122009-01-05 21:25:51 -05004090 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004091 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004092 if (clear_page_dirty_for_io(page))
4093 ret = __extent_writepage(page, &wbc_writepages, &epd);
4094 else {
4095 if (tree->ops && tree->ops->writepage_end_io_hook)
4096 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004097 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004098 NULL, 1);
4099 unlock_page(page);
4100 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004101 put_page(page);
4102 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004103 }
4104
David Sterbae2932ee2017-06-23 04:16:17 +02004105 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004106 return ret;
4107}
Chris Masond1310b22008-01-24 16:13:08 -05004108
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004109int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004110 struct writeback_control *wbc)
4111{
4112 int ret = 0;
4113 struct extent_page_data epd = {
4114 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004115 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004116 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004117 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004118 };
4119
David Sterba935db852017-06-23 04:30:28 +02004120 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004121 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004122 return ret;
4123}
Chris Masond1310b22008-01-24 16:13:08 -05004124
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004125int extent_readpages(struct address_space *mapping, struct list_head *pages,
4126 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004127{
4128 struct bio *bio = NULL;
4129 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004130 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004131 struct page *pagepool[16];
4132 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004133 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004134 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004135 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004136 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004137
Chris Masond1310b22008-01-24 16:13:08 -05004138 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004139 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004140
4141 prefetchw(&page->flags);
4142 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004143 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004144 page->index,
4145 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004146 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004147 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004148 }
Liu Bo67c96842012-07-20 21:43:09 -06004149
4150 pagepool[nr++] = page;
4151 if (nr < ARRAY_SIZE(pagepool))
4152 continue;
David Sterbae4d17ef2017-06-23 04:09:57 +02004153 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4154 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004155 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004156 }
Miao Xie99740902013-07-25 19:22:36 +08004157 if (nr)
David Sterbae4d17ef2017-06-23 04:09:57 +02004158 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4159 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004160
Miao Xie125bac012013-07-25 19:22:37 +08004161 if (em_cached)
4162 free_extent_map(em_cached);
4163
Chris Masond1310b22008-01-24 16:13:08 -05004164 BUG_ON(!list_empty(pages));
4165 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004166 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004167 return 0;
4168}
Chris Masond1310b22008-01-24 16:13:08 -05004169
4170/*
4171 * basic invalidatepage code, this waits on any locked or writeback
4172 * ranges corresponding to the page, and then deletes any extent state
4173 * records from the tree
4174 */
4175int extent_invalidatepage(struct extent_io_tree *tree,
4176 struct page *page, unsigned long offset)
4177{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004178 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004179 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004180 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004181 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4182
Qu Wenruofda28322013-02-26 08:10:22 +00004183 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004184 if (start > end)
4185 return 0;
4186
David Sterbaff13db42015-12-03 14:30:40 +01004187 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004188 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004189 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004190 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4191 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004192 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004193 return 0;
4194}
Chris Masond1310b22008-01-24 16:13:08 -05004195
4196/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004197 * a helper for releasepage, this tests for areas of the page that
4198 * are locked or under IO and drops the related state bits if it is safe
4199 * to drop the page.
4200 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004201static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004202 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004203{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004204 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004205 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004206 int ret = 1;
4207
Chris Mason211f90e2008-07-18 11:56:15 -04004208 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004209 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004210 ret = 0;
4211 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004212 /*
4213 * at this point we can safely clear everything except the
4214 * locked bit and the nodatasum bit
4215 */
David Sterba66b0c882017-10-31 16:30:47 +01004216 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004217 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004218 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004219
4220 /* if clear_extent_bit failed for enomem reasons,
4221 * we can't allow the release to continue.
4222 */
4223 if (ret < 0)
4224 ret = 0;
4225 else
4226 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004227 }
4228 return ret;
4229}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004230
4231/*
Chris Masond1310b22008-01-24 16:13:08 -05004232 * a helper for releasepage. As long as there are no locked extents
4233 * in the range corresponding to the page, both state records and extent
4234 * map records are removed
4235 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004236int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004237{
4238 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004239 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004240 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004241 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4242 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4243 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004244
Mel Gormand0164ad2015-11-06 16:28:21 -08004245 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004246 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004247 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004248 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004249 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004250 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004251 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004252 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004253 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004254 break;
4255 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004256 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4257 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004258 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004259 free_extent_map(em);
4260 break;
4261 }
4262 if (!test_range_bit(tree, em->start,
4263 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004264 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004265 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004266 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4267 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004268 remove_extent_mapping(map, em);
4269 /* once for the rb tree */
4270 free_extent_map(em);
4271 }
4272 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004273 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004274
4275 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004276 free_extent_map(em);
4277 }
Chris Masond1310b22008-01-24 16:13:08 -05004278 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004279 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004280}
Chris Masond1310b22008-01-24 16:13:08 -05004281
Chris Masonec29ed52011-02-23 16:23:20 -05004282/*
4283 * helper function for fiemap, which doesn't want to see any holes.
4284 * This maps until we find something past 'last'
4285 */
4286static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004287 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004288{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004289 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004290 struct extent_map *em;
4291 u64 len;
4292
4293 if (offset >= last)
4294 return NULL;
4295
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304296 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004297 len = last - offset;
4298 if (len == 0)
4299 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004300 len = ALIGN(len, sectorsize);
David Sterbae3350e12017-06-23 04:09:57 +02004301 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0, offset,
4302 len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004303 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004304 return em;
4305
4306 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004307 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004308 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004309
4310 /* this is a hole, advance to the next extent */
4311 offset = extent_map_end(em);
4312 free_extent_map(em);
4313 if (offset >= last)
4314 break;
4315 }
4316 return NULL;
4317}
4318
Qu Wenruo47518322017-04-07 10:43:15 +08004319/*
4320 * To cache previous fiemap extent
4321 *
4322 * Will be used for merging fiemap extent
4323 */
4324struct fiemap_cache {
4325 u64 offset;
4326 u64 phys;
4327 u64 len;
4328 u32 flags;
4329 bool cached;
4330};
4331
4332/*
4333 * Helper to submit fiemap extent.
4334 *
4335 * Will try to merge current fiemap extent specified by @offset, @phys,
4336 * @len and @flags with cached one.
4337 * And only when we fails to merge, cached one will be submitted as
4338 * fiemap extent.
4339 *
4340 * Return value is the same as fiemap_fill_next_extent().
4341 */
4342static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4343 struct fiemap_cache *cache,
4344 u64 offset, u64 phys, u64 len, u32 flags)
4345{
4346 int ret = 0;
4347
4348 if (!cache->cached)
4349 goto assign;
4350
4351 /*
4352 * Sanity check, extent_fiemap() should have ensured that new
4353 * fiemap extent won't overlap with cahced one.
4354 * Not recoverable.
4355 *
4356 * NOTE: Physical address can overlap, due to compression
4357 */
4358 if (cache->offset + cache->len > offset) {
4359 WARN_ON(1);
4360 return -EINVAL;
4361 }
4362
4363 /*
4364 * Only merges fiemap extents if
4365 * 1) Their logical addresses are continuous
4366 *
4367 * 2) Their physical addresses are continuous
4368 * So truly compressed (physical size smaller than logical size)
4369 * extents won't get merged with each other
4370 *
4371 * 3) Share same flags except FIEMAP_EXTENT_LAST
4372 * So regular extent won't get merged with prealloc extent
4373 */
4374 if (cache->offset + cache->len == offset &&
4375 cache->phys + cache->len == phys &&
4376 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4377 (flags & ~FIEMAP_EXTENT_LAST)) {
4378 cache->len += len;
4379 cache->flags |= flags;
4380 goto try_submit_last;
4381 }
4382
4383 /* Not mergeable, need to submit cached one */
4384 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4385 cache->len, cache->flags);
4386 cache->cached = false;
4387 if (ret)
4388 return ret;
4389assign:
4390 cache->cached = true;
4391 cache->offset = offset;
4392 cache->phys = phys;
4393 cache->len = len;
4394 cache->flags = flags;
4395try_submit_last:
4396 if (cache->flags & FIEMAP_EXTENT_LAST) {
4397 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4398 cache->phys, cache->len, cache->flags);
4399 cache->cached = false;
4400 }
4401 return ret;
4402}
4403
4404/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004405 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004406 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004407 * The last fiemap cache may still be cached in the following case:
4408 * 0 4k 8k
4409 * |<- Fiemap range ->|
4410 * |<------------ First extent ----------->|
4411 *
4412 * In this case, the first extent range will be cached but not emitted.
4413 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004414 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004415static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4416 struct fiemap_extent_info *fieinfo,
4417 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004418{
4419 int ret;
4420
4421 if (!cache->cached)
4422 return 0;
4423
Qu Wenruo47518322017-04-07 10:43:15 +08004424 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4425 cache->len, cache->flags);
4426 cache->cached = false;
4427 if (ret > 0)
4428 ret = 0;
4429 return ret;
4430}
4431
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004432int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004433 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004434{
Josef Bacik975f84f2010-11-23 19:36:57 +00004435 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004436 u64 off = start;
4437 u64 max = start + len;
4438 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004439 u32 found_type;
4440 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004441 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004442 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004443 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004444 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004445 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004446 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004447 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004448 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004449 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004450 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004451 u64 em_start = 0;
4452 u64 em_len = 0;
4453 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004454
4455 if (len == 0)
4456 return -EINVAL;
4457
Josef Bacik975f84f2010-11-23 19:36:57 +00004458 path = btrfs_alloc_path();
4459 if (!path)
4460 return -ENOMEM;
4461 path->leave_spinning = 1;
4462
Jeff Mahoneyda170662016-06-15 09:22:56 -04004463 start = round_down(start, btrfs_inode_sectorsize(inode));
4464 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004465
Chris Masonec29ed52011-02-23 16:23:20 -05004466 /*
4467 * lookup the last file extent. We're not using i_size here
4468 * because there might be preallocation past i_size
4469 */
David Sterbaf85b7372017-01-20 14:54:07 +01004470 ret = btrfs_lookup_file_extent(NULL, root, path,
4471 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004472 if (ret < 0) {
4473 btrfs_free_path(path);
4474 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004475 } else {
4476 WARN_ON(!ret);
4477 if (ret == 1)
4478 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004479 }
Liu Bo2d324f52016-05-17 17:21:48 -07004480
Josef Bacik975f84f2010-11-23 19:36:57 +00004481 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004482 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004483 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004484
Chris Masonec29ed52011-02-23 16:23:20 -05004485 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004486 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004487 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004488 /* have to trust i_size as the end */
4489 last = (u64)-1;
4490 last_for_get_extent = isize;
4491 } else {
4492 /*
4493 * remember the start of the last extent. There are a
4494 * bunch of different factors that go into the length of the
4495 * extent, so its much less complex to remember where it started
4496 */
4497 last = found_key.offset;
4498 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004499 }
Liu Bofe09e162013-09-22 12:54:23 +08004500 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004501
Chris Masonec29ed52011-02-23 16:23:20 -05004502 /*
4503 * we might have some extents allocated but more delalloc past those
4504 * extents. so, we trust isize unless the start of the last extent is
4505 * beyond isize
4506 */
4507 if (last < isize) {
4508 last = (u64)-1;
4509 last_for_get_extent = isize;
4510 }
4511
David Sterbaff13db42015-12-03 14:30:40 +01004512 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004513 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004514
David Sterbae3350e12017-06-23 04:09:57 +02004515 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004516 if (!em)
4517 goto out;
4518 if (IS_ERR(em)) {
4519 ret = PTR_ERR(em);
4520 goto out;
4521 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004522
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004523 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004524 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004525
Chris Masonea8efc72011-03-08 11:54:40 -05004526 /* break if the extent we found is outside the range */
4527 if (em->start >= max || extent_map_end(em) < off)
4528 break;
4529
4530 /*
4531 * get_extent may return an extent that starts before our
4532 * requested range. We have to make sure the ranges
4533 * we return to fiemap always move forward and don't
4534 * overlap, so adjust the offsets here
4535 */
4536 em_start = max(em->start, off);
4537
4538 /*
4539 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004540 * for adjusting the disk offset below. Only do this if the
4541 * extent isn't compressed since our in ram offset may be past
4542 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004543 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004544 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4545 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004546 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004547 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004548 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004549 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4550 disko = em->block_start + offset_in_extent;
4551 else
4552 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004553
Chris Masonea8efc72011-03-08 11:54:40 -05004554 /*
4555 * bump off for our next call to get_extent
4556 */
4557 off = extent_map_end(em);
4558 if (off >= max)
4559 end = 1;
4560
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004561 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004562 end = 1;
4563 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004564 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004565 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4566 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004567 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004568 flags |= (FIEMAP_EXTENT_DELALLOC |
4569 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004570 } else if (fieinfo->fi_extents_max) {
4571 u64 bytenr = em->block_start -
4572 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004573
Liu Bofe09e162013-09-22 12:54:23 +08004574 /*
4575 * As btrfs supports shared space, this information
4576 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004577 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4578 * then we're just getting a count and we can skip the
4579 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004580 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004581 ret = btrfs_check_shared(root,
4582 btrfs_ino(BTRFS_I(inode)),
4583 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004584 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004585 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004586 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004587 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004588 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004589 }
4590 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4591 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004592 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4593 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004594
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004595 free_extent_map(em);
4596 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004597 if ((em_start >= last) || em_len == (u64)-1 ||
4598 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004599 flags |= FIEMAP_EXTENT_LAST;
4600 end = 1;
4601 }
4602
Chris Masonec29ed52011-02-23 16:23:20 -05004603 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004604 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004605 if (IS_ERR(em)) {
4606 ret = PTR_ERR(em);
4607 goto out;
4608 }
4609 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004610 flags |= FIEMAP_EXTENT_LAST;
4611 end = 1;
4612 }
Qu Wenruo47518322017-04-07 10:43:15 +08004613 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4614 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004615 if (ret) {
4616 if (ret == 1)
4617 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004618 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004619 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004620 }
4621out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004622 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004623 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004624 free_extent_map(em);
4625out:
Liu Bofe09e162013-09-22 12:54:23 +08004626 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004627 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004628 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004629 return ret;
4630}
4631
Chris Mason727011e2010-08-06 13:21:20 -04004632static void __free_extent_buffer(struct extent_buffer *eb)
4633{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004634 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004635 kmem_cache_free(extent_buffer_cache, eb);
4636}
4637
Josef Bacika26e8c92014-03-28 17:07:27 -04004638int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004639{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004640 return (atomic_read(&eb->io_pages) ||
4641 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4642 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004643}
4644
Miao Xie897ca6e92010-10-26 20:57:29 -04004645/*
4646 * Helper for releasing extent buffer page.
4647 */
David Sterbaa50924e2014-07-31 00:51:36 +02004648static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004649{
David Sterbacc5e31a2018-03-01 18:20:27 +01004650 int index;
Miao Xie897ca6e92010-10-26 20:57:29 -04004651 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004652 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004653
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004654 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004655
David Sterba65ad0102018-06-29 10:56:49 +02004656 index = num_extent_pages(eb);
David Sterbaa50924e2014-07-31 00:51:36 +02004657 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004658 return;
4659
4660 do {
4661 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004662 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004663 if (!page)
4664 continue;
4665 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004666 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004667 /*
4668 * We do this since we'll remove the pages after we've
4669 * removed the eb from the radix tree, so we could race
4670 * and have this page now attached to the new eb. So
4671 * only clear page_private if it's still connected to
4672 * this eb.
4673 */
4674 if (PagePrivate(page) &&
4675 page->private == (unsigned long)eb) {
4676 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4677 BUG_ON(PageDirty(page));
4678 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004679 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004680 * We need to make sure we haven't be attached
4681 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004682 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004683 ClearPagePrivate(page);
4684 set_page_private(page, 0);
4685 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004686 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004687 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004688
4689 if (mapped)
4690 spin_unlock(&page->mapping->private_lock);
4691
Nicholas D Steeves01327612016-05-19 21:18:45 -04004692 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004693 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004694 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004695}
4696
4697/*
4698 * Helper for releasing the extent buffer.
4699 */
4700static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4701{
David Sterbaa50924e2014-07-31 00:51:36 +02004702 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004703 __free_extent_buffer(eb);
4704}
4705
Josef Bacikf28491e2013-12-16 13:24:27 -05004706static struct extent_buffer *
4707__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004708 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004709{
4710 struct extent_buffer *eb = NULL;
4711
Michal Hockod1b5c562015-08-19 14:17:40 +02004712 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004713 eb->start = start;
4714 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004715 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004716 eb->bflags = 0;
4717 rwlock_init(&eb->lock);
4718 atomic_set(&eb->write_locks, 0);
4719 atomic_set(&eb->read_locks, 0);
4720 atomic_set(&eb->blocking_readers, 0);
4721 atomic_set(&eb->blocking_writers, 0);
4722 atomic_set(&eb->spinning_readers, 0);
4723 atomic_set(&eb->spinning_writers, 0);
4724 eb->lock_nested = 0;
4725 init_waitqueue_head(&eb->write_lock_wq);
4726 init_waitqueue_head(&eb->read_lock_wq);
4727
4728 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4729
4730 spin_lock_init(&eb->refs_lock);
4731 atomic_set(&eb->refs, 1);
4732 atomic_set(&eb->io_pages, 0);
4733
4734 /*
4735 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4736 */
4737 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4738 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4739 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4740
4741 return eb;
4742}
4743
4744struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4745{
David Sterbacc5e31a2018-03-01 18:20:27 +01004746 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004747 struct page *p;
4748 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004749 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004750
David Sterba3f556f72014-06-15 03:20:26 +02004751 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004752 if (new == NULL)
4753 return NULL;
4754
4755 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004756 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004757 if (!p) {
4758 btrfs_release_extent_buffer(new);
4759 return NULL;
4760 }
4761 attach_extent_buffer_page(new, p);
4762 WARN_ON(PageDirty(p));
4763 SetPageUptodate(p);
4764 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004765 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004766 }
4767
Josef Bacikdb7f3432013-08-07 14:54:37 -04004768 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4769 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4770
4771 return new;
4772}
4773
Omar Sandoval0f331222015-09-29 20:50:31 -07004774struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4775 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004776{
4777 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004778 int num_pages;
4779 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004780
David Sterba3f556f72014-06-15 03:20:26 +02004781 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004782 if (!eb)
4783 return NULL;
4784
David Sterba65ad0102018-06-29 10:56:49 +02004785 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004786 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004787 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004788 if (!eb->pages[i])
4789 goto err;
4790 }
4791 set_extent_buffer_uptodate(eb);
4792 btrfs_set_header_nritems(eb, 0);
4793 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4794
4795 return eb;
4796err:
4797 for (; i > 0; i--)
4798 __free_page(eb->pages[i - 1]);
4799 __free_extent_buffer(eb);
4800 return NULL;
4801}
4802
Omar Sandoval0f331222015-09-29 20:50:31 -07004803struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004804 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004805{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004806 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004807}
4808
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004809static void check_buffer_tree_ref(struct extent_buffer *eb)
4810{
Chris Mason242e18c2013-01-29 17:49:37 -05004811 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004812 /* the ref bit is tricky. We have to make sure it is set
4813 * if we have the buffer dirty. Otherwise the
4814 * code to free a buffer can end up dropping a dirty
4815 * page
4816 *
4817 * Once the ref bit is set, it won't go away while the
4818 * buffer is dirty or in writeback, and it also won't
4819 * go away while we have the reference count on the
4820 * eb bumped.
4821 *
4822 * We can't just set the ref bit without bumping the
4823 * ref on the eb because free_extent_buffer might
4824 * see the ref bit and try to clear it. If this happens
4825 * free_extent_buffer might end up dropping our original
4826 * ref by mistake and freeing the page before we are able
4827 * to add one more ref.
4828 *
4829 * So bump the ref count first, then set the bit. If someone
4830 * beat us to it, drop the ref we added.
4831 */
Chris Mason242e18c2013-01-29 17:49:37 -05004832 refs = atomic_read(&eb->refs);
4833 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4834 return;
4835
Josef Bacik594831c2012-07-20 16:11:08 -04004836 spin_lock(&eb->refs_lock);
4837 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004838 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004839 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004840}
4841
Mel Gorman2457aec2014-06-04 16:10:31 -07004842static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4843 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004844{
David Sterbacc5e31a2018-03-01 18:20:27 +01004845 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004846
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004847 check_buffer_tree_ref(eb);
4848
David Sterba65ad0102018-06-29 10:56:49 +02004849 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004850 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004851 struct page *p = eb->pages[i];
4852
Mel Gorman2457aec2014-06-04 16:10:31 -07004853 if (p != accessed)
4854 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004855 }
4856}
4857
Josef Bacikf28491e2013-12-16 13:24:27 -05004858struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4859 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004860{
4861 struct extent_buffer *eb;
4862
4863 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004864 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004865 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004866 if (eb && atomic_inc_not_zero(&eb->refs)) {
4867 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004868 /*
4869 * Lock our eb's refs_lock to avoid races with
4870 * free_extent_buffer. When we get our eb it might be flagged
4871 * with EXTENT_BUFFER_STALE and another task running
4872 * free_extent_buffer might have seen that flag set,
4873 * eb->refs == 2, that the buffer isn't under IO (dirty and
4874 * writeback flags not set) and it's still in the tree (flag
4875 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4876 * of decrementing the extent buffer's reference count twice.
4877 * So here we could race and increment the eb's reference count,
4878 * clear its stale flag, mark it as dirty and drop our reference
4879 * before the other task finishes executing free_extent_buffer,
4880 * which would later result in an attempt to free an extent
4881 * buffer that is dirty.
4882 */
4883 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4884 spin_lock(&eb->refs_lock);
4885 spin_unlock(&eb->refs_lock);
4886 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004887 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004888 return eb;
4889 }
4890 rcu_read_unlock();
4891
4892 return NULL;
4893}
4894
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004895#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4896struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004897 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004898{
4899 struct extent_buffer *eb, *exists = NULL;
4900 int ret;
4901
4902 eb = find_extent_buffer(fs_info, start);
4903 if (eb)
4904 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004905 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004906 if (!eb)
4907 return NULL;
4908 eb->fs_info = fs_info;
4909again:
David Sterbae1860a72016-05-09 14:11:38 +02004910 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004911 if (ret)
4912 goto free_eb;
4913 spin_lock(&fs_info->buffer_lock);
4914 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004915 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004916 spin_unlock(&fs_info->buffer_lock);
4917 radix_tree_preload_end();
4918 if (ret == -EEXIST) {
4919 exists = find_extent_buffer(fs_info, start);
4920 if (exists)
4921 goto free_eb;
4922 else
4923 goto again;
4924 }
4925 check_buffer_tree_ref(eb);
4926 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4927
4928 /*
4929 * We will free dummy extent buffer's if they come into
4930 * free_extent_buffer with a ref count of 2, but if we are using this we
4931 * want the buffers to stay in memory until we're done with them, so
4932 * bump the ref count again.
4933 */
4934 atomic_inc(&eb->refs);
4935 return eb;
4936free_eb:
4937 btrfs_release_extent_buffer(eb);
4938 return exists;
4939}
4940#endif
4941
Josef Bacikf28491e2013-12-16 13:24:27 -05004942struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004943 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004944{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004945 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01004946 int num_pages;
4947 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004948 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004949 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004950 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004951 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004952 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004953 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004954 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004955
Jeff Mahoneyda170662016-06-15 09:22:56 -04004956 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004957 btrfs_err(fs_info, "bad tree block start %llu", start);
4958 return ERR_PTR(-EINVAL);
4959 }
4960
Josef Bacikf28491e2013-12-16 13:24:27 -05004961 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004962 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004963 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004964
David Sterba23d79d82014-06-15 02:55:29 +02004965 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004966 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004967 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004968
David Sterba65ad0102018-06-29 10:56:49 +02004969 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04004970 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004971 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004972 if (!p) {
4973 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004974 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004975 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004976
4977 spin_lock(&mapping->private_lock);
4978 if (PagePrivate(p)) {
4979 /*
4980 * We could have already allocated an eb for this page
4981 * and attached one so lets see if we can get a ref on
4982 * the existing eb, and if we can we know it's good and
4983 * we can just return that one, else we know we can just
4984 * overwrite page->private.
4985 */
4986 exists = (struct extent_buffer *)p->private;
4987 if (atomic_inc_not_zero(&exists->refs)) {
4988 spin_unlock(&mapping->private_lock);
4989 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004990 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004991 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004992 goto free_eb;
4993 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004994 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004995
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004996 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004997 * Do this so attach doesn't complain and we need to
4998 * drop the ref the old guy had.
4999 */
5000 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005001 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005002 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005003 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005004 attach_extent_buffer_page(eb, p);
5005 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005006 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005007 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005008 if (!PageUptodate(p))
5009 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005010
5011 /*
5012 * see below about how we avoid a nasty race with release page
5013 * and why we unlock later
5014 */
Chris Masond1310b22008-01-24 16:13:08 -05005015 }
5016 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005017 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005018again:
David Sterbae1860a72016-05-09 14:11:38 +02005019 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005020 if (ret) {
5021 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005022 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005023 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005024
Josef Bacikf28491e2013-12-16 13:24:27 -05005025 spin_lock(&fs_info->buffer_lock);
5026 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005027 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005028 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005029 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005030 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005031 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005032 if (exists)
5033 goto free_eb;
5034 else
Josef Bacik115391d2012-03-09 09:51:43 -05005035 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005036 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005037 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005038 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005039 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005040
5041 /*
5042 * there is a race where release page may have
5043 * tried to find this extent buffer in the radix
5044 * but failed. It will tell the VM it is safe to
5045 * reclaim the, and it will clear the page private bit.
5046 * We must make sure to set the page private bit properly
5047 * after the extent buffer is in the radix tree so
5048 * it doesn't get lost
5049 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005050 for (i = 0; i < num_pages; i++)
5051 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005052 return eb;
5053
Chris Mason6af118ce2008-07-22 11:18:07 -04005054free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005055 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005056 for (i = 0; i < num_pages; i++) {
5057 if (eb->pages[i])
5058 unlock_page(eb->pages[i]);
5059 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005060
Miao Xie897ca6e92010-10-26 20:57:29 -04005061 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005062 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005063}
Chris Masond1310b22008-01-24 16:13:08 -05005064
Josef Bacik3083ee22012-03-09 16:01:49 -05005065static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5066{
5067 struct extent_buffer *eb =
5068 container_of(head, struct extent_buffer, rcu_head);
5069
5070 __free_extent_buffer(eb);
5071}
5072
Josef Bacik3083ee22012-03-09 16:01:49 -05005073/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005074static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005075{
5076 WARN_ON(atomic_read(&eb->refs) == 0);
5077 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005078 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005079 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005080
Jan Schmidt815a51c2012-05-16 17:00:02 +02005081 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005082
Josef Bacikf28491e2013-12-16 13:24:27 -05005083 spin_lock(&fs_info->buffer_lock);
5084 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005085 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005086 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005087 } else {
5088 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005089 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005090
5091 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005092 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005093#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5094 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5095 __free_extent_buffer(eb);
5096 return 1;
5097 }
5098#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005099 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005100 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005101 }
5102 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005103
5104 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005105}
5106
Chris Masond1310b22008-01-24 16:13:08 -05005107void free_extent_buffer(struct extent_buffer *eb)
5108{
Chris Mason242e18c2013-01-29 17:49:37 -05005109 int refs;
5110 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005111 if (!eb)
5112 return;
5113
Chris Mason242e18c2013-01-29 17:49:37 -05005114 while (1) {
5115 refs = atomic_read(&eb->refs);
5116 if (refs <= 3)
5117 break;
5118 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5119 if (old == refs)
5120 return;
5121 }
5122
Josef Bacik3083ee22012-03-09 16:01:49 -05005123 spin_lock(&eb->refs_lock);
5124 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005125 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5126 atomic_dec(&eb->refs);
5127
5128 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005129 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005130 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005131 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5132 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005133
Josef Bacik3083ee22012-03-09 16:01:49 -05005134 /*
5135 * I know this is terrible, but it's temporary until we stop tracking
5136 * the uptodate bits and such for the extent buffers.
5137 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005138 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005139}
Chris Masond1310b22008-01-24 16:13:08 -05005140
Josef Bacik3083ee22012-03-09 16:01:49 -05005141void free_extent_buffer_stale(struct extent_buffer *eb)
5142{
5143 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005144 return;
5145
Josef Bacik3083ee22012-03-09 16:01:49 -05005146 spin_lock(&eb->refs_lock);
5147 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5148
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005149 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005150 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5151 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005152 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005153}
5154
Chris Mason1d4284b2012-03-28 20:31:37 -04005155void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005156{
David Sterbacc5e31a2018-03-01 18:20:27 +01005157 int i;
5158 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005159 struct page *page;
5160
David Sterba65ad0102018-06-29 10:56:49 +02005161 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005162
5163 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005164 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005165 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005166 continue;
5167
Chris Masona61e6f22008-07-22 11:18:08 -04005168 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005169 WARN_ON(!PagePrivate(page));
5170
Chris Masond1310b22008-01-24 16:13:08 -05005171 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005172 xa_lock_irq(&page->mapping->i_pages);
Chris Masond1310b22008-01-24 16:13:08 -05005173 if (!PageDirty(page)) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005174 radix_tree_tag_clear(&page->mapping->i_pages,
Chris Masond1310b22008-01-24 16:13:08 -05005175 page_index(page),
5176 PAGECACHE_TAG_DIRTY);
5177 }
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005178 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005179 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005180 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005181 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005182 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005183}
Chris Masond1310b22008-01-24 16:13:08 -05005184
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005185int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005186{
David Sterbacc5e31a2018-03-01 18:20:27 +01005187 int i;
5188 int num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005189 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005190
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005191 check_buffer_tree_ref(eb);
5192
Chris Masonb9473432009-03-13 11:00:37 -04005193 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005194
David Sterba65ad0102018-06-29 10:56:49 +02005195 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005196 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005197 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5198
Chris Masonb9473432009-03-13 11:00:37 -04005199 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005200 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005201 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005202}
Chris Masond1310b22008-01-24 16:13:08 -05005203
David Sterba69ba3922015-12-03 13:08:59 +01005204void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005205{
David Sterbacc5e31a2018-03-01 18:20:27 +01005206 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005207 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005208 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005209
Chris Masonb4ce94d2009-02-04 09:25:08 -05005210 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005211 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005212 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005213 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005214 if (page)
5215 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005216 }
Chris Mason1259ab72008-05-12 13:39:03 -04005217}
5218
David Sterba09c25a82015-12-03 13:08:59 +01005219void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005220{
David Sterbacc5e31a2018-03-01 18:20:27 +01005221 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005222 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005223 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005224
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005225 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005226 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005227 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005228 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005229 SetPageUptodate(page);
5230 }
Chris Masond1310b22008-01-24 16:13:08 -05005231}
Chris Masond1310b22008-01-24 16:13:08 -05005232
Chris Masond1310b22008-01-24 16:13:08 -05005233int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005234 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005235{
David Sterbacc5e31a2018-03-01 18:20:27 +01005236 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005237 struct page *page;
5238 int err;
5239 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005240 int locked_pages = 0;
5241 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005242 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005243 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005244 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005245 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005246
Chris Masonb4ce94d2009-02-04 09:25:08 -05005247 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005248 return 0;
5249
David Sterba65ad0102018-06-29 10:56:49 +02005250 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005251 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005252 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005253 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005254 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005255 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005256 } else {
5257 lock_page(page);
5258 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005259 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005260 }
5261 /*
5262 * We need to firstly lock all pages to make sure that
5263 * the uptodate bit of our pages won't be affected by
5264 * clear_extent_buffer_uptodate().
5265 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005266 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005267 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005268 if (!PageUptodate(page)) {
5269 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005270 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005271 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005272 }
Liu Bo2571e732016-08-03 12:33:01 -07005273
Chris Masonce9adaa2008-04-09 16:28:12 -04005274 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005275 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005276 goto unlock_exit;
5277 }
5278
Filipe Manana656f30d2014-09-26 12:25:56 +01005279 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005280 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005281 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005282 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005283 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005284
Chris Masonce9adaa2008-04-09 16:28:12 -04005285 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005286 if (ret) {
5287 atomic_dec(&eb->io_pages);
5288 unlock_page(page);
5289 continue;
5290 }
5291
Chris Masonf1885912008-04-09 16:28:12 -04005292 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005293 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005294 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005295 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005296 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005297 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005298 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005299 /*
5300 * We use &bio in above __extent_read_full_page,
5301 * so we ensure that if it returns error, the
5302 * current page fails to add itself to bio and
5303 * it's been unlocked.
5304 *
5305 * We must dec io_pages by ourselves.
5306 */
5307 atomic_dec(&eb->io_pages);
5308 }
Chris Masond1310b22008-01-24 16:13:08 -05005309 } else {
5310 unlock_page(page);
5311 }
5312 }
5313
Jeff Mahoney355808c2011-10-03 23:23:14 -04005314 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005315 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005316 if (err)
5317 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005318 }
Chris Masona86c12c2008-02-07 10:50:54 -05005319
Arne Jansenbb82ab82011-06-10 14:06:53 +02005320 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005321 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005322
Josef Bacik8436ea912016-09-02 15:40:03 -04005323 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005324 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005325 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005326 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005327 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005328 }
Chris Masond3977122009-01-05 21:25:51 -05005329
Chris Masond1310b22008-01-24 16:13:08 -05005330 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005331
5332unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005333 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005334 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005335 page = eb->pages[locked_pages];
5336 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005337 }
5338 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005339}
Chris Masond1310b22008-01-24 16:13:08 -05005340
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005341void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5342 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005343{
5344 size_t cur;
5345 size_t offset;
5346 struct page *page;
5347 char *kaddr;
5348 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005349 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5350 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005351
Liu Bof716abd2017-08-09 11:10:16 -06005352 if (start + len > eb->len) {
5353 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5354 eb->start, eb->len, start, len);
5355 memset(dst, 0, len);
5356 return;
5357 }
Chris Masond1310b22008-01-24 16:13:08 -05005358
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005359 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005360
Chris Masond3977122009-01-05 21:25:51 -05005361 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005362 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005363
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005364 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005365 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005366 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005367
5368 dst += cur;
5369 len -= cur;
5370 offset = 0;
5371 i++;
5372 }
5373}
Chris Masond1310b22008-01-24 16:13:08 -05005374
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005375int read_extent_buffer_to_user(const struct extent_buffer *eb,
5376 void __user *dstv,
5377 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005378{
5379 size_t cur;
5380 size_t offset;
5381 struct page *page;
5382 char *kaddr;
5383 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005384 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5385 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005386 int ret = 0;
5387
5388 WARN_ON(start > eb->len);
5389 WARN_ON(start + len > eb->start + eb->len);
5390
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005391 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005392
5393 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005394 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005395
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005396 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005397 kaddr = page_address(page);
5398 if (copy_to_user(dst, kaddr + offset, cur)) {
5399 ret = -EFAULT;
5400 break;
5401 }
5402
5403 dst += cur;
5404 len -= cur;
5405 offset = 0;
5406 i++;
5407 }
5408
5409 return ret;
5410}
5411
Liu Bo415b35a2016-06-17 19:16:21 -07005412/*
5413 * return 0 if the item is found within a page.
5414 * return 1 if the item spans two pages.
5415 * return -EINVAL otherwise.
5416 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005417int map_private_extent_buffer(const struct extent_buffer *eb,
5418 unsigned long start, unsigned long min_len,
5419 char **map, unsigned long *map_start,
5420 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005421{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005422 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005423 char *kaddr;
5424 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005425 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5426 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005427 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005428 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005429
Liu Bof716abd2017-08-09 11:10:16 -06005430 if (start + min_len > eb->len) {
5431 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5432 eb->start, eb->len, start, min_len);
5433 return -EINVAL;
5434 }
5435
Chris Masond1310b22008-01-24 16:13:08 -05005436 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005437 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005438
5439 if (i == 0) {
5440 offset = start_offset;
5441 *map_start = 0;
5442 } else {
5443 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005444 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005445 }
Chris Masond3977122009-01-05 21:25:51 -05005446
David Sterbafb85fc92014-07-31 01:03:53 +02005447 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005448 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005449 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005450 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005451 return 0;
5452}
Chris Masond1310b22008-01-24 16:13:08 -05005453
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005454int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5455 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005456{
5457 size_t cur;
5458 size_t offset;
5459 struct page *page;
5460 char *kaddr;
5461 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005462 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5463 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005464 int ret = 0;
5465
5466 WARN_ON(start > eb->len);
5467 WARN_ON(start + len > eb->start + eb->len);
5468
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005469 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005470
Chris Masond3977122009-01-05 21:25:51 -05005471 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005472 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005473
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005474 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005475
Chris Masona6591712011-07-19 12:04:14 -04005476 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005477 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005478 if (ret)
5479 break;
5480
5481 ptr += cur;
5482 len -= cur;
5483 offset = 0;
5484 i++;
5485 }
5486 return ret;
5487}
Chris Masond1310b22008-01-24 16:13:08 -05005488
David Sterbaf157bf72016-11-09 17:43:38 +01005489void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5490 const void *srcv)
5491{
5492 char *kaddr;
5493
5494 WARN_ON(!PageUptodate(eb->pages[0]));
5495 kaddr = page_address(eb->pages[0]);
5496 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5497 BTRFS_FSID_SIZE);
5498}
5499
5500void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5501{
5502 char *kaddr;
5503
5504 WARN_ON(!PageUptodate(eb->pages[0]));
5505 kaddr = page_address(eb->pages[0]);
5506 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5507 BTRFS_FSID_SIZE);
5508}
5509
Chris Masond1310b22008-01-24 16:13:08 -05005510void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5511 unsigned long start, unsigned long len)
5512{
5513 size_t cur;
5514 size_t offset;
5515 struct page *page;
5516 char *kaddr;
5517 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005518 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5519 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005520
5521 WARN_ON(start > eb->len);
5522 WARN_ON(start + len > eb->start + eb->len);
5523
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005524 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005525
Chris Masond3977122009-01-05 21:25:51 -05005526 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005527 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005528 WARN_ON(!PageUptodate(page));
5529
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005530 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005531 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005532 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005533
5534 src += cur;
5535 len -= cur;
5536 offset = 0;
5537 i++;
5538 }
5539}
Chris Masond1310b22008-01-24 16:13:08 -05005540
David Sterbab159fa22016-11-08 18:09:03 +01005541void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5542 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005543{
5544 size_t cur;
5545 size_t offset;
5546 struct page *page;
5547 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005548 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5549 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005550
5551 WARN_ON(start > eb->len);
5552 WARN_ON(start + len > eb->start + eb->len);
5553
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005554 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005555
Chris Masond3977122009-01-05 21:25:51 -05005556 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005557 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005558 WARN_ON(!PageUptodate(page));
5559
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005560 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005561 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005562 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005563
5564 len -= cur;
5565 offset = 0;
5566 i++;
5567 }
5568}
Chris Masond1310b22008-01-24 16:13:08 -05005569
David Sterba58e80122016-11-08 18:30:31 +01005570void copy_extent_buffer_full(struct extent_buffer *dst,
5571 struct extent_buffer *src)
5572{
5573 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005574 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005575
5576 ASSERT(dst->len == src->len);
5577
David Sterba65ad0102018-06-29 10:56:49 +02005578 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005579 for (i = 0; i < num_pages; i++)
5580 copy_page(page_address(dst->pages[i]),
5581 page_address(src->pages[i]));
5582}
5583
Chris Masond1310b22008-01-24 16:13:08 -05005584void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5585 unsigned long dst_offset, unsigned long src_offset,
5586 unsigned long len)
5587{
5588 u64 dst_len = dst->len;
5589 size_t cur;
5590 size_t offset;
5591 struct page *page;
5592 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005593 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5594 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005595
5596 WARN_ON(src->len != dst_len);
5597
5598 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005599 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005600
Chris Masond3977122009-01-05 21:25:51 -05005601 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005602 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005603 WARN_ON(!PageUptodate(page));
5604
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005605 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005606
Chris Masona6591712011-07-19 12:04:14 -04005607 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005608 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005609
5610 src_offset += cur;
5611 len -= cur;
5612 offset = 0;
5613 i++;
5614 }
5615}
Chris Masond1310b22008-01-24 16:13:08 -05005616
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005617/*
5618 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5619 * given bit number
5620 * @eb: the extent buffer
5621 * @start: offset of the bitmap item in the extent buffer
5622 * @nr: bit number
5623 * @page_index: return index of the page in the extent buffer that contains the
5624 * given bit number
5625 * @page_offset: return offset into the page given by page_index
5626 *
5627 * This helper hides the ugliness of finding the byte in an extent buffer which
5628 * contains a given bit.
5629 */
5630static inline void eb_bitmap_offset(struct extent_buffer *eb,
5631 unsigned long start, unsigned long nr,
5632 unsigned long *page_index,
5633 size_t *page_offset)
5634{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005635 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005636 size_t byte_offset = BIT_BYTE(nr);
5637 size_t offset;
5638
5639 /*
5640 * The byte we want is the offset of the extent buffer + the offset of
5641 * the bitmap item in the extent buffer + the offset of the byte in the
5642 * bitmap item.
5643 */
5644 offset = start_offset + start + byte_offset;
5645
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005646 *page_index = offset >> PAGE_SHIFT;
5647 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005648}
5649
5650/**
5651 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5652 * @eb: the extent buffer
5653 * @start: offset of the bitmap item in the extent buffer
5654 * @nr: bit number to test
5655 */
5656int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5657 unsigned long nr)
5658{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005659 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005660 struct page *page;
5661 unsigned long i;
5662 size_t offset;
5663
5664 eb_bitmap_offset(eb, start, nr, &i, &offset);
5665 page = eb->pages[i];
5666 WARN_ON(!PageUptodate(page));
5667 kaddr = page_address(page);
5668 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5669}
5670
5671/**
5672 * extent_buffer_bitmap_set - set an area of a bitmap
5673 * @eb: the extent buffer
5674 * @start: offset of the bitmap item in the extent buffer
5675 * @pos: bit number of the first bit
5676 * @len: number of bits to set
5677 */
5678void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5679 unsigned long pos, unsigned long len)
5680{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005681 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005682 struct page *page;
5683 unsigned long i;
5684 size_t offset;
5685 const unsigned int size = pos + len;
5686 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005687 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005688
5689 eb_bitmap_offset(eb, start, pos, &i, &offset);
5690 page = eb->pages[i];
5691 WARN_ON(!PageUptodate(page));
5692 kaddr = page_address(page);
5693
5694 while (len >= bits_to_set) {
5695 kaddr[offset] |= mask_to_set;
5696 len -= bits_to_set;
5697 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005698 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005699 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005700 offset = 0;
5701 page = eb->pages[++i];
5702 WARN_ON(!PageUptodate(page));
5703 kaddr = page_address(page);
5704 }
5705 }
5706 if (len) {
5707 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5708 kaddr[offset] |= mask_to_set;
5709 }
5710}
5711
5712
5713/**
5714 * extent_buffer_bitmap_clear - clear an area of a bitmap
5715 * @eb: the extent buffer
5716 * @start: offset of the bitmap item in the extent buffer
5717 * @pos: bit number of the first bit
5718 * @len: number of bits to clear
5719 */
5720void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5721 unsigned long pos, unsigned long len)
5722{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005723 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005724 struct page *page;
5725 unsigned long i;
5726 size_t offset;
5727 const unsigned int size = pos + len;
5728 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005729 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005730
5731 eb_bitmap_offset(eb, start, pos, &i, &offset);
5732 page = eb->pages[i];
5733 WARN_ON(!PageUptodate(page));
5734 kaddr = page_address(page);
5735
5736 while (len >= bits_to_clear) {
5737 kaddr[offset] &= ~mask_to_clear;
5738 len -= bits_to_clear;
5739 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005740 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005741 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005742 offset = 0;
5743 page = eb->pages[++i];
5744 WARN_ON(!PageUptodate(page));
5745 kaddr = page_address(page);
5746 }
5747 }
5748 if (len) {
5749 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5750 kaddr[offset] &= ~mask_to_clear;
5751 }
5752}
5753
Sergei Trofimovich33872062011-04-11 21:52:52 +00005754static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5755{
5756 unsigned long distance = (src > dst) ? src - dst : dst - src;
5757 return distance < len;
5758}
5759
Chris Masond1310b22008-01-24 16:13:08 -05005760static void copy_pages(struct page *dst_page, struct page *src_page,
5761 unsigned long dst_off, unsigned long src_off,
5762 unsigned long len)
5763{
Chris Masona6591712011-07-19 12:04:14 -04005764 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005765 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005766 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005767
Sergei Trofimovich33872062011-04-11 21:52:52 +00005768 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005769 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005770 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005771 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005772 if (areas_overlap(src_off, dst_off, len))
5773 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005774 }
Chris Masond1310b22008-01-24 16:13:08 -05005775
Chris Mason727011e2010-08-06 13:21:20 -04005776 if (must_memmove)
5777 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5778 else
5779 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005780}
5781
5782void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5783 unsigned long src_offset, unsigned long len)
5784{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005785 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005786 size_t cur;
5787 size_t dst_off_in_page;
5788 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005789 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005790 unsigned long dst_i;
5791 unsigned long src_i;
5792
5793 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005794 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005795 "memmove bogus src_offset %lu move len %lu dst len %lu",
5796 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005797 BUG_ON(1);
5798 }
5799 if (dst_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 dst_offset %lu move len %lu dst len %lu",
5802 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005803 BUG_ON(1);
5804 }
5805
Chris Masond3977122009-01-05 21:25:51 -05005806 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005807 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005808 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005809 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005810 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005811
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005812 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5813 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005814
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005815 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005816 src_off_in_page));
5817 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005818 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005819
David Sterbafb85fc92014-07-31 01:03:53 +02005820 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005821 dst_off_in_page, src_off_in_page, cur);
5822
5823 src_offset += cur;
5824 dst_offset += cur;
5825 len -= cur;
5826 }
5827}
Chris Masond1310b22008-01-24 16:13:08 -05005828
5829void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5830 unsigned long src_offset, unsigned long len)
5831{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005832 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005833 size_t cur;
5834 size_t dst_off_in_page;
5835 size_t src_off_in_page;
5836 unsigned long dst_end = dst_offset + len - 1;
5837 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005838 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005839 unsigned long dst_i;
5840 unsigned long src_i;
5841
5842 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005843 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005844 "memmove bogus src_offset %lu move len %lu len %lu",
5845 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005846 BUG_ON(1);
5847 }
5848 if (dst_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 dst_offset %lu move len %lu len %lu",
5851 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005852 BUG_ON(1);
5853 }
Chris Mason727011e2010-08-06 13:21:20 -04005854 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005855 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5856 return;
5857 }
Chris Masond3977122009-01-05 21:25:51 -05005858 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005859 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5860 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005861
5862 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005863 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005864 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005865 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005866
5867 cur = min_t(unsigned long, len, src_off_in_page + 1);
5868 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005869 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005870 dst_off_in_page - cur + 1,
5871 src_off_in_page - cur + 1, cur);
5872
5873 dst_end -= cur;
5874 src_end -= cur;
5875 len -= cur;
5876 }
5877}
Chris Mason6af118ce2008-07-22 11:18:07 -04005878
David Sterbaf7a52a42013-04-26 14:56:29 +00005879int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005880{
Chris Mason6af118ce2008-07-22 11:18:07 -04005881 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005882
Miao Xie19fe0a82010-10-26 20:57:29 -04005883 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005884 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005885 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005886 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005887 spin_lock(&page->mapping->private_lock);
5888 if (!PagePrivate(page)) {
5889 spin_unlock(&page->mapping->private_lock);
5890 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005891 }
5892
Josef Bacik3083ee22012-03-09 16:01:49 -05005893 eb = (struct extent_buffer *)page->private;
5894 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005895
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005896 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005897 * This is a little awful but should be ok, we need to make sure that
5898 * the eb doesn't disappear out from under us while we're looking at
5899 * this page.
5900 */
5901 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005902 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005903 spin_unlock(&eb->refs_lock);
5904 spin_unlock(&page->mapping->private_lock);
5905 return 0;
5906 }
5907 spin_unlock(&page->mapping->private_lock);
5908
Josef Bacik3083ee22012-03-09 16:01:49 -05005909 /*
5910 * If tree ref isn't set then we know the ref on this eb is a real ref,
5911 * so just return, this page will likely be freed soon anyway.
5912 */
5913 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5914 spin_unlock(&eb->refs_lock);
5915 return 0;
5916 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005917
David Sterbaf7a52a42013-04-26 14:56:29 +00005918 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005919}