blob: 6eb41b7c0c84395e7563ba11c98e92447571154f [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"
Qu Wenruo7dbeaad2020-06-10 09:04:43 +080018#include "qgroup.h"
Qu Wenruob945a462021-05-31 16:50:46 +080019#include "subpage.h"
Chris Masondc17ff82008-01-08 15:46:30 -050020
Miao Xie6352b912012-09-06 04:01:51 -060021static struct kmem_cache *btrfs_ordered_extent_cache;
22
Chris Masone6dcd2d2008-07-17 12:53:50 -040023static u64 entry_end(struct btrfs_ordered_extent *entry)
Chris Masondc17ff82008-01-08 15:46:30 -050024{
Omar Sandovalbffe6332019-12-02 17:34:19 -080025 if (entry->file_offset + entry->num_bytes < entry->file_offset)
Chris Masone6dcd2d2008-07-17 12:53:50 -040026 return (u64)-1;
Omar Sandovalbffe6332019-12-02 17:34:19 -080027 return entry->file_offset + entry->num_bytes;
Chris Masondc17ff82008-01-08 15:46:30 -050028}
29
Chris Masond352ac62008-09-29 15:18:18 -040030/* returns NULL if the insertion worked, or it returns the node it did find
31 * in the tree
32 */
Chris Masone6dcd2d2008-07-17 12:53:50 -040033static struct rb_node *tree_insert(struct rb_root *root, u64 file_offset,
34 struct rb_node *node)
Chris Masondc17ff82008-01-08 15:46:30 -050035{
Chris Masond3977122009-01-05 21:25:51 -050036 struct rb_node **p = &root->rb_node;
37 struct rb_node *parent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -040038 struct btrfs_ordered_extent *entry;
Chris Masondc17ff82008-01-08 15:46:30 -050039
Chris Masond3977122009-01-05 21:25:51 -050040 while (*p) {
Chris Masondc17ff82008-01-08 15:46:30 -050041 parent = *p;
Chris Masone6dcd2d2008-07-17 12:53:50 -040042 entry = rb_entry(parent, struct btrfs_ordered_extent, rb_node);
Chris Masondc17ff82008-01-08 15:46:30 -050043
Chris Masone6dcd2d2008-07-17 12:53:50 -040044 if (file_offset < entry->file_offset)
Chris Masondc17ff82008-01-08 15:46:30 -050045 p = &(*p)->rb_left;
Chris Masone6dcd2d2008-07-17 12:53:50 -040046 else if (file_offset >= entry_end(entry))
Chris Masondc17ff82008-01-08 15:46:30 -050047 p = &(*p)->rb_right;
48 else
49 return parent;
50 }
51
52 rb_link_node(node, parent, p);
53 rb_insert_color(node, root);
54 return NULL;
55}
56
Chris Masond352ac62008-09-29 15:18:18 -040057/*
58 * look for a given offset in the tree, and if it can't be found return the
59 * first lesser offset
60 */
Chris Masone6dcd2d2008-07-17 12:53:50 -040061static struct rb_node *__tree_search(struct rb_root *root, u64 file_offset,
62 struct rb_node **prev_ret)
Chris Masondc17ff82008-01-08 15:46:30 -050063{
Chris Masond3977122009-01-05 21:25:51 -050064 struct rb_node *n = root->rb_node;
Chris Masondc17ff82008-01-08 15:46:30 -050065 struct rb_node *prev = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -040066 struct rb_node *test;
67 struct btrfs_ordered_extent *entry;
68 struct btrfs_ordered_extent *prev_entry = NULL;
Chris Masondc17ff82008-01-08 15:46:30 -050069
Chris Masond3977122009-01-05 21:25:51 -050070 while (n) {
Chris Masone6dcd2d2008-07-17 12:53:50 -040071 entry = rb_entry(n, struct btrfs_ordered_extent, rb_node);
Chris Masondc17ff82008-01-08 15:46:30 -050072 prev = n;
73 prev_entry = entry;
Chris Masondc17ff82008-01-08 15:46:30 -050074
Chris Masone6dcd2d2008-07-17 12:53:50 -040075 if (file_offset < entry->file_offset)
Chris Masondc17ff82008-01-08 15:46:30 -050076 n = n->rb_left;
Chris Masone6dcd2d2008-07-17 12:53:50 -040077 else if (file_offset >= entry_end(entry))
Chris Masondc17ff82008-01-08 15:46:30 -050078 n = n->rb_right;
79 else
80 return n;
81 }
82 if (!prev_ret)
83 return NULL;
84
Chris Masond3977122009-01-05 21:25:51 -050085 while (prev && file_offset >= entry_end(prev_entry)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -040086 test = rb_next(prev);
87 if (!test)
88 break;
89 prev_entry = rb_entry(test, struct btrfs_ordered_extent,
90 rb_node);
91 if (file_offset < entry_end(prev_entry))
92 break;
93
94 prev = test;
95 }
96 if (prev)
97 prev_entry = rb_entry(prev, struct btrfs_ordered_extent,
98 rb_node);
Chris Masond3977122009-01-05 21:25:51 -050099 while (prev && file_offset < entry_end(prev_entry)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400100 test = rb_prev(prev);
101 if (!test)
102 break;
103 prev_entry = rb_entry(test, struct btrfs_ordered_extent,
104 rb_node);
105 prev = test;
Chris Masondc17ff82008-01-08 15:46:30 -0500106 }
107 *prev_ret = prev;
108 return NULL;
109}
110
Josef Bacik4b46fce2010-05-23 11:00:55 -0400111static int range_overlaps(struct btrfs_ordered_extent *entry, u64 file_offset,
112 u64 len)
113{
114 if (file_offset + len <= entry->file_offset ||
Omar Sandovalbffe6332019-12-02 17:34:19 -0800115 entry->file_offset + entry->num_bytes <= file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400116 return 0;
117 return 1;
118}
119
Chris Masond352ac62008-09-29 15:18:18 -0400120/*
121 * look find the first ordered struct that has this offset, otherwise
122 * the first one less than this offset
123 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400124static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree,
125 u64 file_offset)
126{
127 struct rb_root *root = &tree->tree;
Chris Masonc87fb6f2011-01-31 19:54:59 -0500128 struct rb_node *prev = NULL;
Chris Masondc17ff82008-01-08 15:46:30 -0500129 struct rb_node *ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400130 struct btrfs_ordered_extent *entry;
131
132 if (tree->last) {
133 entry = rb_entry(tree->last, struct btrfs_ordered_extent,
134 rb_node);
Nikolay Borisov20bbf202021-02-17 15:12:49 +0200135 if (in_range(file_offset, entry->file_offset, entry->num_bytes))
Chris Masone6dcd2d2008-07-17 12:53:50 -0400136 return tree->last;
137 }
138 ret = __tree_search(root, file_offset, &prev);
Chris Masondc17ff82008-01-08 15:46:30 -0500139 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400140 ret = prev;
141 if (ret)
142 tree->last = ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500143 return ret;
144}
145
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800146/*
147 * Allocate and add a new ordered_extent into the per-inode tree.
Chris Masoneb84ae02008-07-17 13:53:27 -0400148 *
Chris Masoneb84ae02008-07-17 13:53:27 -0400149 * The tree is given a single reference on the ordered extent that was
150 * inserted.
151 */
Nikolay Borisovda69fea2020-06-03 08:55:01 +0300152static int __btrfs_add_ordered_extent(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800153 u64 disk_bytenr, u64 num_bytes,
154 u64 disk_num_bytes, int type, int dio,
155 int compress_type)
Chris Masondc17ff82008-01-08 15:46:30 -0500156{
Nikolay Borisovda69fea2020-06-03 08:55:01 +0300157 struct btrfs_root *root = inode->root;
158 struct btrfs_fs_info *fs_info = root->fs_info;
159 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400160 struct rb_node *node;
161 struct btrfs_ordered_extent *entry;
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800162 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500163
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800164 if (type == BTRFS_ORDERED_NOCOW || type == BTRFS_ORDERED_PREALLOC) {
165 /* For nocow write, we can release the qgroup rsv right now */
Nikolay Borisov8b8a9792020-06-03 08:55:11 +0300166 ret = btrfs_qgroup_free_data(inode, NULL, file_offset, num_bytes);
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800167 if (ret < 0)
168 return ret;
169 ret = 0;
170 } else {
171 /*
172 * The ordered extent has reserved qgroup space, release now
173 * and pass the reserved number for qgroup_record to free.
174 */
Nikolay Borisov72b7d152020-06-03 08:55:18 +0300175 ret = btrfs_qgroup_release_data(inode, file_offset, num_bytes);
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800176 if (ret < 0)
177 return ret;
178 }
Miao Xie6352b912012-09-06 04:01:51 -0600179 entry = kmem_cache_zalloc(btrfs_ordered_extent_cache, GFP_NOFS);
Chris Masondc17ff82008-01-08 15:46:30 -0500180 if (!entry)
181 return -ENOMEM;
182
Chris Masone6dcd2d2008-07-17 12:53:50 -0400183 entry->file_offset = file_offset;
Omar Sandovalbffe6332019-12-02 17:34:19 -0800184 entry->disk_bytenr = disk_bytenr;
185 entry->num_bytes = num_bytes;
186 entry->disk_num_bytes = disk_num_bytes;
187 entry->bytes_left = num_bytes;
Nikolay Borisovda69fea2020-06-03 08:55:01 +0300188 entry->inode = igrab(&inode->vfs_inode);
Li Zefan261507a02010-12-17 14:21:50 +0800189 entry->compress_type = compress_type;
Josef Bacik77cef2e2013-08-29 13:57:21 -0400190 entry->truncated_len = (u64)-1;
Qu Wenruo7dbeaad2020-06-10 09:04:43 +0800191 entry->qgroup_rsv = ret;
Naohiro Aotad8e3fb12021-02-04 19:22:05 +0900192 entry->physical = (u64)-1;
193 entry->disk = NULL;
194 entry->partno = (u8)-1;
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800195
196 ASSERT(type == BTRFS_ORDERED_REGULAR ||
197 type == BTRFS_ORDERED_NOCOW ||
198 type == BTRFS_ORDERED_PREALLOC ||
199 type == BTRFS_ORDERED_COMPRESSED);
200 set_bit(type, &entry->flags);
Chris Mason3eaa2882008-07-24 11:57:52 -0400201
Josef Bacik5deb17e2020-10-09 09:28:20 -0400202 percpu_counter_add_batch(&fs_info->ordered_bytes, num_bytes,
203 fs_info->delalloc_batch);
204
205 if (dio)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400206 set_bit(BTRFS_ORDERED_DIRECT, &entry->flags);
207
Chris Masone6dcd2d2008-07-17 12:53:50 -0400208 /* one ref for the tree */
Elena Reshetovae76edab2017-03-03 10:55:13 +0200209 refcount_set(&entry->refs, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400210 init_waitqueue_head(&entry->wait);
211 INIT_LIST_HEAD(&entry->list);
Filipe Manana48778172020-08-11 12:43:58 +0100212 INIT_LIST_HEAD(&entry->log_list);
Chris Mason3eaa2882008-07-24 11:57:52 -0400213 INIT_LIST_HEAD(&entry->root_extent_list);
Miao Xie9afab882012-10-25 09:41:36 +0000214 INIT_LIST_HEAD(&entry->work_list);
215 init_completion(&entry->completion);
Chris Masondc17ff82008-01-08 15:46:30 -0500216
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300217 trace_btrfs_ordered_extent_add(inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000218
Josef Bacik5fd02042012-05-02 14:00:54 -0400219 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400220 node = tree_insert(&tree->tree, file_offset,
221 &entry->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400222 if (node)
Nikolay Borisov511a32b2019-11-29 11:38:13 +0200223 btrfs_panic(fs_info, -EEXIST,
224 "inconsistency in ordered tree at offset %llu",
225 file_offset);
Josef Bacik5fd02042012-05-02 14:00:54 -0400226 spin_unlock_irq(&tree->lock);
Chris Masond3977122009-01-05 21:25:51 -0500227
Miao Xie199c2a92013-05-15 07:48:23 +0000228 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400229 list_add_tail(&entry->root_extent_list,
Miao Xie199c2a92013-05-15 07:48:23 +0000230 &root->ordered_extents);
231 root->nr_ordered_extents++;
232 if (root->nr_ordered_extents == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400233 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000234 BUG_ON(!list_empty(&root->ordered_root));
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400235 list_add_tail(&root->ordered_root, &fs_info->ordered_roots);
236 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000237 }
238 spin_unlock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400239
Josef Bacik8b62f872017-10-19 14:15:55 -0400240 /*
241 * We don't need the count_max_extents here, we can assume that all of
242 * that work has been done at higher layers, so this is truly the
243 * smallest the extent is going to get.
244 */
Nikolay Borisovda69fea2020-06-03 08:55:01 +0300245 spin_lock(&inode->lock);
246 btrfs_mod_outstanding_extents(inode, 1);
247 spin_unlock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -0400248
Chris Masone6dcd2d2008-07-17 12:53:50 -0400249 return 0;
250}
Chris Masondc17ff82008-01-08 15:46:30 -0500251
Nikolay Borisove7fbf602020-06-03 08:55:13 +0300252int btrfs_add_ordered_extent(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800253 u64 disk_bytenr, u64 num_bytes, u64 disk_num_bytes,
254 int type)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400255{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800256 ASSERT(type == BTRFS_ORDERED_REGULAR ||
257 type == BTRFS_ORDERED_NOCOW ||
258 type == BTRFS_ORDERED_PREALLOC);
Nikolay Borisove7fbf602020-06-03 08:55:13 +0300259 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800260 num_bytes, disk_num_bytes, type, 0,
Li Zefan261507a02010-12-17 14:21:50 +0800261 BTRFS_COMPRESS_NONE);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400262}
263
Nikolay Borisovc1e09522020-06-03 08:55:30 +0300264int btrfs_add_ordered_extent_dio(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800265 u64 disk_bytenr, u64 num_bytes,
266 u64 disk_num_bytes, int type)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400267{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800268 ASSERT(type == BTRFS_ORDERED_REGULAR ||
269 type == BTRFS_ORDERED_NOCOW ||
270 type == BTRFS_ORDERED_PREALLOC);
Nikolay Borisovc1e09522020-06-03 08:55:30 +0300271 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800272 num_bytes, disk_num_bytes, type, 1,
Li Zefan261507a02010-12-17 14:21:50 +0800273 BTRFS_COMPRESS_NONE);
274}
275
Nikolay Borisov4cc61202020-06-03 08:55:15 +0300276int btrfs_add_ordered_extent_compress(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800277 u64 disk_bytenr, u64 num_bytes,
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800278 u64 disk_num_bytes, int compress_type)
Li Zefan261507a02010-12-17 14:21:50 +0800279{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800280 ASSERT(compress_type != BTRFS_COMPRESS_NONE);
Nikolay Borisov4cc61202020-06-03 08:55:15 +0300281 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800282 num_bytes, disk_num_bytes,
283 BTRFS_ORDERED_COMPRESSED, 0,
Li Zefan261507a02010-12-17 14:21:50 +0800284 compress_type);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400285}
286
Chris Masoneb84ae02008-07-17 13:53:27 -0400287/*
288 * Add a struct btrfs_ordered_sum into the list of checksums to be inserted
Chris Mason3edf7d32008-07-18 06:17:13 -0400289 * when an ordered extent is finished. If the list covers more than one
290 * ordered extent, it is split across multiples.
Chris Masoneb84ae02008-07-17 13:53:27 -0400291 */
Nikolay Borisovf9756262019-04-10 16:16:11 +0300292void btrfs_add_ordered_sum(struct btrfs_ordered_extent *entry,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100293 struct btrfs_ordered_sum *sum)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400294{
295 struct btrfs_ordered_inode_tree *tree;
Chris Mason1b1e2132008-06-25 16:01:31 -0400296
Nikolay Borisovf9756262019-04-10 16:16:11 +0300297 tree = &BTRFS_I(entry->inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400298 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400299 list_add_tail(&sum->list, &entry->list);
Josef Bacik5fd02042012-05-02 14:00:54 -0400300 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400301}
302
Chris Masoneb84ae02008-07-17 13:53:27 -0400303/*
Qu Wenruoe65f1522021-04-01 15:15:06 +0800304 * Mark all ordered extents io inside the specified range finished.
Chris Mason163cf092010-11-28 19:56:33 -0500305 *
Qu Wenruoe65f1522021-04-01 15:15:06 +0800306 * @page: The invovled page for the opeartion.
307 * For uncompressed buffered IO, the page status also needs to be
308 * updated to indicate whether the pending ordered io is finished.
309 * Can be NULL for direct IO and compressed write.
310 * For these cases, callers are ensured they won't execute the
311 * endio function twice.
312 * @finish_func: The function to be executed when all the IO of an ordered
313 * extent are finished.
Chris Mason163cf092010-11-28 19:56:33 -0500314 *
Qu Wenruoe65f1522021-04-01 15:15:06 +0800315 * This function is called for endio, thus the range must have ordered
316 * extent(s) coveri it.
Chris Mason163cf092010-11-28 19:56:33 -0500317 */
Qu Wenruoe65f1522021-04-01 15:15:06 +0800318void btrfs_mark_ordered_io_finished(struct btrfs_inode *inode,
319 struct page *page, u64 file_offset,
320 u64 num_bytes, btrfs_func_t finish_func,
321 bool uptodate)
Chris Mason163cf092010-11-28 19:56:33 -0500322{
Nikolay Borisov70958212020-06-03 08:55:23 +0300323 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
Qu Wenruoe65f1522021-04-01 15:15:06 +0800324 struct btrfs_fs_info *fs_info = inode->root->fs_info;
325 struct btrfs_workqueue *wq;
Chris Mason163cf092010-11-28 19:56:33 -0500326 struct rb_node *node;
327 struct btrfs_ordered_extent *entry = NULL;
Josef Bacik5fd02042012-05-02 14:00:54 -0400328 unsigned long flags;
Qu Wenruoe65f1522021-04-01 15:15:06 +0800329 u64 cur = file_offset;
330
331 if (btrfs_is_free_space_inode(inode))
332 wq = fs_info->endio_freespace_worker;
333 else
334 wq = fs_info->endio_write_workers;
335
336 if (page)
337 ASSERT(page->mapping && page_offset(page) <= file_offset &&
338 file_offset + num_bytes <= page_offset(page) + PAGE_SIZE);
Chris Mason163cf092010-11-28 19:56:33 -0500339
Josef Bacik5fd02042012-05-02 14:00:54 -0400340 spin_lock_irqsave(&tree->lock, flags);
Qu Wenruoe65f1522021-04-01 15:15:06 +0800341 while (cur < file_offset + num_bytes) {
342 u64 entry_end;
343 u64 end;
344 u32 len;
Chris Mason163cf092010-11-28 19:56:33 -0500345
Qu Wenruoe65f1522021-04-01 15:15:06 +0800346 node = tree_search(tree, cur);
347 /* No ordered extents at all */
348 if (!node)
349 break;
Chris Mason163cf092010-11-28 19:56:33 -0500350
Qu Wenruoe65f1522021-04-01 15:15:06 +0800351 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
352 entry_end = entry->file_offset + entry->num_bytes;
Qu Wenruo58f74b22020-12-22 13:59:24 +0800353 /*
Qu Wenruoe65f1522021-04-01 15:15:06 +0800354 * |<-- OE --->| |
355 * cur
356 * Go to next OE.
Qu Wenruo58f74b22020-12-22 13:59:24 +0800357 */
Qu Wenruoe65f1522021-04-01 15:15:06 +0800358 if (cur >= entry_end) {
359 node = rb_next(node);
360 /* No more ordered extents, exit */
361 if (!node)
362 break;
363 entry = rb_entry(node, struct btrfs_ordered_extent,
364 rb_node);
365
366 /* Go to next ordered extent and continue */
367 cur = entry->file_offset;
368 continue;
369 }
370 /*
371 * | |<--- OE --->|
372 * cur
373 * Go to the start of OE.
374 */
375 if (cur < entry->file_offset) {
376 cur = entry->file_offset;
377 continue;
378 }
379
380 /*
381 * Now we are definitely inside one ordered extent.
382 *
383 * |<--- OE --->|
384 * |
385 * cur
386 */
387 end = min(entry->file_offset + entry->num_bytes,
388 file_offset + num_bytes) - 1;
389 ASSERT(end + 1 - cur < U32_MAX);
390 len = end + 1 - cur;
391
392 if (page) {
393 /*
Qu Wenruof57ad932021-04-07 19:22:13 +0800394 * Ordered (Private2) bit indicates whether we still
395 * have pending io unfinished for the ordered extent.
Qu Wenruoe65f1522021-04-01 15:15:06 +0800396 *
397 * If there's no such bit, we need to skip to next range.
398 */
Qu Wenruob945a462021-05-31 16:50:46 +0800399 if (!btrfs_page_test_ordered(fs_info, page, cur, len)) {
Qu Wenruoe65f1522021-04-01 15:15:06 +0800400 cur += len;
401 continue;
402 }
Qu Wenruob945a462021-05-31 16:50:46 +0800403 btrfs_page_clear_ordered(fs_info, page, cur, len);
Qu Wenruoe65f1522021-04-01 15:15:06 +0800404 }
405
406 /* Now we're fine to update the accounting */
407 if (unlikely(len > entry->bytes_left)) {
408 WARN_ON(1);
409 btrfs_crit(fs_info,
410"bad ordered extent accounting, root=%llu ino=%llu OE offset=%llu OE len=%llu to_dec=%u left=%llu",
411 inode->root->root_key.objectid,
412 btrfs_ino(inode),
413 entry->file_offset,
414 entry->num_bytes,
415 len, entry->bytes_left);
416 entry->bytes_left = 0;
417 } else {
418 entry->bytes_left -= len;
419 }
420
421 if (!uptodate)
422 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
423
424 /*
425 * All the IO of the ordered extent is finished, we need to queue
426 * the finish_func to be executed.
427 */
428 if (entry->bytes_left == 0) {
429 set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
430 cond_wake_up(&entry->wait);
431 refcount_inc(&entry->refs);
432 spin_unlock_irqrestore(&tree->lock, flags);
433 btrfs_init_work(&entry->work, finish_func, NULL, NULL);
434 btrfs_queue_work(wq, &entry->work);
435 spin_lock_irqsave(&tree->lock, flags);
436 }
437 cur += len;
Chris Mason163cf092010-11-28 19:56:33 -0500438 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400439 spin_unlock_irqrestore(&tree->lock, flags);
Chris Mason163cf092010-11-28 19:56:33 -0500440}
441
442/*
Qu Wenruo58f74b22020-12-22 13:59:24 +0800443 * Finish IO for one ordered extent across a given range. The range can only
444 * contain one ordered extent.
Chris Masoneb84ae02008-07-17 13:53:27 -0400445 *
Qu Wenruo58f74b22020-12-22 13:59:24 +0800446 * @cached: The cached ordered extent. If not NULL, we can skip the tree
447 * search and use the ordered extent directly.
448 * Will be also used to store the finished ordered extent.
449 * @file_offset: File offset for the finished IO
450 * @io_size: Length of the finish IO range
451 * @uptodate: If the IO finishes without problem
452 *
453 * Return true if the ordered extent is finished in the range, and update
454 * @cached.
455 * Return false otherwise.
456 *
457 * NOTE: The range can NOT cross multiple ordered extents.
458 * Thus caller should ensure the range doesn't cross ordered extents.
Chris Masoneb84ae02008-07-17 13:53:27 -0400459 */
Qu Wenruo58f74b22020-12-22 13:59:24 +0800460bool btrfs_dec_test_ordered_pending(struct btrfs_inode *inode,
461 struct btrfs_ordered_extent **cached,
462 u64 file_offset, u64 io_size, int uptodate)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400463{
Nikolay Borisov90c03042020-08-31 14:42:41 +0300464 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400465 struct rb_node *node;
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000466 struct btrfs_ordered_extent *entry = NULL;
Josef Bacik5fd02042012-05-02 14:00:54 -0400467 unsigned long flags;
Qu Wenruo58f74b22020-12-22 13:59:24 +0800468 bool finished = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400469
Josef Bacik5fd02042012-05-02 14:00:54 -0400470 spin_lock_irqsave(&tree->lock, flags);
471 if (cached && *cached) {
472 entry = *cached;
473 goto have_entry;
474 }
475
Chris Masone6dcd2d2008-07-17 12:53:50 -0400476 node = tree_search(tree, file_offset);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800477 if (!node)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400478 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400479
480 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Josef Bacik5fd02042012-05-02 14:00:54 -0400481have_entry:
Nikolay Borisov20bbf202021-02-17 15:12:49 +0200482 if (!in_range(file_offset, entry->file_offset, entry->num_bytes))
Chris Masone6dcd2d2008-07-17 12:53:50 -0400483 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400484
Qu Wenruo58f74b22020-12-22 13:59:24 +0800485 if (io_size > entry->bytes_left)
Nikolay Borisov90c03042020-08-31 14:42:41 +0300486 btrfs_crit(inode->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500487 "bad ordered accounting left %llu size %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200488 entry->bytes_left, io_size);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800489
Chris Mason8b62b722009-09-02 16:53:46 -0400490 entry->bytes_left -= io_size;
Josef Bacik5fd02042012-05-02 14:00:54 -0400491 if (!uptodate)
492 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
493
Miao Xieaf7a6502014-03-06 13:54:56 +0800494 if (entry->bytes_left == 0) {
Qu Wenruo58f74b22020-12-22 13:59:24 +0800495 /*
496 * Ensure only one caller can set the flag and finished_ret
497 * accordingly
498 */
499 finished = !test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
David Sterba093258e2018-02-26 16:15:17 +0100500 /* test_and_set_bit implies a barrier */
501 cond_wake_up_nomb(&entry->wait);
Miao Xieaf7a6502014-03-06 13:54:56 +0800502 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400503out:
Qu Wenruo58f74b22020-12-22 13:59:24 +0800504 if (finished && cached && entry) {
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000505 *cached = entry;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200506 refcount_inc(&entry->refs);
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000507 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400508 spin_unlock_irqrestore(&tree->lock, flags);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800509 return finished;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400510}
511
Chris Masoneb84ae02008-07-17 13:53:27 -0400512/*
513 * used to drop a reference on an ordered extent. This will free
514 * the extent if the last reference is dropped
515 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100516void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400517{
Chris Masonba1da2f2008-07-17 12:54:15 -0400518 struct list_head *cur;
519 struct btrfs_ordered_sum *sum;
520
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300521 trace_btrfs_ordered_extent_put(BTRFS_I(entry->inode), entry);
liubo1abe9b82011-03-24 11:18:59 +0000522
Elena Reshetovae76edab2017-03-03 10:55:13 +0200523 if (refcount_dec_and_test(&entry->refs)) {
Filipe Manana61de7182015-07-01 12:13:10 +0100524 ASSERT(list_empty(&entry->root_extent_list));
Filipe Manana48778172020-08-11 12:43:58 +0100525 ASSERT(list_empty(&entry->log_list));
Filipe Manana61de7182015-07-01 12:13:10 +0100526 ASSERT(RB_EMPTY_NODE(&entry->rb_node));
Josef Bacik5fd02042012-05-02 14:00:54 -0400527 if (entry->inode)
528 btrfs_add_delayed_iput(entry->inode);
Chris Masond3977122009-01-05 21:25:51 -0500529 while (!list_empty(&entry->list)) {
Chris Masonba1da2f2008-07-17 12:54:15 -0400530 cur = entry->list.next;
531 sum = list_entry(cur, struct btrfs_ordered_sum, list);
532 list_del(&sum->list);
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300533 kvfree(sum);
Chris Masonba1da2f2008-07-17 12:54:15 -0400534 }
Miao Xie6352b912012-09-06 04:01:51 -0600535 kmem_cache_free(btrfs_ordered_extent_cache, entry);
Chris Masonba1da2f2008-07-17 12:54:15 -0400536 }
Chris Masondc17ff82008-01-08 15:46:30 -0500537}
538
Chris Masoneb84ae02008-07-17 13:53:27 -0400539/*
540 * remove an ordered extent from the tree. No references are dropped
Josef Bacik5fd02042012-05-02 14:00:54 -0400541 * and waiters are woken up.
Chris Masoneb84ae02008-07-17 13:53:27 -0400542 */
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300543void btrfs_remove_ordered_extent(struct btrfs_inode *btrfs_inode,
Josef Bacik5fd02042012-05-02 14:00:54 -0400544 struct btrfs_ordered_extent *entry)
Chris Masondc17ff82008-01-08 15:46:30 -0500545{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400546 struct btrfs_ordered_inode_tree *tree;
Josef Bacik8b62f872017-10-19 14:15:55 -0400547 struct btrfs_root *root = btrfs_inode->root;
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300548 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masondc17ff82008-01-08 15:46:30 -0500549 struct rb_node *node;
Filipe Manana48778172020-08-11 12:43:58 +0100550 bool pending;
Chris Masondc17ff82008-01-08 15:46:30 -0500551
Josef Bacik8b62f872017-10-19 14:15:55 -0400552 /* This is paired with btrfs_add_ordered_extent. */
553 spin_lock(&btrfs_inode->lock);
554 btrfs_mod_outstanding_extents(btrfs_inode, -1);
555 spin_unlock(&btrfs_inode->lock);
556 if (root != fs_info->tree_root)
Omar Sandovalbffe6332019-12-02 17:34:19 -0800557 btrfs_delalloc_release_metadata(btrfs_inode, entry->num_bytes,
558 false);
Josef Bacik8b62f872017-10-19 14:15:55 -0400559
Josef Bacik5deb17e2020-10-09 09:28:20 -0400560 percpu_counter_add_batch(&fs_info->ordered_bytes, -entry->num_bytes,
561 fs_info->delalloc_batch);
Josef Bacik4297ff82019-04-10 15:56:09 -0400562
Josef Bacik8b62f872017-10-19 14:15:55 -0400563 tree = &btrfs_inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400564 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400565 node = &entry->rb_node;
Chris Masondc17ff82008-01-08 15:46:30 -0500566 rb_erase(node, &tree->tree);
Filipe Manana61de7182015-07-01 12:13:10 +0100567 RB_CLEAR_NODE(node);
Filipe David Borba Manana1b8e7e42013-11-22 18:54:58 +0000568 if (tree->last == node)
569 tree->last = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400570 set_bit(BTRFS_ORDERED_COMPLETE, &entry->flags);
Filipe Manana48778172020-08-11 12:43:58 +0100571 pending = test_and_clear_bit(BTRFS_ORDERED_PENDING, &entry->flags);
Josef Bacik5fd02042012-05-02 14:00:54 -0400572 spin_unlock_irq(&tree->lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400573
Filipe Manana48778172020-08-11 12:43:58 +0100574 /*
575 * The current running transaction is waiting on us, we need to let it
576 * know that we're complete and wake it up.
577 */
578 if (pending) {
579 struct btrfs_transaction *trans;
580
581 /*
582 * The checks for trans are just a formality, it should be set,
583 * but if it isn't we don't want to deref/assert under the spin
584 * lock, so be nice and check if trans is set, but ASSERT() so
585 * if it isn't set a developer will notice.
586 */
587 spin_lock(&fs_info->trans_lock);
588 trans = fs_info->running_transaction;
589 if (trans)
590 refcount_inc(&trans->use_count);
591 spin_unlock(&fs_info->trans_lock);
592
593 ASSERT(trans);
594 if (trans) {
595 if (atomic_dec_and_test(&trans->pending_ordered))
596 wake_up(&trans->pending_wait);
597 btrfs_put_transaction(trans);
598 }
599 }
600
Miao Xie199c2a92013-05-15 07:48:23 +0000601 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400602 list_del_init(&entry->root_extent_list);
Miao Xie199c2a92013-05-15 07:48:23 +0000603 root->nr_ordered_extents--;
Chris Mason5a3f23d2009-03-31 13:27:11 -0400604
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300605 trace_btrfs_ordered_extent_remove(btrfs_inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000606
Miao Xie199c2a92013-05-15 07:48:23 +0000607 if (!root->nr_ordered_extents) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400608 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000609 BUG_ON(list_empty(&root->ordered_root));
610 list_del_init(&root->ordered_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400611 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000612 }
613 spin_unlock(&root->ordered_extent_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400614 wake_up(&entry->wait);
Chris Mason81d7ed22008-04-25 08:51:48 -0400615}
Chris Masone6dcd2d2008-07-17 12:53:50 -0400616
Qu Wenruod458b052014-02-28 10:46:19 +0800617static void btrfs_run_ordered_extent_work(struct btrfs_work *work)
Miao Xie9afab882012-10-25 09:41:36 +0000618{
619 struct btrfs_ordered_extent *ordered;
620
621 ordered = container_of(work, struct btrfs_ordered_extent, flush_work);
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300622 btrfs_start_ordered_extent(ordered, 1);
Miao Xie9afab882012-10-25 09:41:36 +0000623 complete(&ordered->completion);
624}
625
Chris Masond352ac62008-09-29 15:18:18 -0400626/*
627 * wait for all the ordered extents in a root. This is done when balancing
628 * space between drives.
629 */
Chris Mason6374e57a2017-06-23 09:48:21 -0700630u64 btrfs_wait_ordered_extents(struct btrfs_root *root, u64 nr,
Filipe Manana578def72016-04-26 15:36:38 +0100631 const u64 range_start, const u64 range_len)
Chris Mason3eaa2882008-07-24 11:57:52 -0400632{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400633 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana578def72016-04-26 15:36:38 +0100634 LIST_HEAD(splice);
635 LIST_HEAD(skipped);
636 LIST_HEAD(works);
Miao Xie9afab882012-10-25 09:41:36 +0000637 struct btrfs_ordered_extent *ordered, *next;
Chris Mason6374e57a2017-06-23 09:48:21 -0700638 u64 count = 0;
Filipe Manana578def72016-04-26 15:36:38 +0100639 const u64 range_end = range_start + range_len;
Chris Mason3eaa2882008-07-24 11:57:52 -0400640
Miao Xie31f3d252014-03-06 13:55:02 +0800641 mutex_lock(&root->ordered_extent_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000642 spin_lock(&root->ordered_extent_lock);
643 list_splice_init(&root->ordered_extents, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800644 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000645 ordered = list_first_entry(&splice, struct btrfs_ordered_extent,
646 root_extent_list);
Filipe Manana578def72016-04-26 15:36:38 +0100647
Omar Sandovalbffe6332019-12-02 17:34:19 -0800648 if (range_end <= ordered->disk_bytenr ||
649 ordered->disk_bytenr + ordered->disk_num_bytes <= range_start) {
Filipe Manana578def72016-04-26 15:36:38 +0100650 list_move_tail(&ordered->root_extent_list, &skipped);
651 cond_resched_lock(&root->ordered_extent_lock);
652 continue;
653 }
654
Miao Xie199c2a92013-05-15 07:48:23 +0000655 list_move_tail(&ordered->root_extent_list,
656 &root->ordered_extents);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200657 refcount_inc(&ordered->refs);
Miao Xie199c2a92013-05-15 07:48:23 +0000658 spin_unlock(&root->ordered_extent_lock);
659
Qu Wenruoa44903a2014-02-28 10:46:09 +0800660 btrfs_init_work(&ordered->flush_work,
661 btrfs_run_ordered_extent_work, NULL, NULL);
Miao Xie199c2a92013-05-15 07:48:23 +0000662 list_add_tail(&ordered->work_list, &works);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400663 btrfs_queue_work(fs_info->flush_workers, &ordered->flush_work);
Miao Xie199c2a92013-05-15 07:48:23 +0000664
Miao Xie9afab882012-10-25 09:41:36 +0000665 cond_resched();
Miao Xie199c2a92013-05-15 07:48:23 +0000666 spin_lock(&root->ordered_extent_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700667 if (nr != U64_MAX)
Miao Xieb0244192013-11-04 23:13:25 +0800668 nr--;
669 count++;
Chris Mason3eaa2882008-07-24 11:57:52 -0400670 }
Filipe Manana578def72016-04-26 15:36:38 +0100671 list_splice_tail(&skipped, &root->ordered_extents);
Miao Xieb0244192013-11-04 23:13:25 +0800672 list_splice_tail(&splice, &root->ordered_extents);
Miao Xie199c2a92013-05-15 07:48:23 +0000673 spin_unlock(&root->ordered_extent_lock);
Miao Xie9afab882012-10-25 09:41:36 +0000674
675 list_for_each_entry_safe(ordered, next, &works, work_list) {
676 list_del_init(&ordered->work_list);
677 wait_for_completion(&ordered->completion);
Miao Xie9afab882012-10-25 09:41:36 +0000678 btrfs_put_ordered_extent(ordered);
Miao Xie9afab882012-10-25 09:41:36 +0000679 cond_resched();
680 }
Miao Xie31f3d252014-03-06 13:55:02 +0800681 mutex_unlock(&root->ordered_extent_mutex);
Miao Xieb0244192013-11-04 23:13:25 +0800682
683 return count;
Chris Mason3eaa2882008-07-24 11:57:52 -0400684}
685
Filipe Manana042528f2019-11-14 18:02:43 +0000686void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
Chris Mason6374e57a2017-06-23 09:48:21 -0700687 const u64 range_start, const u64 range_len)
Miao Xie199c2a92013-05-15 07:48:23 +0000688{
689 struct btrfs_root *root;
690 struct list_head splice;
Chris Mason6374e57a2017-06-23 09:48:21 -0700691 u64 done;
Miao Xie199c2a92013-05-15 07:48:23 +0000692
693 INIT_LIST_HEAD(&splice);
694
Miao Xie8b9d83c2014-03-06 13:54:55 +0800695 mutex_lock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000696 spin_lock(&fs_info->ordered_root_lock);
697 list_splice_init(&fs_info->ordered_roots, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800698 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000699 root = list_first_entry(&splice, struct btrfs_root,
700 ordered_root);
Josef Bacik00246522020-01-24 09:33:01 -0500701 root = btrfs_grab_root(root);
Miao Xie199c2a92013-05-15 07:48:23 +0000702 BUG_ON(!root);
703 list_move_tail(&root->ordered_root,
704 &fs_info->ordered_roots);
705 spin_unlock(&fs_info->ordered_root_lock);
706
Filipe Manana578def72016-04-26 15:36:38 +0100707 done = btrfs_wait_ordered_extents(root, nr,
708 range_start, range_len);
Josef Bacik00246522020-01-24 09:33:01 -0500709 btrfs_put_root(root);
Miao Xie199c2a92013-05-15 07:48:23 +0000710
711 spin_lock(&fs_info->ordered_root_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700712 if (nr != U64_MAX) {
Miao Xieb0244192013-11-04 23:13:25 +0800713 nr -= done;
Miao Xieb0244192013-11-04 23:13:25 +0800714 }
Miao Xie199c2a92013-05-15 07:48:23 +0000715 }
Miao Xie931aa872013-11-14 17:33:21 +0800716 list_splice_tail(&splice, &fs_info->ordered_roots);
Miao Xie199c2a92013-05-15 07:48:23 +0000717 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie8b9d83c2014-03-06 13:54:55 +0800718 mutex_unlock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000719}
720
Chris Masoneb84ae02008-07-17 13:53:27 -0400721/*
722 * Used to start IO or wait for a given ordered extent to finish.
723 *
724 * If wait is one, this effectively waits on page writeback for all the pages
725 * in the extent, and it waits on the io completion code to insert
726 * metadata into the btree corresponding to the extent
727 */
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300728void btrfs_start_ordered_extent(struct btrfs_ordered_extent *entry, int wait)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400729{
730 u64 start = entry->file_offset;
Omar Sandovalbffe6332019-12-02 17:34:19 -0800731 u64 end = start + entry->num_bytes - 1;
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300732 struct btrfs_inode *inode = BTRFS_I(entry->inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400733
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300734 trace_btrfs_ordered_extent_start(inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000735
Chris Masoneb84ae02008-07-17 13:53:27 -0400736 /*
737 * pages in the range can be dirty, clean or writeback. We
738 * start IO on any dirty ones so the wait doesn't stall waiting
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300739 * for the flusher thread to find them
Chris Masoneb84ae02008-07-17 13:53:27 -0400740 */
Josef Bacik4b46fce2010-05-23 11:00:55 -0400741 if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300742 filemap_fdatawrite_range(inode->vfs_inode.i_mapping, start, end);
Chris Masonc8b97812008-10-29 14:49:59 -0400743 if (wait) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400744 wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE,
745 &entry->flags));
Chris Masonc8b97812008-10-29 14:49:59 -0400746 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400747}
748
Chris Masoneb84ae02008-07-17 13:53:27 -0400749/*
750 * Used to wait on ordered extents across a large range of bytes.
751 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400752int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400753{
Josef Bacik0ef8b722013-10-25 16:13:35 -0400754 int ret = 0;
Filipe Manana28aeeac2015-05-05 19:03:10 +0100755 int ret_wb = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400756 u64 end;
Chris Masone5a22172008-07-18 20:42:20 -0400757 u64 orig_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400758 struct btrfs_ordered_extent *ordered;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400759
Chris Masone5a22172008-07-18 20:42:20 -0400760 if (start + len < start) {
Chris Masonf4219502008-07-22 11:18:09 -0400761 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400762 } else {
763 orig_end = start + len - 1;
Chris Masonf4219502008-07-22 11:18:09 -0400764 if (orig_end > INT_LIMIT(loff_t))
765 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400766 }
Josef Bacik551ebb22012-04-23 14:41:09 -0400767
Chris Masone5a22172008-07-18 20:42:20 -0400768 /* start IO across the range first to instantiate any delalloc
769 * extents
770 */
Filipe Manana728404d2014-10-10 09:43:11 +0100771 ret = btrfs_fdatawrite_range(inode, start, orig_end);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400772 if (ret)
773 return ret;
Filipe Manana728404d2014-10-10 09:43:11 +0100774
Filipe Manana28aeeac2015-05-05 19:03:10 +0100775 /*
776 * If we have a writeback error don't return immediately. Wait first
777 * for any ordered extents that haven't completed yet. This is to make
778 * sure no one can dirty the same page ranges and call writepages()
779 * before the ordered extents complete - to avoid failures (-EEXIST)
780 * when adding the new ordered extents to the ordered tree.
781 */
782 ret_wb = filemap_fdatawait_range(inode->i_mapping, start, orig_end);
Chris Masonf4219502008-07-22 11:18:09 -0400783
784 end = orig_end;
Chris Masond3977122009-01-05 21:25:51 -0500785 while (1) {
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300786 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode), end);
Chris Masond3977122009-01-05 21:25:51 -0500787 if (!ordered)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400788 break;
Chris Masone5a22172008-07-18 20:42:20 -0400789 if (ordered->file_offset > orig_end) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400790 btrfs_put_ordered_extent(ordered);
791 break;
792 }
Omar Sandovalbffe6332019-12-02 17:34:19 -0800793 if (ordered->file_offset + ordered->num_bytes <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400794 btrfs_put_ordered_extent(ordered);
795 break;
796 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300797 btrfs_start_ordered_extent(ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400798 end = ordered->file_offset;
Filipe Mananae75fd332020-02-13 12:29:50 +0000799 /*
800 * If the ordered extent had an error save the error but don't
801 * exit without waiting first for all other ordered extents in
802 * the range to complete.
803 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400804 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))
805 ret = -EIO;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400806 btrfs_put_ordered_extent(ordered);
Filipe Mananae75fd332020-02-13 12:29:50 +0000807 if (end == 0 || end == start)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400808 break;
809 end--;
810 }
Filipe Manana28aeeac2015-05-05 19:03:10 +0100811 return ret_wb ? ret_wb : ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400812}
813
Chris Masoneb84ae02008-07-17 13:53:27 -0400814/*
815 * find an ordered extent corresponding to file_offset. return NULL if
816 * nothing is found, otherwise take a reference on the extent and return it
817 */
Nikolay Borisovc3504372020-06-03 08:55:03 +0300818struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct btrfs_inode *inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400819 u64 file_offset)
820{
821 struct btrfs_ordered_inode_tree *tree;
822 struct rb_node *node;
823 struct btrfs_ordered_extent *entry = NULL;
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900824 unsigned long flags;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400825
Nikolay Borisovc3504372020-06-03 08:55:03 +0300826 tree = &inode->ordered_tree;
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900827 spin_lock_irqsave(&tree->lock, flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400828 node = tree_search(tree, file_offset);
829 if (!node)
830 goto out;
831
832 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Nikolay Borisov20bbf202021-02-17 15:12:49 +0200833 if (!in_range(file_offset, entry->file_offset, entry->num_bytes))
Chris Masone6dcd2d2008-07-17 12:53:50 -0400834 entry = NULL;
835 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200836 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400837out:
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900838 spin_unlock_irqrestore(&tree->lock, flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 return entry;
840}
841
Josef Bacik4b46fce2010-05-23 11:00:55 -0400842/* Since the DIO code tries to lock a wide area we need to look for any ordered
843 * extents that exist in the range, rather than just the start of the range.
844 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200845struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
846 struct btrfs_inode *inode, u64 file_offset, u64 len)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400847{
848 struct btrfs_ordered_inode_tree *tree;
849 struct rb_node *node;
850 struct btrfs_ordered_extent *entry = NULL;
851
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200852 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400853 spin_lock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400854 node = tree_search(tree, file_offset);
855 if (!node) {
856 node = tree_search(tree, file_offset + len);
857 if (!node)
858 goto out;
859 }
860
861 while (1) {
862 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
863 if (range_overlaps(entry, file_offset, len))
864 break;
865
866 if (entry->file_offset >= file_offset + len) {
867 entry = NULL;
868 break;
869 }
870 entry = NULL;
871 node = rb_next(node);
872 if (!node)
873 break;
874 }
875out:
876 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200877 refcount_inc(&entry->refs);
Josef Bacik5fd02042012-05-02 14:00:54 -0400878 spin_unlock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400879 return entry;
880}
881
Chris Masoneb84ae02008-07-17 13:53:27 -0400882/*
Filipe Manana48778172020-08-11 12:43:58 +0100883 * Adds all ordered extents to the given list. The list ends up sorted by the
884 * file_offset of the ordered extents.
885 */
886void btrfs_get_ordered_extents_for_logging(struct btrfs_inode *inode,
887 struct list_head *list)
888{
889 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
890 struct rb_node *n;
891
892 ASSERT(inode_is_locked(&inode->vfs_inode));
893
894 spin_lock_irq(&tree->lock);
895 for (n = rb_first(&tree->tree); n; n = rb_next(n)) {
896 struct btrfs_ordered_extent *ordered;
897
898 ordered = rb_entry(n, struct btrfs_ordered_extent, rb_node);
899
900 if (test_bit(BTRFS_ORDERED_LOGGED, &ordered->flags))
901 continue;
902
903 ASSERT(list_empty(&ordered->log_list));
904 list_add_tail(&ordered->log_list, list);
905 refcount_inc(&ordered->refs);
906 }
907 spin_unlock_irq(&tree->lock);
908}
909
910/*
Chris Masoneb84ae02008-07-17 13:53:27 -0400911 * lookup and return any extent before 'file_offset'. NULL is returned
912 * if none is found
913 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400914struct btrfs_ordered_extent *
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300915btrfs_lookup_first_ordered_extent(struct btrfs_inode *inode, u64 file_offset)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400916{
917 struct btrfs_ordered_inode_tree *tree;
918 struct rb_node *node;
919 struct btrfs_ordered_extent *entry = NULL;
920
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300921 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400922 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400923 node = tree_search(tree, file_offset);
924 if (!node)
925 goto out;
926
927 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200928 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400929out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400930 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400931 return entry;
932}
Chris Masondbe674a2008-07-17 12:54:05 -0400933
Chris Masoneb84ae02008-07-17 13:53:27 -0400934/*
Qu Wenruoc095f332021-04-27 15:03:40 +0800935 * Lookup the first ordered extent that overlaps the range
936 * [@file_offset, @file_offset + @len).
937 *
938 * The difference between this and btrfs_lookup_first_ordered_extent() is
939 * that this one won't return any ordered extent that does not overlap the range.
940 * And the difference against btrfs_lookup_ordered_extent() is, this function
941 * ensures the first ordered extent gets returned.
942 */
943struct btrfs_ordered_extent *btrfs_lookup_first_ordered_range(
944 struct btrfs_inode *inode, u64 file_offset, u64 len)
945{
946 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
947 struct rb_node *node;
948 struct rb_node *cur;
949 struct rb_node *prev;
950 struct rb_node *next;
951 struct btrfs_ordered_extent *entry = NULL;
952
953 spin_lock_irq(&tree->lock);
954 node = tree->tree.rb_node;
955 /*
956 * Here we don't want to use tree_search() which will use tree->last
957 * and screw up the search order.
958 * And __tree_search() can't return the adjacent ordered extents
959 * either, thus here we do our own search.
960 */
961 while (node) {
962 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
963
964 if (file_offset < entry->file_offset) {
965 node = node->rb_left;
966 } else if (file_offset >= entry_end(entry)) {
967 node = node->rb_right;
968 } else {
969 /*
970 * Direct hit, got an ordered extent that starts at
971 * @file_offset
972 */
973 goto out;
974 }
975 }
976 if (!entry) {
977 /* Empty tree */
978 goto out;
979 }
980
981 cur = &entry->rb_node;
982 /* We got an entry around @file_offset, check adjacent entries */
983 if (entry->file_offset < file_offset) {
984 prev = cur;
985 next = rb_next(cur);
986 } else {
987 prev = rb_prev(cur);
988 next = cur;
989 }
990 if (prev) {
991 entry = rb_entry(prev, struct btrfs_ordered_extent, rb_node);
992 if (range_overlaps(entry, file_offset, len))
993 goto out;
994 }
995 if (next) {
996 entry = rb_entry(next, struct btrfs_ordered_extent, rb_node);
997 if (range_overlaps(entry, file_offset, len))
998 goto out;
999 }
1000 /* No ordered extent in the range */
1001 entry = NULL;
1002out:
1003 if (entry)
1004 refcount_inc(&entry->refs);
1005 spin_unlock_irq(&tree->lock);
1006 return entry;
1007}
1008
1009/*
Nikolay Borisovffa87212019-05-07 10:19:22 +03001010 * btrfs_flush_ordered_range - Lock the passed range and ensures all pending
1011 * ordered extents in it are run to completion.
1012 *
Nikolay Borisovffa87212019-05-07 10:19:22 +03001013 * @inode: Inode whose ordered tree is to be searched
1014 * @start: Beginning of range to flush
1015 * @end: Last byte of range to lock
1016 * @cached_state: If passed, will return the extent state responsible for the
1017 * locked range. It's the caller's responsibility to free the cached state.
1018 *
1019 * This function always returns with the given range locked, ensuring after it's
1020 * called no order extent can be pending.
1021 */
David Sterbab272ae22020-02-05 19:09:33 +01001022void btrfs_lock_and_flush_ordered_range(struct btrfs_inode *inode, u64 start,
Nikolay Borisovffa87212019-05-07 10:19:22 +03001023 u64 end,
1024 struct extent_state **cached_state)
1025{
1026 struct btrfs_ordered_extent *ordered;
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001027 struct extent_state *cache = NULL;
1028 struct extent_state **cachedp = &cache;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001029
1030 if (cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001031 cachedp = cached_state;
Nikolay Borisovffa87212019-05-07 10:19:22 +03001032
1033 while (1) {
David Sterbab272ae22020-02-05 19:09:33 +01001034 lock_extent_bits(&inode->io_tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001035 ordered = btrfs_lookup_ordered_range(inode, start,
1036 end - start + 1);
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001037 if (!ordered) {
1038 /*
1039 * If no external cached_state has been passed then
1040 * decrement the extra ref taken for cachedp since we
1041 * aren't exposing it outside of this function
1042 */
1043 if (!cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001044 refcount_dec(&cache->refs);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001045 break;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001046 }
David Sterbab272ae22020-02-05 19:09:33 +01001047 unlock_extent_cached(&inode->io_tree, start, end, cachedp);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001048 btrfs_start_ordered_extent(ordered, 1);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001049 btrfs_put_ordered_extent(ordered);
1050 }
1051}
1052
Naohiro Aotad22002f2021-02-04 19:22:00 +09001053static int clone_ordered_extent(struct btrfs_ordered_extent *ordered, u64 pos,
1054 u64 len)
1055{
1056 struct inode *inode = ordered->inode;
1057 u64 file_offset = ordered->file_offset + pos;
1058 u64 disk_bytenr = ordered->disk_bytenr + pos;
1059 u64 num_bytes = len;
1060 u64 disk_num_bytes = len;
1061 int type;
1062 unsigned long flags_masked = ordered->flags & ~(1 << BTRFS_ORDERED_DIRECT);
1063 int compress_type = ordered->compress_type;
1064 unsigned long weight;
1065 int ret;
1066
1067 weight = hweight_long(flags_masked);
1068 WARN_ON_ONCE(weight > 1);
1069 if (!weight)
1070 type = 0;
1071 else
1072 type = __ffs(flags_masked);
1073
1074 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered->flags)) {
1075 WARN_ON_ONCE(1);
1076 ret = btrfs_add_ordered_extent_compress(BTRFS_I(inode),
1077 file_offset, disk_bytenr, num_bytes,
1078 disk_num_bytes, compress_type);
1079 } else if (test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
1080 ret = btrfs_add_ordered_extent_dio(BTRFS_I(inode), file_offset,
1081 disk_bytenr, num_bytes, disk_num_bytes, type);
1082 } else {
1083 ret = btrfs_add_ordered_extent(BTRFS_I(inode), file_offset,
1084 disk_bytenr, num_bytes, disk_num_bytes, type);
1085 }
1086
1087 return ret;
1088}
1089
1090int btrfs_split_ordered_extent(struct btrfs_ordered_extent *ordered, u64 pre,
1091 u64 post)
1092{
1093 struct inode *inode = ordered->inode;
1094 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
1095 struct rb_node *node;
1096 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1097 int ret = 0;
1098
1099 spin_lock_irq(&tree->lock);
1100 /* Remove from tree once */
1101 node = &ordered->rb_node;
1102 rb_erase(node, &tree->tree);
1103 RB_CLEAR_NODE(node);
1104 if (tree->last == node)
1105 tree->last = NULL;
1106
1107 ordered->file_offset += pre;
1108 ordered->disk_bytenr += pre;
1109 ordered->num_bytes -= (pre + post);
1110 ordered->disk_num_bytes -= (pre + post);
1111 ordered->bytes_left -= (pre + post);
1112
1113 /* Re-insert the node */
1114 node = tree_insert(&tree->tree, ordered->file_offset, &ordered->rb_node);
1115 if (node)
1116 btrfs_panic(fs_info, -EEXIST,
1117 "zoned: inconsistency in ordered tree at offset %llu",
1118 ordered->file_offset);
1119
1120 spin_unlock_irq(&tree->lock);
1121
1122 if (pre)
1123 ret = clone_ordered_extent(ordered, 0, pre);
Filipe Mananaadbd914d2021-04-21 14:31:50 +01001124 if (ret == 0 && post)
Naohiro Aotad22002f2021-02-04 19:22:00 +09001125 ret = clone_ordered_extent(ordered, pre + ordered->disk_num_bytes,
1126 post);
1127
1128 return ret;
1129}
1130
Miao Xie6352b912012-09-06 04:01:51 -06001131int __init ordered_data_init(void)
1132{
1133 btrfs_ordered_extent_cache = kmem_cache_create("btrfs_ordered_extent",
1134 sizeof(struct btrfs_ordered_extent), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03001135 SLAB_MEM_SPREAD,
Miao Xie6352b912012-09-06 04:01:51 -06001136 NULL);
1137 if (!btrfs_ordered_extent_cache)
1138 return -ENOMEM;
Miao Xie25287e02012-10-25 09:31:03 +00001139
Miao Xie6352b912012-09-06 04:01:51 -06001140 return 0;
1141}
1142
David Sterbae67c7182018-02-19 17:24:18 +01001143void __cold ordered_data_exit(void)
Miao Xie6352b912012-09-06 04:01:51 -06001144{
Kinglong Mee5598e902016-01-29 21:36:35 +08001145 kmem_cache_destroy(btrfs_ordered_extent_cache);
Miao Xie6352b912012-09-06 04:01:51 -06001146}