blob: 24b6c72b9a59054743d316fe7e5e71f42a89efec [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Masondc17ff82008-01-08 15:46:30 -05002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Masondc17ff82008-01-08 15:46:30 -05004 */
5
Chris Masondc17ff82008-01-08 15:46:30 -05006#include <linux/slab.h>
Chris Masond6bfde82008-04-30 13:59:35 -04007#include <linux/blkdev.h>
Chris Masonf4219502008-07-22 11:18:09 -04008#include <linux/writeback.h>
Nikolay Borisova3d46ae2019-04-01 11:29:58 +03009#include <linux/sched/mm.h>
David Sterba602cbe92019-08-21 18:48:25 +020010#include "misc.h"
Chris Masondc17ff82008-01-08 15:46:30 -050011#include "ctree.h"
12#include "transaction.h"
13#include "btrfs_inode.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040014#include "extent_io.h"
Miao Xie199c2a92013-05-15 07:48:23 +000015#include "disk-io.h"
Anand Jainebb87652016-03-10 17:26:59 +080016#include "compression.h"
Josef Bacik86736342019-06-19 15:12:00 -040017#include "delalloc-space.h"
Chris Masondc17ff82008-01-08 15:46:30 -050018
Miao Xie6352b912012-09-06 04:01:51 -060019static struct kmem_cache *btrfs_ordered_extent_cache;
20
Chris Masone6dcd2d2008-07-17 12:53:50 -040021static u64 entry_end(struct btrfs_ordered_extent *entry)
Chris Masondc17ff82008-01-08 15:46:30 -050022{
Chris Masone6dcd2d2008-07-17 12:53:50 -040023 if (entry->file_offset + entry->len < entry->file_offset)
24 return (u64)-1;
25 return entry->file_offset + entry->len;
Chris Masondc17ff82008-01-08 15:46:30 -050026}
27
Chris Masond352ac62008-09-29 15:18:18 -040028/* returns NULL if the insertion worked, or it returns the node it did find
29 * in the tree
30 */
Chris Masone6dcd2d2008-07-17 12:53:50 -040031static struct rb_node *tree_insert(struct rb_root *root, u64 file_offset,
32 struct rb_node *node)
Chris Masondc17ff82008-01-08 15:46:30 -050033{
Chris Masond3977122009-01-05 21:25:51 -050034 struct rb_node **p = &root->rb_node;
35 struct rb_node *parent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -040036 struct btrfs_ordered_extent *entry;
Chris Masondc17ff82008-01-08 15:46:30 -050037
Chris Masond3977122009-01-05 21:25:51 -050038 while (*p) {
Chris Masondc17ff82008-01-08 15:46:30 -050039 parent = *p;
Chris Masone6dcd2d2008-07-17 12:53:50 -040040 entry = rb_entry(parent, struct btrfs_ordered_extent, rb_node);
Chris Masondc17ff82008-01-08 15:46:30 -050041
Chris Masone6dcd2d2008-07-17 12:53:50 -040042 if (file_offset < entry->file_offset)
Chris Masondc17ff82008-01-08 15:46:30 -050043 p = &(*p)->rb_left;
Chris Masone6dcd2d2008-07-17 12:53:50 -040044 else if (file_offset >= entry_end(entry))
Chris Masondc17ff82008-01-08 15:46:30 -050045 p = &(*p)->rb_right;
46 else
47 return parent;
48 }
49
50 rb_link_node(node, parent, p);
51 rb_insert_color(node, root);
52 return NULL;
53}
54
Jeff Mahoney43c04fb2011-10-03 23:22:33 -040055static void ordered_data_tree_panic(struct inode *inode, int errno,
56 u64 offset)
57{
58 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney5d163e02016-09-20 10:05:00 -040059 btrfs_panic(fs_info, errno,
60 "Inconsistency in ordered tree at offset %llu", offset);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -040061}
62
Chris Masond352ac62008-09-29 15:18:18 -040063/*
64 * look for a given offset in the tree, and if it can't be found return the
65 * first lesser offset
66 */
Chris Masone6dcd2d2008-07-17 12:53:50 -040067static struct rb_node *__tree_search(struct rb_root *root, u64 file_offset,
68 struct rb_node **prev_ret)
Chris Masondc17ff82008-01-08 15:46:30 -050069{
Chris Masond3977122009-01-05 21:25:51 -050070 struct rb_node *n = root->rb_node;
Chris Masondc17ff82008-01-08 15:46:30 -050071 struct rb_node *prev = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -040072 struct rb_node *test;
73 struct btrfs_ordered_extent *entry;
74 struct btrfs_ordered_extent *prev_entry = NULL;
Chris Masondc17ff82008-01-08 15:46:30 -050075
Chris Masond3977122009-01-05 21:25:51 -050076 while (n) {
Chris Masone6dcd2d2008-07-17 12:53:50 -040077 entry = rb_entry(n, struct btrfs_ordered_extent, rb_node);
Chris Masondc17ff82008-01-08 15:46:30 -050078 prev = n;
79 prev_entry = entry;
Chris Masondc17ff82008-01-08 15:46:30 -050080
Chris Masone6dcd2d2008-07-17 12:53:50 -040081 if (file_offset < entry->file_offset)
Chris Masondc17ff82008-01-08 15:46:30 -050082 n = n->rb_left;
Chris Masone6dcd2d2008-07-17 12:53:50 -040083 else if (file_offset >= entry_end(entry))
Chris Masondc17ff82008-01-08 15:46:30 -050084 n = n->rb_right;
85 else
86 return n;
87 }
88 if (!prev_ret)
89 return NULL;
90
Chris Masond3977122009-01-05 21:25:51 -050091 while (prev && file_offset >= entry_end(prev_entry)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -040092 test = rb_next(prev);
93 if (!test)
94 break;
95 prev_entry = rb_entry(test, struct btrfs_ordered_extent,
96 rb_node);
97 if (file_offset < entry_end(prev_entry))
98 break;
99
100 prev = test;
101 }
102 if (prev)
103 prev_entry = rb_entry(prev, struct btrfs_ordered_extent,
104 rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500105 while (prev && file_offset < entry_end(prev_entry)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400106 test = rb_prev(prev);
107 if (!test)
108 break;
109 prev_entry = rb_entry(test, struct btrfs_ordered_extent,
110 rb_node);
111 prev = test;
Chris Masondc17ff82008-01-08 15:46:30 -0500112 }
113 *prev_ret = prev;
114 return NULL;
115}
116
Chris Masond352ac62008-09-29 15:18:18 -0400117/*
118 * helper to check if a given offset is inside a given entry
119 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400120static int offset_in_entry(struct btrfs_ordered_extent *entry, u64 file_offset)
Chris Masondc17ff82008-01-08 15:46:30 -0500121{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400122 if (file_offset < entry->file_offset ||
123 entry->file_offset + entry->len <= file_offset)
124 return 0;
125 return 1;
126}
127
Josef Bacik4b46fce2010-05-23 11:00:55 -0400128static int range_overlaps(struct btrfs_ordered_extent *entry, u64 file_offset,
129 u64 len)
130{
131 if (file_offset + len <= entry->file_offset ||
132 entry->file_offset + entry->len <= file_offset)
133 return 0;
134 return 1;
135}
136
Chris Masond352ac62008-09-29 15:18:18 -0400137/*
138 * look find the first ordered struct that has this offset, otherwise
139 * the first one less than this offset
140 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400141static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree,
142 u64 file_offset)
143{
144 struct rb_root *root = &tree->tree;
Chris Masonc87fb6f2011-01-31 19:54:59 -0500145 struct rb_node *prev = NULL;
Chris Masondc17ff82008-01-08 15:46:30 -0500146 struct rb_node *ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400147 struct btrfs_ordered_extent *entry;
148
149 if (tree->last) {
150 entry = rb_entry(tree->last, struct btrfs_ordered_extent,
151 rb_node);
152 if (offset_in_entry(entry, file_offset))
153 return tree->last;
154 }
155 ret = __tree_search(root, file_offset, &prev);
Chris Masondc17ff82008-01-08 15:46:30 -0500156 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400157 ret = prev;
158 if (ret)
159 tree->last = ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500160 return ret;
161}
162
Chris Masoneb84ae02008-07-17 13:53:27 -0400163/* allocate and add a new ordered_extent into the per-inode tree.
164 * file_offset is the logical offset in the file
165 *
166 * start is the disk block number of an extent already reserved in the
167 * extent allocation tree
168 *
169 * len is the length of the extent
170 *
Chris Masoneb84ae02008-07-17 13:53:27 -0400171 * The tree is given a single reference on the ordered extent that was
172 * inserted.
173 */
Josef Bacik4b46fce2010-05-23 11:00:55 -0400174static int __btrfs_add_ordered_extent(struct inode *inode, u64 file_offset,
175 u64 start, u64 len, u64 disk_len,
Li Zefan261507a02010-12-17 14:21:50 +0800176 int type, int dio, int compress_type)
Chris Masondc17ff82008-01-08 15:46:30 -0500177{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400178 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie199c2a92013-05-15 07:48:23 +0000179 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondc17ff82008-01-08 15:46:30 -0500180 struct btrfs_ordered_inode_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400181 struct rb_node *node;
182 struct btrfs_ordered_extent *entry;
Chris Masondc17ff82008-01-08 15:46:30 -0500183
Chris Masone6dcd2d2008-07-17 12:53:50 -0400184 tree = &BTRFS_I(inode)->ordered_tree;
Miao Xie6352b912012-09-06 04:01:51 -0600185 entry = kmem_cache_zalloc(btrfs_ordered_extent_cache, GFP_NOFS);
Chris Masondc17ff82008-01-08 15:46:30 -0500186 if (!entry)
187 return -ENOMEM;
188
Chris Masone6dcd2d2008-07-17 12:53:50 -0400189 entry->file_offset = file_offset;
190 entry->start = start;
191 entry->len = len;
Chris Masonc8b97812008-10-29 14:49:59 -0400192 entry->disk_len = disk_len;
Chris Mason8b62b722009-09-02 16:53:46 -0400193 entry->bytes_left = len;
Josef Bacik5fd02042012-05-02 14:00:54 -0400194 entry->inode = igrab(inode);
Li Zefan261507a02010-12-17 14:21:50 +0800195 entry->compress_type = compress_type;
Josef Bacik77cef2e2013-08-29 13:57:21 -0400196 entry->truncated_len = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -0400197 if (type != BTRFS_ORDERED_IO_DONE && type != BTRFS_ORDERED_COMPLETE)
Yan Zheng80ff3852008-10-30 14:20:02 -0400198 set_bit(type, &entry->flags);
Chris Mason3eaa2882008-07-24 11:57:52 -0400199
Josef Bacik4297ff82019-04-10 15:56:09 -0400200 if (dio) {
201 percpu_counter_add_batch(&fs_info->dio_bytes, len,
202 fs_info->delalloc_batch);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400203 set_bit(BTRFS_ORDERED_DIRECT, &entry->flags);
Josef Bacik4297ff82019-04-10 15:56:09 -0400204 }
Josef Bacik4b46fce2010-05-23 11:00:55 -0400205
Chris Masone6dcd2d2008-07-17 12:53:50 -0400206 /* one ref for the tree */
Elena Reshetovae76edab2017-03-03 10:55:13 +0200207 refcount_set(&entry->refs, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400208 init_waitqueue_head(&entry->wait);
209 INIT_LIST_HEAD(&entry->list);
Chris Mason3eaa2882008-07-24 11:57:52 -0400210 INIT_LIST_HEAD(&entry->root_extent_list);
Miao Xie9afab882012-10-25 09:41:36 +0000211 INIT_LIST_HEAD(&entry->work_list);
212 init_completion(&entry->completion);
Josef Bacik2ab28f32012-10-12 15:27:49 -0400213 INIT_LIST_HEAD(&entry->log_list);
Josef Bacik50d9aa92014-11-21 14:52:38 -0500214 INIT_LIST_HEAD(&entry->trans_list);
Chris Masondc17ff82008-01-08 15:46:30 -0500215
liubo1abe9b82011-03-24 11:18:59 +0000216 trace_btrfs_ordered_extent_add(inode, entry);
217
Josef Bacik5fd02042012-05-02 14:00:54 -0400218 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400219 node = tree_insert(&tree->tree, file_offset,
220 &entry->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400221 if (node)
222 ordered_data_tree_panic(inode, -EEXIST, file_offset);
Josef Bacik5fd02042012-05-02 14:00:54 -0400223 spin_unlock_irq(&tree->lock);
Chris Masond3977122009-01-05 21:25:51 -0500224
Miao Xie199c2a92013-05-15 07:48:23 +0000225 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400226 list_add_tail(&entry->root_extent_list,
Miao Xie199c2a92013-05-15 07:48:23 +0000227 &root->ordered_extents);
228 root->nr_ordered_extents++;
229 if (root->nr_ordered_extents == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400230 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000231 BUG_ON(!list_empty(&root->ordered_root));
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400232 list_add_tail(&root->ordered_root, &fs_info->ordered_roots);
233 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000234 }
235 spin_unlock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400236
Josef Bacik8b62f872017-10-19 14:15:55 -0400237 /*
238 * We don't need the count_max_extents here, we can assume that all of
239 * that work has been done at higher layers, so this is truly the
240 * smallest the extent is going to get.
241 */
242 spin_lock(&BTRFS_I(inode)->lock);
243 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
244 spin_unlock(&BTRFS_I(inode)->lock);
245
Chris Masone6dcd2d2008-07-17 12:53:50 -0400246 return 0;
247}
Chris Masondc17ff82008-01-08 15:46:30 -0500248
Josef Bacik4b46fce2010-05-23 11:00:55 -0400249int btrfs_add_ordered_extent(struct inode *inode, u64 file_offset,
250 u64 start, u64 len, u64 disk_len, int type)
251{
252 return __btrfs_add_ordered_extent(inode, file_offset, start, len,
Li Zefan261507a02010-12-17 14:21:50 +0800253 disk_len, type, 0,
254 BTRFS_COMPRESS_NONE);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400255}
256
257int btrfs_add_ordered_extent_dio(struct inode *inode, u64 file_offset,
258 u64 start, u64 len, u64 disk_len, int type)
259{
260 return __btrfs_add_ordered_extent(inode, file_offset, start, len,
Li Zefan261507a02010-12-17 14:21:50 +0800261 disk_len, type, 1,
262 BTRFS_COMPRESS_NONE);
263}
264
265int btrfs_add_ordered_extent_compress(struct inode *inode, u64 file_offset,
266 u64 start, u64 len, u64 disk_len,
267 int type, int compress_type)
268{
269 return __btrfs_add_ordered_extent(inode, file_offset, start, len,
270 disk_len, type, 0,
271 compress_type);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400272}
273
Chris Masoneb84ae02008-07-17 13:53:27 -0400274/*
275 * Add a struct btrfs_ordered_sum into the list of checksums to be inserted
Chris Mason3edf7d32008-07-18 06:17:13 -0400276 * when an ordered extent is finished. If the list covers more than one
277 * ordered extent, it is split across multiples.
Chris Masoneb84ae02008-07-17 13:53:27 -0400278 */
Nikolay Borisovf9756262019-04-10 16:16:11 +0300279void btrfs_add_ordered_sum(struct btrfs_ordered_extent *entry,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100280 struct btrfs_ordered_sum *sum)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400281{
282 struct btrfs_ordered_inode_tree *tree;
Chris Mason1b1e2132008-06-25 16:01:31 -0400283
Nikolay Borisovf9756262019-04-10 16:16:11 +0300284 tree = &BTRFS_I(entry->inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400285 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400286 list_add_tail(&sum->list, &entry->list);
Josef Bacik5fd02042012-05-02 14:00:54 -0400287 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400288}
289
Chris Masoneb84ae02008-07-17 13:53:27 -0400290/*
291 * this is used to account for finished IO across a given range
Chris Mason163cf092010-11-28 19:56:33 -0500292 * of the file. The IO may span ordered extents. If
293 * a given ordered_extent is completely done, 1 is returned, otherwise
294 * 0.
295 *
296 * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used
297 * to make sure this function only returns 1 once for a given ordered extent.
298 *
299 * file_offset is updated to one byte past the range that is recorded as
300 * complete. This allows you to walk forward in the file.
301 */
302int btrfs_dec_test_first_ordered_pending(struct inode *inode,
303 struct btrfs_ordered_extent **cached,
Josef Bacik5fd02042012-05-02 14:00:54 -0400304 u64 *file_offset, u64 io_size, int uptodate)
Chris Mason163cf092010-11-28 19:56:33 -0500305{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400306 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason163cf092010-11-28 19:56:33 -0500307 struct btrfs_ordered_inode_tree *tree;
308 struct rb_node *node;
309 struct btrfs_ordered_extent *entry = NULL;
310 int ret;
Josef Bacik5fd02042012-05-02 14:00:54 -0400311 unsigned long flags;
Chris Mason163cf092010-11-28 19:56:33 -0500312 u64 dec_end;
313 u64 dec_start;
314 u64 to_dec;
315
316 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400317 spin_lock_irqsave(&tree->lock, flags);
Chris Mason163cf092010-11-28 19:56:33 -0500318 node = tree_search(tree, *file_offset);
319 if (!node) {
320 ret = 1;
321 goto out;
322 }
323
324 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
325 if (!offset_in_entry(entry, *file_offset)) {
326 ret = 1;
327 goto out;
328 }
329
330 dec_start = max(*file_offset, entry->file_offset);
331 dec_end = min(*file_offset + io_size, entry->file_offset +
332 entry->len);
333 *file_offset = dec_end;
334 if (dec_start > dec_end) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400335 btrfs_crit(fs_info, "bad ordering dec_start %llu end %llu",
336 dec_start, dec_end);
Chris Mason163cf092010-11-28 19:56:33 -0500337 }
338 to_dec = dec_end - dec_start;
339 if (to_dec > entry->bytes_left) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400340 btrfs_crit(fs_info,
341 "bad ordered accounting left %llu size %llu",
342 entry->bytes_left, to_dec);
Chris Mason163cf092010-11-28 19:56:33 -0500343 }
344 entry->bytes_left -= to_dec;
Josef Bacik5fd02042012-05-02 14:00:54 -0400345 if (!uptodate)
346 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
347
Miao Xieaf7a6502014-03-06 13:54:56 +0800348 if (entry->bytes_left == 0) {
Chris Mason163cf092010-11-28 19:56:33 -0500349 ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
David Sterba093258e2018-02-26 16:15:17 +0100350 /* test_and_set_bit implies a barrier */
351 cond_wake_up_nomb(&entry->wait);
Miao Xieaf7a6502014-03-06 13:54:56 +0800352 } else {
Chris Mason163cf092010-11-28 19:56:33 -0500353 ret = 1;
Miao Xieaf7a6502014-03-06 13:54:56 +0800354 }
Chris Mason163cf092010-11-28 19:56:33 -0500355out:
356 if (!ret && cached && entry) {
357 *cached = entry;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200358 refcount_inc(&entry->refs);
Chris Mason163cf092010-11-28 19:56:33 -0500359 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400360 spin_unlock_irqrestore(&tree->lock, flags);
Chris Mason163cf092010-11-28 19:56:33 -0500361 return ret == 0;
362}
363
364/*
365 * this is used to account for finished IO across a given range
Chris Masoneb84ae02008-07-17 13:53:27 -0400366 * of the file. The IO should not span ordered extents. If
367 * a given ordered_extent is completely done, 1 is returned, otherwise
368 * 0.
369 *
370 * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used
371 * to make sure this function only returns 1 once for a given ordered extent.
372 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400373int btrfs_dec_test_ordered_pending(struct inode *inode,
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000374 struct btrfs_ordered_extent **cached,
Josef Bacik5fd02042012-05-02 14:00:54 -0400375 u64 file_offset, u64 io_size, int uptodate)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400376{
377 struct btrfs_ordered_inode_tree *tree;
378 struct rb_node *node;
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000379 struct btrfs_ordered_extent *entry = NULL;
Josef Bacik5fd02042012-05-02 14:00:54 -0400380 unsigned long flags;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400381 int ret;
382
383 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400384 spin_lock_irqsave(&tree->lock, flags);
385 if (cached && *cached) {
386 entry = *cached;
387 goto have_entry;
388 }
389
Chris Masone6dcd2d2008-07-17 12:53:50 -0400390 node = tree_search(tree, file_offset);
391 if (!node) {
392 ret = 1;
393 goto out;
394 }
395
396 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Josef Bacik5fd02042012-05-02 14:00:54 -0400397have_entry:
Chris Masone6dcd2d2008-07-17 12:53:50 -0400398 if (!offset_in_entry(entry, file_offset)) {
399 ret = 1;
400 goto out;
401 }
402
Chris Mason8b62b722009-09-02 16:53:46 -0400403 if (io_size > entry->bytes_left) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500404 btrfs_crit(BTRFS_I(inode)->root->fs_info,
405 "bad ordered accounting left %llu size %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200406 entry->bytes_left, io_size);
Chris Mason8b62b722009-09-02 16:53:46 -0400407 }
408 entry->bytes_left -= io_size;
Josef Bacik5fd02042012-05-02 14:00:54 -0400409 if (!uptodate)
410 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
411
Miao Xieaf7a6502014-03-06 13:54:56 +0800412 if (entry->bytes_left == 0) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400413 ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
David Sterba093258e2018-02-26 16:15:17 +0100414 /* test_and_set_bit implies a barrier */
415 cond_wake_up_nomb(&entry->wait);
Miao Xieaf7a6502014-03-06 13:54:56 +0800416 } else {
Chris Mason8b62b722009-09-02 16:53:46 -0400417 ret = 1;
Miao Xieaf7a6502014-03-06 13:54:56 +0800418 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400419out:
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000420 if (!ret && cached && entry) {
421 *cached = entry;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200422 refcount_inc(&entry->refs);
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000423 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400424 spin_unlock_irqrestore(&tree->lock, flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400425 return ret == 0;
426}
427
Chris Masoneb84ae02008-07-17 13:53:27 -0400428/*
429 * used to drop a reference on an ordered extent. This will free
430 * the extent if the last reference is dropped
431 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100432void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400433{
Chris Masonba1da2f2008-07-17 12:54:15 -0400434 struct list_head *cur;
435 struct btrfs_ordered_sum *sum;
436
liubo1abe9b82011-03-24 11:18:59 +0000437 trace_btrfs_ordered_extent_put(entry->inode, entry);
438
Elena Reshetovae76edab2017-03-03 10:55:13 +0200439 if (refcount_dec_and_test(&entry->refs)) {
Filipe Manana61de7182015-07-01 12:13:10 +0100440 ASSERT(list_empty(&entry->log_list));
441 ASSERT(list_empty(&entry->trans_list));
442 ASSERT(list_empty(&entry->root_extent_list));
443 ASSERT(RB_EMPTY_NODE(&entry->rb_node));
Josef Bacik5fd02042012-05-02 14:00:54 -0400444 if (entry->inode)
445 btrfs_add_delayed_iput(entry->inode);
Chris Masond3977122009-01-05 21:25:51 -0500446 while (!list_empty(&entry->list)) {
Chris Masonba1da2f2008-07-17 12:54:15 -0400447 cur = entry->list.next;
448 sum = list_entry(cur, struct btrfs_ordered_sum, list);
449 list_del(&sum->list);
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300450 kvfree(sum);
Chris Masonba1da2f2008-07-17 12:54:15 -0400451 }
Miao Xie6352b912012-09-06 04:01:51 -0600452 kmem_cache_free(btrfs_ordered_extent_cache, entry);
Chris Masonba1da2f2008-07-17 12:54:15 -0400453 }
Chris Masondc17ff82008-01-08 15:46:30 -0500454}
455
Chris Masoneb84ae02008-07-17 13:53:27 -0400456/*
457 * remove an ordered extent from the tree. No references are dropped
Josef Bacik5fd02042012-05-02 14:00:54 -0400458 * and waiters are woken up.
Chris Masoneb84ae02008-07-17 13:53:27 -0400459 */
Josef Bacik5fd02042012-05-02 14:00:54 -0400460void btrfs_remove_ordered_extent(struct inode *inode,
461 struct btrfs_ordered_extent *entry)
Chris Masondc17ff82008-01-08 15:46:30 -0500462{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400463 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400464 struct btrfs_ordered_inode_tree *tree;
Josef Bacik8b62f872017-10-19 14:15:55 -0400465 struct btrfs_inode *btrfs_inode = BTRFS_I(inode);
466 struct btrfs_root *root = btrfs_inode->root;
Chris Masondc17ff82008-01-08 15:46:30 -0500467 struct rb_node *node;
468
Josef Bacik8b62f872017-10-19 14:15:55 -0400469 /* This is paired with btrfs_add_ordered_extent. */
470 spin_lock(&btrfs_inode->lock);
471 btrfs_mod_outstanding_extents(btrfs_inode, -1);
472 spin_unlock(&btrfs_inode->lock);
473 if (root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +0800474 btrfs_delalloc_release_metadata(btrfs_inode, entry->len, false);
Josef Bacik8b62f872017-10-19 14:15:55 -0400475
Josef Bacik4297ff82019-04-10 15:56:09 -0400476 if (test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
477 percpu_counter_add_batch(&fs_info->dio_bytes, -entry->len,
478 fs_info->delalloc_batch);
479
Josef Bacik8b62f872017-10-19 14:15:55 -0400480 tree = &btrfs_inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400481 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400482 node = &entry->rb_node;
Chris Masondc17ff82008-01-08 15:46:30 -0500483 rb_erase(node, &tree->tree);
Filipe Manana61de7182015-07-01 12:13:10 +0100484 RB_CLEAR_NODE(node);
Filipe David Borba Manana1b8e7e42013-11-22 18:54:58 +0000485 if (tree->last == node)
486 tree->last = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400487 set_bit(BTRFS_ORDERED_COMPLETE, &entry->flags);
Josef Bacik5fd02042012-05-02 14:00:54 -0400488 spin_unlock_irq(&tree->lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400489
Miao Xie199c2a92013-05-15 07:48:23 +0000490 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400491 list_del_init(&entry->root_extent_list);
Miao Xie199c2a92013-05-15 07:48:23 +0000492 root->nr_ordered_extents--;
Chris Mason5a3f23d2009-03-31 13:27:11 -0400493
liubo1abe9b82011-03-24 11:18:59 +0000494 trace_btrfs_ordered_extent_remove(inode, entry);
495
Miao Xie199c2a92013-05-15 07:48:23 +0000496 if (!root->nr_ordered_extents) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400497 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000498 BUG_ON(list_empty(&root->ordered_root));
499 list_del_init(&root->ordered_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400500 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000501 }
502 spin_unlock(&root->ordered_extent_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400503 wake_up(&entry->wait);
Chris Mason81d7ed22008-04-25 08:51:48 -0400504}
Chris Masone6dcd2d2008-07-17 12:53:50 -0400505
Qu Wenruod458b052014-02-28 10:46:19 +0800506static void btrfs_run_ordered_extent_work(struct btrfs_work *work)
Miao Xie9afab882012-10-25 09:41:36 +0000507{
508 struct btrfs_ordered_extent *ordered;
509
510 ordered = container_of(work, struct btrfs_ordered_extent, flush_work);
511 btrfs_start_ordered_extent(ordered->inode, ordered, 1);
512 complete(&ordered->completion);
513}
514
Chris Masond352ac62008-09-29 15:18:18 -0400515/*
516 * wait for all the ordered extents in a root. This is done when balancing
517 * space between drives.
518 */
Chris Mason6374e57a2017-06-23 09:48:21 -0700519u64 btrfs_wait_ordered_extents(struct btrfs_root *root, u64 nr,
Filipe Manana578def72016-04-26 15:36:38 +0100520 const u64 range_start, const u64 range_len)
Chris Mason3eaa2882008-07-24 11:57:52 -0400521{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400522 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana578def72016-04-26 15:36:38 +0100523 LIST_HEAD(splice);
524 LIST_HEAD(skipped);
525 LIST_HEAD(works);
Miao Xie9afab882012-10-25 09:41:36 +0000526 struct btrfs_ordered_extent *ordered, *next;
Chris Mason6374e57a2017-06-23 09:48:21 -0700527 u64 count = 0;
Filipe Manana578def72016-04-26 15:36:38 +0100528 const u64 range_end = range_start + range_len;
Chris Mason3eaa2882008-07-24 11:57:52 -0400529
Miao Xie31f3d252014-03-06 13:55:02 +0800530 mutex_lock(&root->ordered_extent_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000531 spin_lock(&root->ordered_extent_lock);
532 list_splice_init(&root->ordered_extents, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800533 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000534 ordered = list_first_entry(&splice, struct btrfs_ordered_extent,
535 root_extent_list);
Filipe Manana578def72016-04-26 15:36:38 +0100536
537 if (range_end <= ordered->start ||
538 ordered->start + ordered->disk_len <= range_start) {
539 list_move_tail(&ordered->root_extent_list, &skipped);
540 cond_resched_lock(&root->ordered_extent_lock);
541 continue;
542 }
543
Miao Xie199c2a92013-05-15 07:48:23 +0000544 list_move_tail(&ordered->root_extent_list,
545 &root->ordered_extents);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200546 refcount_inc(&ordered->refs);
Miao Xie199c2a92013-05-15 07:48:23 +0000547 spin_unlock(&root->ordered_extent_lock);
548
Qu Wenruoa44903a2014-02-28 10:46:09 +0800549 btrfs_init_work(&ordered->flush_work,
Liu Bo9e0af232014-08-15 23:36:53 +0800550 btrfs_flush_delalloc_helper,
Qu Wenruoa44903a2014-02-28 10:46:09 +0800551 btrfs_run_ordered_extent_work, NULL, NULL);
Miao Xie199c2a92013-05-15 07:48:23 +0000552 list_add_tail(&ordered->work_list, &works);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400553 btrfs_queue_work(fs_info->flush_workers, &ordered->flush_work);
Miao Xie199c2a92013-05-15 07:48:23 +0000554
Miao Xie9afab882012-10-25 09:41:36 +0000555 cond_resched();
Miao Xie199c2a92013-05-15 07:48:23 +0000556 spin_lock(&root->ordered_extent_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700557 if (nr != U64_MAX)
Miao Xieb0244192013-11-04 23:13:25 +0800558 nr--;
559 count++;
Chris Mason3eaa2882008-07-24 11:57:52 -0400560 }
Filipe Manana578def72016-04-26 15:36:38 +0100561 list_splice_tail(&skipped, &root->ordered_extents);
Miao Xieb0244192013-11-04 23:13:25 +0800562 list_splice_tail(&splice, &root->ordered_extents);
Miao Xie199c2a92013-05-15 07:48:23 +0000563 spin_unlock(&root->ordered_extent_lock);
Miao Xie9afab882012-10-25 09:41:36 +0000564
565 list_for_each_entry_safe(ordered, next, &works, work_list) {
566 list_del_init(&ordered->work_list);
567 wait_for_completion(&ordered->completion);
Miao Xie9afab882012-10-25 09:41:36 +0000568 btrfs_put_ordered_extent(ordered);
Miao Xie9afab882012-10-25 09:41:36 +0000569 cond_resched();
570 }
Miao Xie31f3d252014-03-06 13:55:02 +0800571 mutex_unlock(&root->ordered_extent_mutex);
Miao Xieb0244192013-11-04 23:13:25 +0800572
573 return count;
Chris Mason3eaa2882008-07-24 11:57:52 -0400574}
575
Chris Mason6374e57a2017-06-23 09:48:21 -0700576u64 btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
577 const u64 range_start, const u64 range_len)
Miao Xie199c2a92013-05-15 07:48:23 +0000578{
579 struct btrfs_root *root;
580 struct list_head splice;
Chris Mason6374e57a2017-06-23 09:48:21 -0700581 u64 total_done = 0;
582 u64 done;
Miao Xie199c2a92013-05-15 07:48:23 +0000583
584 INIT_LIST_HEAD(&splice);
585
Miao Xie8b9d83c2014-03-06 13:54:55 +0800586 mutex_lock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000587 spin_lock(&fs_info->ordered_root_lock);
588 list_splice_init(&fs_info->ordered_roots, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800589 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000590 root = list_first_entry(&splice, struct btrfs_root,
591 ordered_root);
592 root = btrfs_grab_fs_root(root);
593 BUG_ON(!root);
594 list_move_tail(&root->ordered_root,
595 &fs_info->ordered_roots);
596 spin_unlock(&fs_info->ordered_root_lock);
597
Filipe Manana578def72016-04-26 15:36:38 +0100598 done = btrfs_wait_ordered_extents(root, nr,
599 range_start, range_len);
Miao Xie199c2a92013-05-15 07:48:23 +0000600 btrfs_put_fs_root(root);
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +0100601 total_done += done;
Miao Xie199c2a92013-05-15 07:48:23 +0000602
603 spin_lock(&fs_info->ordered_root_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700604 if (nr != U64_MAX) {
Miao Xieb0244192013-11-04 23:13:25 +0800605 nr -= done;
Miao Xieb0244192013-11-04 23:13:25 +0800606 }
Miao Xie199c2a92013-05-15 07:48:23 +0000607 }
Miao Xie931aa872013-11-14 17:33:21 +0800608 list_splice_tail(&splice, &fs_info->ordered_roots);
Miao Xie199c2a92013-05-15 07:48:23 +0000609 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie8b9d83c2014-03-06 13:54:55 +0800610 mutex_unlock(&fs_info->ordered_operations_mutex);
Filipe Mananaf0e9b7d2016-05-14 09:12:53 +0100611
612 return total_done;
Miao Xie199c2a92013-05-15 07:48:23 +0000613}
614
Chris Masoneb84ae02008-07-17 13:53:27 -0400615/*
616 * Used to start IO or wait for a given ordered extent to finish.
617 *
618 * If wait is one, this effectively waits on page writeback for all the pages
619 * in the extent, and it waits on the io completion code to insert
620 * metadata into the btree corresponding to the extent
621 */
622void btrfs_start_ordered_extent(struct inode *inode,
623 struct btrfs_ordered_extent *entry,
624 int wait)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400625{
626 u64 start = entry->file_offset;
627 u64 end = start + entry->len - 1;
628
liubo1abe9b82011-03-24 11:18:59 +0000629 trace_btrfs_ordered_extent_start(inode, entry);
630
Chris Masoneb84ae02008-07-17 13:53:27 -0400631 /*
632 * pages in the range can be dirty, clean or writeback. We
633 * start IO on any dirty ones so the wait doesn't stall waiting
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300634 * for the flusher thread to find them
Chris Masoneb84ae02008-07-17 13:53:27 -0400635 */
Josef Bacik4b46fce2010-05-23 11:00:55 -0400636 if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
637 filemap_fdatawrite_range(inode->i_mapping, start, end);
Chris Masonc8b97812008-10-29 14:49:59 -0400638 if (wait) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400639 wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE,
640 &entry->flags));
Chris Masonc8b97812008-10-29 14:49:59 -0400641 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400642}
643
Chris Masoneb84ae02008-07-17 13:53:27 -0400644/*
645 * Used to wait on ordered extents across a large range of bytes.
646 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400647int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400648{
Josef Bacik0ef8b722013-10-25 16:13:35 -0400649 int ret = 0;
Filipe Manana28aeeac2015-05-05 19:03:10 +0100650 int ret_wb = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400651 u64 end;
Chris Masone5a22172008-07-18 20:42:20 -0400652 u64 orig_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400653 struct btrfs_ordered_extent *ordered;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400654
Chris Masone5a22172008-07-18 20:42:20 -0400655 if (start + len < start) {
Chris Masonf4219502008-07-22 11:18:09 -0400656 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400657 } else {
658 orig_end = start + len - 1;
Chris Masonf4219502008-07-22 11:18:09 -0400659 if (orig_end > INT_LIMIT(loff_t))
660 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400661 }
Josef Bacik551ebb22012-04-23 14:41:09 -0400662
Chris Masone5a22172008-07-18 20:42:20 -0400663 /* start IO across the range first to instantiate any delalloc
664 * extents
665 */
Filipe Manana728404d2014-10-10 09:43:11 +0100666 ret = btrfs_fdatawrite_range(inode, start, orig_end);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400667 if (ret)
668 return ret;
Filipe Manana728404d2014-10-10 09:43:11 +0100669
Filipe Manana28aeeac2015-05-05 19:03:10 +0100670 /*
671 * If we have a writeback error don't return immediately. Wait first
672 * for any ordered extents that haven't completed yet. This is to make
673 * sure no one can dirty the same page ranges and call writepages()
674 * before the ordered extents complete - to avoid failures (-EEXIST)
675 * when adding the new ordered extents to the ordered tree.
676 */
677 ret_wb = filemap_fdatawait_range(inode->i_mapping, start, orig_end);
Chris Masonf4219502008-07-22 11:18:09 -0400678
679 end = orig_end;
Chris Masond3977122009-01-05 21:25:51 -0500680 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400681 ordered = btrfs_lookup_first_ordered_extent(inode, end);
Chris Masond3977122009-01-05 21:25:51 -0500682 if (!ordered)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400683 break;
Chris Masone5a22172008-07-18 20:42:20 -0400684 if (ordered->file_offset > orig_end) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400685 btrfs_put_ordered_extent(ordered);
686 break;
687 }
Filipe David Borba Mananab52abf12013-11-06 15:12:40 +0000688 if (ordered->file_offset + ordered->len <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400689 btrfs_put_ordered_extent(ordered);
690 break;
691 }
Chris Masone5a22172008-07-18 20:42:20 -0400692 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400693 end = ordered->file_offset;
Josef Bacik0ef8b722013-10-25 16:13:35 -0400694 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))
695 ret = -EIO;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400696 btrfs_put_ordered_extent(ordered);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400697 if (ret || end == 0 || end == start)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400698 break;
699 end--;
700 }
Filipe Manana28aeeac2015-05-05 19:03:10 +0100701 return ret_wb ? ret_wb : ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400702}
703
Chris Masoneb84ae02008-07-17 13:53:27 -0400704/*
705 * find an ordered extent corresponding to file_offset. return NULL if
706 * nothing is found, otherwise take a reference on the extent and return it
707 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400708struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct inode *inode,
709 u64 file_offset)
710{
711 struct btrfs_ordered_inode_tree *tree;
712 struct rb_node *node;
713 struct btrfs_ordered_extent *entry = NULL;
714
715 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400716 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400717 node = tree_search(tree, file_offset);
718 if (!node)
719 goto out;
720
721 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
722 if (!offset_in_entry(entry, file_offset))
723 entry = NULL;
724 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200725 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400726out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400727 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400728 return entry;
729}
730
Josef Bacik4b46fce2010-05-23 11:00:55 -0400731/* Since the DIO code tries to lock a wide area we need to look for any ordered
732 * extents that exist in the range, rather than just the start of the range.
733 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200734struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
735 struct btrfs_inode *inode, u64 file_offset, u64 len)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400736{
737 struct btrfs_ordered_inode_tree *tree;
738 struct rb_node *node;
739 struct btrfs_ordered_extent *entry = NULL;
740
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200741 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400742 spin_lock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400743 node = tree_search(tree, file_offset);
744 if (!node) {
745 node = tree_search(tree, file_offset + len);
746 if (!node)
747 goto out;
748 }
749
750 while (1) {
751 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
752 if (range_overlaps(entry, file_offset, len))
753 break;
754
755 if (entry->file_offset >= file_offset + len) {
756 entry = NULL;
757 break;
758 }
759 entry = NULL;
760 node = rb_next(node);
761 if (!node)
762 break;
763 }
764out:
765 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200766 refcount_inc(&entry->refs);
Josef Bacik5fd02042012-05-02 14:00:54 -0400767 spin_unlock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400768 return entry;
769}
770
Chris Masoneb84ae02008-07-17 13:53:27 -0400771/*
772 * lookup and return any extent before 'file_offset'. NULL is returned
773 * if none is found
774 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400775struct btrfs_ordered_extent *
Chris Masond3977122009-01-05 21:25:51 -0500776btrfs_lookup_first_ordered_extent(struct inode *inode, u64 file_offset)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400777{
778 struct btrfs_ordered_inode_tree *tree;
779 struct rb_node *node;
780 struct btrfs_ordered_extent *entry = NULL;
781
782 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400783 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400784 node = tree_search(tree, file_offset);
785 if (!node)
786 goto out;
787
788 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200789 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400790out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400791 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400792 return entry;
793}
Chris Masondbe674a2008-07-17 12:54:05 -0400794
Chris Masoneb84ae02008-07-17 13:53:27 -0400795/*
796 * After an extent is done, call this to conditionally update the on disk
797 * i_size. i_size is updated to cover any fully written part of the file.
798 */
Yan, Zhengc2167752009-11-12 09:34:21 +0000799int btrfs_ordered_update_i_size(struct inode *inode, u64 offset,
Chris Masondbe674a2008-07-17 12:54:05 -0400800 struct btrfs_ordered_extent *ordered)
801{
802 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
Chris Masondbe674a2008-07-17 12:54:05 -0400803 u64 disk_i_size;
804 u64 new_i_size;
Yan, Zhengc2167752009-11-12 09:34:21 +0000805 u64 i_size = i_size_read(inode);
Chris Masondbe674a2008-07-17 12:54:05 -0400806 struct rb_node *node;
Yan, Zhengc2167752009-11-12 09:34:21 +0000807 struct rb_node *prev = NULL;
Chris Masondbe674a2008-07-17 12:54:05 -0400808 struct btrfs_ordered_extent *test;
Yan, Zhengc2167752009-11-12 09:34:21 +0000809 int ret = 1;
Wang Xiaoguangc0d2f612016-06-22 09:57:01 +0800810 u64 orig_offset = offset;
Yan, Zhengc2167752009-11-12 09:34:21 +0000811
Josef Bacik5fd02042012-05-02 14:00:54 -0400812 spin_lock_irq(&tree->lock);
Josef Bacik77cef2e2013-08-29 13:57:21 -0400813 if (ordered) {
814 offset = entry_end(ordered);
815 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags))
816 offset = min(offset,
817 ordered->file_offset +
818 ordered->truncated_len);
819 } else {
Jeff Mahoneyda170662016-06-15 09:22:56 -0400820 offset = ALIGN(offset, btrfs_inode_sectorsize(inode));
Josef Bacik77cef2e2013-08-29 13:57:21 -0400821 }
Chris Masondbe674a2008-07-17 12:54:05 -0400822 disk_i_size = BTRFS_I(inode)->disk_i_size;
823
Liu Bo19fd2df2016-12-01 13:01:02 -0800824 /*
825 * truncate file.
826 * If ordered is not NULL, then this is called from endio and
827 * disk_i_size will be updated by either truncate itself or any
828 * in-flight IOs which are inside the disk_i_size.
829 *
830 * Because btrfs_setsize() may set i_size with disk_i_size if truncate
831 * fails somehow, we need to make sure we have a precise disk_i_size by
832 * updating it as usual.
833 *
834 */
835 if (!ordered && disk_i_size > i_size) {
Wang Xiaoguangc0d2f612016-06-22 09:57:01 +0800836 BTRFS_I(inode)->disk_i_size = orig_offset;
Yan, Zhengc2167752009-11-12 09:34:21 +0000837 ret = 0;
838 goto out;
839 }
840
Chris Masondbe674a2008-07-17 12:54:05 -0400841 /*
842 * if the disk i_size is already at the inode->i_size, or
843 * this ordered extent is inside the disk i_size, we're done
844 */
Josef Bacik5d1f4022013-01-30 14:17:31 -0500845 if (disk_i_size == i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400846 goto out;
Josef Bacik5d1f4022013-01-30 14:17:31 -0500847
848 /*
849 * We still need to update disk_i_size if outstanding_isize is greater
850 * than disk_i_size.
851 */
852 if (offset <= disk_i_size &&
853 (!ordered || ordered->outstanding_isize <= disk_i_size))
854 goto out;
Chris Masondbe674a2008-07-17 12:54:05 -0400855
856 /*
Chris Masondbe674a2008-07-17 12:54:05 -0400857 * walk backward from this ordered extent to disk_i_size.
858 * if we find an ordered extent then we can't update disk i_size
859 * yet
860 */
Yan, Zhengc2167752009-11-12 09:34:21 +0000861 if (ordered) {
862 node = rb_prev(&ordered->rb_node);
863 } else {
864 prev = tree_search(tree, offset);
865 /*
866 * we insert file extents without involving ordered struct,
867 * so there should be no ordered struct cover this offset
868 */
869 if (prev) {
870 test = rb_entry(prev, struct btrfs_ordered_extent,
871 rb_node);
872 BUG_ON(offset_in_entry(test, offset));
873 }
874 node = prev;
875 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400876 for (; node; node = rb_prev(node)) {
Chris Masondbe674a2008-07-17 12:54:05 -0400877 test = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Josef Bacik5fd02042012-05-02 14:00:54 -0400878
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -0800879 /* We treat this entry as if it doesn't exist */
Josef Bacik5fd02042012-05-02 14:00:54 -0400880 if (test_bit(BTRFS_ORDERED_UPDATED_ISIZE, &test->flags))
881 continue;
Liu Bo62c821a2016-12-13 12:51:51 -0800882
883 if (entry_end(test) <= disk_i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400884 break;
Yan, Zhengc2167752009-11-12 09:34:21 +0000885 if (test->file_offset >= i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400886 break;
Liu Bo62c821a2016-12-13 12:51:51 -0800887
888 /*
889 * We don't update disk_i_size now, so record this undealt
890 * i_size. Or we will not know the real i_size.
891 */
892 if (test->outstanding_isize < offset)
893 test->outstanding_isize = offset;
894 if (ordered &&
895 ordered->outstanding_isize > test->outstanding_isize)
896 test->outstanding_isize = ordered->outstanding_isize;
897 goto out;
Chris Masondbe674a2008-07-17 12:54:05 -0400898 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000899 new_i_size = min_t(u64, offset, i_size);
Chris Masondbe674a2008-07-17 12:54:05 -0400900
901 /*
Miao Xieb9a8cc52012-09-06 04:01:21 -0600902 * Some ordered extents may completed before the current one, and
903 * we hold the real i_size in ->outstanding_isize.
Chris Masondbe674a2008-07-17 12:54:05 -0400904 */
Miao Xieb9a8cc52012-09-06 04:01:21 -0600905 if (ordered && ordered->outstanding_isize > new_i_size)
906 new_i_size = min_t(u64, ordered->outstanding_isize, i_size);
Chris Masondbe674a2008-07-17 12:54:05 -0400907 BTRFS_I(inode)->disk_i_size = new_i_size;
Yan, Zhengc2167752009-11-12 09:34:21 +0000908 ret = 0;
Chris Masondbe674a2008-07-17 12:54:05 -0400909out:
Yan, Zhengc2167752009-11-12 09:34:21 +0000910 /*
Josef Bacik5fd02042012-05-02 14:00:54 -0400911 * We need to do this because we can't remove ordered extents until
912 * after the i_disk_size has been updated and then the inode has been
913 * updated to reflect the change, so we need to tell anybody who finds
914 * this ordered extent that we've already done all the real work, we
915 * just haven't completed all the other work.
Yan, Zhengc2167752009-11-12 09:34:21 +0000916 */
917 if (ordered)
Josef Bacik5fd02042012-05-02 14:00:54 -0400918 set_bit(BTRFS_ORDERED_UPDATED_ISIZE, &ordered->flags);
919 spin_unlock_irq(&tree->lock);
Yan, Zhengc2167752009-11-12 09:34:21 +0000920 return ret;
Chris Masondbe674a2008-07-17 12:54:05 -0400921}
Chris Masonba1da2f2008-07-17 12:54:15 -0400922
Chris Masoneb84ae02008-07-17 13:53:27 -0400923/*
924 * search the ordered extents for one corresponding to 'offset' and
925 * try to find a checksum. This is used because we allow pages to
926 * be reclaimed before their checksum is actually put into the btree
927 */
Chris Masond20f7042008-12-08 16:58:54 -0500928int btrfs_find_ordered_sum(struct inode *inode, u64 offset, u64 disk_bytenr,
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200929 u8 *sum, int len)
Chris Masonba1da2f2008-07-17 12:54:15 -0400930{
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200931 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonba1da2f2008-07-17 12:54:15 -0400932 struct btrfs_ordered_sum *ordered_sum;
Chris Masonba1da2f2008-07-17 12:54:15 -0400933 struct btrfs_ordered_extent *ordered;
934 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
Chris Mason3edf7d32008-07-18 06:17:13 -0400935 unsigned long num_sectors;
936 unsigned long i;
Jeff Mahoneyda170662016-06-15 09:22:56 -0400937 u32 sectorsize = btrfs_inode_sectorsize(inode);
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200938 const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Miao Xiee4100d92013-04-05 07:20:56 +0000939 int index = 0;
Chris Masonba1da2f2008-07-17 12:54:15 -0400940
941 ordered = btrfs_lookup_ordered_extent(inode, offset);
942 if (!ordered)
Miao Xiee4100d92013-04-05 07:20:56 +0000943 return 0;
Chris Masonba1da2f2008-07-17 12:54:15 -0400944
Josef Bacik5fd02042012-05-02 14:00:54 -0400945 spin_lock_irq(&tree->lock);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500946 list_for_each_entry_reverse(ordered_sum, &ordered->list, list) {
Miao Xiee4100d92013-04-05 07:20:56 +0000947 if (disk_bytenr >= ordered_sum->bytenr &&
948 disk_bytenr < ordered_sum->bytenr + ordered_sum->len) {
949 i = (disk_bytenr - ordered_sum->bytenr) >>
950 inode->i_sb->s_blocksize_bits;
Miao Xiee4100d92013-04-05 07:20:56 +0000951 num_sectors = ordered_sum->len >>
952 inode->i_sb->s_blocksize_bits;
Miao Xief51a4a12013-06-19 10:36:09 +0800953 num_sectors = min_t(int, len - index, num_sectors - i);
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200954 memcpy(sum + index, ordered_sum->sums + i * csum_size,
955 num_sectors * csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +0800956
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200957 index += (int)num_sectors * csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800958 if (index == len)
959 goto out;
960 disk_bytenr += num_sectors * sectorsize;
Chris Masonba1da2f2008-07-17 12:54:15 -0400961 }
962 }
963out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400964 spin_unlock_irq(&tree->lock);
Chris Mason89642222008-07-24 09:41:53 -0400965 btrfs_put_ordered_extent(ordered);
Miao Xiee4100d92013-04-05 07:20:56 +0000966 return index;
Chris Masonba1da2f2008-07-17 12:54:15 -0400967}
968
Nikolay Borisovffa87212019-05-07 10:19:22 +0300969/*
970 * btrfs_flush_ordered_range - Lock the passed range and ensures all pending
971 * ordered extents in it are run to completion.
972 *
973 * @tree: IO tree used for locking out other users of the range
974 * @inode: Inode whose ordered tree is to be searched
975 * @start: Beginning of range to flush
976 * @end: Last byte of range to lock
977 * @cached_state: If passed, will return the extent state responsible for the
978 * locked range. It's the caller's responsibility to free the cached state.
979 *
980 * This function always returns with the given range locked, ensuring after it's
981 * called no order extent can be pending.
982 */
983void btrfs_lock_and_flush_ordered_range(struct extent_io_tree *tree,
984 struct btrfs_inode *inode, u64 start,
985 u64 end,
986 struct extent_state **cached_state)
987{
988 struct btrfs_ordered_extent *ordered;
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900989 struct extent_state *cache = NULL;
990 struct extent_state **cachedp = &cache;
Nikolay Borisovbd80d942019-05-07 10:19:24 +0300991
992 if (cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900993 cachedp = cached_state;
Nikolay Borisovffa87212019-05-07 10:19:22 +0300994
995 while (1) {
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900996 lock_extent_bits(tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +0300997 ordered = btrfs_lookup_ordered_range(inode, start,
998 end - start + 1);
Nikolay Borisovbd80d942019-05-07 10:19:24 +0300999 if (!ordered) {
1000 /*
1001 * If no external cached_state has been passed then
1002 * decrement the extra ref taken for cachedp since we
1003 * aren't exposing it outside of this function
1004 */
1005 if (!cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001006 refcount_dec(&cache->refs);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001007 break;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001008 }
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001009 unlock_extent_cached(tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001010 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
1011 btrfs_put_ordered_extent(ordered);
1012 }
1013}
1014
Miao Xie6352b912012-09-06 04:01:51 -06001015int __init ordered_data_init(void)
1016{
1017 btrfs_ordered_extent_cache = kmem_cache_create("btrfs_ordered_extent",
1018 sizeof(struct btrfs_ordered_extent), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03001019 SLAB_MEM_SPREAD,
Miao Xie6352b912012-09-06 04:01:51 -06001020 NULL);
1021 if (!btrfs_ordered_extent_cache)
1022 return -ENOMEM;
Miao Xie25287e02012-10-25 09:31:03 +00001023
Miao Xie6352b912012-09-06 04:01:51 -06001024 return 0;
1025}
1026
David Sterbae67c7182018-02-19 17:24:18 +01001027void __cold ordered_data_exit(void)
Miao Xie6352b912012-09-06 04:01:51 -06001028{
Kinglong Mee5598e902016-01-29 21:36:35 +08001029 kmem_cache_destroy(btrfs_ordered_extent_cache);
Miao Xie6352b912012-09-06 04:01:51 -06001030}