blob: fb09bc2f8e4d5a752e47115796b6903204426909 [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,
550 btrfs_run_ordered_extent_work, NULL, NULL);
Miao Xie199c2a92013-05-15 07:48:23 +0000551 list_add_tail(&ordered->work_list, &works);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400552 btrfs_queue_work(fs_info->flush_workers, &ordered->flush_work);
Miao Xie199c2a92013-05-15 07:48:23 +0000553
Miao Xie9afab882012-10-25 09:41:36 +0000554 cond_resched();
Miao Xie199c2a92013-05-15 07:48:23 +0000555 spin_lock(&root->ordered_extent_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700556 if (nr != U64_MAX)
Miao Xieb0244192013-11-04 23:13:25 +0800557 nr--;
558 count++;
Chris Mason3eaa2882008-07-24 11:57:52 -0400559 }
Filipe Manana578def72016-04-26 15:36:38 +0100560 list_splice_tail(&skipped, &root->ordered_extents);
Miao Xieb0244192013-11-04 23:13:25 +0800561 list_splice_tail(&splice, &root->ordered_extents);
Miao Xie199c2a92013-05-15 07:48:23 +0000562 spin_unlock(&root->ordered_extent_lock);
Miao Xie9afab882012-10-25 09:41:36 +0000563
564 list_for_each_entry_safe(ordered, next, &works, work_list) {
565 list_del_init(&ordered->work_list);
566 wait_for_completion(&ordered->completion);
Miao Xie9afab882012-10-25 09:41:36 +0000567 btrfs_put_ordered_extent(ordered);
Miao Xie9afab882012-10-25 09:41:36 +0000568 cond_resched();
569 }
Miao Xie31f3d252014-03-06 13:55:02 +0800570 mutex_unlock(&root->ordered_extent_mutex);
Miao Xieb0244192013-11-04 23:13:25 +0800571
572 return count;
Chris Mason3eaa2882008-07-24 11:57:52 -0400573}
574
Filipe Manana042528f2019-11-14 18:02:43 +0000575void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
Chris Mason6374e57a2017-06-23 09:48:21 -0700576 const u64 range_start, const u64 range_len)
Miao Xie199c2a92013-05-15 07:48:23 +0000577{
578 struct btrfs_root *root;
579 struct list_head splice;
Chris Mason6374e57a2017-06-23 09:48:21 -0700580 u64 done;
Miao Xie199c2a92013-05-15 07:48:23 +0000581
582 INIT_LIST_HEAD(&splice);
583
Miao Xie8b9d83c2014-03-06 13:54:55 +0800584 mutex_lock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000585 spin_lock(&fs_info->ordered_root_lock);
586 list_splice_init(&fs_info->ordered_roots, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800587 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000588 root = list_first_entry(&splice, struct btrfs_root,
589 ordered_root);
590 root = btrfs_grab_fs_root(root);
591 BUG_ON(!root);
592 list_move_tail(&root->ordered_root,
593 &fs_info->ordered_roots);
594 spin_unlock(&fs_info->ordered_root_lock);
595
Filipe Manana578def72016-04-26 15:36:38 +0100596 done = btrfs_wait_ordered_extents(root, nr,
597 range_start, range_len);
Miao Xie199c2a92013-05-15 07:48:23 +0000598 btrfs_put_fs_root(root);
599
600 spin_lock(&fs_info->ordered_root_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700601 if (nr != U64_MAX) {
Miao Xieb0244192013-11-04 23:13:25 +0800602 nr -= done;
Miao Xieb0244192013-11-04 23:13:25 +0800603 }
Miao Xie199c2a92013-05-15 07:48:23 +0000604 }
Miao Xie931aa872013-11-14 17:33:21 +0800605 list_splice_tail(&splice, &fs_info->ordered_roots);
Miao Xie199c2a92013-05-15 07:48:23 +0000606 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie8b9d83c2014-03-06 13:54:55 +0800607 mutex_unlock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000608}
609
Chris Masoneb84ae02008-07-17 13:53:27 -0400610/*
611 * Used to start IO or wait for a given ordered extent to finish.
612 *
613 * If wait is one, this effectively waits on page writeback for all the pages
614 * in the extent, and it waits on the io completion code to insert
615 * metadata into the btree corresponding to the extent
616 */
617void btrfs_start_ordered_extent(struct inode *inode,
618 struct btrfs_ordered_extent *entry,
619 int wait)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400620{
621 u64 start = entry->file_offset;
622 u64 end = start + entry->len - 1;
623
liubo1abe9b82011-03-24 11:18:59 +0000624 trace_btrfs_ordered_extent_start(inode, entry);
625
Chris Masoneb84ae02008-07-17 13:53:27 -0400626 /*
627 * pages in the range can be dirty, clean or writeback. We
628 * start IO on any dirty ones so the wait doesn't stall waiting
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300629 * for the flusher thread to find them
Chris Masoneb84ae02008-07-17 13:53:27 -0400630 */
Josef Bacik4b46fce2010-05-23 11:00:55 -0400631 if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
632 filemap_fdatawrite_range(inode->i_mapping, start, end);
Chris Masonc8b97812008-10-29 14:49:59 -0400633 if (wait) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400634 wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE,
635 &entry->flags));
Chris Masonc8b97812008-10-29 14:49:59 -0400636 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400637}
638
Chris Masoneb84ae02008-07-17 13:53:27 -0400639/*
640 * Used to wait on ordered extents across a large range of bytes.
641 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400642int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400643{
Josef Bacik0ef8b722013-10-25 16:13:35 -0400644 int ret = 0;
Filipe Manana28aeeac2015-05-05 19:03:10 +0100645 int ret_wb = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400646 u64 end;
Chris Masone5a22172008-07-18 20:42:20 -0400647 u64 orig_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400648 struct btrfs_ordered_extent *ordered;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400649
Chris Masone5a22172008-07-18 20:42:20 -0400650 if (start + len < start) {
Chris Masonf4219502008-07-22 11:18:09 -0400651 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400652 } else {
653 orig_end = start + len - 1;
Chris Masonf4219502008-07-22 11:18:09 -0400654 if (orig_end > INT_LIMIT(loff_t))
655 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400656 }
Josef Bacik551ebb22012-04-23 14:41:09 -0400657
Chris Masone5a22172008-07-18 20:42:20 -0400658 /* start IO across the range first to instantiate any delalloc
659 * extents
660 */
Filipe Manana728404d2014-10-10 09:43:11 +0100661 ret = btrfs_fdatawrite_range(inode, start, orig_end);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400662 if (ret)
663 return ret;
Filipe Manana728404d2014-10-10 09:43:11 +0100664
Filipe Manana28aeeac2015-05-05 19:03:10 +0100665 /*
666 * If we have a writeback error don't return immediately. Wait first
667 * for any ordered extents that haven't completed yet. This is to make
668 * sure no one can dirty the same page ranges and call writepages()
669 * before the ordered extents complete - to avoid failures (-EEXIST)
670 * when adding the new ordered extents to the ordered tree.
671 */
672 ret_wb = filemap_fdatawait_range(inode->i_mapping, start, orig_end);
Chris Masonf4219502008-07-22 11:18:09 -0400673
674 end = orig_end;
Chris Masond3977122009-01-05 21:25:51 -0500675 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400676 ordered = btrfs_lookup_first_ordered_extent(inode, end);
Chris Masond3977122009-01-05 21:25:51 -0500677 if (!ordered)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400678 break;
Chris Masone5a22172008-07-18 20:42:20 -0400679 if (ordered->file_offset > orig_end) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400680 btrfs_put_ordered_extent(ordered);
681 break;
682 }
Filipe David Borba Mananab52abf12013-11-06 15:12:40 +0000683 if (ordered->file_offset + ordered->len <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400684 btrfs_put_ordered_extent(ordered);
685 break;
686 }
Chris Masone5a22172008-07-18 20:42:20 -0400687 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400688 end = ordered->file_offset;
Josef Bacik0ef8b722013-10-25 16:13:35 -0400689 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))
690 ret = -EIO;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400691 btrfs_put_ordered_extent(ordered);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400692 if (ret || end == 0 || end == start)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400693 break;
694 end--;
695 }
Filipe Manana28aeeac2015-05-05 19:03:10 +0100696 return ret_wb ? ret_wb : ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400697}
698
Chris Masoneb84ae02008-07-17 13:53:27 -0400699/*
700 * find an ordered extent corresponding to file_offset. return NULL if
701 * nothing is found, otherwise take a reference on the extent and return it
702 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400703struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct inode *inode,
704 u64 file_offset)
705{
706 struct btrfs_ordered_inode_tree *tree;
707 struct rb_node *node;
708 struct btrfs_ordered_extent *entry = NULL;
709
710 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400711 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400712 node = tree_search(tree, file_offset);
713 if (!node)
714 goto out;
715
716 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
717 if (!offset_in_entry(entry, file_offset))
718 entry = NULL;
719 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200720 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400721out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400722 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400723 return entry;
724}
725
Josef Bacik4b46fce2010-05-23 11:00:55 -0400726/* Since the DIO code tries to lock a wide area we need to look for any ordered
727 * extents that exist in the range, rather than just the start of the range.
728 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200729struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
730 struct btrfs_inode *inode, u64 file_offset, u64 len)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400731{
732 struct btrfs_ordered_inode_tree *tree;
733 struct rb_node *node;
734 struct btrfs_ordered_extent *entry = NULL;
735
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200736 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400737 spin_lock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400738 node = tree_search(tree, file_offset);
739 if (!node) {
740 node = tree_search(tree, file_offset + len);
741 if (!node)
742 goto out;
743 }
744
745 while (1) {
746 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
747 if (range_overlaps(entry, file_offset, len))
748 break;
749
750 if (entry->file_offset >= file_offset + len) {
751 entry = NULL;
752 break;
753 }
754 entry = NULL;
755 node = rb_next(node);
756 if (!node)
757 break;
758 }
759out:
760 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200761 refcount_inc(&entry->refs);
Josef Bacik5fd02042012-05-02 14:00:54 -0400762 spin_unlock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400763 return entry;
764}
765
Chris Masoneb84ae02008-07-17 13:53:27 -0400766/*
767 * lookup and return any extent before 'file_offset'. NULL is returned
768 * if none is found
769 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400770struct btrfs_ordered_extent *
Chris Masond3977122009-01-05 21:25:51 -0500771btrfs_lookup_first_ordered_extent(struct inode *inode, u64 file_offset)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400772{
773 struct btrfs_ordered_inode_tree *tree;
774 struct rb_node *node;
775 struct btrfs_ordered_extent *entry = NULL;
776
777 tree = &BTRFS_I(inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400778 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400779 node = tree_search(tree, file_offset);
780 if (!node)
781 goto out;
782
783 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200784 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400785out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400786 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400787 return entry;
788}
Chris Masondbe674a2008-07-17 12:54:05 -0400789
Chris Masoneb84ae02008-07-17 13:53:27 -0400790/*
791 * After an extent is done, call this to conditionally update the on disk
792 * i_size. i_size is updated to cover any fully written part of the file.
793 */
Yan, Zhengc2167752009-11-12 09:34:21 +0000794int btrfs_ordered_update_i_size(struct inode *inode, u64 offset,
Chris Masondbe674a2008-07-17 12:54:05 -0400795 struct btrfs_ordered_extent *ordered)
796{
797 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
Chris Masondbe674a2008-07-17 12:54:05 -0400798 u64 disk_i_size;
799 u64 new_i_size;
Yan, Zhengc2167752009-11-12 09:34:21 +0000800 u64 i_size = i_size_read(inode);
Chris Masondbe674a2008-07-17 12:54:05 -0400801 struct rb_node *node;
Yan, Zhengc2167752009-11-12 09:34:21 +0000802 struct rb_node *prev = NULL;
Chris Masondbe674a2008-07-17 12:54:05 -0400803 struct btrfs_ordered_extent *test;
Yan, Zhengc2167752009-11-12 09:34:21 +0000804 int ret = 1;
Wang Xiaoguangc0d2f612016-06-22 09:57:01 +0800805 u64 orig_offset = offset;
Yan, Zhengc2167752009-11-12 09:34:21 +0000806
Josef Bacik5fd02042012-05-02 14:00:54 -0400807 spin_lock_irq(&tree->lock);
Josef Bacik77cef2e2013-08-29 13:57:21 -0400808 if (ordered) {
809 offset = entry_end(ordered);
810 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags))
811 offset = min(offset,
812 ordered->file_offset +
813 ordered->truncated_len);
814 } else {
Jeff Mahoneyda170662016-06-15 09:22:56 -0400815 offset = ALIGN(offset, btrfs_inode_sectorsize(inode));
Josef Bacik77cef2e2013-08-29 13:57:21 -0400816 }
Chris Masondbe674a2008-07-17 12:54:05 -0400817 disk_i_size = BTRFS_I(inode)->disk_i_size;
818
Liu Bo19fd2df2016-12-01 13:01:02 -0800819 /*
820 * truncate file.
821 * If ordered is not NULL, then this is called from endio and
822 * disk_i_size will be updated by either truncate itself or any
823 * in-flight IOs which are inside the disk_i_size.
824 *
825 * Because btrfs_setsize() may set i_size with disk_i_size if truncate
826 * fails somehow, we need to make sure we have a precise disk_i_size by
827 * updating it as usual.
828 *
829 */
830 if (!ordered && disk_i_size > i_size) {
Wang Xiaoguangc0d2f612016-06-22 09:57:01 +0800831 BTRFS_I(inode)->disk_i_size = orig_offset;
Yan, Zhengc2167752009-11-12 09:34:21 +0000832 ret = 0;
833 goto out;
834 }
835
Chris Masondbe674a2008-07-17 12:54:05 -0400836 /*
837 * if the disk i_size is already at the inode->i_size, or
838 * this ordered extent is inside the disk i_size, we're done
839 */
Josef Bacik5d1f4022013-01-30 14:17:31 -0500840 if (disk_i_size == i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400841 goto out;
Josef Bacik5d1f4022013-01-30 14:17:31 -0500842
843 /*
844 * We still need to update disk_i_size if outstanding_isize is greater
845 * than disk_i_size.
846 */
847 if (offset <= disk_i_size &&
848 (!ordered || ordered->outstanding_isize <= disk_i_size))
849 goto out;
Chris Masondbe674a2008-07-17 12:54:05 -0400850
851 /*
Chris Masondbe674a2008-07-17 12:54:05 -0400852 * walk backward from this ordered extent to disk_i_size.
853 * if we find an ordered extent then we can't update disk i_size
854 * yet
855 */
Yan, Zhengc2167752009-11-12 09:34:21 +0000856 if (ordered) {
857 node = rb_prev(&ordered->rb_node);
858 } else {
859 prev = tree_search(tree, offset);
860 /*
861 * we insert file extents without involving ordered struct,
862 * so there should be no ordered struct cover this offset
863 */
864 if (prev) {
865 test = rb_entry(prev, struct btrfs_ordered_extent,
866 rb_node);
867 BUG_ON(offset_in_entry(test, offset));
868 }
869 node = prev;
870 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400871 for (; node; node = rb_prev(node)) {
Chris Masondbe674a2008-07-17 12:54:05 -0400872 test = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Josef Bacik5fd02042012-05-02 14:00:54 -0400873
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -0800874 /* We treat this entry as if it doesn't exist */
Josef Bacik5fd02042012-05-02 14:00:54 -0400875 if (test_bit(BTRFS_ORDERED_UPDATED_ISIZE, &test->flags))
876 continue;
Liu Bo62c821a2016-12-13 12:51:51 -0800877
878 if (entry_end(test) <= disk_i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400879 break;
Yan, Zhengc2167752009-11-12 09:34:21 +0000880 if (test->file_offset >= i_size)
Chris Masondbe674a2008-07-17 12:54:05 -0400881 break;
Liu Bo62c821a2016-12-13 12:51:51 -0800882
883 /*
884 * We don't update disk_i_size now, so record this undealt
885 * i_size. Or we will not know the real i_size.
886 */
887 if (test->outstanding_isize < offset)
888 test->outstanding_isize = offset;
889 if (ordered &&
890 ordered->outstanding_isize > test->outstanding_isize)
891 test->outstanding_isize = ordered->outstanding_isize;
892 goto out;
Chris Masondbe674a2008-07-17 12:54:05 -0400893 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000894 new_i_size = min_t(u64, offset, i_size);
Chris Masondbe674a2008-07-17 12:54:05 -0400895
896 /*
Miao Xieb9a8cc52012-09-06 04:01:21 -0600897 * Some ordered extents may completed before the current one, and
898 * we hold the real i_size in ->outstanding_isize.
Chris Masondbe674a2008-07-17 12:54:05 -0400899 */
Miao Xieb9a8cc52012-09-06 04:01:21 -0600900 if (ordered && ordered->outstanding_isize > new_i_size)
901 new_i_size = min_t(u64, ordered->outstanding_isize, i_size);
Chris Masondbe674a2008-07-17 12:54:05 -0400902 BTRFS_I(inode)->disk_i_size = new_i_size;
Yan, Zhengc2167752009-11-12 09:34:21 +0000903 ret = 0;
Chris Masondbe674a2008-07-17 12:54:05 -0400904out:
Yan, Zhengc2167752009-11-12 09:34:21 +0000905 /*
Josef Bacik5fd02042012-05-02 14:00:54 -0400906 * We need to do this because we can't remove ordered extents until
907 * after the i_disk_size has been updated and then the inode has been
908 * updated to reflect the change, so we need to tell anybody who finds
909 * this ordered extent that we've already done all the real work, we
910 * just haven't completed all the other work.
Yan, Zhengc2167752009-11-12 09:34:21 +0000911 */
912 if (ordered)
Josef Bacik5fd02042012-05-02 14:00:54 -0400913 set_bit(BTRFS_ORDERED_UPDATED_ISIZE, &ordered->flags);
914 spin_unlock_irq(&tree->lock);
Yan, Zhengc2167752009-11-12 09:34:21 +0000915 return ret;
Chris Masondbe674a2008-07-17 12:54:05 -0400916}
Chris Masonba1da2f2008-07-17 12:54:15 -0400917
Chris Masoneb84ae02008-07-17 13:53:27 -0400918/*
919 * search the ordered extents for one corresponding to 'offset' and
920 * try to find a checksum. This is used because we allow pages to
921 * be reclaimed before their checksum is actually put into the btree
922 */
Chris Masond20f7042008-12-08 16:58:54 -0500923int btrfs_find_ordered_sum(struct inode *inode, u64 offset, u64 disk_bytenr,
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200924 u8 *sum, int len)
Chris Masonba1da2f2008-07-17 12:54:15 -0400925{
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200926 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonba1da2f2008-07-17 12:54:15 -0400927 struct btrfs_ordered_sum *ordered_sum;
Chris Masonba1da2f2008-07-17 12:54:15 -0400928 struct btrfs_ordered_extent *ordered;
929 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
Chris Mason3edf7d32008-07-18 06:17:13 -0400930 unsigned long num_sectors;
931 unsigned long i;
Jeff Mahoneyda170662016-06-15 09:22:56 -0400932 u32 sectorsize = btrfs_inode_sectorsize(inode);
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200933 const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
Miao Xiee4100d92013-04-05 07:20:56 +0000934 int index = 0;
Chris Masonba1da2f2008-07-17 12:54:15 -0400935
936 ordered = btrfs_lookup_ordered_extent(inode, offset);
937 if (!ordered)
Miao Xiee4100d92013-04-05 07:20:56 +0000938 return 0;
Chris Masonba1da2f2008-07-17 12:54:15 -0400939
Josef Bacik5fd02042012-05-02 14:00:54 -0400940 spin_lock_irq(&tree->lock);
Qinghuang Fengc6e30872009-01-21 10:59:08 -0500941 list_for_each_entry_reverse(ordered_sum, &ordered->list, list) {
Miao Xiee4100d92013-04-05 07:20:56 +0000942 if (disk_bytenr >= ordered_sum->bytenr &&
943 disk_bytenr < ordered_sum->bytenr + ordered_sum->len) {
944 i = (disk_bytenr - ordered_sum->bytenr) >>
945 inode->i_sb->s_blocksize_bits;
Miao Xiee4100d92013-04-05 07:20:56 +0000946 num_sectors = ordered_sum->len >>
947 inode->i_sb->s_blocksize_bits;
Miao Xief51a4a12013-06-19 10:36:09 +0800948 num_sectors = min_t(int, len - index, num_sectors - i);
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200949 memcpy(sum + index, ordered_sum->sums + i * csum_size,
950 num_sectors * csum_size);
Miao Xief51a4a12013-06-19 10:36:09 +0800951
Johannes Thumshirn1e25a2e2019-05-22 10:19:01 +0200952 index += (int)num_sectors * csum_size;
Miao Xief51a4a12013-06-19 10:36:09 +0800953 if (index == len)
954 goto out;
955 disk_bytenr += num_sectors * sectorsize;
Chris Masonba1da2f2008-07-17 12:54:15 -0400956 }
957 }
958out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400959 spin_unlock_irq(&tree->lock);
Chris Mason89642222008-07-24 09:41:53 -0400960 btrfs_put_ordered_extent(ordered);
Miao Xiee4100d92013-04-05 07:20:56 +0000961 return index;
Chris Masonba1da2f2008-07-17 12:54:15 -0400962}
963
Nikolay Borisovffa87212019-05-07 10:19:22 +0300964/*
965 * btrfs_flush_ordered_range - Lock the passed range and ensures all pending
966 * ordered extents in it are run to completion.
967 *
968 * @tree: IO tree used for locking out other users of the range
969 * @inode: Inode whose ordered tree is to be searched
970 * @start: Beginning of range to flush
971 * @end: Last byte of range to lock
972 * @cached_state: If passed, will return the extent state responsible for the
973 * locked range. It's the caller's responsibility to free the cached state.
974 *
975 * This function always returns with the given range locked, ensuring after it's
976 * called no order extent can be pending.
977 */
978void btrfs_lock_and_flush_ordered_range(struct extent_io_tree *tree,
979 struct btrfs_inode *inode, u64 start,
980 u64 end,
981 struct extent_state **cached_state)
982{
983 struct btrfs_ordered_extent *ordered;
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900984 struct extent_state *cache = NULL;
985 struct extent_state **cachedp = &cache;
Nikolay Borisovbd80d942019-05-07 10:19:24 +0300986
987 if (cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900988 cachedp = cached_state;
Nikolay Borisovffa87212019-05-07 10:19:22 +0300989
990 while (1) {
Naohiro Aotaa3b46b82019-07-26 16:47:05 +0900991 lock_extent_bits(tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +0300992 ordered = btrfs_lookup_ordered_range(inode, start,
993 end - start + 1);
Nikolay Borisovbd80d942019-05-07 10:19:24 +0300994 if (!ordered) {
995 /*
996 * If no external cached_state has been passed then
997 * decrement the extra ref taken for cachedp since we
998 * aren't exposing it outside of this function
999 */
1000 if (!cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001001 refcount_dec(&cache->refs);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001002 break;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001003 }
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001004 unlock_extent_cached(tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001005 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
1006 btrfs_put_ordered_extent(ordered);
1007 }
1008}
1009
Miao Xie6352b912012-09-06 04:01:51 -06001010int __init ordered_data_init(void)
1011{
1012 btrfs_ordered_extent_cache = kmem_cache_create("btrfs_ordered_extent",
1013 sizeof(struct btrfs_ordered_extent), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03001014 SLAB_MEM_SPREAD,
Miao Xie6352b912012-09-06 04:01:51 -06001015 NULL);
1016 if (!btrfs_ordered_extent_cache)
1017 return -ENOMEM;
Miao Xie25287e02012-10-25 09:31:03 +00001018
Miao Xie6352b912012-09-06 04:01:51 -06001019 return 0;
1020}
1021
David Sterbae67c7182018-02-19 17:24:18 +01001022void __cold ordered_data_exit(void)
Miao Xie6352b912012-09-06 04:01:51 -06001023{
Kinglong Mee5598e902016-01-29 21:36:35 +08001024 kmem_cache_destroy(btrfs_ordered_extent_cache);
Miao Xie6352b912012-09-06 04:01:51 -06001025}