blob: 11204dbbe053040775d57bb6b3becb453a8f3c0d [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason39279cc2007-06-12 06:35:45 -04006#include <linux/fs.h>
7#include <linux/pagemap.h>
Chris Mason39279cc2007-06-12 06:35:45 -04008#include <linux/time.h>
9#include <linux/init.h>
10#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040011#include <linux/backing-dev.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010012#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040013#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040014#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000016#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080017#include <linux/uio.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050018#include <linux/iversion.h>
Boris Burkov14605402021-06-30 13:01:49 -070019#include <linux/fsverity.h>
Chris Mason39279cc2007-06-12 06:35:45 -040020#include "ctree.h"
21#include "disk-io.h"
22#include "transaction.h"
23#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040024#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040025#include "tree-log.h"
26#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040027#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070028#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080029#include "compression.h"
Josef Bacik86736342019-06-19 15:12:00 -040030#include "delalloc-space.h"
Filipe Manana6a177382020-02-28 13:04:17 +000031#include "reflink.h"
Qu Wenruof02a85d2021-05-31 16:50:41 +080032#include "subpage.h"
Chris Mason39279cc2007-06-12 06:35:45 -040033
Miao Xie9247f312012-11-26 09:24:43 +000034static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040035/*
36 * when auto defrag is enabled we
37 * queue up these defrag structs to remember which
38 * inodes need defragging passes
39 */
40struct inode_defrag {
41 struct rb_node rb_node;
42 /* objectid */
43 u64 ino;
44 /*
45 * transid where the defrag was added, we search for
46 * extents newer than this
47 */
48 u64 transid;
49
50 /* root objectid */
51 u64 root;
52
53 /* last offset we were able to defrag */
54 u64 last_offset;
55
56 /* if we've wrapped around back to zero once already */
57 int cycled;
58};
59
Miao Xie762f2262012-05-24 18:58:27 +080060static int __compare_inode_defrag(struct inode_defrag *defrag1,
61 struct inode_defrag *defrag2)
62{
63 if (defrag1->root > defrag2->root)
64 return 1;
65 else if (defrag1->root < defrag2->root)
66 return -1;
67 else if (defrag1->ino > defrag2->ino)
68 return 1;
69 else if (defrag1->ino < defrag2->ino)
70 return -1;
71 else
72 return 0;
73}
74
Chris Mason4cb53002011-05-24 15:35:30 -040075/* pop a record for an inode into the defrag tree. The lock
76 * must be held already
77 *
78 * If you're inserting a record for an older transid than an
79 * existing record, the transid already in the tree is lowered
80 *
81 * If an existing record is found the defrag item you
82 * pass in is freed
83 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020084static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040085 struct inode_defrag *defrag)
86{
David Sterba3ffbd682018-06-29 10:56:42 +020087 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040088 struct inode_defrag *entry;
89 struct rb_node **p;
90 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080091 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040092
Jeff Mahoney0b246af2016-06-22 18:54:23 -040093 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040094 while (*p) {
95 parent = *p;
96 entry = rb_entry(parent, struct inode_defrag, rb_node);
97
Miao Xie762f2262012-05-24 18:58:27 +080098 ret = __compare_inode_defrag(defrag, entry);
99 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400100 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800101 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400102 p = &parent->rb_right;
103 else {
104 /* if we're reinserting an entry for
105 * an old defrag run, make sure to
106 * lower the transid of our existing record
107 */
108 if (defrag->transid < entry->transid)
109 entry->transid = defrag->transid;
110 if (defrag->last_offset > entry->last_offset)
111 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000112 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400113 }
114 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200115 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400116 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400117 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000118 return 0;
119}
Chris Mason4cb53002011-05-24 15:35:30 -0400120
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400121static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000122{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400123 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000124 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400125
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400126 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000127 return 0;
128
129 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400130}
131
132/*
133 * insert a defrag record for this inode if auto defrag is
134 * enabled
135 */
136int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200137 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400138{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200139 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200140 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400141 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400142 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000143 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400144
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400145 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400146 return 0;
147
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200148 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400149 return 0;
150
151 if (trans)
152 transid = trans->transid;
153 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200154 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400155
Miao Xie9247f312012-11-26 09:24:43 +0000156 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400157 if (!defrag)
158 return -ENOMEM;
159
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200160 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400161 defrag->transid = transid;
162 defrag->root = root->root_key.objectid;
163
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400164 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200165 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000166 /*
167 * If we set IN_DEFRAG flag and evict the inode from memory,
168 * and then re-read this inode, this new inode doesn't have
169 * IN_DEFRAG flag. At the case, we may find the existed defrag.
170 */
171 ret = __btrfs_add_inode_defrag(inode, defrag);
172 if (ret)
173 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
174 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000175 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000176 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400177 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000178 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400179}
180
181/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000182 * Requeue the defrag object. If there is a defrag object that points to
183 * the same inode in the tree, we will merge them together (by
184 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400185 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200186static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000187 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000188{
David Sterba3ffbd682018-06-29 10:56:42 +0200189 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000190 int ret;
191
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400192 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000193 goto out;
194
195 /*
196 * Here we don't check the IN_DEFRAG flag, because we need merge
197 * them together.
198 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400199 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000200 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400201 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000202 if (ret)
203 goto out;
204 return;
205out:
206 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
207}
208
209/*
Miao Xie26176e72012-11-26 09:26:20 +0000210 * pick the defragable inode that we want, if it doesn't exist, we will get
211 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400212 */
Miao Xie26176e72012-11-26 09:26:20 +0000213static struct inode_defrag *
214btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400215{
216 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800217 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400218 struct rb_node *p;
219 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800220 int ret;
221
222 tmp.ino = ino;
223 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400224
Miao Xie26176e72012-11-26 09:26:20 +0000225 spin_lock(&fs_info->defrag_inodes_lock);
226 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400227 while (p) {
228 parent = p;
229 entry = rb_entry(parent, struct inode_defrag, rb_node);
230
Miao Xie762f2262012-05-24 18:58:27 +0800231 ret = __compare_inode_defrag(&tmp, entry);
232 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400233 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800234 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400235 p = parent->rb_right;
236 else
Miao Xie26176e72012-11-26 09:26:20 +0000237 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400238 }
239
Miao Xie26176e72012-11-26 09:26:20 +0000240 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
241 parent = rb_next(parent);
242 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400243 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000244 else
245 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400246 }
Miao Xie26176e72012-11-26 09:26:20 +0000247out:
248 if (entry)
249 rb_erase(parent, &fs_info->defrag_inodes);
250 spin_unlock(&fs_info->defrag_inodes_lock);
251 return entry;
252}
253
254void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
255{
256 struct inode_defrag *defrag;
257 struct rb_node *node;
258
259 spin_lock(&fs_info->defrag_inodes_lock);
260 node = rb_first(&fs_info->defrag_inodes);
261 while (node) {
262 rb_erase(node, &fs_info->defrag_inodes);
263 defrag = rb_entry(node, struct inode_defrag, rb_node);
264 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
265
David Sterba351810c2015-01-08 15:20:54 +0100266 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000267
268 node = rb_first(&fs_info->defrag_inodes);
269 }
270 spin_unlock(&fs_info->defrag_inodes_lock);
271}
272
273#define BTRFS_DEFRAG_BATCH 1024
274
275static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
276 struct inode_defrag *defrag)
277{
278 struct btrfs_root *inode_root;
279 struct inode *inode;
Miao Xie26176e72012-11-26 09:26:20 +0000280 struct btrfs_ioctl_defrag_range_args range;
281 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000282 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000283
284 /* get the inode */
David Sterba56e93572020-05-15 19:35:55 +0200285 inode_root = btrfs_get_fs_root(fs_info, defrag->root, true);
Miao Xie26176e72012-11-26 09:26:20 +0000286 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000287 ret = PTR_ERR(inode_root);
288 goto cleanup;
289 }
Miao Xie26176e72012-11-26 09:26:20 +0000290
David Sterba0202e832020-05-15 19:35:59 +0200291 inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root);
Josef Bacik00246522020-01-24 09:33:01 -0500292 btrfs_put_root(inode_root);
Miao Xie26176e72012-11-26 09:26:20 +0000293 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000294 ret = PTR_ERR(inode);
295 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000296 }
297
298 /* do a chunk of defrag */
299 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
300 memset(&range, 0, sizeof(range));
301 range.len = (u64)-1;
302 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000303
304 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000305 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
306 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000307 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000308 /*
309 * if we filled the whole defrag batch, there
310 * must be more work to do. Queue this defrag
311 * again
312 */
313 if (num_defrag == BTRFS_DEFRAG_BATCH) {
314 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200315 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000316 } else if (defrag->last_offset && !defrag->cycled) {
317 /*
318 * we didn't fill our defrag batch, but
319 * we didn't start at zero. Make sure we loop
320 * around to the start of the file.
321 */
322 defrag->last_offset = 0;
323 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200324 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000325 } else {
326 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
327 }
328
329 iput(inode);
330 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000331cleanup:
Liu Bo6f1c3602013-01-29 03:22:10 +0000332 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
333 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400334}
335
336/*
337 * run through the list of inodes in the FS that need
338 * defragging
339 */
340int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
341{
342 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400343 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800344 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400345
346 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530347 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700348 /* Pause the auto defragger. */
349 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
350 &fs_info->fs_state))
351 break;
352
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400353 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000354 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400355
356 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000357 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
358 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400359 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000360 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800361 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400362 first_ino = 0;
363 continue;
364 } else {
365 break;
366 }
367 }
368
Chris Mason4cb53002011-05-24 15:35:30 -0400369 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800370 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400371
Miao Xie26176e72012-11-26 09:26:20 +0000372 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400373 }
Chris Mason4cb53002011-05-24 15:35:30 -0400374 atomic_dec(&fs_info->defrag_running);
375
376 /*
377 * during unmount, we use the transaction_wait queue to
378 * wait for the defragger to stop
379 */
380 wake_up(&fs_info->transaction_wait);
381 return 0;
382}
Chris Mason39279cc2007-06-12 06:35:45 -0400383
Chris Masond352ac62008-09-29 15:18:18 -0400384/* simple helper to fault in pages and copy. This should go away
385 * and be replaced with calls into generic code.
386 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800387static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400388 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400389 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400390{
Xin Zhong914ee292010-12-09 09:30:14 +0000391 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500392 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400393 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100394 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400395
Josef Bacik11c65dc2010-05-23 11:07:21 -0400396 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400397 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300398 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400399 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000400 /*
401 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000402 */
Al Virof0b65f32021-04-30 10:26:41 -0400403 copied = copy_page_from_iter_atomic(page, offset, count, i);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400404
Chris Mason39279cc2007-06-12 06:35:45 -0400405 /* Flush processor's dcache for this page */
406 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500407
408 /*
409 * if we get a partial write, we can end up with
410 * partially up to date pages. These add
411 * a lot of complexity, so make sure they don't
412 * happen by forcing this copy to be retried.
413 *
414 * The rest of the btrfs_file_write code will fall
415 * back to page at a time copies after we return 0.
416 */
Al Virof0b65f32021-04-30 10:26:41 -0400417 if (unlikely(copied < count)) {
418 if (!PageUptodate(page)) {
419 iov_iter_revert(i, copied);
420 copied = 0;
421 }
422 if (!copied)
423 break;
424 }
Chris Mason31339ac2011-03-07 11:10:24 -0500425
Josef Bacik11c65dc2010-05-23 11:07:21 -0400426 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000427 total_copied += copied;
Al Virof0b65f32021-04-30 10:26:41 -0400428 offset += copied;
429 if (offset == PAGE_SIZE) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400430 pg++;
431 offset = 0;
432 }
Chris Mason39279cc2007-06-12 06:35:45 -0400433 }
Xin Zhong914ee292010-12-09 09:30:14 +0000434 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400435}
436
Chris Masond352ac62008-09-29 15:18:18 -0400437/*
438 * unlocks pages after btrfs_file_write is done with them
439 */
Qu Wenruoe4f94342021-09-27 15:21:49 +0800440static void btrfs_drop_pages(struct btrfs_fs_info *fs_info,
441 struct page **pages, size_t num_pages,
442 u64 pos, u64 copied)
Chris Mason39279cc2007-06-12 06:35:45 -0400443{
444 size_t i;
Qu Wenruoe4f94342021-09-27 15:21:49 +0800445 u64 block_start = round_down(pos, fs_info->sectorsize);
446 u64 block_len = round_up(pos + copied, fs_info->sectorsize) - block_start;
447
448 ASSERT(block_len <= U32_MAX);
Chris Mason39279cc2007-06-12 06:35:45 -0400449 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400450 /* page checked is some magic around finding pages that
451 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700452 * clear it here. There should be no need to mark the pages
453 * accessed as prepare_pages should have marked them accessed
454 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400455 */
Qu Wenruoe4f94342021-09-27 15:21:49 +0800456 btrfs_page_clamp_clear_checked(fs_info, pages[i], block_start,
457 block_len);
Chris Mason39279cc2007-06-12 06:35:45 -0400458 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300459 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400460 }
461}
462
Chris Masond352ac62008-09-29 15:18:18 -0400463/*
Qu Wenruoc0fab482021-01-06 09:01:42 +0800464 * After btrfs_copy_from_user(), update the following things for delalloc:
465 * - Mark newly dirtied pages as DELALLOC in the io tree.
466 * Used to advise which range is to be written back.
467 * - Mark modified pages as Uptodate/Dirty and not needing COW fixup
468 * - Update inode size for past EOF write
Chris Masond352ac62008-09-29 15:18:18 -0400469 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300470int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400471 size_t num_pages, loff_t pos, size_t write_bytes,
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500472 struct extent_state **cached, bool noreserve)
Chris Mason39279cc2007-06-12 06:35:45 -0400473{
Nikolay Borisov088545f2020-06-03 08:55:36 +0300474 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400475 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400476 int i;
Chris Masondb945352007-10-15 16:15:53 -0400477 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400478 u64 start_pos;
479 u64 end_of_last_block;
480 u64 end_pos = pos + write_bytes;
Nikolay Borisov088545f2020-06-03 08:55:36 +0300481 loff_t isize = i_size_read(&inode->vfs_inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000482 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400483
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500484 if (write_bytes == 0)
485 return 0;
486
487 if (noreserve)
488 extra_bits |= EXTENT_NORESERVE;
489
Goldwyn Rodrigues13f0dd82020-10-14 09:55:44 -0500490 start_pos = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400491 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400492 fs_info->sectorsize);
Qu Wenruof02a85d2021-05-31 16:50:41 +0800493 ASSERT(num_bytes <= U32_MAX);
Chris Mason39279cc2007-06-12 06:35:45 -0400494
Chris Masondb945352007-10-15 16:15:53 -0400495 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000496
Chris Mason7703bdd2018-06-20 07:56:11 -0700497 /*
498 * The pages may have already been dirty, clear out old accounting so
499 * we can set things up properly
500 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300501 clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700502 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
503 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700504
Nikolay Borisov088545f2020-06-03 08:55:36 +0300505 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300506 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500507 if (err)
508 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400509
Chris Masonc8b97812008-10-29 14:49:59 -0400510 for (i = 0; i < num_pages; i++) {
511 struct page *p = pages[i];
Qu Wenruof02a85d2021-05-31 16:50:41 +0800512
513 btrfs_page_clamp_set_uptodate(fs_info, p, start_pos, num_bytes);
Qu Wenruoe4f94342021-09-27 15:21:49 +0800514 btrfs_page_clamp_clear_checked(fs_info, p, start_pos, num_bytes);
Qu Wenruof02a85d2021-05-31 16:50:41 +0800515 btrfs_page_clamp_set_dirty(fs_info, p, start_pos, num_bytes);
Chris Masona52d9a82007-08-27 16:49:44 -0400516 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500517
518 /*
519 * we've only changed i_size in ram, and we haven't updated
520 * the disk i_size. There is no need to log the inode
521 * at this time.
522 */
523 if (end_pos > isize)
Nikolay Borisov088545f2020-06-03 08:55:36 +0300524 i_size_write(&inode->vfs_inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400525 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400526}
527
Chris Masond352ac62008-09-29 15:18:18 -0400528/*
529 * this drops all the extents in the cache that intersect the range
530 * [start, end]. Existing extents are split as required.
531 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200532void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400533 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400534{
535 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400536 struct extent_map *split = NULL;
537 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200538 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500539 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400540 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400541 int ret;
542 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400543 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400544 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400545 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400546
Chris Masone6dcd2d2008-07-17 12:53:50 -0400547 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400548 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500549 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400550 testend = 0;
551 }
Chris Masond3977122009-01-05 21:25:51 -0500552 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400553 int no_splits = 0;
554
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400555 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400556 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200557 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400558 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200559 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400560 if (!split || !split2)
561 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400562
Chris Mason890871b2009-09-02 16:24:52 -0400563 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500564 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500565 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400566 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400567 break;
Chris Masond1310b22008-01-24 16:13:08 -0500568 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400569 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400570 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400571 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000572 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400573 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400574 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400575 break;
576 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000577 start = em->start + em->len;
578 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400579 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400580 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400581 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400582 continue;
583 }
Chris Masonc8b97812008-10-29 14:49:59 -0400584 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400585 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600586 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400587 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400588 if (no_splits)
589 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400590
Josef Bacikee20a982013-07-11 10:34:59 -0400591 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400592 split->start = em->start;
593 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400594
Josef Bacikee20a982013-07-11 10:34:59 -0400595 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
596 split->orig_start = em->orig_start;
597 split->block_start = em->block_start;
598
599 if (compressed)
600 split->block_len = em->block_len;
601 else
602 split->block_len = split->len;
603 split->orig_block_len = max(split->block_len,
604 em->orig_block_len);
605 split->ram_bytes = em->ram_bytes;
606 } else {
607 split->orig_start = split->start;
608 split->block_len = 0;
609 split->block_start = em->block_start;
610 split->orig_block_len = 0;
611 split->ram_bytes = split->len;
612 }
613
Josef Bacik5dc562c2012-08-17 13:14:17 -0400614 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400615 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800616 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000617 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400618 free_extent_map(split);
619 split = split2;
620 split2 = NULL;
621 }
Josef Bacikee20a982013-07-11 10:34:59 -0400622 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400623 u64 diff = start + len - em->start;
624
625 split->start = start + len;
626 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400627 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800628 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400629 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400630
Josef Bacikee20a982013-07-11 10:34:59 -0400631 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
632 split->orig_block_len = max(em->block_len,
633 em->orig_block_len);
634
635 split->ram_bytes = em->ram_bytes;
636 if (compressed) {
637 split->block_len = em->block_len;
638 split->block_start = em->block_start;
639 split->orig_start = em->orig_start;
640 } else {
641 split->block_len = split->len;
642 split->block_start = em->block_start
643 + diff;
644 split->orig_start = em->orig_start;
645 }
Chris Masonc8b97812008-10-29 14:49:59 -0400646 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400647 split->ram_bytes = split->len;
648 split->orig_start = split->start;
649 split->block_len = 0;
650 split->block_start = em->block_start;
651 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400652 }
Chris Mason3b951512008-04-17 11:29:12 -0400653
Filipe Manana176840b2014-02-25 14:15:13 +0000654 if (extent_map_in_tree(em)) {
655 replace_extent_mapping(em_tree, em, split,
656 modified);
657 } else {
658 ret = add_extent_mapping(em_tree, split,
659 modified);
660 ASSERT(ret == 0); /* Logic error */
661 }
Chris Mason3b951512008-04-17 11:29:12 -0400662 free_extent_map(split);
663 split = NULL;
664 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400665next:
Filipe Manana176840b2014-02-25 14:15:13 +0000666 if (extent_map_in_tree(em))
667 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400668 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500669
Chris Masona52d9a82007-08-27 16:49:44 -0400670 /* once for us */
671 free_extent_map(em);
672 /* once for the tree*/
673 free_extent_map(em);
674 }
Chris Mason3b951512008-04-17 11:29:12 -0400675 if (split)
676 free_extent_map(split);
677 if (split2)
678 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400679}
680
Chris Mason39279cc2007-06-12 06:35:45 -0400681/*
682 * this is very complex, but the basic idea is to drop all extents
683 * in the range start - end. hint_block is filled in with a block number
684 * that would be a good hint to the block allocator for this file.
685 *
686 * If an extent intersects the range but is not entirely inside the range
687 * it is either truncated or split. Anything entirely inside the range
688 * is deleted from the tree.
Filipe Manana2766ff62020-11-04 11:07:34 +0000689 *
690 * Note: the VFS' inode number of bytes is not updated, it's up to the caller
691 * to deal with that. We set the field 'bytes_found' of the arguments structure
692 * with the number of allocated bytes found in the target range, so that the
693 * caller can update the inode's number of bytes in an atomic way when
694 * replacing extents in a range to avoid races with stat(2).
Chris Mason39279cc2007-06-12 06:35:45 -0400695 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000696int btrfs_drop_extents(struct btrfs_trans_handle *trans,
697 struct btrfs_root *root, struct btrfs_inode *inode,
698 struct btrfs_drop_extents_args *args)
Chris Mason39279cc2007-06-12 06:35:45 -0400699{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400700 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500701 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000702 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800703 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500704 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000705 struct btrfs_key new_key;
Nikolay Borisov906c4482020-06-03 08:55:08 +0300706 u64 ino = btrfs_ino(inode);
Filipe Manana5893dfb2020-11-04 11:07:32 +0000707 u64 search_start = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000708 u64 disk_bytenr = 0;
709 u64 num_bytes = 0;
710 u64 extent_offset = 0;
711 u64 extent_end = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000712 u64 last_end = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000713 int del_nr = 0;
714 int del_slot = 0;
715 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400716 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500717 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400718 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800719 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400720 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000721 int leafs_visited = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000722 struct btrfs_path *path = args->path;
Chris Mason39279cc2007-06-12 06:35:45 -0400723
Filipe Manana2766ff62020-11-04 11:07:34 +0000724 args->bytes_found = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000725 args->extent_inserted = false;
Chris Masona52d9a82007-08-27 16:49:44 -0400726
Filipe Manana5893dfb2020-11-04 11:07:32 +0000727 /* Must always have a path if ->replace_extent is true */
728 ASSERT(!(args->replace_extent && !args->path));
729
730 if (!path) {
731 path = btrfs_alloc_path();
732 if (!path) {
733 ret = -ENOMEM;
734 goto out;
735 }
736 }
737
738 if (args->drop_cache)
739 btrfs_drop_extent_cache(inode, args->start, args->end - 1, 0);
740
741 if (args->start >= inode->disk_i_size && !args->replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400742 modify_tree = 0;
743
Josef Bacikd1752092021-10-01 13:57:18 -0400744 update_refs = (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID);
Chris Masond3977122009-01-05 21:25:51 -0500745 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400746 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800747 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400748 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400749 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000750 break;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000751 if (ret > 0 && path->slots[0] > 0 && search_start == args->start) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000752 leaf = path->nodes[0];
753 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800754 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000755 key.type == BTRFS_EXTENT_DATA_KEY)
756 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400757 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400758 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000759 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000760next_slot:
761 leaf = path->nodes[0];
762 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
763 BUG_ON(del_nr > 0);
764 ret = btrfs_next_leaf(root, path);
765 if (ret < 0)
766 break;
767 if (ret > 0) {
768 ret = 0;
769 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400770 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000771 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000772 leaf = path->nodes[0];
773 recow = 1;
774 }
775
776 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000777
778 if (key.objectid > ino)
779 break;
780 if (WARN_ON_ONCE(key.objectid < ino) ||
781 key.type < BTRFS_EXTENT_DATA_KEY) {
782 ASSERT(del_nr == 0);
783 path->slots[0]++;
784 goto next_slot;
785 }
Filipe Manana5893dfb2020-11-04 11:07:32 +0000786 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= args->end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000787 break;
788
789 fi = btrfs_item_ptr(leaf, path->slots[0],
790 struct btrfs_file_extent_item);
791 extent_type = btrfs_file_extent_type(leaf, fi);
792
793 if (extent_type == BTRFS_FILE_EXTENT_REG ||
794 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
795 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
796 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
797 extent_offset = btrfs_file_extent_offset(leaf, fi);
798 extent_end = key.offset +
799 btrfs_file_extent_num_bytes(leaf, fi);
800 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
801 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800802 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400803 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000804 /* can't happen */
805 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400806 }
807
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100808 /*
809 * Don't skip extent items representing 0 byte lengths. They
810 * used to be created (bug) if while punching holes we hit
811 * -ENOSPC condition. So if we find one here, just ensure we
812 * delete it, otherwise we would insert a new file extent item
813 * with the same key (offset) as that 0 bytes length file
814 * extent item in the call to setup_items_for_insert() later
815 * in this function.
816 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500817 if (extent_end == key.offset && extent_end >= search_start) {
818 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100819 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500820 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100821
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000822 if (extent_end <= search_start) {
823 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400824 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400825 }
826
Josef Bacikc3308f82012-09-14 14:51:22 -0400827 found = 1;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000828 search_start = max(key.offset, args->start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400829 if (recow || !modify_tree) {
830 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200831 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000832 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400833 }
Chris Mason771ed682008-11-06 22:02:51 -0500834
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000835 /*
836 * | - range to drop - |
837 * | -------- extent -------- |
838 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000839 if (args->start > key.offset && args->end < extent_end) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000840 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800841 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200842 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800843 break;
844 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000845
846 memcpy(&new_key, &key, sizeof(new_key));
Filipe Manana5893dfb2020-11-04 11:07:32 +0000847 new_key.offset = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000848 ret = btrfs_duplicate_item(trans, root, path,
849 &new_key);
850 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200851 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000852 continue;
853 }
854 if (ret < 0)
855 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400856
Chris Mason5f39d392007-10-15 16:14:19 -0400857 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000858 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
859 struct btrfs_file_extent_item);
860 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000861 args->start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400862
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000863 fi = btrfs_item_ptr(leaf, path->slots[0],
864 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400865
Filipe Manana5893dfb2020-11-04 11:07:32 +0000866 extent_offset += args->start - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000867 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
868 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000869 extent_end - args->start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000870 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400871
Josef Bacik5dc562c2012-08-17 13:14:17 -0400872 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800873 btrfs_init_generic_ref(&ref,
874 BTRFS_ADD_DELAYED_REF,
875 disk_bytenr, num_bytes, 0);
876 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000877 root->root_key.objectid,
878 new_key.objectid,
Nikolay Borisovf42c5da2021-10-12 11:21:35 +0300879 args->start - extent_offset,
880 0, false);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800881 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100882 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400883 }
Filipe Manana5893dfb2020-11-04 11:07:32 +0000884 key.offset = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000885 }
886 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500887 * From here on out we will have actually dropped something, so
888 * last_end can be updated.
889 */
890 last_end = extent_end;
891
892 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893 * | ---- range to drop ----- |
894 * | -------- extent -------- |
895 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000896 if (args->start <= key.offset && args->end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800897 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200898 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800899 break;
900 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000901
902 memcpy(&new_key, &key, sizeof(new_key));
Filipe Manana5893dfb2020-11-04 11:07:32 +0000903 new_key.offset = args->end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400904 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000905
Filipe Manana5893dfb2020-11-04 11:07:32 +0000906 extent_offset += args->end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000907 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
908 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000909 extent_end - args->end);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000910 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400911 if (update_refs && disk_bytenr > 0)
Filipe Manana2766ff62020-11-04 11:07:34 +0000912 args->bytes_found += args->end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000913 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400914 }
915
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000916 search_start = extent_end;
917 /*
918 * | ---- range to drop ----- |
919 * | -------- extent -------- |
920 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000921 if (args->start > key.offset && args->end >= extent_end) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000922 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800923 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200924 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800925 break;
926 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000927
928 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000929 args->start - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000930 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400931 if (update_refs && disk_bytenr > 0)
Filipe Manana2766ff62020-11-04 11:07:34 +0000932 args->bytes_found += extent_end - args->start;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000933 if (args->end == extent_end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000934 break;
935
936 path->slots[0]++;
937 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400938 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000939
940 /*
941 * | ---- range to drop ----- |
942 * | ------ extent ------ |
943 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000944 if (args->start <= key.offset && args->end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100945delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000946 if (del_nr == 0) {
947 del_slot = path->slots[0];
948 del_nr = 1;
949 } else {
950 BUG_ON(del_slot + del_nr != path->slots[0]);
951 del_nr++;
952 }
953
Josef Bacik5dc562c2012-08-17 13:14:17 -0400954 if (update_refs &&
955 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Filipe Manana2766ff62020-11-04 11:07:34 +0000956 args->bytes_found += extent_end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000957 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400958 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400959 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800960 btrfs_init_generic_ref(&ref,
961 BTRFS_DROP_DELAYED_REF,
962 disk_bytenr, num_bytes, 0);
963 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000964 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800965 key.objectid,
Nikolay Borisovf42c5da2021-10-12 11:21:35 +0300966 key.offset - extent_offset, 0,
967 false);
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800968 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100969 BUG_ON(ret); /* -ENOMEM */
Filipe Manana2766ff62020-11-04 11:07:34 +0000970 args->bytes_found += extent_end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000971 }
972
Filipe Manana5893dfb2020-11-04 11:07:32 +0000973 if (args->end == extent_end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000974 break;
975
976 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
977 path->slots[0]++;
978 goto next_slot;
979 }
980
981 ret = btrfs_del_items(trans, root, path, del_slot,
982 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100983 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400984 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400985 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100986 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000987
988 del_nr = 0;
989 del_slot = 0;
990
David Sterbab3b4aa72011-04-21 01:20:15 +0200991 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000992 continue;
993 }
994
Arnd Bergmann290342f2019-03-25 14:02:25 +0100995 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400996 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000997
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100998 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000999 /*
1000 * Set path->slots[0] to first slot, so that after the delete
1001 * if items are move off from our leaf to its immediate left or
1002 * right neighbor leafs, we end up with a correct and adjusted
Filipe Manana5893dfb2020-11-04 11:07:32 +00001003 * path->slots[0] for our insertion (if args->replace_extent).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001004 */
1005 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001006 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001007 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001008 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001009 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001010
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001011 leaf = path->nodes[0];
1012 /*
1013 * If btrfs_del_items() was called, it might have deleted a leaf, in
1014 * which case it unlocked our path, so check path->locks[0] matches a
1015 * write lock.
1016 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00001017 if (!ret && args->replace_extent && leafs_visited == 1 &&
Josef Bacikac5887c2020-08-20 11:46:10 -04001018 path->locks[0] == BTRFS_WRITE_LOCK &&
David Sterbae902baa2019-03-20 14:36:46 +01001019 btrfs_leaf_free_space(leaf) >=
Filipe Manana5893dfb2020-11-04 11:07:32 +00001020 sizeof(struct btrfs_item) + args->extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001021
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001022 key.objectid = ino;
1023 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana5893dfb2020-11-04 11:07:32 +00001024 key.offset = args->start;
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001025 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1026 struct btrfs_key slot_key;
1027
1028 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1029 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1030 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001031 }
Filipe Mananaf0641652021-09-24 12:28:14 +01001032 btrfs_setup_item_for_insert(root, path, &key, args->extent_item_size);
Filipe Manana5893dfb2020-11-04 11:07:32 +00001033 args->extent_inserted = true;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001034 }
1035
Filipe Manana5893dfb2020-11-04 11:07:32 +00001036 if (!args->path)
1037 btrfs_free_path(path);
1038 else if (!args->extent_inserted)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001039 btrfs_release_path(path);
Filipe Manana5893dfb2020-11-04 11:07:32 +00001040out:
1041 args->drop_end = found ? min(args->end, last_end) : args->end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001042
Chris Mason39279cc2007-06-12 06:35:45 -04001043 return ret;
1044}
1045
Yan Zhengd899e052008-10-30 14:25:28 -04001046static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001047 u64 objectid, u64 bytenr, u64 orig_offset,
1048 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001049{
1050 struct btrfs_file_extent_item *fi;
1051 struct btrfs_key key;
1052 u64 extent_end;
1053
1054 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1055 return 0;
1056
1057 btrfs_item_key_to_cpu(leaf, &key, slot);
1058 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1059 return 0;
1060
1061 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1062 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1063 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001064 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001065 btrfs_file_extent_compression(leaf, fi) ||
1066 btrfs_file_extent_encryption(leaf, fi) ||
1067 btrfs_file_extent_other_encoding(leaf, fi))
1068 return 0;
1069
1070 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1071 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1072 return 0;
1073
1074 *start = key.offset;
1075 *end = extent_end;
1076 return 1;
1077}
1078
1079/*
1080 * Mark extent in the range start - end as written.
1081 *
1082 * This changes extent type from 'pre-allocated' to 'regular'. If only
1083 * part of extent is marked as written, the extent will be split into
1084 * two or three.
1085 */
1086int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001087 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001088{
David Sterba3ffbd682018-06-29 10:56:42 +02001089 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001090 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001091 struct extent_buffer *leaf;
1092 struct btrfs_path *path;
1093 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001094 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001095 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001096 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001097 u64 bytenr;
1098 u64 num_bytes;
1099 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001100 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001101 u64 other_start;
1102 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001103 u64 split;
1104 int del_nr = 0;
1105 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001106 int recow;
Ritesh Harjanie7b2ec32021-05-30 20:24:05 +05301107 int ret = 0;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001108 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001109
Yan Zhengd899e052008-10-30 14:25:28 -04001110 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001111 if (!path)
1112 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001113again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001114 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001115 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001116 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001117 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001118 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001119
1120 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001121 if (ret < 0)
1122 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001123 if (ret > 0 && path->slots[0] > 0)
1124 path->slots[0]--;
1125
1126 leaf = path->nodes[0];
1127 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001128 if (key.objectid != ino ||
1129 key.type != BTRFS_EXTENT_DATA_KEY) {
1130 ret = -EINVAL;
1131 btrfs_abort_transaction(trans, ret);
1132 goto out;
1133 }
Yan Zhengd899e052008-10-30 14:25:28 -04001134 fi = btrfs_item_ptr(leaf, path->slots[0],
1135 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001136 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1137 ret = -EINVAL;
1138 btrfs_abort_transaction(trans, ret);
1139 goto out;
1140 }
Yan Zhengd899e052008-10-30 14:25:28 -04001141 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001142 if (key.offset > start || extent_end < end) {
1143 ret = -EINVAL;
1144 btrfs_abort_transaction(trans, ret);
1145 goto out;
1146 }
Yan Zhengd899e052008-10-30 14:25:28 -04001147
1148 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1149 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001150 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001151 memcpy(&new_key, &key, sizeof(new_key));
1152
1153 if (start == key.offset && end < extent_end) {
1154 other_start = 0;
1155 other_end = start;
1156 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001157 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001158 &other_start, &other_end)) {
1159 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001160 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001161 fi = btrfs_item_ptr(leaf, path->slots[0],
1162 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001163 btrfs_set_file_extent_generation(leaf, fi,
1164 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001165 btrfs_set_file_extent_num_bytes(leaf, fi,
1166 extent_end - end);
1167 btrfs_set_file_extent_offset(leaf, fi,
1168 end - orig_offset);
1169 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1170 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001171 btrfs_set_file_extent_generation(leaf, fi,
1172 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001173 btrfs_set_file_extent_num_bytes(leaf, fi,
1174 end - other_start);
1175 btrfs_mark_buffer_dirty(leaf);
1176 goto out;
1177 }
1178 }
1179
1180 if (start > key.offset && end == extent_end) {
1181 other_start = end;
1182 other_end = 0;
1183 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001184 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001185 &other_start, &other_end)) {
1186 fi = btrfs_item_ptr(leaf, path->slots[0],
1187 struct btrfs_file_extent_item);
1188 btrfs_set_file_extent_num_bytes(leaf, fi,
1189 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001190 btrfs_set_file_extent_generation(leaf, fi,
1191 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001192 path->slots[0]++;
1193 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001194 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001195
1196 fi = btrfs_item_ptr(leaf, path->slots[0],
1197 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001198 btrfs_set_file_extent_generation(leaf, fi,
1199 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001200 btrfs_set_file_extent_num_bytes(leaf, fi,
1201 other_end - start);
1202 btrfs_set_file_extent_offset(leaf, fi,
1203 start - orig_offset);
1204 btrfs_mark_buffer_dirty(leaf);
1205 goto out;
1206 }
1207 }
Yan Zhengd899e052008-10-30 14:25:28 -04001208
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001209 while (start > key.offset || end < extent_end) {
1210 if (key.offset == start)
1211 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001212
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001213 new_key.offset = split;
1214 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1215 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001216 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001217 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001218 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001219 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001220 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001221 goto out;
1222 }
Yan Zhengd899e052008-10-30 14:25:28 -04001223
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001224 leaf = path->nodes[0];
1225 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001226 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001227 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001228 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001229 split - key.offset);
1230
1231 fi = btrfs_item_ptr(leaf, path->slots[0],
1232 struct btrfs_file_extent_item);
1233
Josef Bacik224ecce2012-08-16 16:32:06 -04001234 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001235 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1236 btrfs_set_file_extent_num_bytes(leaf, fi,
1237 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001238 btrfs_mark_buffer_dirty(leaf);
1239
Qu Wenruo82fa1132019-04-04 14:45:35 +08001240 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1241 num_bytes, 0);
1242 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
Nikolay Borisovf42c5da2021-10-12 11:21:35 +03001243 orig_offset, 0, false);
Qu Wenruo82fa1132019-04-04 14:45:35 +08001244 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001245 if (ret) {
1246 btrfs_abort_transaction(trans, ret);
1247 goto out;
1248 }
Yan Zhengd899e052008-10-30 14:25:28 -04001249
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001250 if (split == start) {
1251 key.offset = start;
1252 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001253 if (start != key.offset) {
1254 ret = -EINVAL;
1255 btrfs_abort_transaction(trans, ret);
1256 goto out;
1257 }
Yan Zhengd899e052008-10-30 14:25:28 -04001258 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001259 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001260 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001261 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001262 }
1263
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001264 other_start = end;
1265 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001266 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1267 num_bytes, 0);
Nikolay Borisovf42c5da2021-10-12 11:21:35 +03001268 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset,
1269 0, false);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001270 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001271 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001272 &other_start, &other_end)) {
1273 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001275 goto again;
1276 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001277 extent_end = other_end;
1278 del_slot = path->slots[0] + 1;
1279 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001280 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001281 if (ret) {
1282 btrfs_abort_transaction(trans, ret);
1283 goto out;
1284 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001285 }
1286 other_start = 0;
1287 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001288 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001289 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001290 &other_start, &other_end)) {
1291 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001292 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001293 goto again;
1294 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001295 key.offset = other_start;
1296 del_slot = path->slots[0];
1297 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001298 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001299 if (ret) {
1300 btrfs_abort_transaction(trans, ret);
1301 goto out;
1302 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001303 }
1304 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001305 fi = btrfs_item_ptr(leaf, path->slots[0],
1306 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001307 btrfs_set_file_extent_type(leaf, fi,
1308 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001309 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001310 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001311 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001312 fi = btrfs_item_ptr(leaf, del_slot - 1,
1313 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001314 btrfs_set_file_extent_type(leaf, fi,
1315 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001316 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001317 btrfs_set_file_extent_num_bytes(leaf, fi,
1318 extent_end - key.offset);
1319 btrfs_mark_buffer_dirty(leaf);
1320
1321 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001322 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001323 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001324 goto out;
1325 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001326 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001327out:
Yan Zhengd899e052008-10-30 14:25:28 -04001328 btrfs_free_path(path);
Ritesh Harjanie7b2ec32021-05-30 20:24:05 +05301329 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001330}
1331
Chris Mason39279cc2007-06-12 06:35:45 -04001332/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001333 * on error we return an unlocked page and the error value
1334 * on success we return a locked page and 0
1335 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001336static int prepare_uptodate_page(struct inode *inode,
1337 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001338 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001339{
1340 int ret = 0;
1341
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001342 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001343 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001344 ret = btrfs_readpage(NULL, page);
1345 if (ret)
1346 return ret;
1347 lock_page(page);
1348 if (!PageUptodate(page)) {
1349 unlock_page(page);
1350 return -EIO;
1351 }
Qu Wenruoe0467862021-07-26 14:35:02 +08001352
1353 /*
1354 * Since btrfs_readpage() will unlock the page before it
Qu Wenruo7c11d0a2021-07-26 14:35:03 +08001355 * returns, there is a window where btrfs_releasepage() can be
1356 * called to release the page. Here we check both inode
1357 * mapping and PagePrivate() to make sure the page was not
1358 * released.
Qu Wenruoe0467862021-07-26 14:35:02 +08001359 *
1360 * The private flag check is essential for subpage as we need
1361 * to store extra bitmap using page->private.
1362 */
1363 if (page->mapping != inode->i_mapping || !PagePrivate(page)) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001364 unlock_page(page);
1365 return -EAGAIN;
1366 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001367 }
1368 return 0;
1369}
1370
1371/*
Miao Xie376cc682013-12-10 19:25:04 +08001372 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001373 */
Miao Xieb37392e2013-12-10 19:25:03 +08001374static noinline int prepare_pages(struct inode *inode, struct page **pages,
1375 size_t num_pages, loff_t pos,
1376 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001377{
1378 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001379 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001380 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001381 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001382 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001383
Chris Mason39279cc2007-06-12 06:35:45 -04001384 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001385again:
Josef Bacika94733d2011-07-11 10:47:06 -04001386 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001387 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001388 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001389 faili = i - 1;
1390 err = -ENOMEM;
1391 goto fail;
1392 }
1393
Qu Wenruo32443de2021-01-26 16:34:00 +08001394 err = set_page_extent_mapped(pages[i]);
1395 if (err < 0) {
1396 faili = i;
1397 goto fail;
1398 }
1399
Chris Masonb1bf8622011-02-28 09:52:08 -05001400 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001401 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001402 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001403 if (!err && i == num_pages - 1)
1404 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001405 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001406 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001407 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001408 if (err == -EAGAIN) {
1409 err = 0;
1410 goto again;
1411 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001412 faili = i - 1;
1413 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001414 }
Chris Masonccd467d2007-06-28 15:57:36 -04001415 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001416 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001417
Chris Mason39279cc2007-06-12 06:35:45 -04001418 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001419fail:
1420 while (faili >= 0) {
1421 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001422 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001423 faili--;
1424 }
1425 return err;
1426
Chris Mason39279cc2007-06-12 06:35:45 -04001427}
1428
Miao Xie376cc682013-12-10 19:25:04 +08001429/*
1430 * This function locks the extent and properly waits for data=ordered extents
1431 * to finish before allowing the pages to be modified if need.
1432 *
1433 * The return value:
1434 * 1 - the extent is locked
1435 * 0 - the extent is not locked, and everything is OK
1436 * -EAGAIN - need re-prepare the pages
1437 * the other < 0 number - Something wrong happens
1438 */
1439static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001440lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001441 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301442 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001443 u64 *lockstart, u64 *lockend,
1444 struct extent_state **cached_state)
1445{
David Sterba3ffbd682018-06-29 10:56:42 +02001446 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001447 u64 start_pos;
1448 u64 last_pos;
1449 int i;
1450 int ret = 0;
1451
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001452 start_pos = round_down(pos, fs_info->sectorsize);
Qu Wenruoe21139c2020-08-13 14:33:52 +08001453 last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001454
Filipe Mananae3b8a482017-11-04 00:16:59 +00001455 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001456 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001457
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001458 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1459 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001460 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1461 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001462 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001463 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001464 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001465 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001466 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001467 for (i = 0; i < num_pages; i++) {
1468 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001469 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001470 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001471 btrfs_start_ordered_extent(ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001472 btrfs_put_ordered_extent(ordered);
1473 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001474 }
1475 if (ordered)
1476 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001477
Miao Xie376cc682013-12-10 19:25:04 +08001478 *lockstart = start_pos;
1479 *lockend = last_pos;
1480 ret = 1;
1481 }
1482
Chris Mason7703bdd2018-06-20 07:56:11 -07001483 /*
Qu Wenruo32443de2021-01-26 16:34:00 +08001484 * We should be called after prepare_pages() which should have locked
1485 * all pages in the range.
Chris Mason7703bdd2018-06-20 07:56:11 -07001486 */
Qu Wenruo32443de2021-01-26 16:34:00 +08001487 for (i = 0; i < num_pages; i++)
Miao Xie376cc682013-12-10 19:25:04 +08001488 WARN_ON(!PageLocked(pages[i]));
Miao Xie376cc682013-12-10 19:25:04 +08001489
1490 return ret;
1491}
1492
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001493static int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
1494 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001495{
David Sterba3ffbd682018-06-29 10:56:42 +02001496 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001497 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001498 u64 lockstart, lockend;
1499 u64 num_bytes;
1500 int ret;
1501
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001502 if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)))
1503 return 0;
1504
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001505 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001506 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001507
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001508 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001509 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001510 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001511 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001512
1513 if (nowait) {
1514 struct btrfs_ordered_extent *ordered;
1515
1516 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1517 return -EAGAIN;
1518
1519 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1520 num_bytes);
1521 if (ordered) {
1522 btrfs_put_ordered_extent(ordered);
1523 ret = -EAGAIN;
1524 goto out_unlock;
1525 }
1526 } else {
1527 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1528 lockend, NULL);
1529 }
1530
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001531 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
Boris Burkova84d5d42020-08-18 11:00:05 -07001532 NULL, NULL, NULL, false);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001533 if (ret <= 0) {
1534 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001535 if (!nowait)
1536 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001537 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001538 *write_bytes = min_t(size_t, *write_bytes ,
1539 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001540 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001541out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001542 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001543
1544 return ret;
1545}
1546
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001547static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos,
1548 size_t *write_bytes)
1549{
1550 return check_can_nocow(inode, pos, write_bytes, true);
1551}
1552
1553/*
1554 * Check if we can do nocow write into the range [@pos, @pos + @write_bytes)
1555 *
1556 * @pos: File offset
1557 * @write_bytes: The length to write, will be updated to the nocow writeable
1558 * range
1559 *
1560 * This function will flush ordered extents in the range to ensure proper
1561 * nocow checks.
1562 *
1563 * Return:
1564 * >0 and update @write_bytes if we can do nocow write
1565 * 0 if we can't do nocow write
1566 * -EAGAIN if we can't get the needed lock or there are ordered extents
1567 * for * (nowait == true) case
1568 * <0 if other error happened
1569 *
1570 * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock().
1571 */
1572int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
1573 size_t *write_bytes)
1574{
1575 return check_can_nocow(inode, pos, write_bytes, false);
1576}
1577
1578void btrfs_check_nocow_unlock(struct btrfs_inode *inode)
1579{
1580 btrfs_drew_write_unlock(&inode->root->snapshot_lock);
1581}
1582
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05001583static void update_time_for_write(struct inode *inode)
1584{
1585 struct timespec64 now;
1586
1587 if (IS_NOCMTIME(inode))
1588 return;
1589
1590 now = current_time(inode);
1591 if (!timespec64_equal(&inode->i_mtime, &now))
1592 inode->i_mtime = now;
1593
1594 if (!timespec64_equal(&inode->i_ctime, &now))
1595 inode->i_ctime = now;
1596
1597 if (IS_I_VERSION(inode))
1598 inode_inc_iversion(inode);
1599}
1600
1601static int btrfs_write_check(struct kiocb *iocb, struct iov_iter *from,
1602 size_t count)
1603{
1604 struct file *file = iocb->ki_filp;
1605 struct inode *inode = file_inode(file);
1606 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1607 loff_t pos = iocb->ki_pos;
1608 int ret;
1609 loff_t oldsize;
1610 loff_t start_pos;
1611
1612 if (iocb->ki_flags & IOCB_NOWAIT) {
1613 size_t nocow_bytes = count;
1614
1615 /* We will allocate space in case nodatacow is not set, so bail */
1616 if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes) <= 0)
1617 return -EAGAIN;
1618 /*
1619 * There are holes in the range or parts of the range that must
1620 * be COWed (shared extents, RO block groups, etc), so just bail
1621 * out.
1622 */
1623 if (nocow_bytes < count)
1624 return -EAGAIN;
1625 }
1626
1627 current->backing_dev_info = inode_to_bdi(inode);
1628 ret = file_remove_privs(file);
1629 if (ret)
1630 return ret;
1631
1632 /*
1633 * We reserve space for updating the inode when we reserve space for the
1634 * extent we are going to write, so we will enospc out there. We don't
1635 * need to start yet another transaction to update the inode as we will
1636 * update the inode when we finish writing whatever data we write.
1637 */
1638 update_time_for_write(inode);
1639
1640 start_pos = round_down(pos, fs_info->sectorsize);
1641 oldsize = i_size_read(inode);
1642 if (start_pos > oldsize) {
1643 /* Expand hole size to cover write data, preventing empty gap */
1644 loff_t end_pos = round_up(pos + count, fs_info->sectorsize);
1645
Nikolay Borisovb06359a2020-11-02 16:49:04 +02001646 ret = btrfs_cont_expand(BTRFS_I(inode), oldsize, end_pos);
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05001647 if (ret) {
1648 current->backing_dev_info = NULL;
1649 return ret;
1650 }
1651 }
1652
1653 return 0;
1654}
1655
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001656static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1657 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001658{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001659 struct file *file = iocb->ki_filp;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001660 loff_t pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001661 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001663 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001664 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001665 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001666 u64 lockstart;
1667 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001668 size_t num_written = 0;
1669 int nrptrs;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001670 ssize_t ret;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001671 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001672 bool force_page_uptodate = false;
Goldwyn Rodrigues5e8b9ef2020-09-24 11:39:13 -05001673 loff_t old_isize = i_size_read(inode);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001674 unsigned int ilock_flags = 0;
Chris Masoncb843a62008-10-03 12:30:02 -04001675
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001676 if (iocb->ki_flags & IOCB_NOWAIT)
1677 ilock_flags |= BTRFS_ILOCK_TRY;
1678
1679 ret = btrfs_inode_lock(inode, ilock_flags);
1680 if (ret < 0)
1681 return ret;
1682
1683 ret = generic_write_checks(iocb, i);
1684 if (ret <= 0)
1685 goto out;
1686
1687 ret = btrfs_write_check(iocb, i, ret);
1688 if (ret < 0)
1689 goto out;
1690
1691 pos = iocb->ki_pos;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001692 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1693 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001694 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1695 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001696 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001697 if (!pages) {
1698 ret = -ENOMEM;
1699 goto out;
1700 }
Chris Masonab93dbe2009-10-01 12:29:10 -04001701
Josef Bacikd0215f32011-01-25 14:57:24 -05001702 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001703 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001704 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301705 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001706 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001707 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001708 offset);
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001709 size_t num_pages;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001710 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001711 size_t dirty_pages;
1712 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301713 size_t dirty_sectors;
1714 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001715 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001716
Xin Zhong914ee292010-12-09 09:30:14 +00001717 /*
1718 * Fault pages before locking them in prepare_pages
1719 * to avoid recursive lock
1720 */
Andreas Gruenbachera6294592021-08-02 14:54:16 +02001721 if (unlikely(fault_in_iov_iter_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001722 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001723 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001724 }
1725
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001726 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001727 sector_offset = pos & (fs_info->sectorsize - 1);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001728
Qu Wenruo364ecf32017-02-27 15:10:38 +08001729 extent_changeset_release(data_reserved);
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03001730 ret = btrfs_check_data_free_space(BTRFS_I(inode),
1731 &data_reserved, pos,
Qu Wenruo364ecf32017-02-27 15:10:38 +08001732 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001733 if (ret < 0) {
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001734 /*
1735 * If we don't have to COW at the offset, reserve
1736 * metadata only. write_bytes may get smaller than
1737 * requested here.
1738 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001739 if (btrfs_check_nocow_lock(BTRFS_I(inode), pos,
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001740 &write_bytes) > 0)
Josef Bacikc6887cd2016-03-25 13:26:00 -04001741 only_release_metadata = true;
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001742 else
Josef Bacikc6887cd2016-03-25 13:26:00 -04001743 break;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001744 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001745
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001746 num_pages = DIV_ROUND_UP(write_bytes + offset, PAGE_SIZE);
1747 WARN_ON(num_pages > nrptrs);
1748 reserve_bytes = round_up(write_bytes + sector_offset,
1749 fs_info->sectorsize);
Josef Bacik8b62f872017-10-19 14:15:55 -04001750 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001751 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1752 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001753 if (ret) {
1754 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03001755 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001756 data_reserved, pos,
1757 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001758 else
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001759 btrfs_check_nocow_unlock(BTRFS_I(inode));
Josef Bacik7ee9e442013-06-21 16:37:03 -04001760 break;
1761 }
1762
1763 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001764again:
Josef Bacik4a640012011-01-25 15:10:08 -05001765 /*
1766 * This is going to setup the pages array with the number of
1767 * pages we want, so we don't really need to worry about the
1768 * contents of pages from loop to loop
1769 */
Miao Xieb37392e2013-12-10 19:25:03 +08001770 ret = prepare_pages(inode, pages, num_pages,
1771 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001772 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001773 if (ret) {
1774 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001775 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001776 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001777 }
Chris Mason39279cc2007-06-12 06:35:45 -04001778
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001779 extents_locked = lock_and_cleanup_extent_if_need(
1780 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001781 num_pages, pos, write_bytes, &lockstart,
1782 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001783 if (extents_locked < 0) {
1784 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001785 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001786 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001787 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001788 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001789 break;
Miao Xie376cc682013-12-10 19:25:04 +08001790 }
1791
Zhao Leiee22f0c2016-01-06 18:47:31 +08001792 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001793
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001794 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001795 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001796 fs_info->sectorsize);
1797 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001798
Chris Masonb1bf8622011-02-28 09:52:08 -05001799 /*
1800 * if we have trouble faulting in the pages, fall
1801 * back to one page at a time
1802 */
1803 if (copied < write_bytes)
1804 nrptrs = 1;
1805
Josef Bacikb63164292011-09-30 15:23:54 -04001806 if (copied == 0) {
1807 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001808 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001809 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001810 } else {
1811 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001812 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001813 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001814 }
Xin Zhong914ee292010-12-09 09:30:14 +00001815
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301816 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001817 /* release everything except the sectors we dirtied */
David Sterba265fdfa2020-07-01 21:19:09 +02001818 release_bytes -= dirty_sectors << fs_info->sectorsize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001819 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001820 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001821 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001822 } else {
1823 u64 __pos;
1824
Jeff Mahoneyda170662016-06-15 09:22:56 -04001825 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001826 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001827 (dirty_pages << PAGE_SHIFT);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001828 btrfs_delalloc_release_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001829 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001830 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001831 }
Xin Zhong914ee292010-12-09 09:30:14 +00001832 }
1833
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301834 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001835 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001836
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -05001837 ret = btrfs_dirty_pages(BTRFS_I(inode), pages,
1838 dirty_pages, pos, copied,
1839 &cached_state, only_release_metadata);
Filipe Mananac67d9702019-09-30 10:20:25 +01001840
1841 /*
1842 * If we have not locked the extent range, because the range's
1843 * start offset is >= i_size, we might still have a non-NULL
1844 * cached extent state, acquired while marking the extent range
1845 * as delalloc through btrfs_dirty_pages(). Therefore free any
1846 * possible cached extent state to avoid a memory leak.
1847 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001848 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001849 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001850 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001851 else
1852 free_extent_state(cached_state);
1853
Qu Wenruo8702ba92019-10-14 14:34:51 +08001854 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001855 if (ret) {
Qu Wenruoe4f94342021-09-27 15:21:49 +08001856 btrfs_drop_pages(fs_info, pages, num_pages, pos, copied);
Miao Xie376cc682013-12-10 19:25:04 +08001857 break;
Miao Xief1de9682014-01-09 10:06:10 +08001858 }
Chris Mason39279cc2007-06-12 06:35:45 -04001859
Josef Bacik7ee9e442013-06-21 16:37:03 -04001860 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001861 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001862 btrfs_check_nocow_unlock(BTRFS_I(inode));
Miao Xie8257b2d2014-03-06 13:38:19 +08001863
Qu Wenruoe4f94342021-09-27 15:21:49 +08001864 btrfs_drop_pages(fs_info, pages, num_pages, pos, copied);
Miao Xief1de9682014-01-09 10:06:10 +08001865
Josef Bacikd0215f32011-01-25 14:57:24 -05001866 cond_resched();
1867
Namjae Jeond0e1d662012-12-11 16:00:21 -08001868 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001869
Xin Zhong914ee292010-12-09 09:30:14 +00001870 pos += copied;
1871 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001872 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001873
Chris Mason8c2383c2007-06-18 09:57:58 -04001874 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001875
Josef Bacik7ee9e442013-06-21 16:37:03 -04001876 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001877 if (only_release_metadata) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001878 btrfs_check_nocow_unlock(BTRFS_I(inode));
Nikolay Borisov691fa052017-02-20 13:50:42 +02001879 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001880 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001881 } else {
Nikolay Borisov86d52922020-06-03 08:55:40 +03001882 btrfs_delalloc_release_space(BTRFS_I(inode),
1883 data_reserved,
Qu Wenruobc42bda2017-02-27 15:10:39 +08001884 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001885 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001886 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001887 }
1888
Qu Wenruo364ecf32017-02-27 15:10:38 +08001889 extent_changeset_free(data_reserved);
Goldwyn Rodrigues5e8b9ef2020-09-24 11:39:13 -05001890 if (num_written > 0) {
1891 pagecache_isize_extended(inode, old_isize, iocb->ki_pos);
1892 iocb->ki_pos += num_written;
1893 }
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001894out:
1895 btrfs_inode_unlock(inode, ilock_flags);
Josef Bacikd0215f32011-01-25 14:57:24 -05001896 return num_written ? num_written : ret;
1897}
1898
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001899static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
1900 const struct iov_iter *iter, loff_t offset)
1901{
1902 const u32 blocksize_mask = fs_info->sectorsize - 1;
1903
1904 if (offset & blocksize_mask)
1905 return -EINVAL;
1906
1907 if (iov_iter_alignment(iter) & blocksize_mask)
1908 return -EINVAL;
1909
1910 return 0;
1911}
1912
1913static ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001914{
Filipe Manana51bd9562021-10-25 17:27:47 +01001915 const bool is_sync_write = (iocb->ki_flags & IOCB_DSYNC);
Josef Bacikd0215f32011-01-25 14:57:24 -05001916 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001917 struct inode *inode = file_inode(file);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001918 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001919 loff_t pos;
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001920 ssize_t written = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001921 ssize_t written_buffered;
Filipe Manana51bd9562021-10-25 17:27:47 +01001922 size_t prev_left = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001923 loff_t endbyte;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001924 ssize_t err;
1925 unsigned int ilock_flags = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001926
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001927 if (iocb->ki_flags & IOCB_NOWAIT)
1928 ilock_flags |= BTRFS_ILOCK_TRY;
1929
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05001930 /* If the write DIO is within EOF, use a shared lock */
1931 if (iocb->ki_pos + iov_iter_count(from) <= i_size_read(inode))
1932 ilock_flags |= BTRFS_ILOCK_SHARED;
1933
1934relock:
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001935 err = btrfs_inode_lock(inode, ilock_flags);
1936 if (err < 0)
1937 return err;
1938
1939 err = generic_write_checks(iocb, from);
1940 if (err <= 0) {
1941 btrfs_inode_unlock(inode, ilock_flags);
1942 return err;
1943 }
1944
1945 err = btrfs_write_check(iocb, from, err);
1946 if (err < 0) {
1947 btrfs_inode_unlock(inode, ilock_flags);
1948 goto out;
1949 }
1950
1951 pos = iocb->ki_pos;
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05001952 /*
1953 * Re-check since file size may have changed just before taking the
1954 * lock or pos may have changed because of O_APPEND in generic_write_check()
1955 */
1956 if ((ilock_flags & BTRFS_ILOCK_SHARED) &&
1957 pos + iov_iter_count(from) > i_size_read(inode)) {
1958 btrfs_inode_unlock(inode, ilock_flags);
1959 ilock_flags &= ~BTRFS_ILOCK_SHARED;
1960 goto relock;
1961 }
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001962
1963 if (check_direct_IO(fs_info, from, pos)) {
1964 btrfs_inode_unlock(inode, ilock_flags);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001965 goto buffered;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001966 }
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001967
Filipe Manana51bd9562021-10-25 17:27:47 +01001968 /*
1969 * We remove IOCB_DSYNC so that we don't deadlock when iomap_dio_rw()
1970 * calls generic_write_sync() (through iomap_dio_complete()), because
1971 * that results in calling fsync (btrfs_sync_file()) which will try to
1972 * lock the inode in exclusive/write mode.
1973 */
1974 if (is_sync_write)
1975 iocb->ki_flags &= ~IOCB_DSYNC;
1976
1977 /*
1978 * The iov_iter can be mapped to the same file range we are writing to.
1979 * If that's the case, then we will deadlock in the iomap code, because
1980 * it first calls our callback btrfs_dio_iomap_begin(), which will create
1981 * an ordered extent, and after that it will fault in the pages that the
1982 * iov_iter refers to. During the fault in we end up in the readahead
1983 * pages code (starting at btrfs_readahead()), which will lock the range,
1984 * find that ordered extent and then wait for it to complete (at
1985 * btrfs_lock_and_flush_ordered_range()), resulting in a deadlock since
1986 * obviously the ordered extent can never complete as we didn't submit
1987 * yet the respective bio(s). This always happens when the buffer is
1988 * memory mapped to the same file range, since the iomap DIO code always
1989 * invalidates pages in the target file range (after starting and waiting
1990 * for any writeback).
1991 *
1992 * So here we disable page faults in the iov_iter and then retry if we
1993 * got -EFAULT, faulting in the pages before the retry.
1994 */
1995again:
1996 from->nofault = true;
1997 err = iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops, &btrfs_dio_ops,
1998 IOMAP_DIO_PARTIAL, written);
1999 from->nofault = false;
2000
2001 /* No increment (+=) because iomap returns a cumulative value. */
2002 if (err > 0)
2003 written = err;
2004
2005 if (iov_iter_count(from) > 0 && (err == -EFAULT || err > 0)) {
2006 const size_t left = iov_iter_count(from);
2007 /*
2008 * We have more data left to write. Try to fault in as many as
2009 * possible of the remainder pages and retry. We do this without
2010 * releasing and locking again the inode, to prevent races with
2011 * truncate.
2012 *
2013 * Also, in case the iov refers to pages in the file range of the
2014 * file we want to write to (due to a mmap), we could enter an
2015 * infinite loop if we retry after faulting the pages in, since
2016 * iomap will invalidate any pages in the range early on, before
2017 * it tries to fault in the pages of the iov. So we keep track of
2018 * how much was left of iov in the previous EFAULT and fallback
2019 * to buffered IO in case we haven't made any progress.
2020 */
2021 if (left == prev_left) {
2022 err = -ENOTBLK;
2023 } else {
2024 fault_in_iov_iter_readable(from, left);
2025 prev_left = left;
2026 goto again;
2027 }
2028 }
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05002029
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05002030 btrfs_inode_unlock(inode, ilock_flags);
Josef Bacikd0215f32011-01-25 14:57:24 -05002031
Filipe Manana51bd9562021-10-25 17:27:47 +01002032 /*
2033 * Add back IOCB_DSYNC. Our caller, btrfs_file_write_iter(), will do
2034 * the fsync (call generic_write_sync()).
2035 */
2036 if (is_sync_write)
2037 iocb->ki_flags |= IOCB_DSYNC;
Goldwyn Rodriguesa42fa642020-09-24 11:39:20 -05002038
Filipe Manana51bd9562021-10-25 17:27:47 +01002039 /* If 'err' is -ENOTBLK then it means we must fallback to buffered IO. */
2040 if ((err < 0 && err != -ENOTBLK) || !iov_iter_count(from))
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05002041 goto out;
Josef Bacikd0215f32011-01-25 14:57:24 -05002042
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05002043buffered:
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05002044 pos = iocb->ki_pos;
2045 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05002046 if (written_buffered < 0) {
2047 err = written_buffered;
2048 goto out;
2049 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01002050 /*
2051 * Ensure all data is persisted. We want the next direct IO read to be
2052 * able to read what was just written.
2053 */
Josef Bacikd0215f32011-01-25 14:57:24 -05002054 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01002055 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01002056 if (err)
2057 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01002058 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05002059 if (err)
2060 goto out;
2061 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05002062 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002063 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
2064 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05002065out:
Filipe Manana51bd9562021-10-25 17:27:47 +01002066 return err < 0 ? err : written;
Josef Bacikd0215f32011-01-25 14:57:24 -05002067}
2068
Al Virob30ac0f2014-04-03 14:29:04 -04002069static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
2070 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05002071{
2072 struct file *file = iocb->ki_filp;
Nikolay Borisov14971652020-12-10 10:38:32 +02002073 struct btrfs_inode *inode = BTRFS_I(file_inode(file));
Josef Bacikd0215f32011-01-25 14:57:24 -05002074 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07002075 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Josef Bacikd0215f32011-01-25 14:57:24 -05002076
Goldwyn Rodriguesc86537a2020-09-24 11:39:14 -05002077 /*
2078 * If the fs flips readonly due to some impossible error, although we
2079 * have opened a file as writable, we have to stop this write operation
2080 * to ensure consistency.
2081 */
Josef Bacik84961532021-10-05 16:35:25 -04002082 if (BTRFS_FS_ERROR(inode->root->fs_info))
Goldwyn Rodriguesc86537a2020-09-24 11:39:14 -05002083 return -EROFS;
2084
Christoph Hellwig91f99432017-08-29 16:13:20 +02002085 if (!(iocb->ki_flags & IOCB_DIRECT) &&
2086 (iocb->ki_flags & IOCB_NOWAIT))
2087 return -EOPNOTSUPP;
2088
Josef Bacikb812ce22012-11-16 13:56:32 -05002089 if (sync)
Nikolay Borisov14971652020-12-10 10:38:32 +02002090 atomic_inc(&inode->sync_writers);
Josef Bacikb812ce22012-11-16 13:56:32 -05002091
Goldwyn Rodriguesecfdc082020-09-24 11:39:21 -05002092 if (iocb->ki_flags & IOCB_DIRECT)
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05002093 num_written = btrfs_direct_write(iocb, from);
Goldwyn Rodriguesecfdc082020-09-24 11:39:21 -05002094 else
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05002095 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05002096
Filipe Mananabc0939f2021-02-23 12:08:48 +00002097 btrfs_set_inode_last_sub_trans(inode);
2098
Christoph Hellwige2592212016-04-07 08:52:01 -07002099 if (num_written > 0)
2100 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002101
Josef Bacikb812ce22012-11-16 13:56:32 -05002102 if (sync)
Nikolay Borisov14971652020-12-10 10:38:32 +02002103 atomic_dec(&inode->sync_writers);
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05002104
Chris Mason39279cc2007-06-12 06:35:45 -04002105 current->backing_dev_info = NULL;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05002106 return num_written;
Chris Mason39279cc2007-06-12 06:35:45 -04002107}
2108
Chris Masond3977122009-01-05 21:25:51 -05002109int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002110{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002111 struct btrfs_file_private *private = filp->private_data;
2112
Josef Bacik23b5ec72017-07-24 15:14:25 -04002113 if (private && private->filldir_buf)
2114 kfree(private->filldir_buf);
2115 kfree(private);
2116 filp->private_data = NULL;
2117
Chris Masonf6dc45c2014-08-20 07:15:33 -07002118 /*
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002119 * Set by setattr when we are about to truncate a file from a non-zero
2120 * size to a zero size. This tries to flush down new bytes that may
2121 * have been written if the application were using truncate to replace
2122 * a file in place.
Chris Masonf6dc45c2014-08-20 07:15:33 -07002123 */
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002124 if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Chris Masonf6dc45c2014-08-20 07:15:33 -07002125 &BTRFS_I(inode)->runtime_flags))
2126 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002127 return 0;
2128}
2129
Filipe Manana669249e2014-09-02 11:09:58 +01002130static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2131{
2132 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002133 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002134
Liu Bo343e4fc2017-11-15 16:10:28 -07002135 /*
2136 * This is only called in fsync, which would do synchronous writes, so
2137 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2138 * multiple disks using raid profile, a large IO can be split to
2139 * several segments of stripe length (currently 64K).
2140 */
2141 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002142 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002143 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002144 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002145 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002146
2147 return ret;
2148}
2149
Filipe Manana626e9f42021-04-27 11:27:20 +01002150static inline bool skip_inode_logging(const struct btrfs_log_ctx *ctx)
2151{
2152 struct btrfs_inode *inode = BTRFS_I(ctx->inode);
2153 struct btrfs_fs_info *fs_info = inode->root->fs_info;
2154
2155 if (btrfs_inode_in_log(inode, fs_info->generation) &&
2156 list_empty(&ctx->ordered_extents))
2157 return true;
2158
2159 /*
2160 * If we are doing a fast fsync we can not bail out if the inode's
2161 * last_trans is <= then the last committed transaction, because we only
2162 * update the last_trans of the inode during ordered extent completion,
2163 * and for a fast fsync we don't wait for that, we only wait for the
2164 * writeback to complete.
2165 */
2166 if (inode->last_trans <= fs_info->last_trans_committed &&
2167 (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags) ||
2168 list_empty(&ctx->ordered_extents)))
2169 return true;
2170
2171 return false;
2172}
2173
Chris Masond352ac62008-09-29 15:18:18 -04002174/*
2175 * fsync call for both files and directories. This logs the inode into
2176 * the tree log instead of forcing full commits whenever possible.
2177 *
2178 * It needs to call filemap_fdatawait so that all ordered extent updates are
2179 * in the metadata btree are up to date for copying to the log.
2180 *
2181 * It drops the inode mutex before doing the tree log commit. This is an
2182 * important optimization for directories because holding the mutex prevents
2183 * new operations on the dir while we write to disk.
2184 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002185int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002186{
Filipe Mananade17e792016-03-30 19:03:13 -04002187 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002188 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002189 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002190 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002191 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002192 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002193 int ret = 0, err;
Filipe Manana48778172020-08-11 12:43:58 +01002194 u64 len;
2195 bool full_sync;
Chris Mason39279cc2007-06-12 06:35:45 -04002196
liubo1abe9b82011-03-24 11:18:59 +00002197 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002198
Liu Boebb70442017-11-21 14:35:40 -07002199 btrfs_init_log_ctx(&ctx, inode);
2200
Miao Xie90abccf2012-09-13 04:53:47 -06002201 /*
Filipe Manana48778172020-08-11 12:43:58 +01002202 * Always set the range to a full range, otherwise we can get into
2203 * several problems, from missing file extent items to represent holes
2204 * when not using the NO_HOLES feature, to log tree corruption due to
2205 * races between hole detection during logging and completion of ordered
2206 * extents outside the range, to missing checksums due to ordered extents
2207 * for which we flushed only a subset of their pages.
Filipe Manana95418ed2020-03-09 12:41:05 +00002208 */
Filipe Manana48778172020-08-11 12:43:58 +01002209 start = 0;
2210 end = LLONG_MAX;
2211 len = (u64)LLONG_MAX + 1;
Filipe Manana95418ed2020-03-09 12:41:05 +00002212
2213 /*
Miao Xie90abccf2012-09-13 04:53:47 -06002214 * We write the dirty pages in the range and wait until they complete
2215 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002216 * multi-task, and make the performance up. See
2217 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002218 */
Filipe Manana669249e2014-09-02 11:09:58 +01002219 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002220 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002221 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002222
Filipe Manana885f46d2021-02-23 12:08:47 +00002223 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Josef Bacikc4951442018-10-12 15:32:32 -04002224
Miao Xie2ecb7922012-09-06 04:04:27 -06002225 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002226
Filipe Manana669249e2014-09-02 11:09:58 +01002227 /*
Filipe Manana48778172020-08-11 12:43:58 +01002228 * Always check for the full sync flag while holding the inode's lock,
2229 * to avoid races with other tasks. The flag must be either set all the
2230 * time during logging or always off all the time while logging.
Filipe Manana7af59742020-04-07 11:37:44 +01002231 */
Filipe Manana48778172020-08-11 12:43:58 +01002232 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2233 &BTRFS_I(inode)->runtime_flags);
Filipe Manana7af59742020-04-07 11:37:44 +01002234
2235 /*
Filipe Manana885f46d2021-02-23 12:08:47 +00002236 * Before we acquired the inode's lock and the mmap lock, someone may
2237 * have dirtied more pages in the target range. We need to make sure
2238 * that writeback for any such pages does not start while we are logging
2239 * the inode, because if it does, any of the following might happen when
2240 * we are not doing a full inode sync:
Filipe Mananaaab15e82018-11-12 10:23:58 +00002241 *
2242 * 1) We log an extent after its writeback finishes but before its
2243 * checksums are added to the csum tree, leading to -EIO errors
2244 * when attempting to read the extent after a log replay.
2245 *
2246 * 2) We can end up logging an extent before its writeback finishes.
2247 * Therefore after the log replay we will have a file extent item
2248 * pointing to an unwritten extent (and no data checksums as well).
2249 *
2250 * So trigger writeback for any eventual new dirty pages and then we
2251 * wait for all ordered extents to complete below.
2252 */
2253 ret = start_ordered_ops(inode, start, end);
2254 if (ret) {
Filipe Manana885f46d2021-02-23 12:08:47 +00002255 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002256 goto out;
2257 }
2258
2259 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002260 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002261 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002262 *
Filipe Manana48778172020-08-11 12:43:58 +01002263 * For a full fsync we wait for the ordered extents to complete while
2264 * for a fast fsync we wait just for writeback to complete, and then
2265 * attach the ordered extents to the transaction so that a transaction
2266 * commit waits for their completion, to avoid data loss if we fsync,
2267 * the current transaction commits before the ordered extents complete
2268 * and a power failure happens right after that.
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09002269 *
2270 * For zoned filesystem, if a write IO uses a ZONE_APPEND command, the
2271 * logical address recorded in the ordered extent may change. We need
2272 * to wait for the IO to stabilize the logical address.
Filipe Manana669249e2014-09-02 11:09:58 +01002273 */
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09002274 if (full_sync || btrfs_is_zoned(fs_info)) {
Filipe Manana48778172020-08-11 12:43:58 +01002275 ret = btrfs_wait_ordered_range(inode, start, len);
2276 } else {
2277 /*
2278 * Get our ordered extents as soon as possible to avoid doing
2279 * checksum lookups in the csum tree, and use instead the
2280 * checksums attached to the ordered extents.
2281 */
2282 btrfs_get_ordered_extents_for_logging(BTRFS_I(inode),
2283 &ctx.ordered_extents);
2284 ret = filemap_fdatawait_range(inode->i_mapping, start, end);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002285 }
Filipe Manana48778172020-08-11 12:43:58 +01002286
2287 if (ret)
2288 goto out_release_extents;
2289
Miao Xie2ecb7922012-09-06 04:04:27 -06002290 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002291
Josef Bacika4abeea2011-04-11 17:25:13 -04002292 smp_mb();
Filipe Manana626e9f42021-04-27 11:27:20 +01002293 if (skip_inode_logging(&ctx)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002294 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002295 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002296 * modified so clear this flag in case it was set for whatever
2297 * reason, it's no longer relevant.
2298 */
2299 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2300 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002301 /*
2302 * An ordered extent might have started before and completed
2303 * already with io errors, in which case the inode was not
2304 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002305 * for any errors that might have happened since we last
2306 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002307 */
Jeff Layton333427a2017-07-06 07:02:31 -04002308 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Filipe Manana48778172020-08-11 12:43:58 +01002309 goto out_release_extents;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002310 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002311
2312 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002313 * We use start here because we will need to wait on the IO to complete
2314 * in btrfs_sync_log, which could require joining a transaction (for
2315 * example checking cross references in the nocow path). If we use join
2316 * here we could get into a situation where we're waiting on IO to
2317 * happen that is blocked on a transaction trying to commit. With start
2318 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002319 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002320 * from thinking they are super smart and changing this to
2321 * btrfs_join_transaction *cough*Josef*cough*.
2322 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002323 trans = btrfs_start_transaction(root, 0);
2324 if (IS_ERR(trans)) {
2325 ret = PTR_ERR(trans);
Filipe Manana48778172020-08-11 12:43:58 +01002326 goto out_release_extents;
Chris Mason39279cc2007-06-12 06:35:45 -04002327 }
Filipe Mananad0c2f4f2021-01-27 10:35:00 +00002328 trans->in_fsync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002329
Filipe Manana48778172020-08-11 12:43:58 +01002330 ret = btrfs_log_dentry_safe(trans, dentry, &ctx);
2331 btrfs_release_log_ctx_extents(&ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002332 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002333 /* Fallthrough and commit/free transaction. */
2334 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002335 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002336
2337 /* we've logged all the items and now have a consistent
2338 * version of the file in the log. It is possible that
2339 * someone will come in and modify the file, but that's
2340 * fine because the log is consistent on disk, and we
2341 * have references to all of the file's extents
2342 *
2343 * It is possible that someone will come in and log the
2344 * file again, but that will end up using the synchronization
2345 * inside btrfs_sync_log to keep things safe.
2346 */
Filipe Manana885f46d2021-02-23 12:08:47 +00002347 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Chris Mason49eb7e42008-09-11 15:53:12 -04002348
Chris Mason257c62e2009-10-13 13:21:08 -04002349 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002350 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002351 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002352 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002353 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002354 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002355 }
Chris Mason257c62e2009-10-13 13:21:08 -04002356 }
Filipe Manana48778172020-08-11 12:43:58 +01002357 if (!full_sync) {
2358 ret = btrfs_wait_ordered_range(inode, start, len);
2359 if (ret) {
2360 btrfs_end_transaction(trans);
2361 goto out;
2362 }
2363 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002364 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002365 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002366 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002367 }
Chris Mason39279cc2007-06-12 06:35:45 -04002368out:
Liu Boebb70442017-11-21 14:35:40 -07002369 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002370 err = file_check_and_advance_wb_err(file);
2371 if (!ret)
2372 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002373 return ret > 0 ? -EIO : ret;
Filipe Manana48778172020-08-11 12:43:58 +01002374
2375out_release_extents:
2376 btrfs_release_log_ctx_extents(&ctx);
Filipe Manana885f46d2021-02-23 12:08:47 +00002377 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Manana48778172020-08-11 12:43:58 +01002378 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002379}
2380
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002381static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002382 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002383 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002384 .page_mkwrite = btrfs_page_mkwrite,
2385};
2386
2387static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2388{
Miao Xie058a4572010-05-20 07:21:50 +00002389 struct address_space *mapping = filp->f_mapping;
2390
2391 if (!mapping->a_ops->readpage)
2392 return -ENOEXEC;
2393
Chris Mason9ebefb182007-06-15 13:50:00 -04002394 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002395 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002396
Chris Mason9ebefb182007-06-15 13:50:00 -04002397 return 0;
2398}
2399
Nikolay Borisov35339c22017-02-20 13:50:46 +02002400static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002401 int slot, u64 start, u64 end)
2402{
2403 struct btrfs_file_extent_item *fi;
2404 struct btrfs_key key;
2405
2406 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2407 return 0;
2408
2409 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002410 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002411 key.type != BTRFS_EXTENT_DATA_KEY)
2412 return 0;
2413
2414 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2415
2416 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2417 return 0;
2418
2419 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2420 return 0;
2421
2422 if (key.offset == end)
2423 return 1;
2424 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2425 return 1;
2426 return 0;
2427}
2428
Nikolay Borisova012a742017-02-20 13:50:47 +02002429static int fill_holes(struct btrfs_trans_handle *trans,
2430 struct btrfs_inode *inode,
2431 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002432{
David Sterba3ffbd682018-06-29 10:56:42 +02002433 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002434 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002435 struct extent_buffer *leaf;
2436 struct btrfs_file_extent_item *fi;
2437 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002438 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002439 struct btrfs_key key;
2440 int ret;
2441
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002442 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002443 goto out;
2444
Nikolay Borisova012a742017-02-20 13:50:47 +02002445 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002446 key.type = BTRFS_EXTENT_DATA_KEY;
2447 key.offset = offset;
2448
Josef Bacik2aaa6652012-08-29 14:27:18 -04002449 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002450 if (ret <= 0) {
2451 /*
2452 * We should have dropped this offset, so if we find it then
2453 * something has gone horribly wrong.
2454 */
2455 if (ret == 0)
2456 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002457 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002458 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002459
2460 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002461 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002462 u64 num_bytes;
2463
2464 path->slots[0]--;
2465 fi = btrfs_item_ptr(leaf, path->slots[0],
2466 struct btrfs_file_extent_item);
2467 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2468 end - offset;
2469 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2470 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2471 btrfs_set_file_extent_offset(leaf, fi, 0);
2472 btrfs_mark_buffer_dirty(leaf);
2473 goto out;
2474 }
2475
chandan1707e262014-07-01 12:04:28 +05302476 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002477 u64 num_bytes;
2478
Josef Bacik2aaa6652012-08-29 14:27:18 -04002479 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002480 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002481 fi = btrfs_item_ptr(leaf, path->slots[0],
2482 struct btrfs_file_extent_item);
2483 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2484 offset;
2485 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2486 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2487 btrfs_set_file_extent_offset(leaf, fi, 0);
2488 btrfs_mark_buffer_dirty(leaf);
2489 goto out;
2490 }
2491 btrfs_release_path(path);
2492
Nikolay Borisova012a742017-02-20 13:50:47 +02002493 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002494 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002495 if (ret)
2496 return ret;
2497
2498out:
2499 btrfs_release_path(path);
2500
2501 hole_em = alloc_extent_map();
2502 if (!hole_em) {
2503 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002504 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002505 } else {
2506 hole_em->start = offset;
2507 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002508 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002509 hole_em->orig_start = offset;
2510
2511 hole_em->block_start = EXTENT_MAP_HOLE;
2512 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002513 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002514 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2515 hole_em->generation = trans->transid;
2516
2517 do {
2518 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2519 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002520 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002521 write_unlock(&em_tree->lock);
2522 } while (ret == -EEXIST);
2523 free_extent_map(hole_em);
2524 if (ret)
2525 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002526 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002527 }
2528
2529 return 0;
2530}
2531
Qu Wenruod7781542014-05-30 15:16:10 +08002532/*
2533 * Find a hole extent on given inode and change start/len to the end of hole
2534 * extent.(hole/vacuum extent whose em->start <= start &&
2535 * em->start + em->len > start)
2536 * When a hole extent is found, return 1 and modify start/len.
2537 */
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002538static int find_first_non_hole(struct btrfs_inode *inode, u64 *start, u64 *len)
Qu Wenruod7781542014-05-30 15:16:10 +08002539{
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002540 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Qu Wenruod7781542014-05-30 15:16:10 +08002541 struct extent_map *em;
2542 int ret = 0;
2543
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002544 em = btrfs_get_extent(inode, NULL, 0,
Filipe Manana609805d2017-05-30 05:29:09 +01002545 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002546 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002547 if (IS_ERR(em))
2548 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002549
2550 /* Hole or vacuum extent(only exists in no-hole mode) */
2551 if (em->block_start == EXTENT_MAP_HOLE) {
2552 ret = 1;
2553 *len = em->start + em->len > *start + *len ?
2554 0 : *start + *len - em->start - em->len;
2555 *start = em->start + em->len;
2556 }
2557 free_extent_map(em);
2558 return ret;
2559}
2560
Filipe Mananaf27451f2017-10-25 11:55:28 +01002561static int btrfs_punch_hole_lock_range(struct inode *inode,
2562 const u64 lockstart,
2563 const u64 lockend,
2564 struct extent_state **cached_state)
2565{
Qu Wenruo05284762021-05-31 16:50:54 +08002566 /*
2567 * For subpage case, if the range is not at page boundary, we could
2568 * have pages at the leading/tailing part of the range.
2569 * This could lead to dead loop since filemap_range_has_page()
2570 * will always return true.
2571 * So here we need to do extra page alignment for
2572 * filemap_range_has_page().
2573 */
2574 const u64 page_lockstart = round_up(lockstart, PAGE_SIZE);
2575 const u64 page_lockend = round_down(lockend + 1, PAGE_SIZE) - 1;
2576
Filipe Mananaf27451f2017-10-25 11:55:28 +01002577 while (1) {
2578 struct btrfs_ordered_extent *ordered;
2579 int ret;
2580
2581 truncate_pagecache_range(inode, lockstart, lockend);
2582
2583 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2584 cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03002585 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
2586 lockend);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002587
2588 /*
2589 * We need to make sure we have no ordered extents in this range
2590 * and nobody raced in and read a page in this range, if we did
2591 * we need to try again.
2592 */
2593 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002594 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002595 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002596 !filemap_range_has_page(inode->i_mapping,
Qu Wenruo05284762021-05-31 16:50:54 +08002597 page_lockstart, page_lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002598 if (ordered)
2599 btrfs_put_ordered_extent(ordered);
2600 break;
2601 }
2602 if (ordered)
2603 btrfs_put_ordered_extent(ordered);
2604 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2605 lockend, cached_state);
2606 ret = btrfs_wait_ordered_range(inode, lockstart,
2607 lockend - lockstart + 1);
2608 if (ret)
2609 return ret;
2610 }
2611 return 0;
2612}
2613
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002614static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002615 struct btrfs_inode *inode,
Filipe Manana690a5db2019-07-05 11:09:50 +01002616 struct btrfs_path *path,
Filipe Mananabf385642020-09-08 11:27:22 +01002617 struct btrfs_replace_extent_info *extent_info,
Filipe Manana2766ff62020-11-04 11:07:34 +00002618 const u64 replace_len,
2619 const u64 bytes_to_drop)
Filipe Manana690a5db2019-07-05 11:09:50 +01002620{
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002621 struct btrfs_fs_info *fs_info = trans->fs_info;
2622 struct btrfs_root *root = inode->root;
Filipe Manana690a5db2019-07-05 11:09:50 +01002623 struct btrfs_file_extent_item *extent;
2624 struct extent_buffer *leaf;
2625 struct btrfs_key key;
2626 int slot;
2627 struct btrfs_ref ref = { 0 };
Filipe Manana690a5db2019-07-05 11:09:50 +01002628 int ret;
2629
Filipe Mananabf385642020-09-08 11:27:22 +01002630 if (replace_len == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002631 return 0;
2632
Filipe Mananabf385642020-09-08 11:27:22 +01002633 if (extent_info->disk_offset == 0 &&
Filipe Manana2766ff62020-11-04 11:07:34 +00002634 btrfs_fs_incompat(fs_info, NO_HOLES)) {
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002635 btrfs_update_inode_bytes(inode, 0, bytes_to_drop);
Filipe Manana690a5db2019-07-05 11:09:50 +01002636 return 0;
Filipe Manana2766ff62020-11-04 11:07:34 +00002637 }
Filipe Manana690a5db2019-07-05 11:09:50 +01002638
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002639 key.objectid = btrfs_ino(inode);
Filipe Manana690a5db2019-07-05 11:09:50 +01002640 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002641 key.offset = extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002642 ret = btrfs_insert_empty_item(trans, root, path, &key,
Filipe Mananafb870f62020-09-08 11:27:21 +01002643 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002644 if (ret)
2645 return ret;
2646 leaf = path->nodes[0];
2647 slot = path->slots[0];
Filipe Mananabf385642020-09-08 11:27:22 +01002648 write_extent_buffer(leaf, extent_info->extent_buf,
Filipe Manana690a5db2019-07-05 11:09:50 +01002649 btrfs_item_ptr_offset(leaf, slot),
Filipe Mananafb870f62020-09-08 11:27:21 +01002650 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002651 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananafb870f62020-09-08 11:27:21 +01002652 ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE);
Filipe Mananabf385642020-09-08 11:27:22 +01002653 btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset);
2654 btrfs_set_file_extent_num_bytes(leaf, extent, replace_len);
2655 if (extent_info->is_new_extent)
Filipe Manana8fccebf2020-09-08 11:27:20 +01002656 btrfs_set_file_extent_generation(leaf, extent, trans->transid);
Filipe Manana690a5db2019-07-05 11:09:50 +01002657 btrfs_mark_buffer_dirty(leaf);
2658 btrfs_release_path(path);
2659
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002660 ret = btrfs_inode_set_file_extent_range(inode, extent_info->file_offset,
2661 replace_len);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002662 if (ret)
2663 return ret;
2664
Filipe Manana690a5db2019-07-05 11:09:50 +01002665 /* If it's a hole, nothing more needs to be done. */
Filipe Manana2766ff62020-11-04 11:07:34 +00002666 if (extent_info->disk_offset == 0) {
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002667 btrfs_update_inode_bytes(inode, 0, bytes_to_drop);
Filipe Manana690a5db2019-07-05 11:09:50 +01002668 return 0;
Filipe Manana2766ff62020-11-04 11:07:34 +00002669 }
Filipe Manana690a5db2019-07-05 11:09:50 +01002670
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002671 btrfs_update_inode_bytes(inode, replace_len, bytes_to_drop);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002672
Filipe Mananabf385642020-09-08 11:27:22 +01002673 if (extent_info->is_new_extent && extent_info->insertions == 0) {
2674 key.objectid = extent_info->disk_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002675 key.type = BTRFS_EXTENT_ITEM_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002676 key.offset = extent_info->disk_len;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002677 ret = btrfs_alloc_reserved_file_extent(trans, root,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002678 btrfs_ino(inode),
Filipe Mananabf385642020-09-08 11:27:22 +01002679 extent_info->file_offset,
2680 extent_info->qgroup_reserved,
Filipe Manana8fccebf2020-09-08 11:27:20 +01002681 &key);
2682 } else {
2683 u64 ref_offset;
2684
2685 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
Filipe Mananabf385642020-09-08 11:27:22 +01002686 extent_info->disk_offset,
2687 extent_info->disk_len, 0);
2688 ref_offset = extent_info->file_offset - extent_info->data_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002689 btrfs_init_data_ref(&ref, root->root_key.objectid,
Nikolay Borisovf42c5da2021-10-12 11:21:35 +03002690 btrfs_ino(inode), ref_offset, 0, false);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002691 ret = btrfs_inc_extent_ref(trans, &ref);
2692 }
2693
Filipe Mananabf385642020-09-08 11:27:22 +01002694 extent_info->insertions++;
Filipe Manana690a5db2019-07-05 11:09:50 +01002695
2696 return ret;
2697}
2698
Filipe Manana9cba40a2019-06-28 23:11:26 +01002699/*
2700 * The respective range must have been previously locked, as well as the inode.
2701 * The end offset is inclusive (last byte of the range).
Filipe Mananabf385642020-09-08 11:27:22 +01002702 * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing
2703 * the file range with an extent.
2704 * When not punching a hole, we don't want to end up in a state where we dropped
2705 * extents without inserting a new one, so we must abort the transaction to avoid
2706 * a corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002707 */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002708int btrfs_replace_file_extents(struct btrfs_inode *inode,
2709 struct btrfs_path *path, const u64 start,
2710 const u64 end,
2711 struct btrfs_replace_extent_info *extent_info,
2712 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002713{
Filipe Manana5893dfb2020-11-04 11:07:32 +00002714 struct btrfs_drop_extents_args drop_args = { 0 };
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002715 struct btrfs_root *root = inode->root;
2716 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2bd36e72019-08-22 15:14:33 -04002717 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002718 u64 ino_size = round_up(inode->vfs_inode.i_size, fs_info->sectorsize);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002719 struct btrfs_trans_handle *trans = NULL;
2720 struct btrfs_block_rsv *rsv;
2721 unsigned int rsv_count;
2722 u64 cur_offset;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002723 u64 len = end - start;
2724 int ret = 0;
2725
2726 if (end <= start)
2727 return -EINVAL;
2728
2729 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2730 if (!rsv) {
2731 ret = -ENOMEM;
2732 goto out;
2733 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002734 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002735 rsv->failfast = 1;
2736
2737 /*
2738 * 1 - update the inode
2739 * 1 - removing the extents in the range
Filipe Mananabf385642020-09-08 11:27:22 +01002740 * 1 - adding the hole extent if no_holes isn't set or if we are
2741 * replacing the range with a new extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002742 */
Filipe Mananabf385642020-09-08 11:27:22 +01002743 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info)
Filipe Manana690a5db2019-07-05 11:09:50 +01002744 rsv_count = 3;
2745 else
2746 rsv_count = 2;
2747
Filipe Manana9cba40a2019-06-28 23:11:26 +01002748 trans = btrfs_start_transaction(root, rsv_count);
2749 if (IS_ERR(trans)) {
2750 ret = PTR_ERR(trans);
2751 trans = NULL;
2752 goto out_free;
2753 }
2754
2755 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2756 min_size, false);
2757 BUG_ON(ret);
2758 trans->block_rsv = rsv;
2759
2760 cur_offset = start;
Filipe Manana5893dfb2020-11-04 11:07:32 +00002761 drop_args.path = path;
2762 drop_args.end = end + 1;
2763 drop_args.drop_cache = true;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002764 while (cur_offset < end) {
Filipe Manana5893dfb2020-11-04 11:07:32 +00002765 drop_args.start = cur_offset;
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002766 ret = btrfs_drop_extents(trans, root, inode, &drop_args);
Filipe Manana2766ff62020-11-04 11:07:34 +00002767 /* If we are punching a hole decrement the inode's byte count */
2768 if (!extent_info)
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002769 btrfs_update_inode_bytes(inode, 0,
Filipe Manana2766ff62020-11-04 11:07:34 +00002770 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002771 if (ret != -ENOSPC) {
2772 /*
Josef Bacik4afb9122021-10-05 16:35:27 -04002773 * The only time we don't want to abort is if we are
2774 * attempting to clone a partial inline extent, in which
2775 * case we'll get EOPNOTSUPP. However if we aren't
2776 * clone we need to abort no matter what, because if we
2777 * got EOPNOTSUPP via prealloc then we messed up and
2778 * need to abort.
Filipe Manana690a5db2019-07-05 11:09:50 +01002779 */
Josef Bacik4afb9122021-10-05 16:35:27 -04002780 if (ret &&
2781 (ret != -EOPNOTSUPP ||
2782 (extent_info && extent_info->is_new_extent)))
Filipe Manana690a5db2019-07-05 11:09:50 +01002783 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002784 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002785 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002786
2787 trans->block_rsv = &fs_info->trans_block_rsv;
2788
Filipe Manana5893dfb2020-11-04 11:07:32 +00002789 if (!extent_info && cur_offset < drop_args.drop_end &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002790 cur_offset < ino_size) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002791 ret = fill_holes(trans, inode, path, cur_offset,
2792 drop_args.drop_end);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002793 if (ret) {
2794 /*
2795 * If we failed then we didn't insert our hole
2796 * entries for the area we dropped, so now the
2797 * fs is corrupted, so we must abort the
2798 * transaction.
2799 */
2800 btrfs_abort_transaction(trans, ret);
2801 break;
2802 }
Filipe Manana5893dfb2020-11-04 11:07:32 +00002803 } else if (!extent_info && cur_offset < drop_args.drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002804 /*
2805 * We are past the i_size here, but since we didn't
2806 * insert holes we need to clear the mapped area so we
2807 * know to not set disk_i_size in this area until a new
2808 * file extent is inserted here.
2809 */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002810 ret = btrfs_inode_clear_file_extent_range(inode,
Filipe Manana5893dfb2020-11-04 11:07:32 +00002811 cur_offset,
2812 drop_args.drop_end - cur_offset);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002813 if (ret) {
2814 /*
2815 * We couldn't clear our area, so we could
2816 * presumably adjust up and corrupt the fs, so
2817 * we need to abort.
2818 */
2819 btrfs_abort_transaction(trans, ret);
2820 break;
2821 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002822 }
2823
Filipe Manana5893dfb2020-11-04 11:07:32 +00002824 if (extent_info &&
2825 drop_args.drop_end > extent_info->file_offset) {
2826 u64 replace_len = drop_args.drop_end -
2827 extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002828
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002829 ret = btrfs_insert_replace_extent(trans, inode, path,
2830 extent_info, replace_len,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002831 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002832 if (ret) {
2833 btrfs_abort_transaction(trans, ret);
2834 break;
2835 }
Filipe Mananabf385642020-09-08 11:27:22 +01002836 extent_info->data_len -= replace_len;
2837 extent_info->data_offset += replace_len;
2838 extent_info->file_offset += replace_len;
Filipe Manana690a5db2019-07-05 11:09:50 +01002839 }
2840
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002841 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002842 if (ret)
2843 break;
2844
2845 btrfs_end_transaction(trans);
2846 btrfs_btree_balance_dirty(fs_info);
2847
2848 trans = btrfs_start_transaction(root, rsv_count);
2849 if (IS_ERR(trans)) {
2850 ret = PTR_ERR(trans);
2851 trans = NULL;
2852 break;
2853 }
2854
2855 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2856 rsv, min_size, false);
2857 BUG_ON(ret); /* shouldn't happen */
2858 trans->block_rsv = rsv;
2859
BingJing Chang32277882021-03-25 09:56:22 +08002860 cur_offset = drop_args.drop_end;
2861 len = end - cur_offset;
2862 if (!extent_info && len) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002863 ret = find_first_non_hole(inode, &cur_offset, &len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002864 if (unlikely(ret < 0))
2865 break;
2866 if (ret && !len) {
2867 ret = 0;
2868 break;
2869 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002870 }
2871 }
2872
Filipe Manana690a5db2019-07-05 11:09:50 +01002873 /*
2874 * If we were cloning, force the next fsync to be a full one since we
2875 * we replaced (or just dropped in the case of cloning holes when
Filipe Mananae2b84212021-03-26 13:14:41 +00002876 * NO_HOLES is enabled) file extent items and did not setup new extent
2877 * maps for the replacement extents (or holes).
Filipe Manana690a5db2019-07-05 11:09:50 +01002878 */
Filipe Mananabf385642020-09-08 11:27:22 +01002879 if (extent_info && !extent_info->is_new_extent)
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002880 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana690a5db2019-07-05 11:09:50 +01002881
Filipe Manana9cba40a2019-06-28 23:11:26 +01002882 if (ret)
2883 goto out_trans;
2884
2885 trans->block_rsv = &fs_info->trans_block_rsv;
2886 /*
2887 * If we are using the NO_HOLES feature we might have had already an
2888 * hole that overlaps a part of the region [lockstart, lockend] and
2889 * ends at (or beyond) lockend. Since we have no file extent items to
2890 * represent holes, drop_end can be less than lockend and so we must
2891 * make sure we have an extent map representing the existing hole (the
2892 * call to __btrfs_drop_extents() might have dropped the existing extent
2893 * map representing the existing hole), otherwise the fast fsync path
2894 * will not record the existence of the hole region
2895 * [existing_hole_start, lockend].
2896 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00002897 if (drop_args.drop_end <= end)
2898 drop_args.drop_end = end + 1;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002899 /*
2900 * Don't insert file hole extent item if it's for a range beyond eof
2901 * (because it's useless) or if it represents a 0 bytes range (when
2902 * cur_offset == drop_end).
2903 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00002904 if (!extent_info && cur_offset < ino_size &&
2905 cur_offset < drop_args.drop_end) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002906 ret = fill_holes(trans, inode, path, cur_offset,
2907 drop_args.drop_end);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002908 if (ret) {
2909 /* Same comment as above. */
2910 btrfs_abort_transaction(trans, ret);
2911 goto out_trans;
2912 }
Filipe Manana5893dfb2020-11-04 11:07:32 +00002913 } else if (!extent_info && cur_offset < drop_args.drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002914 /* See the comment in the loop above for the reasoning here. */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002915 ret = btrfs_inode_clear_file_extent_range(inode, cur_offset,
2916 drop_args.drop_end - cur_offset);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002917 if (ret) {
2918 btrfs_abort_transaction(trans, ret);
2919 goto out_trans;
2920 }
2921
Filipe Manana9cba40a2019-06-28 23:11:26 +01002922 }
Filipe Mananabf385642020-09-08 11:27:22 +01002923 if (extent_info) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002924 ret = btrfs_insert_replace_extent(trans, inode, path,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002925 extent_info, extent_info->data_len,
2926 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002927 if (ret) {
2928 btrfs_abort_transaction(trans, ret);
2929 goto out_trans;
2930 }
2931 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002932
2933out_trans:
2934 if (!trans)
2935 goto out_free;
2936
2937 trans->block_rsv = &fs_info->trans_block_rsv;
2938 if (ret)
2939 btrfs_end_transaction(trans);
2940 else
2941 *trans_out = trans;
2942out_free:
2943 btrfs_free_block_rsv(fs_info, rsv);
2944out:
2945 return ret;
2946}
2947
Josef Bacik2aaa6652012-08-29 14:27:18 -04002948static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2949{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002950 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002951 struct btrfs_root *root = BTRFS_I(inode)->root;
2952 struct extent_state *cached_state = NULL;
2953 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002954 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002955 u64 lockstart;
2956 u64 lockend;
2957 u64 tail_start;
2958 u64 tail_len;
2959 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002960 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302961 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002962 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302963 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002964 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002965
Josef Bacik0ef8b722013-10-25 16:13:35 -04002966 ret = btrfs_wait_ordered_range(inode, offset, len);
2967 if (ret)
2968 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002969
Josef Bacik8d9b4a12021-02-10 17:14:36 -05002970 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002971 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002972 ret = find_first_non_hole(BTRFS_I(inode), &offset, &len);
Qu Wenruod7781542014-05-30 15:16:10 +08002973 if (ret < 0)
2974 goto out_only_mutex;
2975 if (ret && !len) {
2976 /* Already in a large hole */
2977 ret = 0;
2978 goto out_only_mutex;
2979 }
2980
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002981 lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode)));
Qu Wenruod7781542014-05-30 15:16:10 +08002982 lockend = round_down(offset + len,
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002983 btrfs_inode_sectorsize(BTRFS_I(inode))) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002984 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2985 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002986 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302987 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002988 * because we are sure there is no data there.
2989 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002990 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302991 * Only do this if we are in the same block and we aren't doing the
2992 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002993 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002994 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002995 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302996 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02002997 ret = btrfs_truncate_block(BTRFS_I(inode), offset, len,
2998 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002999 } else {
3000 ret = 0;
3001 }
Qu Wenruod7781542014-05-30 15:16:10 +08003002 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003003 }
3004
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303005 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00003006 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303007 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003008 ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00003009 if (ret) {
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003010 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Miao Xie7426cc02012-12-05 10:54:52 +00003011 return ret;
3012 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04003013 }
3014
Qu Wenruod7781542014-05-30 15:16:10 +08003015 /* Check the aligned pages after the first unaligned page,
3016 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04003017 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08003018 * the extra check can be skipped */
3019 if (offset == orig_start) {
3020 /* after truncate page, check hole again */
3021 len = offset + len - lockstart;
3022 offset = lockstart;
Nikolay Borisovdea46d82020-11-02 16:49:01 +02003023 ret = find_first_non_hole(BTRFS_I(inode), &offset, &len);
Qu Wenruod7781542014-05-30 15:16:10 +08003024 if (ret < 0)
3025 goto out_only_mutex;
3026 if (ret && !len) {
3027 ret = 0;
3028 goto out_only_mutex;
3029 }
3030 lockstart = offset;
3031 }
3032
3033 /* Check the tail unaligned part is in a hole */
3034 tail_start = lockend + 1;
3035 tail_len = offset + len - tail_start;
3036 if (tail_len) {
Nikolay Borisovdea46d82020-11-02 16:49:01 +02003037 ret = find_first_non_hole(BTRFS_I(inode), &tail_start, &tail_len);
Qu Wenruod7781542014-05-30 15:16:10 +08003038 if (unlikely(ret < 0))
3039 goto out_only_mutex;
3040 if (!ret) {
3041 /* zero the front end of the last page */
3042 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303043 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003044 ret = btrfs_truncate_block(BTRFS_I(inode),
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303045 tail_start + tail_len,
3046 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08003047 if (ret)
3048 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08003049 }
Miao Xie00612802012-12-05 10:54:12 +00003050 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04003051 }
3052
3053 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00003054 ret = 0;
3055 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003056 }
3057
Filipe Mananaf27451f2017-10-25 11:55:28 +01003058 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3059 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04003060 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01003061 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003062
3063 path = btrfs_alloc_path();
3064 if (!path) {
3065 ret = -ENOMEM;
3066 goto out;
3067 }
3068
Nikolay Borisovbfc78472021-02-17 15:12:47 +02003069 ret = btrfs_replace_file_extents(BTRFS_I(inode), path, lockstart,
3070 lockend, NULL, &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003071 btrfs_free_path(path);
3072 if (ret)
3073 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003074
Filipe Manana9cba40a2019-06-28 23:11:26 +01003075 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00003076 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003077 inode->i_mtime = inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003078 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananae8c1c762015-02-15 22:38:54 +00003079 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003080 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003081 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003082out:
3083 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003084 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08003085out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01003086 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00003087 /*
3088 * If we only end up zeroing part of a page, we still need to
3089 * update the inode item, so that all the time fields are
3090 * updated as well as the necessary btrfs inode in memory fields
3091 * for detecting, at fsync time, if the inode isn't yet in the
3092 * log tree or it's there but not up to date.
3093 */
Filipe Manana17900662019-06-19 13:05:50 +01003094 struct timespec64 now = current_time(inode);
3095
3096 inode_inc_iversion(inode);
3097 inode->i_mtime = now;
3098 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003099 trans = btrfs_start_transaction(root, 1);
3100 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003101 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00003102 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003103 int ret2;
3104
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003105 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Manana9cba40a2019-06-28 23:11:26 +01003106 ret2 = btrfs_end_transaction(trans);
3107 if (!ret)
3108 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003109 }
3110 }
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003111 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003112 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003113}
3114
Qu Wenruo14524a82015-09-08 17:22:44 +08003115/* Helper structure to record which range is already reserved */
3116struct falloc_range {
3117 struct list_head list;
3118 u64 start;
3119 u64 len;
3120};
3121
3122/*
3123 * Helper function to add falloc range
3124 *
3125 * Caller should have locked the larger range of extent containing
3126 * [start, len)
3127 */
3128static int add_falloc_range(struct list_head *head, u64 start, u64 len)
3129{
Qu Wenruo14524a82015-09-08 17:22:44 +08003130 struct falloc_range *range = NULL;
3131
Nikolay Borisov77d25532021-06-01 09:08:15 +03003132 if (!list_empty(head)) {
3133 /*
3134 * As fallocate iterates by bytenr order, we only need to check
3135 * the last range.
3136 */
3137 range = list_last_entry(head, struct falloc_range, list);
3138 if (range->start + range->len == start) {
3139 range->len += len;
3140 return 0;
3141 }
Qu Wenruo14524a82015-09-08 17:22:44 +08003142 }
Nikolay Borisov77d25532021-06-01 09:08:15 +03003143
David Sterba32fc9322016-02-11 14:25:38 +01003144 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08003145 if (!range)
3146 return -ENOMEM;
3147 range->start = start;
3148 range->len = len;
3149 list_add_tail(&range->list, head);
3150 return 0;
3151}
3152
Filipe Mananaf27451f2017-10-25 11:55:28 +01003153static int btrfs_fallocate_update_isize(struct inode *inode,
3154 const u64 end,
3155 const int mode)
3156{
3157 struct btrfs_trans_handle *trans;
3158 struct btrfs_root *root = BTRFS_I(inode)->root;
3159 int ret;
3160 int ret2;
3161
3162 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
3163 return 0;
3164
3165 trans = btrfs_start_transaction(root, 1);
3166 if (IS_ERR(trans))
3167 return PTR_ERR(trans);
3168
3169 inode->i_ctime = current_time(inode);
3170 i_size_write(inode, end);
Nikolay Borisov76aea532020-11-02 16:48:53 +02003171 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003172 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003173 ret2 = btrfs_end_transaction(trans);
3174
3175 return ret ? ret : ret2;
3176}
3177
Filipe Manana81fdf632018-01-18 11:34:31 +00003178enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003179 RANGE_BOUNDARY_WRITTEN_EXTENT,
3180 RANGE_BOUNDARY_PREALLOC_EXTENT,
3181 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003182};
3183
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003184static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003185 u64 offset)
3186{
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003187 const u64 sectorsize = btrfs_inode_sectorsize(inode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003188 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003189 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003190
3191 offset = round_down(offset, sectorsize);
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003192 em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003193 if (IS_ERR(em))
3194 return PTR_ERR(em);
3195
3196 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003197 ret = RANGE_BOUNDARY_HOLE;
3198 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3199 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3200 else
3201 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003202
3203 free_extent_map(em);
3204 return ret;
3205}
3206
3207static int btrfs_zero_range(struct inode *inode,
3208 loff_t offset,
3209 loff_t len,
3210 const int mode)
3211{
3212 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3213 struct extent_map *em;
3214 struct extent_changeset *data_reserved = NULL;
3215 int ret;
3216 u64 alloc_hint = 0;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003217 const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003218 u64 alloc_start = round_down(offset, sectorsize);
3219 u64 alloc_end = round_up(offset + len, sectorsize);
3220 u64 bytes_to_reserve = 0;
3221 bool space_reserved = false;
3222
3223 inode_dio_wait(inode);
3224
Omar Sandoval39b07b52019-12-02 17:34:23 -08003225 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3226 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003227 if (IS_ERR(em)) {
3228 ret = PTR_ERR(em);
3229 goto out;
3230 }
3231
3232 /*
3233 * Avoid hole punching and extent allocation for some cases. More cases
3234 * could be considered, but these are unlikely common and we keep things
3235 * as simple as possible for now. Also, intentionally, if the target
3236 * range contains one or more prealloc extents together with regular
3237 * extents and holes, we drop all the existing extents and allocate a
3238 * new prealloc extent, so that we get a larger contiguous disk extent.
3239 */
3240 if (em->start <= alloc_start &&
3241 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3242 const u64 em_end = em->start + em->len;
3243
3244 if (em_end >= offset + len) {
3245 /*
3246 * The whole range is already a prealloc extent,
3247 * do nothing except updating the inode's i_size if
3248 * needed.
3249 */
3250 free_extent_map(em);
3251 ret = btrfs_fallocate_update_isize(inode, offset + len,
3252 mode);
3253 goto out;
3254 }
3255 /*
3256 * Part of the range is already a prealloc extent, so operate
3257 * only on the remaining part of the range.
3258 */
3259 alloc_start = em_end;
3260 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3261 len = offset + len - alloc_start;
3262 offset = alloc_start;
3263 alloc_hint = em->block_start + em->len;
3264 }
3265 free_extent_map(em);
3266
3267 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3268 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003269 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3270 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003271 if (IS_ERR(em)) {
3272 ret = PTR_ERR(em);
3273 goto out;
3274 }
3275
3276 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3277 free_extent_map(em);
3278 ret = btrfs_fallocate_update_isize(inode, offset + len,
3279 mode);
3280 goto out;
3281 }
3282 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3283 free_extent_map(em);
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003284 ret = btrfs_truncate_block(BTRFS_I(inode), offset, len,
3285 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003286 if (!ret)
3287 ret = btrfs_fallocate_update_isize(inode,
3288 offset + len,
3289 mode);
3290 return ret;
3291 }
3292 free_extent_map(em);
3293 alloc_start = round_down(offset, sectorsize);
3294 alloc_end = alloc_start + sectorsize;
3295 goto reserve_space;
3296 }
3297
3298 alloc_start = round_up(offset, sectorsize);
3299 alloc_end = round_down(offset + len, sectorsize);
3300
3301 /*
3302 * For unaligned ranges, check the pages at the boundaries, they might
3303 * map to an extent, in which case we need to partially zero them, or
3304 * they might map to a hole, in which case we need our allocation range
3305 * to cover them.
3306 */
3307 if (!IS_ALIGNED(offset, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003308 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
3309 offset);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003310 if (ret < 0)
3311 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003312 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003313 alloc_start = round_down(offset, sectorsize);
3314 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003315 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003316 ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003317 if (ret)
3318 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003319 } else {
3320 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003321 }
3322 }
3323
3324 if (!IS_ALIGNED(offset + len, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003325 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
Filipe Mananaf27451f2017-10-25 11:55:28 +01003326 offset + len);
3327 if (ret < 0)
3328 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003329 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003330 alloc_end = round_up(offset + len, sectorsize);
3331 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003332 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003333 ret = btrfs_truncate_block(BTRFS_I(inode), offset + len,
3334 0, 1);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003335 if (ret)
3336 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003337 } else {
3338 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003339 }
3340 }
3341
3342reserve_space:
3343 if (alloc_start < alloc_end) {
3344 struct extent_state *cached_state = NULL;
3345 const u64 lockstart = alloc_start;
3346 const u64 lockend = alloc_end - 1;
3347
3348 bytes_to_reserve = alloc_end - alloc_start;
3349 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3350 bytes_to_reserve);
3351 if (ret < 0)
3352 goto out;
3353 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003354 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3355 &cached_state);
3356 if (ret)
3357 goto out;
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003358 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved,
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003359 alloc_start, bytes_to_reserve);
Nikolay Borisov4f6a49d2021-02-23 15:20:42 +02003360 if (ret) {
3361 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3362 lockend, &cached_state);
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003363 goto out;
Nikolay Borisov4f6a49d2021-02-23 15:20:42 +02003364 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003365 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3366 alloc_end - alloc_start,
3367 i_blocksize(inode),
3368 offset + len, &alloc_hint);
3369 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3370 lockend, &cached_state);
3371 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003372 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003373 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003374 goto out;
3375 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003376 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003377 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003378 out:
3379 if (ret && space_reserved)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003380 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003381 alloc_start, bytes_to_reserve);
3382 extent_changeset_free(data_reserved);
3383
3384 return ret;
3385}
3386
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003387static long btrfs_fallocate(struct file *file, int mode,
3388 loff_t offset, loff_t len)
3389{
Al Viro496ad9a2013-01-23 17:07:38 -05003390 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003391 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003392 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003393 struct falloc_range *range;
3394 struct falloc_range *tmp;
3395 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003396 u64 cur_offset;
3397 u64 last_byte;
3398 u64 alloc_start;
3399 u64 alloc_end;
3400 u64 alloc_hint = 0;
3401 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003402 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003403 struct extent_map *em;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003404 int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003405 int ret;
3406
Naohiro Aotaf1569c42020-11-10 20:26:12 +09003407 /* Do not allow fallocate in ZONED mode */
3408 if (btrfs_is_zoned(btrfs_sb(inode->i_sb)))
3409 return -EOPNOTSUPP;
3410
Miao Xie797f4272012-11-28 10:28:07 +00003411 alloc_start = round_down(offset, blocksize);
3412 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003413 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003414
Josef Bacik2aaa6652012-08-29 14:27:18 -04003415 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003416 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3417 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003418 return -EOPNOTSUPP;
3419
Josef Bacik2aaa6652012-08-29 14:27:18 -04003420 if (mode & FALLOC_FL_PUNCH_HOLE)
3421 return btrfs_punch_hole(inode, offset, len);
3422
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003423 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003424 * Only trigger disk allocation, don't trigger qgroup reserve
3425 *
3426 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003427 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003428 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3429 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3430 alloc_end - alloc_start);
3431 if (ret < 0)
3432 return ret;
3433 }
Chris Masond98456f2012-01-31 20:27:41 -05003434
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003435 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003436
3437 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3438 ret = inode_newsize_ok(inode, offset + len);
3439 if (ret)
3440 goto out;
3441 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003442
Qu Wenruo14524a82015-09-08 17:22:44 +08003443 /*
3444 * TODO: Move these two operations after we have checked
3445 * accurate reserved space, or fallocate can still fail but
3446 * with page truncated or size expanded.
3447 *
3448 * But that's a minor problem and won't do much harm BTW.
3449 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003450 if (alloc_start > inode->i_size) {
Nikolay Borisovb06359a2020-11-02 16:49:04 +02003451 ret = btrfs_cont_expand(BTRFS_I(inode), i_size_read(inode),
Josef Bacika41ad392011-01-31 15:30:16 -05003452 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003453 if (ret)
3454 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003455 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003456 /*
3457 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303458 * need to zero out the end of the block if i_size lands in the
3459 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003460 */
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003461 ret = btrfs_truncate_block(BTRFS_I(inode), inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003462 if (ret)
3463 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003464 }
3465
Josef Bacika71754f2013-06-17 17:14:39 -04003466 /*
3467 * wait for ordered IO before we have any locks. We'll loop again
3468 * below with the locks held.
3469 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003470 ret = btrfs_wait_ordered_range(inode, alloc_start,
3471 alloc_end - alloc_start);
3472 if (ret)
3473 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003474
Filipe Mananaf27451f2017-10-25 11:55:28 +01003475 if (mode & FALLOC_FL_ZERO_RANGE) {
3476 ret = btrfs_zero_range(inode, offset, len, mode);
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003477 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003478 return ret;
3479 }
3480
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003481 locked_end = alloc_end - 1;
3482 while (1) {
3483 struct btrfs_ordered_extent *ordered;
3484
3485 /* the extent lock is ordered inside the running
3486 * transaction
3487 */
3488 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003489 locked_end, &cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03003490 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
3491 locked_end);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003492
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003493 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003494 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003495 ordered->file_offset < alloc_end) {
3496 btrfs_put_ordered_extent(ordered);
3497 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3498 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003499 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003500 /*
3501 * we can't wait on the range with the transaction
3502 * running or with the extent lock held
3503 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003504 ret = btrfs_wait_ordered_range(inode, alloc_start,
3505 alloc_end - alloc_start);
3506 if (ret)
3507 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003508 } else {
3509 if (ordered)
3510 btrfs_put_ordered_extent(ordered);
3511 break;
3512 }
3513 }
3514
Qu Wenruo14524a82015-09-08 17:22:44 +08003515 /* First, check if we exceed the qgroup limit */
3516 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003517 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003518 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003519 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003520 if (IS_ERR(em)) {
3521 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003522 break;
3523 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003524 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003525 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003526 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003527 if (em->block_start == EXTENT_MAP_HOLE ||
3528 (cur_offset >= inode->i_size &&
3529 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003530 ret = add_falloc_range(&reserve_list, cur_offset,
3531 last_byte - cur_offset);
3532 if (ret < 0) {
3533 free_extent_map(em);
3534 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003535 }
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003536 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode),
3537 &data_reserved, cur_offset,
3538 last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003539 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003540 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003541 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003542 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003543 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003544 } else {
3545 /*
3546 * Do not need to reserve unwritten extent for this
3547 * range, free reserved data space first, otherwise
3548 * it'll result in false ENOSPC error.
3549 */
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003550 btrfs_free_reserved_data_space(BTRFS_I(inode),
3551 data_reserved, cur_offset,
3552 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003553 }
3554 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003555 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003556 }
3557
3558 /*
3559 * If ret is still 0, means we're OK to fallocate.
3560 * Or just cleanup the list and exit.
3561 */
3562 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3563 if (!ret)
3564 ret = btrfs_prealloc_file_range(inode, mode,
3565 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003566 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003567 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003568 else
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003569 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08003570 data_reserved, range->start,
3571 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003572 list_del(&range->list);
3573 kfree(range);
3574 }
3575 if (ret < 0)
3576 goto out_unlock;
3577
Filipe Mananaf27451f2017-10-25 11:55:28 +01003578 /*
3579 * We didn't need to allocate any more space, but we still extended the
3580 * size of the file so we need to update i_size and the inode item.
3581 */
3582 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003583out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003584 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003585 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003586out:
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003587 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Chris Masond98456f2012-01-31 20:27:41 -05003588 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003589 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003590 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003591 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003592 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003593 return ret;
3594}
3595
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003596static loff_t find_desired_extent(struct btrfs_inode *inode, loff_t offset,
Nikolay Borisovbc802302019-09-27 13:23:18 +03003597 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003598{
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003599 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik7f4ca372013-10-18 11:44:46 -04003600 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003601 struct extent_state *cached_state = NULL;
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003602 loff_t i_size = inode->vfs_inode.i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003603 u64 lockstart;
3604 u64 lockend;
3605 u64 start;
3606 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003607 int ret = 0;
3608
Nikolay Borisovbc802302019-09-27 13:23:18 +03003609 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003610 return -ENXIO;
3611
Liu Bo4d1a40c2014-09-16 17:49:30 +08003612 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003613 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003614 * the very start of the file.
3615 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003616 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003617
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003618 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003619 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003620 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003621 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003622 lockend--;
3623 len = lockend - lockstart + 1;
3624
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003625 lock_extent_bits(&inode->io_tree, lockstart, lockend, &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003626
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003627 while (start < i_size) {
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003628 em = btrfs_get_extent_fiemap(inode, start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003629 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003630 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003631 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003632 break;
3633 }
3634
Josef Bacik7f4ca372013-10-18 11:44:46 -04003635 if (whence == SEEK_HOLE &&
3636 (em->block_start == EXTENT_MAP_HOLE ||
3637 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3638 break;
3639 else if (whence == SEEK_DATA &&
3640 (em->block_start != EXTENT_MAP_HOLE &&
3641 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3642 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003643
3644 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003645 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003646 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003647 cond_resched();
3648 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003649 free_extent_map(em);
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003650 unlock_extent_cached(&inode->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003651 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003652 if (ret) {
3653 offset = ret;
3654 } else {
3655 if (whence == SEEK_DATA && start >= i_size)
3656 offset = -ENXIO;
3657 else
3658 offset = min_t(loff_t, start, i_size);
3659 }
3660
3661 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003662}
3663
Andrew Morton965c8e52012-12-17 15:59:39 -08003664static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003665{
3666 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003667
Andrew Morton965c8e52012-12-17 15:59:39 -08003668 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003669 default:
3670 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003671 case SEEK_DATA:
3672 case SEEK_HOLE:
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003673 btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED);
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003674 offset = find_desired_extent(BTRFS_I(inode), offset, whence);
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003675 btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003676 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003677 }
3678
Nikolay Borisovbc802302019-09-27 13:23:18 +03003679 if (offset < 0)
3680 return offset;
3681
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003682 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003683}
3684
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003685static int btrfs_file_open(struct inode *inode, struct file *filp)
3686{
Boris Burkov14605402021-06-30 13:01:49 -07003687 int ret;
3688
Jens Axboe8730f122020-05-22 10:19:22 -06003689 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Boris Burkov14605402021-06-30 13:01:49 -07003690
3691 ret = fsverity_file_open(inode, filp);
3692 if (ret)
3693 return ret;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003694 return generic_file_open(inode, filp);
3695}
3696
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003697static int check_direct_read(struct btrfs_fs_info *fs_info,
3698 const struct iov_iter *iter, loff_t offset)
3699{
3700 int ret;
3701 int i, seg;
3702
3703 ret = check_direct_IO(fs_info, iter, offset);
3704 if (ret < 0)
3705 return ret;
3706
3707 if (!iter_is_iovec(iter))
3708 return 0;
3709
3710 for (seg = 0; seg < iter->nr_segs; seg++)
3711 for (i = seg + 1; i < iter->nr_segs; i++)
3712 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
3713 return -EINVAL;
3714 return 0;
3715}
3716
3717static ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to)
3718{
3719 struct inode *inode = file_inode(iocb->ki_filp);
Filipe Manana51bd9562021-10-25 17:27:47 +01003720 size_t prev_left = 0;
3721 ssize_t read = 0;
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003722 ssize_t ret;
3723
Boris Burkov14605402021-06-30 13:01:49 -07003724 if (fsverity_active(inode))
3725 return 0;
3726
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003727 if (check_direct_read(btrfs_sb(inode->i_sb), to, iocb->ki_pos))
3728 return 0;
3729
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003730 btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED);
Filipe Manana51bd9562021-10-25 17:27:47 +01003731again:
3732 /*
3733 * This is similar to what we do for direct IO writes, see the comment
3734 * at btrfs_direct_write(), but we also disable page faults in addition
3735 * to disabling them only at the iov_iter level. This is because when
3736 * reading from a hole or prealloc extent, iomap calls iov_iter_zero(),
3737 * which can still trigger page fault ins despite having set ->nofault
3738 * to true of our 'to' iov_iter.
3739 *
3740 * The difference to direct IO writes is that we deadlock when trying
3741 * to lock the extent range in the inode's tree during he page reads
3742 * triggered by the fault in (while for writes it is due to waiting for
3743 * our own ordered extent). This is because for direct IO reads,
3744 * btrfs_dio_iomap_begin() returns with the extent range locked, which
3745 * is only unlocked in the endio callback (end_bio_extent_readpage()).
3746 */
3747 pagefault_disable();
3748 to->nofault = true;
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +02003749 ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops,
Filipe Manana51bd9562021-10-25 17:27:47 +01003750 IOMAP_DIO_PARTIAL, read);
3751 to->nofault = false;
3752 pagefault_enable();
3753
3754 /* No increment (+=) because iomap returns a cumulative value. */
3755 if (ret > 0)
3756 read = ret;
3757
3758 if (iov_iter_count(to) > 0 && (ret == -EFAULT || ret > 0)) {
3759 const size_t left = iov_iter_count(to);
3760
3761 if (left == prev_left) {
3762 /*
3763 * We didn't make any progress since the last attempt,
3764 * fallback to a buffered read for the remainder of the
3765 * range. This is just to avoid any possibility of looping
3766 * for too long.
3767 */
3768 ret = read;
3769 } else {
3770 /*
3771 * We made some progress since the last retry or this is
3772 * the first time we are retrying. Fault in as many pages
3773 * as possible and retry.
3774 */
3775 fault_in_iov_iter_writeable(to, left);
3776 prev_left = left;
3777 goto again;
3778 }
3779 }
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003780 btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED);
Filipe Manana51bd9562021-10-25 17:27:47 +01003781 return ret < 0 ? ret : read;
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003782}
3783
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003784static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3785{
3786 ssize_t ret = 0;
3787
3788 if (iocb->ki_flags & IOCB_DIRECT) {
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003789 ret = btrfs_direct_read(iocb, to);
Johannes Thumshirn0425e7b2020-10-22 23:05:05 +09003790 if (ret < 0 || !iov_iter_count(to) ||
3791 iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp)))
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003792 return ret;
3793 }
3794
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08003795 return filemap_read(iocb, to, ret);
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003796}
3797
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003798const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003799 .llseek = btrfs_file_llseek,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003800 .read_iter = btrfs_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003801 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003802 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003803 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003804 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003805 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003806 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003807 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003808 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003809 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003810#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003811 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003812#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003813 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003814};
Miao Xie9247f312012-11-26 09:24:43 +00003815
David Sterbae67c7182018-02-19 17:24:18 +01003816void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003817{
Kinglong Mee5598e902016-01-29 21:36:35 +08003818 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003819}
3820
Liu Bof5c29bd2017-11-02 17:21:50 -06003821int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003822{
3823 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3824 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003825 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003826 NULL);
3827 if (!btrfs_inode_defrag_cachep)
3828 return -ENOMEM;
3829
3830 return 0;
3831}
Filipe Manana728404d2014-10-10 09:43:11 +01003832
3833int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3834{
3835 int ret;
3836
3837 /*
3838 * So with compression we will find and lock a dirty page and clear the
3839 * first one as dirty, setup an async extent, and immediately return
3840 * with the entire range locked but with nobody actually marked with
3841 * writeback. So we can't just filemap_write_and_wait_range() and
3842 * expect it to work since it will just kick off a thread to do the
3843 * actual work. So we need to call filemap_fdatawrite_range _again_
3844 * since it will wait on the page lock, which won't be unlocked until
3845 * after the pages have been marked as writeback and so we're good to go
3846 * from there. We have to do this otherwise we'll miss the ordered
3847 * extents and that results in badness. Please Josef, do not think you
3848 * know better and pull this out at some point in the future, it is
3849 * right and you are wrong.
3850 */
3851 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3852 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3853 &BTRFS_I(inode)->runtime_flags))
3854 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3855
3856 return ret;
3857}