blob: 5c0f8481e25e0671469a5814eede82f11d96792e [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;
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800193
194 ASSERT(type == BTRFS_ORDERED_REGULAR ||
195 type == BTRFS_ORDERED_NOCOW ||
196 type == BTRFS_ORDERED_PREALLOC ||
197 type == BTRFS_ORDERED_COMPRESSED);
198 set_bit(type, &entry->flags);
Chris Mason3eaa2882008-07-24 11:57:52 -0400199
Josef Bacik5deb17e2020-10-09 09:28:20 -0400200 percpu_counter_add_batch(&fs_info->ordered_bytes, num_bytes,
201 fs_info->delalloc_batch);
202
203 if (dio)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400204 set_bit(BTRFS_ORDERED_DIRECT, &entry->flags);
205
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);
Filipe Manana48778172020-08-11 12:43:58 +0100210 INIT_LIST_HEAD(&entry->log_list);
Chris Mason3eaa2882008-07-24 11:57:52 -0400211 INIT_LIST_HEAD(&entry->root_extent_list);
Miao Xie9afab882012-10-25 09:41:36 +0000212 INIT_LIST_HEAD(&entry->work_list);
213 init_completion(&entry->completion);
Chris Masondc17ff82008-01-08 15:46:30 -0500214
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300215 trace_btrfs_ordered_extent_add(inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000216
Josef Bacik5fd02042012-05-02 14:00:54 -0400217 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400218 node = tree_insert(&tree->tree, file_offset,
219 &entry->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400220 if (node)
Nikolay Borisov511a32b2019-11-29 11:38:13 +0200221 btrfs_panic(fs_info, -EEXIST,
222 "inconsistency in ordered tree at offset %llu",
223 file_offset);
Josef Bacik5fd02042012-05-02 14:00:54 -0400224 spin_unlock_irq(&tree->lock);
Chris Masond3977122009-01-05 21:25:51 -0500225
Miao Xie199c2a92013-05-15 07:48:23 +0000226 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400227 list_add_tail(&entry->root_extent_list,
Miao Xie199c2a92013-05-15 07:48:23 +0000228 &root->ordered_extents);
229 root->nr_ordered_extents++;
230 if (root->nr_ordered_extents == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400231 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000232 BUG_ON(!list_empty(&root->ordered_root));
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400233 list_add_tail(&root->ordered_root, &fs_info->ordered_roots);
234 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000235 }
236 spin_unlock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400237
Josef Bacik8b62f872017-10-19 14:15:55 -0400238 /*
239 * We don't need the count_max_extents here, we can assume that all of
240 * that work has been done at higher layers, so this is truly the
241 * smallest the extent is going to get.
242 */
Nikolay Borisovda69fea2020-06-03 08:55:01 +0300243 spin_lock(&inode->lock);
244 btrfs_mod_outstanding_extents(inode, 1);
245 spin_unlock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -0400246
Chris Masone6dcd2d2008-07-17 12:53:50 -0400247 return 0;
248}
Chris Masondc17ff82008-01-08 15:46:30 -0500249
Nikolay Borisove7fbf602020-06-03 08:55:13 +0300250int btrfs_add_ordered_extent(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800251 u64 disk_bytenr, u64 num_bytes, u64 disk_num_bytes,
252 int type)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400253{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800254 ASSERT(type == BTRFS_ORDERED_REGULAR ||
255 type == BTRFS_ORDERED_NOCOW ||
256 type == BTRFS_ORDERED_PREALLOC);
Nikolay Borisove7fbf602020-06-03 08:55:13 +0300257 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800258 num_bytes, disk_num_bytes, type, 0,
Li Zefan261507a02010-12-17 14:21:50 +0800259 BTRFS_COMPRESS_NONE);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400260}
261
Nikolay Borisovc1e09522020-06-03 08:55:30 +0300262int btrfs_add_ordered_extent_dio(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800263 u64 disk_bytenr, u64 num_bytes,
264 u64 disk_num_bytes, int type)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400265{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800266 ASSERT(type == BTRFS_ORDERED_REGULAR ||
267 type == BTRFS_ORDERED_NOCOW ||
268 type == BTRFS_ORDERED_PREALLOC);
Nikolay Borisovc1e09522020-06-03 08:55:30 +0300269 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800270 num_bytes, disk_num_bytes, type, 1,
Li Zefan261507a02010-12-17 14:21:50 +0800271 BTRFS_COMPRESS_NONE);
272}
273
Nikolay Borisov4cc61202020-06-03 08:55:15 +0300274int btrfs_add_ordered_extent_compress(struct btrfs_inode *inode, u64 file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -0800275 u64 disk_bytenr, u64 num_bytes,
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800276 u64 disk_num_bytes, int compress_type)
Li Zefan261507a02010-12-17 14:21:50 +0800277{
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800278 ASSERT(compress_type != BTRFS_COMPRESS_NONE);
Nikolay Borisov4cc61202020-06-03 08:55:15 +0300279 return __btrfs_add_ordered_extent(inode, file_offset, disk_bytenr,
Qu Wenruo3c198fe2021-01-21 14:13:54 +0800280 num_bytes, disk_num_bytes,
281 BTRFS_ORDERED_COMPRESSED, 0,
Li Zefan261507a02010-12-17 14:21:50 +0800282 compress_type);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400283}
284
Chris Masoneb84ae02008-07-17 13:53:27 -0400285/*
286 * Add a struct btrfs_ordered_sum into the list of checksums to be inserted
Chris Mason3edf7d32008-07-18 06:17:13 -0400287 * when an ordered extent is finished. If the list covers more than one
288 * ordered extent, it is split across multiples.
Chris Masoneb84ae02008-07-17 13:53:27 -0400289 */
Nikolay Borisovf9756262019-04-10 16:16:11 +0300290void btrfs_add_ordered_sum(struct btrfs_ordered_extent *entry,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100291 struct btrfs_ordered_sum *sum)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400292{
293 struct btrfs_ordered_inode_tree *tree;
Chris Mason1b1e2132008-06-25 16:01:31 -0400294
Nikolay Borisovf9756262019-04-10 16:16:11 +0300295 tree = &BTRFS_I(entry->inode)->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400296 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400297 list_add_tail(&sum->list, &entry->list);
Josef Bacik5fd02042012-05-02 14:00:54 -0400298 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400299}
300
Chris Masoneb84ae02008-07-17 13:53:27 -0400301/*
Qu Wenruoe65f1522021-04-01 15:15:06 +0800302 * Mark all ordered extents io inside the specified range finished.
Chris Mason163cf092010-11-28 19:56:33 -0500303 *
Qu Wenruoe65f1522021-04-01 15:15:06 +0800304 * @page: The invovled page for the opeartion.
305 * For uncompressed buffered IO, the page status also needs to be
306 * updated to indicate whether the pending ordered io is finished.
307 * Can be NULL for direct IO and compressed write.
308 * For these cases, callers are ensured they won't execute the
309 * endio function twice.
310 * @finish_func: The function to be executed when all the IO of an ordered
311 * extent are finished.
Chris Mason163cf092010-11-28 19:56:33 -0500312 *
Qu Wenruoe65f1522021-04-01 15:15:06 +0800313 * This function is called for endio, thus the range must have ordered
314 * extent(s) coveri it.
Chris Mason163cf092010-11-28 19:56:33 -0500315 */
Qu Wenruoe65f1522021-04-01 15:15:06 +0800316void btrfs_mark_ordered_io_finished(struct btrfs_inode *inode,
317 struct page *page, u64 file_offset,
318 u64 num_bytes, btrfs_func_t finish_func,
319 bool uptodate)
Chris Mason163cf092010-11-28 19:56:33 -0500320{
Nikolay Borisov70958212020-06-03 08:55:23 +0300321 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
Qu Wenruoe65f1522021-04-01 15:15:06 +0800322 struct btrfs_fs_info *fs_info = inode->root->fs_info;
323 struct btrfs_workqueue *wq;
Chris Mason163cf092010-11-28 19:56:33 -0500324 struct rb_node *node;
325 struct btrfs_ordered_extent *entry = NULL;
Josef Bacik5fd02042012-05-02 14:00:54 -0400326 unsigned long flags;
Qu Wenruoe65f1522021-04-01 15:15:06 +0800327 u64 cur = file_offset;
328
329 if (btrfs_is_free_space_inode(inode))
330 wq = fs_info->endio_freespace_worker;
331 else
332 wq = fs_info->endio_write_workers;
333
334 if (page)
335 ASSERT(page->mapping && page_offset(page) <= file_offset &&
336 file_offset + num_bytes <= page_offset(page) + PAGE_SIZE);
Chris Mason163cf092010-11-28 19:56:33 -0500337
Josef Bacik5fd02042012-05-02 14:00:54 -0400338 spin_lock_irqsave(&tree->lock, flags);
Qu Wenruoe65f1522021-04-01 15:15:06 +0800339 while (cur < file_offset + num_bytes) {
340 u64 entry_end;
341 u64 end;
342 u32 len;
Chris Mason163cf092010-11-28 19:56:33 -0500343
Qu Wenruoe65f1522021-04-01 15:15:06 +0800344 node = tree_search(tree, cur);
345 /* No ordered extents at all */
346 if (!node)
347 break;
Chris Mason163cf092010-11-28 19:56:33 -0500348
Qu Wenruoe65f1522021-04-01 15:15:06 +0800349 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
350 entry_end = entry->file_offset + entry->num_bytes;
Qu Wenruo58f74b22020-12-22 13:59:24 +0800351 /*
Qu Wenruoe65f1522021-04-01 15:15:06 +0800352 * |<-- OE --->| |
353 * cur
354 * Go to next OE.
Qu Wenruo58f74b22020-12-22 13:59:24 +0800355 */
Qu Wenruoe65f1522021-04-01 15:15:06 +0800356 if (cur >= entry_end) {
357 node = rb_next(node);
358 /* No more ordered extents, exit */
359 if (!node)
360 break;
361 entry = rb_entry(node, struct btrfs_ordered_extent,
362 rb_node);
363
364 /* Go to next ordered extent and continue */
365 cur = entry->file_offset;
366 continue;
367 }
368 /*
369 * | |<--- OE --->|
370 * cur
371 * Go to the start of OE.
372 */
373 if (cur < entry->file_offset) {
374 cur = entry->file_offset;
375 continue;
376 }
377
378 /*
379 * Now we are definitely inside one ordered extent.
380 *
381 * |<--- OE --->|
382 * |
383 * cur
384 */
385 end = min(entry->file_offset + entry->num_bytes,
386 file_offset + num_bytes) - 1;
387 ASSERT(end + 1 - cur < U32_MAX);
388 len = end + 1 - cur;
389
390 if (page) {
391 /*
Qu Wenruof57ad932021-04-07 19:22:13 +0800392 * Ordered (Private2) bit indicates whether we still
393 * have pending io unfinished for the ordered extent.
Qu Wenruoe65f1522021-04-01 15:15:06 +0800394 *
395 * If there's no such bit, we need to skip to next range.
396 */
Qu Wenruob945a462021-05-31 16:50:46 +0800397 if (!btrfs_page_test_ordered(fs_info, page, cur, len)) {
Qu Wenruoe65f1522021-04-01 15:15:06 +0800398 cur += len;
399 continue;
400 }
Qu Wenruob945a462021-05-31 16:50:46 +0800401 btrfs_page_clear_ordered(fs_info, page, cur, len);
Qu Wenruoe65f1522021-04-01 15:15:06 +0800402 }
403
404 /* Now we're fine to update the accounting */
405 if (unlikely(len > entry->bytes_left)) {
406 WARN_ON(1);
407 btrfs_crit(fs_info,
408"bad ordered extent accounting, root=%llu ino=%llu OE offset=%llu OE len=%llu to_dec=%u left=%llu",
409 inode->root->root_key.objectid,
410 btrfs_ino(inode),
411 entry->file_offset,
412 entry->num_bytes,
413 len, entry->bytes_left);
414 entry->bytes_left = 0;
415 } else {
416 entry->bytes_left -= len;
417 }
418
419 if (!uptodate)
420 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
421
422 /*
423 * All the IO of the ordered extent is finished, we need to queue
424 * the finish_func to be executed.
425 */
426 if (entry->bytes_left == 0) {
427 set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
428 cond_wake_up(&entry->wait);
429 refcount_inc(&entry->refs);
430 spin_unlock_irqrestore(&tree->lock, flags);
431 btrfs_init_work(&entry->work, finish_func, NULL, NULL);
432 btrfs_queue_work(wq, &entry->work);
433 spin_lock_irqsave(&tree->lock, flags);
434 }
435 cur += len;
Chris Mason163cf092010-11-28 19:56:33 -0500436 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400437 spin_unlock_irqrestore(&tree->lock, flags);
Chris Mason163cf092010-11-28 19:56:33 -0500438}
439
440/*
Qu Wenruo58f74b22020-12-22 13:59:24 +0800441 * Finish IO for one ordered extent across a given range. The range can only
442 * contain one ordered extent.
Chris Masoneb84ae02008-07-17 13:53:27 -0400443 *
Qu Wenruo58f74b22020-12-22 13:59:24 +0800444 * @cached: The cached ordered extent. If not NULL, we can skip the tree
445 * search and use the ordered extent directly.
446 * Will be also used to store the finished ordered extent.
447 * @file_offset: File offset for the finished IO
448 * @io_size: Length of the finish IO range
449 * @uptodate: If the IO finishes without problem
450 *
451 * Return true if the ordered extent is finished in the range, and update
452 * @cached.
453 * Return false otherwise.
454 *
455 * NOTE: The range can NOT cross multiple ordered extents.
456 * Thus caller should ensure the range doesn't cross ordered extents.
Chris Masoneb84ae02008-07-17 13:53:27 -0400457 */
Qu Wenruo58f74b22020-12-22 13:59:24 +0800458bool btrfs_dec_test_ordered_pending(struct btrfs_inode *inode,
459 struct btrfs_ordered_extent **cached,
460 u64 file_offset, u64 io_size, int uptodate)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400461{
Nikolay Borisov90c03042020-08-31 14:42:41 +0300462 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400463 struct rb_node *node;
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000464 struct btrfs_ordered_extent *entry = NULL;
Josef Bacik5fd02042012-05-02 14:00:54 -0400465 unsigned long flags;
Qu Wenruo58f74b22020-12-22 13:59:24 +0800466 bool finished = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400467
Josef Bacik5fd02042012-05-02 14:00:54 -0400468 spin_lock_irqsave(&tree->lock, flags);
469 if (cached && *cached) {
470 entry = *cached;
471 goto have_entry;
472 }
473
Chris Masone6dcd2d2008-07-17 12:53:50 -0400474 node = tree_search(tree, file_offset);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800475 if (!node)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400476 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400477
478 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Josef Bacik5fd02042012-05-02 14:00:54 -0400479have_entry:
Nikolay Borisov20bbf202021-02-17 15:12:49 +0200480 if (!in_range(file_offset, entry->file_offset, entry->num_bytes))
Chris Masone6dcd2d2008-07-17 12:53:50 -0400481 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400482
Qu Wenruo58f74b22020-12-22 13:59:24 +0800483 if (io_size > entry->bytes_left)
Nikolay Borisov90c03042020-08-31 14:42:41 +0300484 btrfs_crit(inode->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500485 "bad ordered accounting left %llu size %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200486 entry->bytes_left, io_size);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800487
Chris Mason8b62b722009-09-02 16:53:46 -0400488 entry->bytes_left -= io_size;
Josef Bacik5fd02042012-05-02 14:00:54 -0400489 if (!uptodate)
490 set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
491
Miao Xieaf7a6502014-03-06 13:54:56 +0800492 if (entry->bytes_left == 0) {
Qu Wenruo58f74b22020-12-22 13:59:24 +0800493 /*
494 * Ensure only one caller can set the flag and finished_ret
495 * accordingly
496 */
497 finished = !test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
David Sterba093258e2018-02-26 16:15:17 +0100498 /* test_and_set_bit implies a barrier */
499 cond_wake_up_nomb(&entry->wait);
Miao Xieaf7a6502014-03-06 13:54:56 +0800500 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400501out:
Qu Wenruo58f74b22020-12-22 13:59:24 +0800502 if (finished && cached && entry) {
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000503 *cached = entry;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200504 refcount_inc(&entry->refs);
Josef Bacik5a1a3df2010-02-02 20:51:14 +0000505 }
Josef Bacik5fd02042012-05-02 14:00:54 -0400506 spin_unlock_irqrestore(&tree->lock, flags);
Qu Wenruo58f74b22020-12-22 13:59:24 +0800507 return finished;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400508}
509
Chris Masoneb84ae02008-07-17 13:53:27 -0400510/*
511 * used to drop a reference on an ordered extent. This will free
512 * the extent if the last reference is dropped
513 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100514void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400515{
Chris Masonba1da2f2008-07-17 12:54:15 -0400516 struct list_head *cur;
517 struct btrfs_ordered_sum *sum;
518
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300519 trace_btrfs_ordered_extent_put(BTRFS_I(entry->inode), entry);
liubo1abe9b82011-03-24 11:18:59 +0000520
Elena Reshetovae76edab2017-03-03 10:55:13 +0200521 if (refcount_dec_and_test(&entry->refs)) {
Filipe Manana61de7182015-07-01 12:13:10 +0100522 ASSERT(list_empty(&entry->root_extent_list));
Filipe Manana48778172020-08-11 12:43:58 +0100523 ASSERT(list_empty(&entry->log_list));
Filipe Manana61de7182015-07-01 12:13:10 +0100524 ASSERT(RB_EMPTY_NODE(&entry->rb_node));
Josef Bacik5fd02042012-05-02 14:00:54 -0400525 if (entry->inode)
526 btrfs_add_delayed_iput(entry->inode);
Chris Masond3977122009-01-05 21:25:51 -0500527 while (!list_empty(&entry->list)) {
Chris Masonba1da2f2008-07-17 12:54:15 -0400528 cur = entry->list.next;
529 sum = list_entry(cur, struct btrfs_ordered_sum, list);
530 list_del(&sum->list);
Nikolay Borisova3d46ae2019-04-01 11:29:58 +0300531 kvfree(sum);
Chris Masonba1da2f2008-07-17 12:54:15 -0400532 }
Miao Xie6352b912012-09-06 04:01:51 -0600533 kmem_cache_free(btrfs_ordered_extent_cache, entry);
Chris Masonba1da2f2008-07-17 12:54:15 -0400534 }
Chris Masondc17ff82008-01-08 15:46:30 -0500535}
536
Chris Masoneb84ae02008-07-17 13:53:27 -0400537/*
538 * remove an ordered extent from the tree. No references are dropped
Josef Bacik5fd02042012-05-02 14:00:54 -0400539 * and waiters are woken up.
Chris Masoneb84ae02008-07-17 13:53:27 -0400540 */
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300541void btrfs_remove_ordered_extent(struct btrfs_inode *btrfs_inode,
Josef Bacik5fd02042012-05-02 14:00:54 -0400542 struct btrfs_ordered_extent *entry)
Chris Masondc17ff82008-01-08 15:46:30 -0500543{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400544 struct btrfs_ordered_inode_tree *tree;
Josef Bacik8b62f872017-10-19 14:15:55 -0400545 struct btrfs_root *root = btrfs_inode->root;
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300546 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masondc17ff82008-01-08 15:46:30 -0500547 struct rb_node *node;
Filipe Manana48778172020-08-11 12:43:58 +0100548 bool pending;
Chris Masondc17ff82008-01-08 15:46:30 -0500549
Josef Bacik8b62f872017-10-19 14:15:55 -0400550 /* This is paired with btrfs_add_ordered_extent. */
551 spin_lock(&btrfs_inode->lock);
552 btrfs_mod_outstanding_extents(btrfs_inode, -1);
553 spin_unlock(&btrfs_inode->lock);
554 if (root != fs_info->tree_root)
Omar Sandovalbffe6332019-12-02 17:34:19 -0800555 btrfs_delalloc_release_metadata(btrfs_inode, entry->num_bytes,
556 false);
Josef Bacik8b62f872017-10-19 14:15:55 -0400557
Josef Bacik5deb17e2020-10-09 09:28:20 -0400558 percpu_counter_add_batch(&fs_info->ordered_bytes, -entry->num_bytes,
559 fs_info->delalloc_batch);
Josef Bacik4297ff82019-04-10 15:56:09 -0400560
Josef Bacik8b62f872017-10-19 14:15:55 -0400561 tree = &btrfs_inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400562 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400563 node = &entry->rb_node;
Chris Masondc17ff82008-01-08 15:46:30 -0500564 rb_erase(node, &tree->tree);
Filipe Manana61de7182015-07-01 12:13:10 +0100565 RB_CLEAR_NODE(node);
Filipe David Borba Manana1b8e7e42013-11-22 18:54:58 +0000566 if (tree->last == node)
567 tree->last = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400568 set_bit(BTRFS_ORDERED_COMPLETE, &entry->flags);
Filipe Manana48778172020-08-11 12:43:58 +0100569 pending = test_and_clear_bit(BTRFS_ORDERED_PENDING, &entry->flags);
Josef Bacik5fd02042012-05-02 14:00:54 -0400570 spin_unlock_irq(&tree->lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400571
Filipe Manana48778172020-08-11 12:43:58 +0100572 /*
573 * The current running transaction is waiting on us, we need to let it
574 * know that we're complete and wake it up.
575 */
576 if (pending) {
577 struct btrfs_transaction *trans;
578
579 /*
580 * The checks for trans are just a formality, it should be set,
581 * but if it isn't we don't want to deref/assert under the spin
582 * lock, so be nice and check if trans is set, but ASSERT() so
583 * if it isn't set a developer will notice.
584 */
585 spin_lock(&fs_info->trans_lock);
586 trans = fs_info->running_transaction;
587 if (trans)
588 refcount_inc(&trans->use_count);
589 spin_unlock(&fs_info->trans_lock);
590
591 ASSERT(trans);
592 if (trans) {
593 if (atomic_dec_and_test(&trans->pending_ordered))
594 wake_up(&trans->pending_wait);
595 btrfs_put_transaction(trans);
596 }
597 }
598
Miao Xie199c2a92013-05-15 07:48:23 +0000599 spin_lock(&root->ordered_extent_lock);
Chris Mason3eaa2882008-07-24 11:57:52 -0400600 list_del_init(&entry->root_extent_list);
Miao Xie199c2a92013-05-15 07:48:23 +0000601 root->nr_ordered_extents--;
Chris Mason5a3f23d2009-03-31 13:27:11 -0400602
Nikolay Borisov71fe0a52020-09-18 12:15:50 +0300603 trace_btrfs_ordered_extent_remove(btrfs_inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000604
Miao Xie199c2a92013-05-15 07:48:23 +0000605 if (!root->nr_ordered_extents) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400606 spin_lock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000607 BUG_ON(list_empty(&root->ordered_root));
608 list_del_init(&root->ordered_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400609 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie199c2a92013-05-15 07:48:23 +0000610 }
611 spin_unlock(&root->ordered_extent_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400612 wake_up(&entry->wait);
Chris Mason81d7ed22008-04-25 08:51:48 -0400613}
Chris Masone6dcd2d2008-07-17 12:53:50 -0400614
Qu Wenruod458b052014-02-28 10:46:19 +0800615static void btrfs_run_ordered_extent_work(struct btrfs_work *work)
Miao Xie9afab882012-10-25 09:41:36 +0000616{
617 struct btrfs_ordered_extent *ordered;
618
619 ordered = container_of(work, struct btrfs_ordered_extent, flush_work);
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300620 btrfs_start_ordered_extent(ordered, 1);
Miao Xie9afab882012-10-25 09:41:36 +0000621 complete(&ordered->completion);
622}
623
Chris Masond352ac62008-09-29 15:18:18 -0400624/*
625 * wait for all the ordered extents in a root. This is done when balancing
626 * space between drives.
627 */
Chris Mason6374e57a2017-06-23 09:48:21 -0700628u64 btrfs_wait_ordered_extents(struct btrfs_root *root, u64 nr,
Filipe Manana578def72016-04-26 15:36:38 +0100629 const u64 range_start, const u64 range_len)
Chris Mason3eaa2882008-07-24 11:57:52 -0400630{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400631 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana578def72016-04-26 15:36:38 +0100632 LIST_HEAD(splice);
633 LIST_HEAD(skipped);
634 LIST_HEAD(works);
Miao Xie9afab882012-10-25 09:41:36 +0000635 struct btrfs_ordered_extent *ordered, *next;
Chris Mason6374e57a2017-06-23 09:48:21 -0700636 u64 count = 0;
Filipe Manana578def72016-04-26 15:36:38 +0100637 const u64 range_end = range_start + range_len;
Chris Mason3eaa2882008-07-24 11:57:52 -0400638
Miao Xie31f3d252014-03-06 13:55:02 +0800639 mutex_lock(&root->ordered_extent_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000640 spin_lock(&root->ordered_extent_lock);
641 list_splice_init(&root->ordered_extents, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800642 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000643 ordered = list_first_entry(&splice, struct btrfs_ordered_extent,
644 root_extent_list);
Filipe Manana578def72016-04-26 15:36:38 +0100645
Omar Sandovalbffe6332019-12-02 17:34:19 -0800646 if (range_end <= ordered->disk_bytenr ||
647 ordered->disk_bytenr + ordered->disk_num_bytes <= range_start) {
Filipe Manana578def72016-04-26 15:36:38 +0100648 list_move_tail(&ordered->root_extent_list, &skipped);
649 cond_resched_lock(&root->ordered_extent_lock);
650 continue;
651 }
652
Miao Xie199c2a92013-05-15 07:48:23 +0000653 list_move_tail(&ordered->root_extent_list,
654 &root->ordered_extents);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200655 refcount_inc(&ordered->refs);
Miao Xie199c2a92013-05-15 07:48:23 +0000656 spin_unlock(&root->ordered_extent_lock);
657
Qu Wenruoa44903a2014-02-28 10:46:09 +0800658 btrfs_init_work(&ordered->flush_work,
659 btrfs_run_ordered_extent_work, NULL, NULL);
Miao Xie199c2a92013-05-15 07:48:23 +0000660 list_add_tail(&ordered->work_list, &works);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400661 btrfs_queue_work(fs_info->flush_workers, &ordered->flush_work);
Miao Xie199c2a92013-05-15 07:48:23 +0000662
Miao Xie9afab882012-10-25 09:41:36 +0000663 cond_resched();
Miao Xie199c2a92013-05-15 07:48:23 +0000664 spin_lock(&root->ordered_extent_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700665 if (nr != U64_MAX)
Miao Xieb0244192013-11-04 23:13:25 +0800666 nr--;
667 count++;
Chris Mason3eaa2882008-07-24 11:57:52 -0400668 }
Filipe Manana578def72016-04-26 15:36:38 +0100669 list_splice_tail(&skipped, &root->ordered_extents);
Miao Xieb0244192013-11-04 23:13:25 +0800670 list_splice_tail(&splice, &root->ordered_extents);
Miao Xie199c2a92013-05-15 07:48:23 +0000671 spin_unlock(&root->ordered_extent_lock);
Miao Xie9afab882012-10-25 09:41:36 +0000672
673 list_for_each_entry_safe(ordered, next, &works, work_list) {
674 list_del_init(&ordered->work_list);
675 wait_for_completion(&ordered->completion);
Miao Xie9afab882012-10-25 09:41:36 +0000676 btrfs_put_ordered_extent(ordered);
Miao Xie9afab882012-10-25 09:41:36 +0000677 cond_resched();
678 }
Miao Xie31f3d252014-03-06 13:55:02 +0800679 mutex_unlock(&root->ordered_extent_mutex);
Miao Xieb0244192013-11-04 23:13:25 +0800680
681 return count;
Chris Mason3eaa2882008-07-24 11:57:52 -0400682}
683
Filipe Manana042528f2019-11-14 18:02:43 +0000684void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
Chris Mason6374e57a2017-06-23 09:48:21 -0700685 const u64 range_start, const u64 range_len)
Miao Xie199c2a92013-05-15 07:48:23 +0000686{
687 struct btrfs_root *root;
688 struct list_head splice;
Chris Mason6374e57a2017-06-23 09:48:21 -0700689 u64 done;
Miao Xie199c2a92013-05-15 07:48:23 +0000690
691 INIT_LIST_HEAD(&splice);
692
Miao Xie8b9d83c2014-03-06 13:54:55 +0800693 mutex_lock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000694 spin_lock(&fs_info->ordered_root_lock);
695 list_splice_init(&fs_info->ordered_roots, &splice);
Miao Xieb0244192013-11-04 23:13:25 +0800696 while (!list_empty(&splice) && nr) {
Miao Xie199c2a92013-05-15 07:48:23 +0000697 root = list_first_entry(&splice, struct btrfs_root,
698 ordered_root);
Josef Bacik00246522020-01-24 09:33:01 -0500699 root = btrfs_grab_root(root);
Miao Xie199c2a92013-05-15 07:48:23 +0000700 BUG_ON(!root);
701 list_move_tail(&root->ordered_root,
702 &fs_info->ordered_roots);
703 spin_unlock(&fs_info->ordered_root_lock);
704
Filipe Manana578def72016-04-26 15:36:38 +0100705 done = btrfs_wait_ordered_extents(root, nr,
706 range_start, range_len);
Josef Bacik00246522020-01-24 09:33:01 -0500707 btrfs_put_root(root);
Miao Xie199c2a92013-05-15 07:48:23 +0000708
709 spin_lock(&fs_info->ordered_root_lock);
Chris Mason6374e57a2017-06-23 09:48:21 -0700710 if (nr != U64_MAX) {
Miao Xieb0244192013-11-04 23:13:25 +0800711 nr -= done;
Miao Xieb0244192013-11-04 23:13:25 +0800712 }
Miao Xie199c2a92013-05-15 07:48:23 +0000713 }
Miao Xie931aa872013-11-14 17:33:21 +0800714 list_splice_tail(&splice, &fs_info->ordered_roots);
Miao Xie199c2a92013-05-15 07:48:23 +0000715 spin_unlock(&fs_info->ordered_root_lock);
Miao Xie8b9d83c2014-03-06 13:54:55 +0800716 mutex_unlock(&fs_info->ordered_operations_mutex);
Miao Xie199c2a92013-05-15 07:48:23 +0000717}
718
Chris Masoneb84ae02008-07-17 13:53:27 -0400719/*
720 * Used to start IO or wait for a given ordered extent to finish.
721 *
722 * If wait is one, this effectively waits on page writeback for all the pages
723 * in the extent, and it waits on the io completion code to insert
724 * metadata into the btree corresponding to the extent
725 */
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300726void btrfs_start_ordered_extent(struct btrfs_ordered_extent *entry, int wait)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400727{
728 u64 start = entry->file_offset;
Omar Sandovalbffe6332019-12-02 17:34:19 -0800729 u64 end = start + entry->num_bytes - 1;
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300730 struct btrfs_inode *inode = BTRFS_I(entry->inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400731
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300732 trace_btrfs_ordered_extent_start(inode, entry);
liubo1abe9b82011-03-24 11:18:59 +0000733
Chris Masoneb84ae02008-07-17 13:53:27 -0400734 /*
735 * pages in the range can be dirty, clean or writeback. We
736 * start IO on any dirty ones so the wait doesn't stall waiting
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300737 * for the flusher thread to find them
Chris Masoneb84ae02008-07-17 13:53:27 -0400738 */
Josef Bacik4b46fce2010-05-23 11:00:55 -0400739 if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags))
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300740 filemap_fdatawrite_range(inode->vfs_inode.i_mapping, start, end);
Chris Masonc8b97812008-10-29 14:49:59 -0400741 if (wait) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400742 wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE,
743 &entry->flags));
Chris Masonc8b97812008-10-29 14:49:59 -0400744 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400745}
746
Chris Masoneb84ae02008-07-17 13:53:27 -0400747/*
748 * Used to wait on ordered extents across a large range of bytes.
749 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400750int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400751{
Josef Bacik0ef8b722013-10-25 16:13:35 -0400752 int ret = 0;
Filipe Manana28aeeac2015-05-05 19:03:10 +0100753 int ret_wb = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400754 u64 end;
Chris Masone5a22172008-07-18 20:42:20 -0400755 u64 orig_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400756 struct btrfs_ordered_extent *ordered;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400757
Chris Masone5a22172008-07-18 20:42:20 -0400758 if (start + len < start) {
Chris Masonf4219502008-07-22 11:18:09 -0400759 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400760 } else {
761 orig_end = start + len - 1;
Chris Masonf4219502008-07-22 11:18:09 -0400762 if (orig_end > INT_LIMIT(loff_t))
763 orig_end = INT_LIMIT(loff_t);
Chris Masone5a22172008-07-18 20:42:20 -0400764 }
Josef Bacik551ebb22012-04-23 14:41:09 -0400765
Chris Masone5a22172008-07-18 20:42:20 -0400766 /* start IO across the range first to instantiate any delalloc
767 * extents
768 */
Filipe Manana728404d2014-10-10 09:43:11 +0100769 ret = btrfs_fdatawrite_range(inode, start, orig_end);
Josef Bacik0ef8b722013-10-25 16:13:35 -0400770 if (ret)
771 return ret;
Filipe Manana728404d2014-10-10 09:43:11 +0100772
Filipe Manana28aeeac2015-05-05 19:03:10 +0100773 /*
774 * If we have a writeback error don't return immediately. Wait first
775 * for any ordered extents that haven't completed yet. This is to make
776 * sure no one can dirty the same page ranges and call writepages()
777 * before the ordered extents complete - to avoid failures (-EEXIST)
778 * when adding the new ordered extents to the ordered tree.
779 */
780 ret_wb = filemap_fdatawait_range(inode->i_mapping, start, orig_end);
Chris Masonf4219502008-07-22 11:18:09 -0400781
782 end = orig_end;
Chris Masond3977122009-01-05 21:25:51 -0500783 while (1) {
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300784 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode), end);
Chris Masond3977122009-01-05 21:25:51 -0500785 if (!ordered)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400786 break;
Chris Masone5a22172008-07-18 20:42:20 -0400787 if (ordered->file_offset > orig_end) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400788 btrfs_put_ordered_extent(ordered);
789 break;
790 }
Omar Sandovalbffe6332019-12-02 17:34:19 -0800791 if (ordered->file_offset + ordered->num_bytes <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400792 btrfs_put_ordered_extent(ordered);
793 break;
794 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +0300795 btrfs_start_ordered_extent(ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400796 end = ordered->file_offset;
Filipe Mananae75fd332020-02-13 12:29:50 +0000797 /*
798 * If the ordered extent had an error save the error but don't
799 * exit without waiting first for all other ordered extents in
800 * the range to complete.
801 */
Josef Bacik0ef8b722013-10-25 16:13:35 -0400802 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags))
803 ret = -EIO;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400804 btrfs_put_ordered_extent(ordered);
Filipe Mananae75fd332020-02-13 12:29:50 +0000805 if (end == 0 || end == start)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400806 break;
807 end--;
808 }
Filipe Manana28aeeac2015-05-05 19:03:10 +0100809 return ret_wb ? ret_wb : ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400810}
811
Chris Masoneb84ae02008-07-17 13:53:27 -0400812/*
813 * find an ordered extent corresponding to file_offset. return NULL if
814 * nothing is found, otherwise take a reference on the extent and return it
815 */
Nikolay Borisovc3504372020-06-03 08:55:03 +0300816struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct btrfs_inode *inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400817 u64 file_offset)
818{
819 struct btrfs_ordered_inode_tree *tree;
820 struct rb_node *node;
821 struct btrfs_ordered_extent *entry = NULL;
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900822 unsigned long flags;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823
Nikolay Borisovc3504372020-06-03 08:55:03 +0300824 tree = &inode->ordered_tree;
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900825 spin_lock_irqsave(&tree->lock, flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400826 node = tree_search(tree, file_offset);
827 if (!node)
828 goto out;
829
830 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Nikolay Borisov20bbf202021-02-17 15:12:49 +0200831 if (!in_range(file_offset, entry->file_offset, entry->num_bytes))
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 entry = NULL;
833 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200834 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400835out:
Johannes Thumshirn24533f62021-02-04 19:22:04 +0900836 spin_unlock_irqrestore(&tree->lock, flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400837 return entry;
838}
839
Josef Bacik4b46fce2010-05-23 11:00:55 -0400840/* Since the DIO code tries to lock a wide area we need to look for any ordered
841 * extents that exist in the range, rather than just the start of the range.
842 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200843struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
844 struct btrfs_inode *inode, u64 file_offset, u64 len)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400845{
846 struct btrfs_ordered_inode_tree *tree;
847 struct rb_node *node;
848 struct btrfs_ordered_extent *entry = NULL;
849
Nikolay Borisova776c6f2017-02-20 13:50:49 +0200850 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400851 spin_lock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400852 node = tree_search(tree, file_offset);
853 if (!node) {
854 node = tree_search(tree, file_offset + len);
855 if (!node)
856 goto out;
857 }
858
859 while (1) {
860 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
861 if (range_overlaps(entry, file_offset, len))
862 break;
863
864 if (entry->file_offset >= file_offset + len) {
865 entry = NULL;
866 break;
867 }
868 entry = NULL;
869 node = rb_next(node);
870 if (!node)
871 break;
872 }
873out:
874 if (entry)
Elena Reshetovae76edab2017-03-03 10:55:13 +0200875 refcount_inc(&entry->refs);
Josef Bacik5fd02042012-05-02 14:00:54 -0400876 spin_unlock_irq(&tree->lock);
Josef Bacik4b46fce2010-05-23 11:00:55 -0400877 return entry;
878}
879
Chris Masoneb84ae02008-07-17 13:53:27 -0400880/*
Filipe Manana48778172020-08-11 12:43:58 +0100881 * Adds all ordered extents to the given list. The list ends up sorted by the
882 * file_offset of the ordered extents.
883 */
884void btrfs_get_ordered_extents_for_logging(struct btrfs_inode *inode,
885 struct list_head *list)
886{
887 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
888 struct rb_node *n;
889
890 ASSERT(inode_is_locked(&inode->vfs_inode));
891
892 spin_lock_irq(&tree->lock);
893 for (n = rb_first(&tree->tree); n; n = rb_next(n)) {
894 struct btrfs_ordered_extent *ordered;
895
896 ordered = rb_entry(n, struct btrfs_ordered_extent, rb_node);
897
898 if (test_bit(BTRFS_ORDERED_LOGGED, &ordered->flags))
899 continue;
900
901 ASSERT(list_empty(&ordered->log_list));
902 list_add_tail(&ordered->log_list, list);
903 refcount_inc(&ordered->refs);
904 }
905 spin_unlock_irq(&tree->lock);
906}
907
908/*
Chris Masoneb84ae02008-07-17 13:53:27 -0400909 * lookup and return any extent before 'file_offset'. NULL is returned
910 * if none is found
911 */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400912struct btrfs_ordered_extent *
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300913btrfs_lookup_first_ordered_extent(struct btrfs_inode *inode, u64 file_offset)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400914{
915 struct btrfs_ordered_inode_tree *tree;
916 struct rb_node *node;
917 struct btrfs_ordered_extent *entry = NULL;
918
Nikolay Borisov6d072c82020-08-31 14:42:39 +0300919 tree = &inode->ordered_tree;
Josef Bacik5fd02042012-05-02 14:00:54 -0400920 spin_lock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400921 node = tree_search(tree, file_offset);
922 if (!node)
923 goto out;
924
925 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
Elena Reshetovae76edab2017-03-03 10:55:13 +0200926 refcount_inc(&entry->refs);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400927out:
Josef Bacik5fd02042012-05-02 14:00:54 -0400928 spin_unlock_irq(&tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400929 return entry;
930}
Chris Masondbe674a2008-07-17 12:54:05 -0400931
Chris Masoneb84ae02008-07-17 13:53:27 -0400932/*
Qu Wenruoc095f332021-04-27 15:03:40 +0800933 * Lookup the first ordered extent that overlaps the range
934 * [@file_offset, @file_offset + @len).
935 *
936 * The difference between this and btrfs_lookup_first_ordered_extent() is
937 * that this one won't return any ordered extent that does not overlap the range.
938 * And the difference against btrfs_lookup_ordered_extent() is, this function
939 * ensures the first ordered extent gets returned.
940 */
941struct btrfs_ordered_extent *btrfs_lookup_first_ordered_range(
942 struct btrfs_inode *inode, u64 file_offset, u64 len)
943{
944 struct btrfs_ordered_inode_tree *tree = &inode->ordered_tree;
945 struct rb_node *node;
946 struct rb_node *cur;
947 struct rb_node *prev;
948 struct rb_node *next;
949 struct btrfs_ordered_extent *entry = NULL;
950
951 spin_lock_irq(&tree->lock);
952 node = tree->tree.rb_node;
953 /*
954 * Here we don't want to use tree_search() which will use tree->last
955 * and screw up the search order.
956 * And __tree_search() can't return the adjacent ordered extents
957 * either, thus here we do our own search.
958 */
959 while (node) {
960 entry = rb_entry(node, struct btrfs_ordered_extent, rb_node);
961
962 if (file_offset < entry->file_offset) {
963 node = node->rb_left;
964 } else if (file_offset >= entry_end(entry)) {
965 node = node->rb_right;
966 } else {
967 /*
968 * Direct hit, got an ordered extent that starts at
969 * @file_offset
970 */
971 goto out;
972 }
973 }
974 if (!entry) {
975 /* Empty tree */
976 goto out;
977 }
978
979 cur = &entry->rb_node;
980 /* We got an entry around @file_offset, check adjacent entries */
981 if (entry->file_offset < file_offset) {
982 prev = cur;
983 next = rb_next(cur);
984 } else {
985 prev = rb_prev(cur);
986 next = cur;
987 }
988 if (prev) {
989 entry = rb_entry(prev, struct btrfs_ordered_extent, rb_node);
990 if (range_overlaps(entry, file_offset, len))
991 goto out;
992 }
993 if (next) {
994 entry = rb_entry(next, struct btrfs_ordered_extent, rb_node);
995 if (range_overlaps(entry, file_offset, len))
996 goto out;
997 }
998 /* No ordered extent in the range */
999 entry = NULL;
1000out:
1001 if (entry)
1002 refcount_inc(&entry->refs);
1003 spin_unlock_irq(&tree->lock);
1004 return entry;
1005}
1006
1007/*
Nikolay Borisovffa87212019-05-07 10:19:22 +03001008 * btrfs_flush_ordered_range - Lock the passed range and ensures all pending
1009 * ordered extents in it are run to completion.
1010 *
Nikolay Borisovffa87212019-05-07 10:19:22 +03001011 * @inode: Inode whose ordered tree is to be searched
1012 * @start: Beginning of range to flush
1013 * @end: Last byte of range to lock
1014 * @cached_state: If passed, will return the extent state responsible for the
1015 * locked range. It's the caller's responsibility to free the cached state.
1016 *
1017 * This function always returns with the given range locked, ensuring after it's
1018 * called no order extent can be pending.
1019 */
David Sterbab272ae22020-02-05 19:09:33 +01001020void btrfs_lock_and_flush_ordered_range(struct btrfs_inode *inode, u64 start,
Nikolay Borisovffa87212019-05-07 10:19:22 +03001021 u64 end,
1022 struct extent_state **cached_state)
1023{
1024 struct btrfs_ordered_extent *ordered;
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001025 struct extent_state *cache = NULL;
1026 struct extent_state **cachedp = &cache;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001027
1028 if (cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001029 cachedp = cached_state;
Nikolay Borisovffa87212019-05-07 10:19:22 +03001030
1031 while (1) {
David Sterbab272ae22020-02-05 19:09:33 +01001032 lock_extent_bits(&inode->io_tree, start, end, cachedp);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001033 ordered = btrfs_lookup_ordered_range(inode, start,
1034 end - start + 1);
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001035 if (!ordered) {
1036 /*
1037 * If no external cached_state has been passed then
1038 * decrement the extra ref taken for cachedp since we
1039 * aren't exposing it outside of this function
1040 */
1041 if (!cached_state)
Naohiro Aotaa3b46b82019-07-26 16:47:05 +09001042 refcount_dec(&cache->refs);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001043 break;
Nikolay Borisovbd80d942019-05-07 10:19:24 +03001044 }
David Sterbab272ae22020-02-05 19:09:33 +01001045 unlock_extent_cached(&inode->io_tree, start, end, cachedp);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001046 btrfs_start_ordered_extent(ordered, 1);
Nikolay Borisovffa87212019-05-07 10:19:22 +03001047 btrfs_put_ordered_extent(ordered);
1048 }
1049}
1050
Naohiro Aotad22002f2021-02-04 19:22:00 +09001051static int clone_ordered_extent(struct btrfs_ordered_extent *ordered, u64 pos,
1052 u64 len)
1053{
1054 struct inode *inode = ordered->inode;
1055 u64 file_offset = ordered->file_offset + pos;
1056 u64 disk_bytenr = ordered->disk_bytenr + pos;
1057 u64 num_bytes = len;
1058 u64 disk_num_bytes = len;
1059 int type;
1060 unsigned long flags_masked = ordered->flags & ~(1 << BTRFS_ORDERED_DIRECT);
1061 int compress_type = ordered->compress_type;
1062 unsigned long weight;
1063 int ret;
1064
1065 weight = hweight_long(flags_masked);
1066 WARN_ON_ONCE(weight > 1);
1067 if (!weight)
1068 type = 0;
1069 else
1070 type = __ffs(flags_masked);
1071
1072 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered->flags)) {
1073 WARN_ON_ONCE(1);
1074 ret = btrfs_add_ordered_extent_compress(BTRFS_I(inode),
1075 file_offset, disk_bytenr, num_bytes,
1076 disk_num_bytes, compress_type);
1077 } else if (test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
1078 ret = btrfs_add_ordered_extent_dio(BTRFS_I(inode), file_offset,
1079 disk_bytenr, num_bytes, disk_num_bytes, type);
1080 } else {
1081 ret = btrfs_add_ordered_extent(BTRFS_I(inode), file_offset,
1082 disk_bytenr, num_bytes, disk_num_bytes, type);
1083 }
1084
1085 return ret;
1086}
1087
1088int btrfs_split_ordered_extent(struct btrfs_ordered_extent *ordered, u64 pre,
1089 u64 post)
1090{
1091 struct inode *inode = ordered->inode;
1092 struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree;
1093 struct rb_node *node;
1094 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1095 int ret = 0;
1096
1097 spin_lock_irq(&tree->lock);
1098 /* Remove from tree once */
1099 node = &ordered->rb_node;
1100 rb_erase(node, &tree->tree);
1101 RB_CLEAR_NODE(node);
1102 if (tree->last == node)
1103 tree->last = NULL;
1104
1105 ordered->file_offset += pre;
1106 ordered->disk_bytenr += pre;
1107 ordered->num_bytes -= (pre + post);
1108 ordered->disk_num_bytes -= (pre + post);
1109 ordered->bytes_left -= (pre + post);
1110
1111 /* Re-insert the node */
1112 node = tree_insert(&tree->tree, ordered->file_offset, &ordered->rb_node);
1113 if (node)
1114 btrfs_panic(fs_info, -EEXIST,
1115 "zoned: inconsistency in ordered tree at offset %llu",
1116 ordered->file_offset);
1117
1118 spin_unlock_irq(&tree->lock);
1119
1120 if (pre)
1121 ret = clone_ordered_extent(ordered, 0, pre);
Filipe Mananaadbd914d2021-04-21 14:31:50 +01001122 if (ret == 0 && post)
Naohiro Aotad22002f2021-02-04 19:22:00 +09001123 ret = clone_ordered_extent(ordered, pre + ordered->disk_num_bytes,
1124 post);
1125
1126 return ret;
1127}
1128
Miao Xie6352b912012-09-06 04:01:51 -06001129int __init ordered_data_init(void)
1130{
1131 btrfs_ordered_extent_cache = kmem_cache_create("btrfs_ordered_extent",
1132 sizeof(struct btrfs_ordered_extent), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03001133 SLAB_MEM_SPREAD,
Miao Xie6352b912012-09-06 04:01:51 -06001134 NULL);
1135 if (!btrfs_ordered_extent_cache)
1136 return -ENOMEM;
Miao Xie25287e02012-10-25 09:31:03 +00001137
Miao Xie6352b912012-09-06 04:01:51 -06001138 return 0;
1139}
1140
David Sterbae67c7182018-02-19 17:24:18 +01001141void __cold ordered_data_exit(void)
Miao Xie6352b912012-09-06 04:01:51 -06001142{
Kinglong Mee5598e902016-01-29 21:36:35 +08001143 kmem_cache_destroy(btrfs_ordered_extent_cache);
Miao Xie6352b912012-09-06 04:01:51 -06001144}