blob: d0081b2d47ab6e8dd5129ee214a4679b5e794221 [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>
Chris Mason39279cc2007-06-12 06:35:45 -040019#include "ctree.h"
20#include "disk-io.h"
21#include "transaction.h"
22#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040023#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "tree-log.h"
25#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040026#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070027#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080028#include "compression.h"
Josef Bacik86736342019-06-19 15:12:00 -040029#include "delalloc-space.h"
Filipe Manana6a177382020-02-28 13:04:17 +000030#include "reflink.h"
Qu Wenruof02a85d2021-05-31 16:50:41 +080031#include "subpage.h"
Chris Mason39279cc2007-06-12 06:35:45 -040032
Miao Xie9247f312012-11-26 09:24:43 +000033static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040034/*
35 * when auto defrag is enabled we
36 * queue up these defrag structs to remember which
37 * inodes need defragging passes
38 */
39struct inode_defrag {
40 struct rb_node rb_node;
41 /* objectid */
42 u64 ino;
43 /*
44 * transid where the defrag was added, we search for
45 * extents newer than this
46 */
47 u64 transid;
48
49 /* root objectid */
50 u64 root;
51
52 /* last offset we were able to defrag */
53 u64 last_offset;
54
55 /* if we've wrapped around back to zero once already */
56 int cycled;
57};
58
Miao Xie762f2262012-05-24 18:58:27 +080059static int __compare_inode_defrag(struct inode_defrag *defrag1,
60 struct inode_defrag *defrag2)
61{
62 if (defrag1->root > defrag2->root)
63 return 1;
64 else if (defrag1->root < defrag2->root)
65 return -1;
66 else if (defrag1->ino > defrag2->ino)
67 return 1;
68 else if (defrag1->ino < defrag2->ino)
69 return -1;
70 else
71 return 0;
72}
73
Chris Mason4cb53002011-05-24 15:35:30 -040074/* pop a record for an inode into the defrag tree. The lock
75 * must be held already
76 *
77 * If you're inserting a record for an older transid than an
78 * existing record, the transid already in the tree is lowered
79 *
80 * If an existing record is found the defrag item you
81 * pass in is freed
82 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020083static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040084 struct inode_defrag *defrag)
85{
David Sterba3ffbd682018-06-29 10:56:42 +020086 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040087 struct inode_defrag *entry;
88 struct rb_node **p;
89 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080090 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040091
Jeff Mahoney0b246af2016-06-22 18:54:23 -040092 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040093 while (*p) {
94 parent = *p;
95 entry = rb_entry(parent, struct inode_defrag, rb_node);
96
Miao Xie762f2262012-05-24 18:58:27 +080097 ret = __compare_inode_defrag(defrag, entry);
98 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040099 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800100 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400101 p = &parent->rb_right;
102 else {
103 /* if we're reinserting an entry for
104 * an old defrag run, make sure to
105 * lower the transid of our existing record
106 */
107 if (defrag->transid < entry->transid)
108 entry->transid = defrag->transid;
109 if (defrag->last_offset > entry->last_offset)
110 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000111 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400112 }
113 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200114 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400115 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400116 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000117 return 0;
118}
Chris Mason4cb53002011-05-24 15:35:30 -0400119
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400120static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000121{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400122 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000123 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400124
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400125 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000126 return 0;
127
128 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400129}
130
131/*
132 * insert a defrag record for this inode if auto defrag is
133 * enabled
134 */
135int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200136 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400137{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200138 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200139 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400140 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400141 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000142 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400143
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400144 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400145 return 0;
146
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200147 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400148 return 0;
149
150 if (trans)
151 transid = trans->transid;
152 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200153 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400154
Miao Xie9247f312012-11-26 09:24:43 +0000155 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400156 if (!defrag)
157 return -ENOMEM;
158
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200159 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400160 defrag->transid = transid;
161 defrag->root = root->root_key.objectid;
162
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400163 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200164 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000165 /*
166 * If we set IN_DEFRAG flag and evict the inode from memory,
167 * and then re-read this inode, this new inode doesn't have
168 * IN_DEFRAG flag. At the case, we may find the existed defrag.
169 */
170 ret = __btrfs_add_inode_defrag(inode, defrag);
171 if (ret)
172 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
173 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000174 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000175 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400176 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000177 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400178}
179
180/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000181 * Requeue the defrag object. If there is a defrag object that points to
182 * the same inode in the tree, we will merge them together (by
183 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400184 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200185static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000186 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000187{
David Sterba3ffbd682018-06-29 10:56:42 +0200188 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000189 int ret;
190
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400191 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000192 goto out;
193
194 /*
195 * Here we don't check the IN_DEFRAG flag, because we need merge
196 * them together.
197 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400198 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000199 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400200 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000201 if (ret)
202 goto out;
203 return;
204out:
205 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
206}
207
208/*
Miao Xie26176e72012-11-26 09:26:20 +0000209 * pick the defragable inode that we want, if it doesn't exist, we will get
210 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400211 */
Miao Xie26176e72012-11-26 09:26:20 +0000212static struct inode_defrag *
213btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400214{
215 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800216 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400217 struct rb_node *p;
218 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800219 int ret;
220
221 tmp.ino = ino;
222 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400223
Miao Xie26176e72012-11-26 09:26:20 +0000224 spin_lock(&fs_info->defrag_inodes_lock);
225 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400226 while (p) {
227 parent = p;
228 entry = rb_entry(parent, struct inode_defrag, rb_node);
229
Miao Xie762f2262012-05-24 18:58:27 +0800230 ret = __compare_inode_defrag(&tmp, entry);
231 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400232 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800233 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400234 p = parent->rb_right;
235 else
Miao Xie26176e72012-11-26 09:26:20 +0000236 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400237 }
238
Miao Xie26176e72012-11-26 09:26:20 +0000239 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
240 parent = rb_next(parent);
241 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400242 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000243 else
244 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400245 }
Miao Xie26176e72012-11-26 09:26:20 +0000246out:
247 if (entry)
248 rb_erase(parent, &fs_info->defrag_inodes);
249 spin_unlock(&fs_info->defrag_inodes_lock);
250 return entry;
251}
252
253void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
254{
255 struct inode_defrag *defrag;
256 struct rb_node *node;
257
258 spin_lock(&fs_info->defrag_inodes_lock);
259 node = rb_first(&fs_info->defrag_inodes);
260 while (node) {
261 rb_erase(node, &fs_info->defrag_inodes);
262 defrag = rb_entry(node, struct inode_defrag, rb_node);
263 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
264
David Sterba351810c2015-01-08 15:20:54 +0100265 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000266
267 node = rb_first(&fs_info->defrag_inodes);
268 }
269 spin_unlock(&fs_info->defrag_inodes_lock);
270}
271
272#define BTRFS_DEFRAG_BATCH 1024
273
274static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
275 struct inode_defrag *defrag)
276{
277 struct btrfs_root *inode_root;
278 struct inode *inode;
Miao Xie26176e72012-11-26 09:26:20 +0000279 struct btrfs_ioctl_defrag_range_args range;
280 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000281 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000282
283 /* get the inode */
David Sterba56e93572020-05-15 19:35:55 +0200284 inode_root = btrfs_get_fs_root(fs_info, defrag->root, true);
Miao Xie26176e72012-11-26 09:26:20 +0000285 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000286 ret = PTR_ERR(inode_root);
287 goto cleanup;
288 }
Miao Xie26176e72012-11-26 09:26:20 +0000289
David Sterba0202e832020-05-15 19:35:59 +0200290 inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root);
Josef Bacik00246522020-01-24 09:33:01 -0500291 btrfs_put_root(inode_root);
Miao Xie26176e72012-11-26 09:26:20 +0000292 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000293 ret = PTR_ERR(inode);
294 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000295 }
296
297 /* do a chunk of defrag */
298 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
299 memset(&range, 0, sizeof(range));
300 range.len = (u64)-1;
301 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000302
303 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000304 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
305 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000306 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000307 /*
308 * if we filled the whole defrag batch, there
309 * must be more work to do. Queue this defrag
310 * again
311 */
312 if (num_defrag == BTRFS_DEFRAG_BATCH) {
313 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200314 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000315 } else if (defrag->last_offset && !defrag->cycled) {
316 /*
317 * we didn't fill our defrag batch, but
318 * we didn't start at zero. Make sure we loop
319 * around to the start of the file.
320 */
321 defrag->last_offset = 0;
322 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200323 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000324 } else {
325 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
326 }
327
328 iput(inode);
329 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000330cleanup:
Liu Bo6f1c3602013-01-29 03:22:10 +0000331 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
332 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400333}
334
335/*
336 * run through the list of inodes in the FS that need
337 * defragging
338 */
339int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
340{
341 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400342 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800343 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400344
345 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530346 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700347 /* Pause the auto defragger. */
348 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
349 &fs_info->fs_state))
350 break;
351
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400352 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000353 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400354
355 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000356 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
357 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400358 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000359 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800360 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400361 first_ino = 0;
362 continue;
363 } else {
364 break;
365 }
366 }
367
Chris Mason4cb53002011-05-24 15:35:30 -0400368 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800369 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400370
Miao Xie26176e72012-11-26 09:26:20 +0000371 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400372 }
Chris Mason4cb53002011-05-24 15:35:30 -0400373 atomic_dec(&fs_info->defrag_running);
374
375 /*
376 * during unmount, we use the transaction_wait queue to
377 * wait for the defragger to stop
378 */
379 wake_up(&fs_info->transaction_wait);
380 return 0;
381}
Chris Mason39279cc2007-06-12 06:35:45 -0400382
Chris Masond352ac62008-09-29 15:18:18 -0400383/* simple helper to fault in pages and copy. This should go away
384 * and be replaced with calls into generic code.
385 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800386static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400387 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400388 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400389{
Xin Zhong914ee292010-12-09 09:30:14 +0000390 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500391 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400392 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100393 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400394
Josef Bacik11c65dc2010-05-23 11:07:21 -0400395 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400396 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300397 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400398 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000399 /*
400 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000401 */
Xin Zhong914ee292010-12-09 09:30:14 +0000402 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400403
Chris Mason39279cc2007-06-12 06:35:45 -0400404 /* Flush processor's dcache for this page */
405 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500406
407 /*
408 * if we get a partial write, we can end up with
409 * partially up to date pages. These add
410 * a lot of complexity, so make sure they don't
411 * happen by forcing this copy to be retried.
412 *
413 * The rest of the btrfs_file_write code will fall
414 * back to page at a time copies after we return 0.
415 */
416 if (!PageUptodate(page) && copied < count)
417 copied = 0;
418
Josef Bacik11c65dc2010-05-23 11:07:21 -0400419 iov_iter_advance(i, copied);
420 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000421 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400422
Al Virob30ac0f2014-04-03 14:29:04 -0400423 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500424 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000425 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400426
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300427 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400428 offset += copied;
429 } else {
430 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 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000440static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400441{
442 size_t i;
443 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400444 /* page checked is some magic around finding pages that
445 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700446 * clear it here. There should be no need to mark the pages
447 * accessed as prepare_pages should have marked them accessed
448 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400449 */
Chris Mason4a096752008-07-21 10:29:44 -0400450 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400451 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300452 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400453 }
454}
455
Chris Masond352ac62008-09-29 15:18:18 -0400456/*
Qu Wenruoc0fab482021-01-06 09:01:42 +0800457 * After btrfs_copy_from_user(), update the following things for delalloc:
458 * - Mark newly dirtied pages as DELALLOC in the io tree.
459 * Used to advise which range is to be written back.
460 * - Mark modified pages as Uptodate/Dirty and not needing COW fixup
461 * - Update inode size for past EOF write
Chris Masond352ac62008-09-29 15:18:18 -0400462 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300463int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400464 size_t num_pages, loff_t pos, size_t write_bytes,
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500465 struct extent_state **cached, bool noreserve)
Chris Mason39279cc2007-06-12 06:35:45 -0400466{
Nikolay Borisov088545f2020-06-03 08:55:36 +0300467 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400468 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400469 int i;
Chris Masondb945352007-10-15 16:15:53 -0400470 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400471 u64 start_pos;
472 u64 end_of_last_block;
473 u64 end_pos = pos + write_bytes;
Nikolay Borisov088545f2020-06-03 08:55:36 +0300474 loff_t isize = i_size_read(&inode->vfs_inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000475 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400476
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500477 if (write_bytes == 0)
478 return 0;
479
480 if (noreserve)
481 extra_bits |= EXTENT_NORESERVE;
482
Goldwyn Rodrigues13f0dd82020-10-14 09:55:44 -0500483 start_pos = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400484 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400485 fs_info->sectorsize);
Qu Wenruof02a85d2021-05-31 16:50:41 +0800486 ASSERT(num_bytes <= U32_MAX);
Chris Mason39279cc2007-06-12 06:35:45 -0400487
Chris Masondb945352007-10-15 16:15:53 -0400488 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000489
Chris Mason7703bdd2018-06-20 07:56:11 -0700490 /*
491 * The pages may have already been dirty, clear out old accounting so
492 * we can set things up properly
493 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300494 clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700495 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
496 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700497
Nikolay Borisov088545f2020-06-03 08:55:36 +0300498 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300499 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500500 if (err)
501 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400502
Chris Masonc8b97812008-10-29 14:49:59 -0400503 for (i = 0; i < num_pages; i++) {
504 struct page *p = pages[i];
Qu Wenruof02a85d2021-05-31 16:50:41 +0800505
506 btrfs_page_clamp_set_uptodate(fs_info, p, start_pos, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400507 ClearPageChecked(p);
Qu Wenruof02a85d2021-05-31 16:50:41 +0800508 btrfs_page_clamp_set_dirty(fs_info, p, start_pos, num_bytes);
Chris Masona52d9a82007-08-27 16:49:44 -0400509 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500510
511 /*
512 * we've only changed i_size in ram, and we haven't updated
513 * the disk i_size. There is no need to log the inode
514 * at this time.
515 */
516 if (end_pos > isize)
Nikolay Borisov088545f2020-06-03 08:55:36 +0300517 i_size_write(&inode->vfs_inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400518 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400519}
520
Chris Masond352ac62008-09-29 15:18:18 -0400521/*
522 * this drops all the extents in the cache that intersect the range
523 * [start, end]. Existing extents are split as required.
524 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200525void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400526 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400527{
528 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400529 struct extent_map *split = NULL;
530 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200531 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500532 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400533 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400534 int ret;
535 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400536 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400537 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400538 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400539
Chris Masone6dcd2d2008-07-17 12:53:50 -0400540 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400541 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500542 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400543 testend = 0;
544 }
Chris Masond3977122009-01-05 21:25:51 -0500545 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400546 int no_splits = 0;
547
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400548 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400549 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200550 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400551 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200552 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400553 if (!split || !split2)
554 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400555
Chris Mason890871b2009-09-02 16:24:52 -0400556 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500557 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500558 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400559 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400560 break;
Chris Masond1310b22008-01-24 16:13:08 -0500561 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400562 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400563 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400564 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000565 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400566 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400567 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400568 break;
569 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000570 start = em->start + em->len;
571 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400572 len = start + len - (em->start + em->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 continue;
576 }
Chris Masonc8b97812008-10-29 14:49:59 -0400577 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400578 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600579 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400580 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400581 if (no_splits)
582 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400583
Josef Bacikee20a982013-07-11 10:34:59 -0400584 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400585 split->start = em->start;
586 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400587
Josef Bacikee20a982013-07-11 10:34:59 -0400588 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
589 split->orig_start = em->orig_start;
590 split->block_start = em->block_start;
591
592 if (compressed)
593 split->block_len = em->block_len;
594 else
595 split->block_len = split->len;
596 split->orig_block_len = max(split->block_len,
597 em->orig_block_len);
598 split->ram_bytes = em->ram_bytes;
599 } else {
600 split->orig_start = split->start;
601 split->block_len = 0;
602 split->block_start = em->block_start;
603 split->orig_block_len = 0;
604 split->ram_bytes = split->len;
605 }
606
Josef Bacik5dc562c2012-08-17 13:14:17 -0400607 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400608 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800609 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000610 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400611 free_extent_map(split);
612 split = split2;
613 split2 = NULL;
614 }
Josef Bacikee20a982013-07-11 10:34:59 -0400615 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400616 u64 diff = start + len - em->start;
617
618 split->start = start + len;
619 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400620 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800621 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400622 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400623
Josef Bacikee20a982013-07-11 10:34:59 -0400624 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
625 split->orig_block_len = max(em->block_len,
626 em->orig_block_len);
627
628 split->ram_bytes = em->ram_bytes;
629 if (compressed) {
630 split->block_len = em->block_len;
631 split->block_start = em->block_start;
632 split->orig_start = em->orig_start;
633 } else {
634 split->block_len = split->len;
635 split->block_start = em->block_start
636 + diff;
637 split->orig_start = em->orig_start;
638 }
Chris Masonc8b97812008-10-29 14:49:59 -0400639 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400640 split->ram_bytes = split->len;
641 split->orig_start = split->start;
642 split->block_len = 0;
643 split->block_start = em->block_start;
644 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400645 }
Chris Mason3b951512008-04-17 11:29:12 -0400646
Filipe Manana176840b2014-02-25 14:15:13 +0000647 if (extent_map_in_tree(em)) {
648 replace_extent_mapping(em_tree, em, split,
649 modified);
650 } else {
651 ret = add_extent_mapping(em_tree, split,
652 modified);
653 ASSERT(ret == 0); /* Logic error */
654 }
Chris Mason3b951512008-04-17 11:29:12 -0400655 free_extent_map(split);
656 split = NULL;
657 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400658next:
Filipe Manana176840b2014-02-25 14:15:13 +0000659 if (extent_map_in_tree(em))
660 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400661 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500662
Chris Masona52d9a82007-08-27 16:49:44 -0400663 /* once for us */
664 free_extent_map(em);
665 /* once for the tree*/
666 free_extent_map(em);
667 }
Chris Mason3b951512008-04-17 11:29:12 -0400668 if (split)
669 free_extent_map(split);
670 if (split2)
671 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400672}
673
Chris Mason39279cc2007-06-12 06:35:45 -0400674/*
675 * this is very complex, but the basic idea is to drop all extents
676 * in the range start - end. hint_block is filled in with a block number
677 * that would be a good hint to the block allocator for this file.
678 *
679 * If an extent intersects the range but is not entirely inside the range
680 * it is either truncated or split. Anything entirely inside the range
681 * is deleted from the tree.
Filipe Manana2766ff62020-11-04 11:07:34 +0000682 *
683 * Note: the VFS' inode number of bytes is not updated, it's up to the caller
684 * to deal with that. We set the field 'bytes_found' of the arguments structure
685 * with the number of allocated bytes found in the target range, so that the
686 * caller can update the inode's number of bytes in an atomic way when
687 * replacing extents in a range to avoid races with stat(2).
Chris Mason39279cc2007-06-12 06:35:45 -0400688 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000689int btrfs_drop_extents(struct btrfs_trans_handle *trans,
690 struct btrfs_root *root, struct btrfs_inode *inode,
691 struct btrfs_drop_extents_args *args)
Chris Mason39279cc2007-06-12 06:35:45 -0400692{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400693 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500694 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000695 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800696 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500697 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000698 struct btrfs_key new_key;
Nikolay Borisov906c4482020-06-03 08:55:08 +0300699 u64 ino = btrfs_ino(inode);
Filipe Manana5893dfb2020-11-04 11:07:32 +0000700 u64 search_start = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000701 u64 disk_bytenr = 0;
702 u64 num_bytes = 0;
703 u64 extent_offset = 0;
704 u64 extent_end = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000705 u64 last_end = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000706 int del_nr = 0;
707 int del_slot = 0;
708 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400709 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500710 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400711 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800712 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400713 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000714 int leafs_visited = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000715 struct btrfs_path *path = args->path;
Chris Mason39279cc2007-06-12 06:35:45 -0400716
Filipe Manana2766ff62020-11-04 11:07:34 +0000717 args->bytes_found = 0;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000718 args->extent_inserted = false;
Chris Masona52d9a82007-08-27 16:49:44 -0400719
Filipe Manana5893dfb2020-11-04 11:07:32 +0000720 /* Must always have a path if ->replace_extent is true */
721 ASSERT(!(args->replace_extent && !args->path));
722
723 if (!path) {
724 path = btrfs_alloc_path();
725 if (!path) {
726 ret = -ENOMEM;
727 goto out;
728 }
729 }
730
731 if (args->drop_cache)
732 btrfs_drop_extent_cache(inode, args->start, args->end - 1, 0);
733
734 if (args->start >= inode->disk_i_size && !args->replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400735 modify_tree = 0;
736
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800737 update_refs = (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400738 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500739 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400740 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800741 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400742 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400743 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000744 break;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000745 if (ret > 0 && path->slots[0] > 0 && search_start == args->start) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000746 leaf = path->nodes[0];
747 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800748 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000749 key.type == BTRFS_EXTENT_DATA_KEY)
750 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400751 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400752 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000753 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000754next_slot:
755 leaf = path->nodes[0];
756 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
757 BUG_ON(del_nr > 0);
758 ret = btrfs_next_leaf(root, path);
759 if (ret < 0)
760 break;
761 if (ret > 0) {
762 ret = 0;
763 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400764 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000765 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000766 leaf = path->nodes[0];
767 recow = 1;
768 }
769
770 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000771
772 if (key.objectid > ino)
773 break;
774 if (WARN_ON_ONCE(key.objectid < ino) ||
775 key.type < BTRFS_EXTENT_DATA_KEY) {
776 ASSERT(del_nr == 0);
777 path->slots[0]++;
778 goto next_slot;
779 }
Filipe Manana5893dfb2020-11-04 11:07:32 +0000780 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= args->end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000781 break;
782
783 fi = btrfs_item_ptr(leaf, path->slots[0],
784 struct btrfs_file_extent_item);
785 extent_type = btrfs_file_extent_type(leaf, fi);
786
787 if (extent_type == BTRFS_FILE_EXTENT_REG ||
788 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
789 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
790 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
791 extent_offset = btrfs_file_extent_offset(leaf, fi);
792 extent_end = key.offset +
793 btrfs_file_extent_num_bytes(leaf, fi);
794 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
795 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800796 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400797 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000798 /* can't happen */
799 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400800 }
801
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100802 /*
803 * Don't skip extent items representing 0 byte lengths. They
804 * used to be created (bug) if while punching holes we hit
805 * -ENOSPC condition. So if we find one here, just ensure we
806 * delete it, otherwise we would insert a new file extent item
807 * with the same key (offset) as that 0 bytes length file
808 * extent item in the call to setup_items_for_insert() later
809 * in this function.
810 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500811 if (extent_end == key.offset && extent_end >= search_start) {
812 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100813 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500814 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100815
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000816 if (extent_end <= search_start) {
817 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400818 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400819 }
820
Josef Bacikc3308f82012-09-14 14:51:22 -0400821 found = 1;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000822 search_start = max(key.offset, args->start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400823 if (recow || !modify_tree) {
824 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200825 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000826 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400827 }
Chris Mason771ed682008-11-06 22:02:51 -0500828
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000829 /*
830 * | - range to drop - |
831 * | -------- extent -------- |
832 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000833 if (args->start > key.offset && args->end < extent_end) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000834 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800835 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200836 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800837 break;
838 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000839
840 memcpy(&new_key, &key, sizeof(new_key));
Filipe Manana5893dfb2020-11-04 11:07:32 +0000841 new_key.offset = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000842 ret = btrfs_duplicate_item(trans, root, path,
843 &new_key);
844 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200845 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000846 continue;
847 }
848 if (ret < 0)
849 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400850
Chris Mason5f39d392007-10-15 16:14:19 -0400851 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000852 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
853 struct btrfs_file_extent_item);
854 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000855 args->start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400856
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000857 fi = btrfs_item_ptr(leaf, path->slots[0],
858 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400859
Filipe Manana5893dfb2020-11-04 11:07:32 +0000860 extent_offset += args->start - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000861 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
862 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000863 extent_end - args->start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000864 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400865
Josef Bacik5dc562c2012-08-17 13:14:17 -0400866 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800867 btrfs_init_generic_ref(&ref,
868 BTRFS_ADD_DELAYED_REF,
869 disk_bytenr, num_bytes, 0);
870 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000871 root->root_key.objectid,
872 new_key.objectid,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000873 args->start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800874 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100875 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400876 }
Filipe Manana5893dfb2020-11-04 11:07:32 +0000877 key.offset = args->start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000878 }
879 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500880 * From here on out we will have actually dropped something, so
881 * last_end can be updated.
882 */
883 last_end = extent_end;
884
885 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000886 * | ---- range to drop ----- |
887 * | -------- extent -------- |
888 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000889 if (args->start <= key.offset && args->end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800890 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200891 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800892 break;
893 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000894
895 memcpy(&new_key, &key, sizeof(new_key));
Filipe Manana5893dfb2020-11-04 11:07:32 +0000896 new_key.offset = args->end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400897 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000898
Filipe Manana5893dfb2020-11-04 11:07:32 +0000899 extent_offset += args->end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000900 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
901 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000902 extent_end - args->end);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000903 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400904 if (update_refs && disk_bytenr > 0)
Filipe Manana2766ff62020-11-04 11:07:34 +0000905 args->bytes_found += args->end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000906 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400907 }
908
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000909 search_start = extent_end;
910 /*
911 * | ---- range to drop ----- |
912 * | -------- extent -------- |
913 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000914 if (args->start > key.offset && args->end >= extent_end) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000915 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800916 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200917 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800918 break;
919 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000920
921 btrfs_set_file_extent_num_bytes(leaf, fi,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000922 args->start - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000923 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400924 if (update_refs && disk_bytenr > 0)
Filipe Manana2766ff62020-11-04 11:07:34 +0000925 args->bytes_found += extent_end - args->start;
Filipe Manana5893dfb2020-11-04 11:07:32 +0000926 if (args->end == extent_end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000927 break;
928
929 path->slots[0]++;
930 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400931 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000932
933 /*
934 * | ---- range to drop ----- |
935 * | ------ extent ------ |
936 */
Filipe Manana5893dfb2020-11-04 11:07:32 +0000937 if (args->start <= key.offset && args->end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100938delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000939 if (del_nr == 0) {
940 del_slot = path->slots[0];
941 del_nr = 1;
942 } else {
943 BUG_ON(del_slot + del_nr != path->slots[0]);
944 del_nr++;
945 }
946
Josef Bacik5dc562c2012-08-17 13:14:17 -0400947 if (update_refs &&
948 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Filipe Manana2766ff62020-11-04 11:07:34 +0000949 args->bytes_found += extent_end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000950 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400951 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400952 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800953 btrfs_init_generic_ref(&ref,
954 BTRFS_DROP_DELAYED_REF,
955 disk_bytenr, num_bytes, 0);
956 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000957 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800958 key.objectid,
959 key.offset - extent_offset);
960 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100961 BUG_ON(ret); /* -ENOMEM */
Filipe Manana2766ff62020-11-04 11:07:34 +0000962 args->bytes_found += extent_end - key.offset;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000963 }
964
Filipe Manana5893dfb2020-11-04 11:07:32 +0000965 if (args->end == extent_end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000966 break;
967
968 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
969 path->slots[0]++;
970 goto next_slot;
971 }
972
973 ret = btrfs_del_items(trans, root, path, del_slot,
974 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100975 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400976 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400977 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100978 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000979
980 del_nr = 0;
981 del_slot = 0;
982
David Sterbab3b4aa72011-04-21 01:20:15 +0200983 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000984 continue;
985 }
986
Arnd Bergmann290342f2019-03-25 14:02:25 +0100987 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400988 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000989
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100990 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000991 /*
992 * Set path->slots[0] to first slot, so that after the delete
993 * if items are move off from our leaf to its immediate left or
994 * right neighbor leafs, we end up with a correct and adjusted
Filipe Manana5893dfb2020-11-04 11:07:32 +0000995 * path->slots[0] for our insertion (if args->replace_extent).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000996 */
997 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000998 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100999 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001000 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001001 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001002
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001003 leaf = path->nodes[0];
1004 /*
1005 * If btrfs_del_items() was called, it might have deleted a leaf, in
1006 * which case it unlocked our path, so check path->locks[0] matches a
1007 * write lock.
1008 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00001009 if (!ret && args->replace_extent && leafs_visited == 1 &&
Josef Bacikac5887c2020-08-20 11:46:10 -04001010 path->locks[0] == BTRFS_WRITE_LOCK &&
David Sterbae902baa2019-03-20 14:36:46 +01001011 btrfs_leaf_free_space(leaf) >=
Filipe Manana5893dfb2020-11-04 11:07:32 +00001012 sizeof(struct btrfs_item) + args->extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001013
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001014 key.objectid = ino;
1015 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana5893dfb2020-11-04 11:07:32 +00001016 key.offset = args->start;
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001017 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1018 struct btrfs_key slot_key;
1019
1020 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1021 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1022 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001023 }
Filipe Manana5893dfb2020-11-04 11:07:32 +00001024 setup_items_for_insert(root, path, &key,
1025 &args->extent_item_size, 1);
1026 args->extent_inserted = true;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001027 }
1028
Filipe Manana5893dfb2020-11-04 11:07:32 +00001029 if (!args->path)
1030 btrfs_free_path(path);
1031 else if (!args->extent_inserted)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001032 btrfs_release_path(path);
Filipe Manana5893dfb2020-11-04 11:07:32 +00001033out:
1034 args->drop_end = found ? min(args->end, last_end) : args->end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001035
Chris Mason39279cc2007-06-12 06:35:45 -04001036 return ret;
1037}
1038
Yan Zhengd899e052008-10-30 14:25:28 -04001039static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001040 u64 objectid, u64 bytenr, u64 orig_offset,
1041 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001042{
1043 struct btrfs_file_extent_item *fi;
1044 struct btrfs_key key;
1045 u64 extent_end;
1046
1047 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1048 return 0;
1049
1050 btrfs_item_key_to_cpu(leaf, &key, slot);
1051 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1052 return 0;
1053
1054 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1055 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1056 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001057 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001058 btrfs_file_extent_compression(leaf, fi) ||
1059 btrfs_file_extent_encryption(leaf, fi) ||
1060 btrfs_file_extent_other_encoding(leaf, fi))
1061 return 0;
1062
1063 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1064 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1065 return 0;
1066
1067 *start = key.offset;
1068 *end = extent_end;
1069 return 1;
1070}
1071
1072/*
1073 * Mark extent in the range start - end as written.
1074 *
1075 * This changes extent type from 'pre-allocated' to 'regular'. If only
1076 * part of extent is marked as written, the extent will be split into
1077 * two or three.
1078 */
1079int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001080 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001081{
David Sterba3ffbd682018-06-29 10:56:42 +02001082 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001083 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001084 struct extent_buffer *leaf;
1085 struct btrfs_path *path;
1086 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001087 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001088 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001089 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001090 u64 bytenr;
1091 u64 num_bytes;
1092 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001093 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001094 u64 other_start;
1095 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001096 u64 split;
1097 int del_nr = 0;
1098 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001099 int recow;
Ritesh Harjanie7b2ec32021-05-30 20:24:05 +05301100 int ret = 0;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001101 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001102
Yan Zhengd899e052008-10-30 14:25:28 -04001103 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001104 if (!path)
1105 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001106again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001107 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001108 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001109 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001110 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001111 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001112
1113 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001114 if (ret < 0)
1115 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001116 if (ret > 0 && path->slots[0] > 0)
1117 path->slots[0]--;
1118
1119 leaf = path->nodes[0];
1120 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001121 if (key.objectid != ino ||
1122 key.type != BTRFS_EXTENT_DATA_KEY) {
1123 ret = -EINVAL;
1124 btrfs_abort_transaction(trans, ret);
1125 goto out;
1126 }
Yan Zhengd899e052008-10-30 14:25:28 -04001127 fi = btrfs_item_ptr(leaf, path->slots[0],
1128 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001129 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1130 ret = -EINVAL;
1131 btrfs_abort_transaction(trans, ret);
1132 goto out;
1133 }
Yan Zhengd899e052008-10-30 14:25:28 -04001134 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001135 if (key.offset > start || extent_end < end) {
1136 ret = -EINVAL;
1137 btrfs_abort_transaction(trans, ret);
1138 goto out;
1139 }
Yan Zhengd899e052008-10-30 14:25:28 -04001140
1141 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1142 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001143 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001144 memcpy(&new_key, &key, sizeof(new_key));
1145
1146 if (start == key.offset && end < extent_end) {
1147 other_start = 0;
1148 other_end = start;
1149 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001150 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001151 &other_start, &other_end)) {
1152 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001153 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001154 fi = btrfs_item_ptr(leaf, path->slots[0],
1155 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001156 btrfs_set_file_extent_generation(leaf, fi,
1157 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001158 btrfs_set_file_extent_num_bytes(leaf, fi,
1159 extent_end - end);
1160 btrfs_set_file_extent_offset(leaf, fi,
1161 end - orig_offset);
1162 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1163 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001164 btrfs_set_file_extent_generation(leaf, fi,
1165 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001166 btrfs_set_file_extent_num_bytes(leaf, fi,
1167 end - other_start);
1168 btrfs_mark_buffer_dirty(leaf);
1169 goto out;
1170 }
1171 }
1172
1173 if (start > key.offset && end == extent_end) {
1174 other_start = end;
1175 other_end = 0;
1176 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001177 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001178 &other_start, &other_end)) {
1179 fi = btrfs_item_ptr(leaf, path->slots[0],
1180 struct btrfs_file_extent_item);
1181 btrfs_set_file_extent_num_bytes(leaf, fi,
1182 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001183 btrfs_set_file_extent_generation(leaf, fi,
1184 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001185 path->slots[0]++;
1186 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001187 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001188
1189 fi = btrfs_item_ptr(leaf, path->slots[0],
1190 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001191 btrfs_set_file_extent_generation(leaf, fi,
1192 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001193 btrfs_set_file_extent_num_bytes(leaf, fi,
1194 other_end - start);
1195 btrfs_set_file_extent_offset(leaf, fi,
1196 start - orig_offset);
1197 btrfs_mark_buffer_dirty(leaf);
1198 goto out;
1199 }
1200 }
Yan Zhengd899e052008-10-30 14:25:28 -04001201
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001202 while (start > key.offset || end < extent_end) {
1203 if (key.offset == start)
1204 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001205
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001206 new_key.offset = split;
1207 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1208 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001209 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001210 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001211 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001212 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001213 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001214 goto out;
1215 }
Yan Zhengd899e052008-10-30 14:25:28 -04001216
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001217 leaf = path->nodes[0];
1218 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001219 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001220 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001221 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001222 split - key.offset);
1223
1224 fi = btrfs_item_ptr(leaf, path->slots[0],
1225 struct btrfs_file_extent_item);
1226
Josef Bacik224ecce2012-08-16 16:32:06 -04001227 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001228 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1229 btrfs_set_file_extent_num_bytes(leaf, fi,
1230 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001231 btrfs_mark_buffer_dirty(leaf);
1232
Qu Wenruo82fa1132019-04-04 14:45:35 +08001233 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1234 num_bytes, 0);
1235 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1236 orig_offset);
1237 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001238 if (ret) {
1239 btrfs_abort_transaction(trans, ret);
1240 goto out;
1241 }
Yan Zhengd899e052008-10-30 14:25:28 -04001242
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001243 if (split == start) {
1244 key.offset = start;
1245 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001246 if (start != key.offset) {
1247 ret = -EINVAL;
1248 btrfs_abort_transaction(trans, ret);
1249 goto out;
1250 }
Yan Zhengd899e052008-10-30 14:25:28 -04001251 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001252 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001253 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001254 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001255 }
1256
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001257 other_start = end;
1258 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001259 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1260 num_bytes, 0);
1261 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001262 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001263 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001264 &other_start, &other_end)) {
1265 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001266 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001267 goto again;
1268 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001269 extent_end = other_end;
1270 del_slot = path->slots[0] + 1;
1271 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001272 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001273 if (ret) {
1274 btrfs_abort_transaction(trans, ret);
1275 goto out;
1276 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001277 }
1278 other_start = 0;
1279 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001280 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001281 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001282 &other_start, &other_end)) {
1283 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001284 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001285 goto again;
1286 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001287 key.offset = other_start;
1288 del_slot = path->slots[0];
1289 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001290 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001291 if (ret) {
1292 btrfs_abort_transaction(trans, ret);
1293 goto out;
1294 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001295 }
1296 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001297 fi = btrfs_item_ptr(leaf, path->slots[0],
1298 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001299 btrfs_set_file_extent_type(leaf, fi,
1300 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001301 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001302 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001303 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001304 fi = btrfs_item_ptr(leaf, del_slot - 1,
1305 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001306 btrfs_set_file_extent_type(leaf, fi,
1307 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001308 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001309 btrfs_set_file_extent_num_bytes(leaf, fi,
1310 extent_end - key.offset);
1311 btrfs_mark_buffer_dirty(leaf);
1312
1313 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001314 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001315 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001316 goto out;
1317 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001318 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001319out:
Yan Zhengd899e052008-10-30 14:25:28 -04001320 btrfs_free_path(path);
Ritesh Harjanie7b2ec32021-05-30 20:24:05 +05301321 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001322}
1323
Chris Mason39279cc2007-06-12 06:35:45 -04001324/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001325 * on error we return an unlocked page and the error value
1326 * on success we return a locked page and 0
1327 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001328static int prepare_uptodate_page(struct inode *inode,
1329 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001330 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001331{
1332 int ret = 0;
1333
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001334 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001335 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001336 ret = btrfs_readpage(NULL, page);
1337 if (ret)
1338 return ret;
1339 lock_page(page);
1340 if (!PageUptodate(page)) {
1341 unlock_page(page);
1342 return -EIO;
1343 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001344 if (page->mapping != inode->i_mapping) {
1345 unlock_page(page);
1346 return -EAGAIN;
1347 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001348 }
1349 return 0;
1350}
1351
1352/*
Miao Xie376cc682013-12-10 19:25:04 +08001353 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001354 */
Miao Xieb37392e2013-12-10 19:25:03 +08001355static noinline int prepare_pages(struct inode *inode, struct page **pages,
1356 size_t num_pages, loff_t pos,
1357 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001358{
1359 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001360 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001361 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001362 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001363 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001364
Chris Mason39279cc2007-06-12 06:35:45 -04001365 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001366again:
Josef Bacika94733d2011-07-11 10:47:06 -04001367 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001368 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001369 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001370 faili = i - 1;
1371 err = -ENOMEM;
1372 goto fail;
1373 }
1374
Qu Wenruo32443de2021-01-26 16:34:00 +08001375 err = set_page_extent_mapped(pages[i]);
1376 if (err < 0) {
1377 faili = i;
1378 goto fail;
1379 }
1380
Chris Masonb1bf8622011-02-28 09:52:08 -05001381 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001382 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001383 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001384 if (!err && i == num_pages - 1)
1385 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001386 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001387 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001388 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001389 if (err == -EAGAIN) {
1390 err = 0;
1391 goto again;
1392 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001393 faili = i - 1;
1394 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001395 }
Chris Masonccd467d2007-06-28 15:57:36 -04001396 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001397 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001398
Chris Mason39279cc2007-06-12 06:35:45 -04001399 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001400fail:
1401 while (faili >= 0) {
1402 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001403 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001404 faili--;
1405 }
1406 return err;
1407
Chris Mason39279cc2007-06-12 06:35:45 -04001408}
1409
Miao Xie376cc682013-12-10 19:25:04 +08001410/*
1411 * This function locks the extent and properly waits for data=ordered extents
1412 * to finish before allowing the pages to be modified if need.
1413 *
1414 * The return value:
1415 * 1 - the extent is locked
1416 * 0 - the extent is not locked, and everything is OK
1417 * -EAGAIN - need re-prepare the pages
1418 * the other < 0 number - Something wrong happens
1419 */
1420static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001421lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001422 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301423 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001424 u64 *lockstart, u64 *lockend,
1425 struct extent_state **cached_state)
1426{
David Sterba3ffbd682018-06-29 10:56:42 +02001427 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001428 u64 start_pos;
1429 u64 last_pos;
1430 int i;
1431 int ret = 0;
1432
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001433 start_pos = round_down(pos, fs_info->sectorsize);
Qu Wenruoe21139c2020-08-13 14:33:52 +08001434 last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001435
Filipe Mananae3b8a482017-11-04 00:16:59 +00001436 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001437 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001438
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001439 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1440 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001441 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1442 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001443 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001444 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001445 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001446 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001447 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001448 for (i = 0; i < num_pages; i++) {
1449 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001450 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001451 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001452 btrfs_start_ordered_extent(ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001453 btrfs_put_ordered_extent(ordered);
1454 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001455 }
1456 if (ordered)
1457 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001458
Miao Xie376cc682013-12-10 19:25:04 +08001459 *lockstart = start_pos;
1460 *lockend = last_pos;
1461 ret = 1;
1462 }
1463
Chris Mason7703bdd2018-06-20 07:56:11 -07001464 /*
Qu Wenruo32443de2021-01-26 16:34:00 +08001465 * We should be called after prepare_pages() which should have locked
1466 * all pages in the range.
Chris Mason7703bdd2018-06-20 07:56:11 -07001467 */
Qu Wenruo32443de2021-01-26 16:34:00 +08001468 for (i = 0; i < num_pages; i++)
Miao Xie376cc682013-12-10 19:25:04 +08001469 WARN_ON(!PageLocked(pages[i]));
Miao Xie376cc682013-12-10 19:25:04 +08001470
1471 return ret;
1472}
1473
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001474static int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
1475 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001476{
David Sterba3ffbd682018-06-29 10:56:42 +02001477 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001478 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001479 u64 lockstart, lockend;
1480 u64 num_bytes;
1481 int ret;
1482
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001483 if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)))
1484 return 0;
1485
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001486 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001487 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001488
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001489 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001490 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001491 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001492 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001493
1494 if (nowait) {
1495 struct btrfs_ordered_extent *ordered;
1496
1497 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1498 return -EAGAIN;
1499
1500 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1501 num_bytes);
1502 if (ordered) {
1503 btrfs_put_ordered_extent(ordered);
1504 ret = -EAGAIN;
1505 goto out_unlock;
1506 }
1507 } else {
1508 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1509 lockend, NULL);
1510 }
1511
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001512 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
Boris Burkova84d5d42020-08-18 11:00:05 -07001513 NULL, NULL, NULL, false);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001514 if (ret <= 0) {
1515 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001516 if (!nowait)
1517 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001518 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001519 *write_bytes = min_t(size_t, *write_bytes ,
1520 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001521 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001522out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001523 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001524
1525 return ret;
1526}
1527
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001528static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos,
1529 size_t *write_bytes)
1530{
1531 return check_can_nocow(inode, pos, write_bytes, true);
1532}
1533
1534/*
1535 * Check if we can do nocow write into the range [@pos, @pos + @write_bytes)
1536 *
1537 * @pos: File offset
1538 * @write_bytes: The length to write, will be updated to the nocow writeable
1539 * range
1540 *
1541 * This function will flush ordered extents in the range to ensure proper
1542 * nocow checks.
1543 *
1544 * Return:
1545 * >0 and update @write_bytes if we can do nocow write
1546 * 0 if we can't do nocow write
1547 * -EAGAIN if we can't get the needed lock or there are ordered extents
1548 * for * (nowait == true) case
1549 * <0 if other error happened
1550 *
1551 * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock().
1552 */
1553int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
1554 size_t *write_bytes)
1555{
1556 return check_can_nocow(inode, pos, write_bytes, false);
1557}
1558
1559void btrfs_check_nocow_unlock(struct btrfs_inode *inode)
1560{
1561 btrfs_drew_write_unlock(&inode->root->snapshot_lock);
1562}
1563
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05001564static void update_time_for_write(struct inode *inode)
1565{
1566 struct timespec64 now;
1567
1568 if (IS_NOCMTIME(inode))
1569 return;
1570
1571 now = current_time(inode);
1572 if (!timespec64_equal(&inode->i_mtime, &now))
1573 inode->i_mtime = now;
1574
1575 if (!timespec64_equal(&inode->i_ctime, &now))
1576 inode->i_ctime = now;
1577
1578 if (IS_I_VERSION(inode))
1579 inode_inc_iversion(inode);
1580}
1581
1582static int btrfs_write_check(struct kiocb *iocb, struct iov_iter *from,
1583 size_t count)
1584{
1585 struct file *file = iocb->ki_filp;
1586 struct inode *inode = file_inode(file);
1587 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1588 loff_t pos = iocb->ki_pos;
1589 int ret;
1590 loff_t oldsize;
1591 loff_t start_pos;
1592
1593 if (iocb->ki_flags & IOCB_NOWAIT) {
1594 size_t nocow_bytes = count;
1595
1596 /* We will allocate space in case nodatacow is not set, so bail */
1597 if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes) <= 0)
1598 return -EAGAIN;
1599 /*
1600 * There are holes in the range or parts of the range that must
1601 * be COWed (shared extents, RO block groups, etc), so just bail
1602 * out.
1603 */
1604 if (nocow_bytes < count)
1605 return -EAGAIN;
1606 }
1607
1608 current->backing_dev_info = inode_to_bdi(inode);
1609 ret = file_remove_privs(file);
1610 if (ret)
1611 return ret;
1612
1613 /*
1614 * We reserve space for updating the inode when we reserve space for the
1615 * extent we are going to write, so we will enospc out there. We don't
1616 * need to start yet another transaction to update the inode as we will
1617 * update the inode when we finish writing whatever data we write.
1618 */
1619 update_time_for_write(inode);
1620
1621 start_pos = round_down(pos, fs_info->sectorsize);
1622 oldsize = i_size_read(inode);
1623 if (start_pos > oldsize) {
1624 /* Expand hole size to cover write data, preventing empty gap */
1625 loff_t end_pos = round_up(pos + count, fs_info->sectorsize);
1626
Nikolay Borisovb06359a2020-11-02 16:49:04 +02001627 ret = btrfs_cont_expand(BTRFS_I(inode), oldsize, end_pos);
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05001628 if (ret) {
1629 current->backing_dev_info = NULL;
1630 return ret;
1631 }
1632 }
1633
1634 return 0;
1635}
1636
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001637static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1638 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001639{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001640 struct file *file = iocb->ki_filp;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001641 loff_t pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001642 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001643 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001644 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001645 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001646 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001647 u64 lockstart;
1648 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001649 size_t num_written = 0;
1650 int nrptrs;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001651 ssize_t ret;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001652 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001653 bool force_page_uptodate = false;
Goldwyn Rodrigues5e8b9ef2020-09-24 11:39:13 -05001654 loff_t old_isize = i_size_read(inode);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001655 unsigned int ilock_flags = 0;
Chris Masoncb843a62008-10-03 12:30:02 -04001656
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001657 if (iocb->ki_flags & IOCB_NOWAIT)
1658 ilock_flags |= BTRFS_ILOCK_TRY;
1659
1660 ret = btrfs_inode_lock(inode, ilock_flags);
1661 if (ret < 0)
1662 return ret;
1663
1664 ret = generic_write_checks(iocb, i);
1665 if (ret <= 0)
1666 goto out;
1667
1668 ret = btrfs_write_check(iocb, i, ret);
1669 if (ret < 0)
1670 goto out;
1671
1672 pos = iocb->ki_pos;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001673 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1674 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001675 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1676 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001677 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001678 if (!pages) {
1679 ret = -ENOMEM;
1680 goto out;
1681 }
Chris Masonab93dbe2009-10-01 12:29:10 -04001682
Josef Bacikd0215f32011-01-25 14:57:24 -05001683 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001684 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001685 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301686 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001687 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001688 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001689 offset);
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001690 size_t num_pages;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001691 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001692 size_t dirty_pages;
1693 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301694 size_t dirty_sectors;
1695 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001696 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001697
Xin Zhong914ee292010-12-09 09:30:14 +00001698 /*
1699 * Fault pages before locking them in prepare_pages
1700 * to avoid recursive lock
1701 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001702 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001703 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001704 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001705 }
1706
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001707 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001708 sector_offset = pos & (fs_info->sectorsize - 1);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001709
Qu Wenruo364ecf32017-02-27 15:10:38 +08001710 extent_changeset_release(data_reserved);
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03001711 ret = btrfs_check_data_free_space(BTRFS_I(inode),
1712 &data_reserved, pos,
Qu Wenruo364ecf32017-02-27 15:10:38 +08001713 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001714 if (ret < 0) {
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001715 /*
1716 * If we don't have to COW at the offset, reserve
1717 * metadata only. write_bytes may get smaller than
1718 * requested here.
1719 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001720 if (btrfs_check_nocow_lock(BTRFS_I(inode), pos,
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001721 &write_bytes) > 0)
Josef Bacikc6887cd2016-03-25 13:26:00 -04001722 only_release_metadata = true;
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001723 else
Josef Bacikc6887cd2016-03-25 13:26:00 -04001724 break;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001725 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001726
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001727 num_pages = DIV_ROUND_UP(write_bytes + offset, PAGE_SIZE);
1728 WARN_ON(num_pages > nrptrs);
1729 reserve_bytes = round_up(write_bytes + sector_offset,
1730 fs_info->sectorsize);
Josef Bacik8b62f872017-10-19 14:15:55 -04001731 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001732 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1733 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001734 if (ret) {
1735 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03001736 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001737 data_reserved, pos,
1738 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001739 else
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001740 btrfs_check_nocow_unlock(BTRFS_I(inode));
Josef Bacik7ee9e442013-06-21 16:37:03 -04001741 break;
1742 }
1743
1744 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001745again:
Josef Bacik4a640012011-01-25 15:10:08 -05001746 /*
1747 * This is going to setup the pages array with the number of
1748 * pages we want, so we don't really need to worry about the
1749 * contents of pages from loop to loop
1750 */
Miao Xieb37392e2013-12-10 19:25:03 +08001751 ret = prepare_pages(inode, pages, num_pages,
1752 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001753 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001754 if (ret) {
1755 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001756 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001757 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001758 }
Chris Mason39279cc2007-06-12 06:35:45 -04001759
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001760 extents_locked = lock_and_cleanup_extent_if_need(
1761 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001762 num_pages, pos, write_bytes, &lockstart,
1763 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001764 if (extents_locked < 0) {
1765 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001766 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001767 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001768 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001769 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001770 break;
Miao Xie376cc682013-12-10 19:25:04 +08001771 }
1772
Zhao Leiee22f0c2016-01-06 18:47:31 +08001773 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001774
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001775 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001776 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001777 fs_info->sectorsize);
1778 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001779
Chris Masonb1bf8622011-02-28 09:52:08 -05001780 /*
1781 * if we have trouble faulting in the pages, fall
1782 * back to one page at a time
1783 */
1784 if (copied < write_bytes)
1785 nrptrs = 1;
1786
Josef Bacikb63164292011-09-30 15:23:54 -04001787 if (copied == 0) {
1788 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001789 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001790 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001791 } else {
1792 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001793 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001794 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001795 }
Xin Zhong914ee292010-12-09 09:30:14 +00001796
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301797 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001798 /* release everything except the sectors we dirtied */
David Sterba265fdfa2020-07-01 21:19:09 +02001799 release_bytes -= dirty_sectors << fs_info->sectorsize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001800 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001801 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001802 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001803 } else {
1804 u64 __pos;
1805
Jeff Mahoneyda170662016-06-15 09:22:56 -04001806 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001807 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001808 (dirty_pages << PAGE_SHIFT);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001809 btrfs_delalloc_release_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001810 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001811 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001812 }
Xin Zhong914ee292010-12-09 09:30:14 +00001813 }
1814
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301815 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001816 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001817
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -05001818 ret = btrfs_dirty_pages(BTRFS_I(inode), pages,
1819 dirty_pages, pos, copied,
1820 &cached_state, only_release_metadata);
Filipe Mananac67d9702019-09-30 10:20:25 +01001821
1822 /*
1823 * If we have not locked the extent range, because the range's
1824 * start offset is >= i_size, we might still have a non-NULL
1825 * cached extent state, acquired while marking the extent range
1826 * as delalloc through btrfs_dirty_pages(). Therefore free any
1827 * possible cached extent state to avoid a memory leak.
1828 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001829 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001830 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001831 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001832 else
1833 free_extent_state(cached_state);
1834
Qu Wenruo8702ba92019-10-14 14:34:51 +08001835 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001836 if (ret) {
1837 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001838 break;
Miao Xief1de9682014-01-09 10:06:10 +08001839 }
Chris Mason39279cc2007-06-12 06:35:45 -04001840
Josef Bacik7ee9e442013-06-21 16:37:03 -04001841 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001842 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001843 btrfs_check_nocow_unlock(BTRFS_I(inode));
Miao Xie8257b2d2014-03-06 13:38:19 +08001844
Miao Xief1de9682014-01-09 10:06:10 +08001845 btrfs_drop_pages(pages, num_pages);
1846
Josef Bacikd0215f32011-01-25 14:57:24 -05001847 cond_resched();
1848
Namjae Jeond0e1d662012-12-11 16:00:21 -08001849 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001850
Xin Zhong914ee292010-12-09 09:30:14 +00001851 pos += copied;
1852 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001853 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001854
Chris Mason8c2383c2007-06-18 09:57:58 -04001855 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001856
Josef Bacik7ee9e442013-06-21 16:37:03 -04001857 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001858 if (only_release_metadata) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001859 btrfs_check_nocow_unlock(BTRFS_I(inode));
Nikolay Borisov691fa052017-02-20 13:50:42 +02001860 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001861 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001862 } else {
Nikolay Borisov86d52922020-06-03 08:55:40 +03001863 btrfs_delalloc_release_space(BTRFS_I(inode),
1864 data_reserved,
Qu Wenruobc42bda2017-02-27 15:10:39 +08001865 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001866 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001867 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001868 }
1869
Qu Wenruo364ecf32017-02-27 15:10:38 +08001870 extent_changeset_free(data_reserved);
Goldwyn Rodrigues5e8b9ef2020-09-24 11:39:13 -05001871 if (num_written > 0) {
1872 pagecache_isize_extended(inode, old_isize, iocb->ki_pos);
1873 iocb->ki_pos += num_written;
1874 }
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001875out:
1876 btrfs_inode_unlock(inode, ilock_flags);
Josef Bacikd0215f32011-01-25 14:57:24 -05001877 return num_written ? num_written : ret;
1878}
1879
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001880static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
1881 const struct iov_iter *iter, loff_t offset)
1882{
1883 const u32 blocksize_mask = fs_info->sectorsize - 1;
1884
1885 if (offset & blocksize_mask)
1886 return -EINVAL;
1887
1888 if (iov_iter_alignment(iter) & blocksize_mask)
1889 return -EINVAL;
1890
1891 return 0;
1892}
1893
1894static ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001895{
1896 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001897 struct inode *inode = file_inode(file);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001898 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001899 loff_t pos;
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001900 ssize_t written = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001901 ssize_t written_buffered;
1902 loff_t endbyte;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001903 ssize_t err;
1904 unsigned int ilock_flags = 0;
Goldwyn Rodriguesa42fa642020-09-24 11:39:20 -05001905 struct iomap_dio *dio = NULL;
Josef Bacikd0215f32011-01-25 14:57:24 -05001906
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001907 if (iocb->ki_flags & IOCB_NOWAIT)
1908 ilock_flags |= BTRFS_ILOCK_TRY;
1909
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05001910 /* If the write DIO is within EOF, use a shared lock */
1911 if (iocb->ki_pos + iov_iter_count(from) <= i_size_read(inode))
1912 ilock_flags |= BTRFS_ILOCK_SHARED;
1913
1914relock:
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001915 err = btrfs_inode_lock(inode, ilock_flags);
1916 if (err < 0)
1917 return err;
1918
1919 err = generic_write_checks(iocb, from);
1920 if (err <= 0) {
1921 btrfs_inode_unlock(inode, ilock_flags);
1922 return err;
1923 }
1924
1925 err = btrfs_write_check(iocb, from, err);
1926 if (err < 0) {
1927 btrfs_inode_unlock(inode, ilock_flags);
1928 goto out;
1929 }
1930
1931 pos = iocb->ki_pos;
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05001932 /*
1933 * Re-check since file size may have changed just before taking the
1934 * lock or pos may have changed because of O_APPEND in generic_write_check()
1935 */
1936 if ((ilock_flags & BTRFS_ILOCK_SHARED) &&
1937 pos + iov_iter_count(from) > i_size_read(inode)) {
1938 btrfs_inode_unlock(inode, ilock_flags);
1939 ilock_flags &= ~BTRFS_ILOCK_SHARED;
1940 goto relock;
1941 }
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001942
1943 if (check_direct_IO(fs_info, from, pos)) {
1944 btrfs_inode_unlock(inode, ilock_flags);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001945 goto buffered;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001946 }
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001947
Christoph Hellwig2f632962021-01-23 10:06:09 -08001948 dio = __iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops, &btrfs_dio_ops,
1949 0);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001950
Goldwyn Rodriguese9adabb2020-09-24 11:39:18 -05001951 btrfs_inode_unlock(inode, ilock_flags);
Josef Bacikd0215f32011-01-25 14:57:24 -05001952
Goldwyn Rodriguesa42fa642020-09-24 11:39:20 -05001953 if (IS_ERR_OR_NULL(dio)) {
1954 err = PTR_ERR_OR_ZERO(dio);
1955 if (err < 0 && err != -ENOTBLK)
1956 goto out;
1957 } else {
1958 written = iomap_dio_complete(dio);
1959 }
1960
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05001961 if (written < 0 || !iov_iter_count(from)) {
1962 err = written;
1963 goto out;
1964 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001965
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001966buffered:
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001967 pos = iocb->ki_pos;
1968 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001969 if (written_buffered < 0) {
1970 err = written_buffered;
1971 goto out;
1972 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001973 /*
1974 * Ensure all data is persisted. We want the next direct IO read to be
1975 * able to read what was just written.
1976 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001977 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001978 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001979 if (err)
1980 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001981 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001982 if (err)
1983 goto out;
1984 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001985 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001986 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1987 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001988out:
1989 return written ? written : err;
1990}
1991
Al Virob30ac0f2014-04-03 14:29:04 -04001992static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1993 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001994{
1995 struct file *file = iocb->ki_filp;
Nikolay Borisov14971652020-12-10 10:38:32 +02001996 struct btrfs_inode *inode = BTRFS_I(file_inode(file));
Josef Bacikd0215f32011-01-25 14:57:24 -05001997 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07001998 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Josef Bacikd0215f32011-01-25 14:57:24 -05001999
Goldwyn Rodriguesc86537a2020-09-24 11:39:14 -05002000 /*
2001 * If the fs flips readonly due to some impossible error, although we
2002 * have opened a file as writable, we have to stop this write operation
2003 * to ensure consistency.
2004 */
Nikolay Borisov14971652020-12-10 10:38:32 +02002005 if (test_bit(BTRFS_FS_STATE_ERROR, &inode->root->fs_info->fs_state))
Goldwyn Rodriguesc86537a2020-09-24 11:39:14 -05002006 return -EROFS;
2007
Christoph Hellwig91f99432017-08-29 16:13:20 +02002008 if (!(iocb->ki_flags & IOCB_DIRECT) &&
2009 (iocb->ki_flags & IOCB_NOWAIT))
2010 return -EOPNOTSUPP;
2011
Josef Bacikb812ce22012-11-16 13:56:32 -05002012 if (sync)
Nikolay Borisov14971652020-12-10 10:38:32 +02002013 atomic_inc(&inode->sync_writers);
Josef Bacikb812ce22012-11-16 13:56:32 -05002014
Goldwyn Rodriguesecfdc082020-09-24 11:39:21 -05002015 if (iocb->ki_flags & IOCB_DIRECT)
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05002016 num_written = btrfs_direct_write(iocb, from);
Goldwyn Rodriguesecfdc082020-09-24 11:39:21 -05002017 else
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05002018 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05002019
Filipe Mananabc0939f2021-02-23 12:08:48 +00002020 btrfs_set_inode_last_sub_trans(inode);
2021
Christoph Hellwige2592212016-04-07 08:52:01 -07002022 if (num_written > 0)
2023 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002024
Josef Bacikb812ce22012-11-16 13:56:32 -05002025 if (sync)
Nikolay Borisov14971652020-12-10 10:38:32 +02002026 atomic_dec(&inode->sync_writers);
Goldwyn Rodriguesb8d8e1f2020-09-24 11:39:15 -05002027
Chris Mason39279cc2007-06-12 06:35:45 -04002028 current->backing_dev_info = NULL;
Goldwyn Rodriguesc3523702020-09-24 11:39:17 -05002029 return num_written;
Chris Mason39279cc2007-06-12 06:35:45 -04002030}
2031
Chris Masond3977122009-01-05 21:25:51 -05002032int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002033{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002034 struct btrfs_file_private *private = filp->private_data;
2035
Josef Bacik23b5ec72017-07-24 15:14:25 -04002036 if (private && private->filldir_buf)
2037 kfree(private->filldir_buf);
2038 kfree(private);
2039 filp->private_data = NULL;
2040
Chris Masonf6dc45c2014-08-20 07:15:33 -07002041 /*
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002042 * Set by setattr when we are about to truncate a file from a non-zero
2043 * size to a zero size. This tries to flush down new bytes that may
2044 * have been written if the application were using truncate to replace
2045 * a file in place.
Chris Masonf6dc45c2014-08-20 07:15:33 -07002046 */
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002047 if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Chris Masonf6dc45c2014-08-20 07:15:33 -07002048 &BTRFS_I(inode)->runtime_flags))
2049 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002050 return 0;
2051}
2052
Filipe Manana669249e2014-09-02 11:09:58 +01002053static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2054{
2055 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002056 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002057
Liu Bo343e4fc2017-11-15 16:10:28 -07002058 /*
2059 * This is only called in fsync, which would do synchronous writes, so
2060 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2061 * multiple disks using raid profile, a large IO can be split to
2062 * several segments of stripe length (currently 64K).
2063 */
2064 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002065 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002066 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002067 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002068 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002069
2070 return ret;
2071}
2072
Filipe Manana626e9f42021-04-27 11:27:20 +01002073static inline bool skip_inode_logging(const struct btrfs_log_ctx *ctx)
2074{
2075 struct btrfs_inode *inode = BTRFS_I(ctx->inode);
2076 struct btrfs_fs_info *fs_info = inode->root->fs_info;
2077
2078 if (btrfs_inode_in_log(inode, fs_info->generation) &&
2079 list_empty(&ctx->ordered_extents))
2080 return true;
2081
2082 /*
2083 * If we are doing a fast fsync we can not bail out if the inode's
2084 * last_trans is <= then the last committed transaction, because we only
2085 * update the last_trans of the inode during ordered extent completion,
2086 * and for a fast fsync we don't wait for that, we only wait for the
2087 * writeback to complete.
2088 */
2089 if (inode->last_trans <= fs_info->last_trans_committed &&
2090 (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags) ||
2091 list_empty(&ctx->ordered_extents)))
2092 return true;
2093
2094 return false;
2095}
2096
Chris Masond352ac62008-09-29 15:18:18 -04002097/*
2098 * fsync call for both files and directories. This logs the inode into
2099 * the tree log instead of forcing full commits whenever possible.
2100 *
2101 * It needs to call filemap_fdatawait so that all ordered extent updates are
2102 * in the metadata btree are up to date for copying to the log.
2103 *
2104 * It drops the inode mutex before doing the tree log commit. This is an
2105 * important optimization for directories because holding the mutex prevents
2106 * new operations on the dir while we write to disk.
2107 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002108int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002109{
Filipe Mananade17e792016-03-30 19:03:13 -04002110 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002111 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002112 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002113 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002114 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002115 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002116 int ret = 0, err;
Filipe Manana48778172020-08-11 12:43:58 +01002117 u64 len;
2118 bool full_sync;
Chris Mason39279cc2007-06-12 06:35:45 -04002119
liubo1abe9b82011-03-24 11:18:59 +00002120 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002121
Liu Boebb70442017-11-21 14:35:40 -07002122 btrfs_init_log_ctx(&ctx, inode);
2123
Miao Xie90abccf2012-09-13 04:53:47 -06002124 /*
Filipe Manana48778172020-08-11 12:43:58 +01002125 * Always set the range to a full range, otherwise we can get into
2126 * several problems, from missing file extent items to represent holes
2127 * when not using the NO_HOLES feature, to log tree corruption due to
2128 * races between hole detection during logging and completion of ordered
2129 * extents outside the range, to missing checksums due to ordered extents
2130 * for which we flushed only a subset of their pages.
Filipe Manana95418ed2020-03-09 12:41:05 +00002131 */
Filipe Manana48778172020-08-11 12:43:58 +01002132 start = 0;
2133 end = LLONG_MAX;
2134 len = (u64)LLONG_MAX + 1;
Filipe Manana95418ed2020-03-09 12:41:05 +00002135
2136 /*
Miao Xie90abccf2012-09-13 04:53:47 -06002137 * We write the dirty pages in the range and wait until they complete
2138 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002139 * multi-task, and make the performance up. See
2140 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002141 */
Filipe Manana669249e2014-09-02 11:09:58 +01002142 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002143 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002144 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002145
Filipe Manana885f46d2021-02-23 12:08:47 +00002146 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Josef Bacikc4951442018-10-12 15:32:32 -04002147
Miao Xie2ecb7922012-09-06 04:04:27 -06002148 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002149
Filipe Manana669249e2014-09-02 11:09:58 +01002150 /*
Filipe Manana48778172020-08-11 12:43:58 +01002151 * Always check for the full sync flag while holding the inode's lock,
2152 * to avoid races with other tasks. The flag must be either set all the
2153 * time during logging or always off all the time while logging.
Filipe Manana7af59742020-04-07 11:37:44 +01002154 */
Filipe Manana48778172020-08-11 12:43:58 +01002155 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2156 &BTRFS_I(inode)->runtime_flags);
Filipe Manana7af59742020-04-07 11:37:44 +01002157
2158 /*
Filipe Manana885f46d2021-02-23 12:08:47 +00002159 * Before we acquired the inode's lock and the mmap lock, someone may
2160 * have dirtied more pages in the target range. We need to make sure
2161 * that writeback for any such pages does not start while we are logging
2162 * the inode, because if it does, any of the following might happen when
2163 * we are not doing a full inode sync:
Filipe Mananaaab15e82018-11-12 10:23:58 +00002164 *
2165 * 1) We log an extent after its writeback finishes but before its
2166 * checksums are added to the csum tree, leading to -EIO errors
2167 * when attempting to read the extent after a log replay.
2168 *
2169 * 2) We can end up logging an extent before its writeback finishes.
2170 * Therefore after the log replay we will have a file extent item
2171 * pointing to an unwritten extent (and no data checksums as well).
2172 *
2173 * So trigger writeback for any eventual new dirty pages and then we
2174 * wait for all ordered extents to complete below.
2175 */
2176 ret = start_ordered_ops(inode, start, end);
2177 if (ret) {
Filipe Manana885f46d2021-02-23 12:08:47 +00002178 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002179 goto out;
2180 }
2181
2182 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002183 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002184 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002185 *
Filipe Manana48778172020-08-11 12:43:58 +01002186 * For a full fsync we wait for the ordered extents to complete while
2187 * for a fast fsync we wait just for writeback to complete, and then
2188 * attach the ordered extents to the transaction so that a transaction
2189 * commit waits for their completion, to avoid data loss if we fsync,
2190 * the current transaction commits before the ordered extents complete
2191 * and a power failure happens right after that.
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09002192 *
2193 * For zoned filesystem, if a write IO uses a ZONE_APPEND command, the
2194 * logical address recorded in the ordered extent may change. We need
2195 * to wait for the IO to stabilize the logical address.
Filipe Manana669249e2014-09-02 11:09:58 +01002196 */
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09002197 if (full_sync || btrfs_is_zoned(fs_info)) {
Filipe Manana48778172020-08-11 12:43:58 +01002198 ret = btrfs_wait_ordered_range(inode, start, len);
2199 } else {
2200 /*
2201 * Get our ordered extents as soon as possible to avoid doing
2202 * checksum lookups in the csum tree, and use instead the
2203 * checksums attached to the ordered extents.
2204 */
2205 btrfs_get_ordered_extents_for_logging(BTRFS_I(inode),
2206 &ctx.ordered_extents);
2207 ret = filemap_fdatawait_range(inode->i_mapping, start, end);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002208 }
Filipe Manana48778172020-08-11 12:43:58 +01002209
2210 if (ret)
2211 goto out_release_extents;
2212
Miao Xie2ecb7922012-09-06 04:04:27 -06002213 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002214
Josef Bacika4abeea2011-04-11 17:25:13 -04002215 smp_mb();
Filipe Manana626e9f42021-04-27 11:27:20 +01002216 if (skip_inode_logging(&ctx)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002217 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002218 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002219 * modified so clear this flag in case it was set for whatever
2220 * reason, it's no longer relevant.
2221 */
2222 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2223 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002224 /*
2225 * An ordered extent might have started before and completed
2226 * already with io errors, in which case the inode was not
2227 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002228 * for any errors that might have happened since we last
2229 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002230 */
Jeff Layton333427a2017-07-06 07:02:31 -04002231 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Filipe Manana48778172020-08-11 12:43:58 +01002232 goto out_release_extents;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002233 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002234
2235 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002236 * We use start here because we will need to wait on the IO to complete
2237 * in btrfs_sync_log, which could require joining a transaction (for
2238 * example checking cross references in the nocow path). If we use join
2239 * here we could get into a situation where we're waiting on IO to
2240 * happen that is blocked on a transaction trying to commit. With start
2241 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002242 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002243 * from thinking they are super smart and changing this to
2244 * btrfs_join_transaction *cough*Josef*cough*.
2245 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002246 trans = btrfs_start_transaction(root, 0);
2247 if (IS_ERR(trans)) {
2248 ret = PTR_ERR(trans);
Filipe Manana48778172020-08-11 12:43:58 +01002249 goto out_release_extents;
Chris Mason39279cc2007-06-12 06:35:45 -04002250 }
Filipe Mananad0c2f4f2021-01-27 10:35:00 +00002251 trans->in_fsync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002252
Filipe Manana48778172020-08-11 12:43:58 +01002253 ret = btrfs_log_dentry_safe(trans, dentry, &ctx);
2254 btrfs_release_log_ctx_extents(&ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002255 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002256 /* Fallthrough and commit/free transaction. */
2257 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002258 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002259
2260 /* we've logged all the items and now have a consistent
2261 * version of the file in the log. It is possible that
2262 * someone will come in and modify the file, but that's
2263 * fine because the log is consistent on disk, and we
2264 * have references to all of the file's extents
2265 *
2266 * It is possible that someone will come in and log the
2267 * file again, but that will end up using the synchronization
2268 * inside btrfs_sync_log to keep things safe.
2269 */
Filipe Manana885f46d2021-02-23 12:08:47 +00002270 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Chris Mason49eb7e42008-09-11 15:53:12 -04002271
Chris Mason257c62e2009-10-13 13:21:08 -04002272 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002273 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002274 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002275 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002276 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002277 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002278 }
Chris Mason257c62e2009-10-13 13:21:08 -04002279 }
Filipe Manana48778172020-08-11 12:43:58 +01002280 if (!full_sync) {
2281 ret = btrfs_wait_ordered_range(inode, start, len);
2282 if (ret) {
2283 btrfs_end_transaction(trans);
2284 goto out;
2285 }
2286 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002287 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002288 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002289 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002290 }
Chris Mason39279cc2007-06-12 06:35:45 -04002291out:
Liu Boebb70442017-11-21 14:35:40 -07002292 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002293 err = file_check_and_advance_wb_err(file);
2294 if (!ret)
2295 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002296 return ret > 0 ? -EIO : ret;
Filipe Manana48778172020-08-11 12:43:58 +01002297
2298out_release_extents:
2299 btrfs_release_log_ctx_extents(&ctx);
Filipe Manana885f46d2021-02-23 12:08:47 +00002300 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Manana48778172020-08-11 12:43:58 +01002301 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002302}
2303
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002304static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002305 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002306 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002307 .page_mkwrite = btrfs_page_mkwrite,
2308};
2309
2310static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2311{
Miao Xie058a4572010-05-20 07:21:50 +00002312 struct address_space *mapping = filp->f_mapping;
2313
2314 if (!mapping->a_ops->readpage)
2315 return -ENOEXEC;
2316
Chris Mason9ebefb182007-06-15 13:50:00 -04002317 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002318 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002319
Chris Mason9ebefb182007-06-15 13:50:00 -04002320 return 0;
2321}
2322
Nikolay Borisov35339c22017-02-20 13:50:46 +02002323static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002324 int slot, u64 start, u64 end)
2325{
2326 struct btrfs_file_extent_item *fi;
2327 struct btrfs_key key;
2328
2329 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2330 return 0;
2331
2332 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002333 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002334 key.type != BTRFS_EXTENT_DATA_KEY)
2335 return 0;
2336
2337 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2338
2339 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2340 return 0;
2341
2342 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2343 return 0;
2344
2345 if (key.offset == end)
2346 return 1;
2347 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2348 return 1;
2349 return 0;
2350}
2351
Nikolay Borisova012a742017-02-20 13:50:47 +02002352static int fill_holes(struct btrfs_trans_handle *trans,
2353 struct btrfs_inode *inode,
2354 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002355{
David Sterba3ffbd682018-06-29 10:56:42 +02002356 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002357 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002358 struct extent_buffer *leaf;
2359 struct btrfs_file_extent_item *fi;
2360 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002361 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002362 struct btrfs_key key;
2363 int ret;
2364
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002365 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002366 goto out;
2367
Nikolay Borisova012a742017-02-20 13:50:47 +02002368 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002369 key.type = BTRFS_EXTENT_DATA_KEY;
2370 key.offset = offset;
2371
Josef Bacik2aaa6652012-08-29 14:27:18 -04002372 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002373 if (ret <= 0) {
2374 /*
2375 * We should have dropped this offset, so if we find it then
2376 * something has gone horribly wrong.
2377 */
2378 if (ret == 0)
2379 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002380 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002381 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002382
2383 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002384 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002385 u64 num_bytes;
2386
2387 path->slots[0]--;
2388 fi = btrfs_item_ptr(leaf, path->slots[0],
2389 struct btrfs_file_extent_item);
2390 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2391 end - offset;
2392 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2393 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2394 btrfs_set_file_extent_offset(leaf, fi, 0);
2395 btrfs_mark_buffer_dirty(leaf);
2396 goto out;
2397 }
2398
chandan1707e262014-07-01 12:04:28 +05302399 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002400 u64 num_bytes;
2401
Josef Bacik2aaa6652012-08-29 14:27:18 -04002402 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002403 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002404 fi = btrfs_item_ptr(leaf, path->slots[0],
2405 struct btrfs_file_extent_item);
2406 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2407 offset;
2408 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2409 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2410 btrfs_set_file_extent_offset(leaf, fi, 0);
2411 btrfs_mark_buffer_dirty(leaf);
2412 goto out;
2413 }
2414 btrfs_release_path(path);
2415
Nikolay Borisova012a742017-02-20 13:50:47 +02002416 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002417 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002418 if (ret)
2419 return ret;
2420
2421out:
2422 btrfs_release_path(path);
2423
2424 hole_em = alloc_extent_map();
2425 if (!hole_em) {
2426 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002427 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002428 } else {
2429 hole_em->start = offset;
2430 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002431 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002432 hole_em->orig_start = offset;
2433
2434 hole_em->block_start = EXTENT_MAP_HOLE;
2435 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002436 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002437 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2438 hole_em->generation = trans->transid;
2439
2440 do {
2441 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2442 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002443 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002444 write_unlock(&em_tree->lock);
2445 } while (ret == -EEXIST);
2446 free_extent_map(hole_em);
2447 if (ret)
2448 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002449 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002450 }
2451
2452 return 0;
2453}
2454
Qu Wenruod7781542014-05-30 15:16:10 +08002455/*
2456 * Find a hole extent on given inode and change start/len to the end of hole
2457 * extent.(hole/vacuum extent whose em->start <= start &&
2458 * em->start + em->len > start)
2459 * When a hole extent is found, return 1 and modify start/len.
2460 */
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002461static int find_first_non_hole(struct btrfs_inode *inode, u64 *start, u64 *len)
Qu Wenruod7781542014-05-30 15:16:10 +08002462{
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002463 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Qu Wenruod7781542014-05-30 15:16:10 +08002464 struct extent_map *em;
2465 int ret = 0;
2466
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002467 em = btrfs_get_extent(inode, NULL, 0,
Filipe Manana609805d2017-05-30 05:29:09 +01002468 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002469 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002470 if (IS_ERR(em))
2471 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002472
2473 /* Hole or vacuum extent(only exists in no-hole mode) */
2474 if (em->block_start == EXTENT_MAP_HOLE) {
2475 ret = 1;
2476 *len = em->start + em->len > *start + *len ?
2477 0 : *start + *len - em->start - em->len;
2478 *start = em->start + em->len;
2479 }
2480 free_extent_map(em);
2481 return ret;
2482}
2483
Filipe Mananaf27451f2017-10-25 11:55:28 +01002484static int btrfs_punch_hole_lock_range(struct inode *inode,
2485 const u64 lockstart,
2486 const u64 lockend,
2487 struct extent_state **cached_state)
2488{
Qu Wenruo05284762021-05-31 16:50:54 +08002489 /*
2490 * For subpage case, if the range is not at page boundary, we could
2491 * have pages at the leading/tailing part of the range.
2492 * This could lead to dead loop since filemap_range_has_page()
2493 * will always return true.
2494 * So here we need to do extra page alignment for
2495 * filemap_range_has_page().
2496 */
2497 const u64 page_lockstart = round_up(lockstart, PAGE_SIZE);
2498 const u64 page_lockend = round_down(lockend + 1, PAGE_SIZE) - 1;
2499
Filipe Mananaf27451f2017-10-25 11:55:28 +01002500 while (1) {
2501 struct btrfs_ordered_extent *ordered;
2502 int ret;
2503
2504 truncate_pagecache_range(inode, lockstart, lockend);
2505
2506 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2507 cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03002508 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
2509 lockend);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002510
2511 /*
2512 * We need to make sure we have no ordered extents in this range
2513 * and nobody raced in and read a page in this range, if we did
2514 * we need to try again.
2515 */
2516 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002517 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002518 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002519 !filemap_range_has_page(inode->i_mapping,
Qu Wenruo05284762021-05-31 16:50:54 +08002520 page_lockstart, page_lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002521 if (ordered)
2522 btrfs_put_ordered_extent(ordered);
2523 break;
2524 }
2525 if (ordered)
2526 btrfs_put_ordered_extent(ordered);
2527 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2528 lockend, cached_state);
2529 ret = btrfs_wait_ordered_range(inode, lockstart,
2530 lockend - lockstart + 1);
2531 if (ret)
2532 return ret;
2533 }
2534 return 0;
2535}
2536
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002537static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002538 struct btrfs_inode *inode,
Filipe Manana690a5db2019-07-05 11:09:50 +01002539 struct btrfs_path *path,
Filipe Mananabf385642020-09-08 11:27:22 +01002540 struct btrfs_replace_extent_info *extent_info,
Filipe Manana2766ff62020-11-04 11:07:34 +00002541 const u64 replace_len,
2542 const u64 bytes_to_drop)
Filipe Manana690a5db2019-07-05 11:09:50 +01002543{
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002544 struct btrfs_fs_info *fs_info = trans->fs_info;
2545 struct btrfs_root *root = inode->root;
Filipe Manana690a5db2019-07-05 11:09:50 +01002546 struct btrfs_file_extent_item *extent;
2547 struct extent_buffer *leaf;
2548 struct btrfs_key key;
2549 int slot;
2550 struct btrfs_ref ref = { 0 };
Filipe Manana690a5db2019-07-05 11:09:50 +01002551 int ret;
2552
Filipe Mananabf385642020-09-08 11:27:22 +01002553 if (replace_len == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002554 return 0;
2555
Filipe Mananabf385642020-09-08 11:27:22 +01002556 if (extent_info->disk_offset == 0 &&
Filipe Manana2766ff62020-11-04 11:07:34 +00002557 btrfs_fs_incompat(fs_info, NO_HOLES)) {
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002558 btrfs_update_inode_bytes(inode, 0, bytes_to_drop);
Filipe Manana690a5db2019-07-05 11:09:50 +01002559 return 0;
Filipe Manana2766ff62020-11-04 11:07:34 +00002560 }
Filipe Manana690a5db2019-07-05 11:09:50 +01002561
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002562 key.objectid = btrfs_ino(inode);
Filipe Manana690a5db2019-07-05 11:09:50 +01002563 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002564 key.offset = extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002565 ret = btrfs_insert_empty_item(trans, root, path, &key,
Filipe Mananafb870f62020-09-08 11:27:21 +01002566 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002567 if (ret)
2568 return ret;
2569 leaf = path->nodes[0];
2570 slot = path->slots[0];
Filipe Mananabf385642020-09-08 11:27:22 +01002571 write_extent_buffer(leaf, extent_info->extent_buf,
Filipe Manana690a5db2019-07-05 11:09:50 +01002572 btrfs_item_ptr_offset(leaf, slot),
Filipe Mananafb870f62020-09-08 11:27:21 +01002573 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002574 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananafb870f62020-09-08 11:27:21 +01002575 ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE);
Filipe Mananabf385642020-09-08 11:27:22 +01002576 btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset);
2577 btrfs_set_file_extent_num_bytes(leaf, extent, replace_len);
2578 if (extent_info->is_new_extent)
Filipe Manana8fccebf2020-09-08 11:27:20 +01002579 btrfs_set_file_extent_generation(leaf, extent, trans->transid);
Filipe Manana690a5db2019-07-05 11:09:50 +01002580 btrfs_mark_buffer_dirty(leaf);
2581 btrfs_release_path(path);
2582
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002583 ret = btrfs_inode_set_file_extent_range(inode, extent_info->file_offset,
2584 replace_len);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002585 if (ret)
2586 return ret;
2587
Filipe Manana690a5db2019-07-05 11:09:50 +01002588 /* If it's a hole, nothing more needs to be done. */
Filipe Manana2766ff62020-11-04 11:07:34 +00002589 if (extent_info->disk_offset == 0) {
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002590 btrfs_update_inode_bytes(inode, 0, bytes_to_drop);
Filipe Manana690a5db2019-07-05 11:09:50 +01002591 return 0;
Filipe Manana2766ff62020-11-04 11:07:34 +00002592 }
Filipe Manana690a5db2019-07-05 11:09:50 +01002593
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002594 btrfs_update_inode_bytes(inode, replace_len, bytes_to_drop);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002595
Filipe Mananabf385642020-09-08 11:27:22 +01002596 if (extent_info->is_new_extent && extent_info->insertions == 0) {
2597 key.objectid = extent_info->disk_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002598 key.type = BTRFS_EXTENT_ITEM_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002599 key.offset = extent_info->disk_len;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002600 ret = btrfs_alloc_reserved_file_extent(trans, root,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002601 btrfs_ino(inode),
Filipe Mananabf385642020-09-08 11:27:22 +01002602 extent_info->file_offset,
2603 extent_info->qgroup_reserved,
Filipe Manana8fccebf2020-09-08 11:27:20 +01002604 &key);
2605 } else {
2606 u64 ref_offset;
2607
2608 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
Filipe Mananabf385642020-09-08 11:27:22 +01002609 extent_info->disk_offset,
2610 extent_info->disk_len, 0);
2611 ref_offset = extent_info->file_offset - extent_info->data_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002612 btrfs_init_data_ref(&ref, root->root_key.objectid,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002613 btrfs_ino(inode), ref_offset);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002614 ret = btrfs_inc_extent_ref(trans, &ref);
2615 }
2616
Filipe Mananabf385642020-09-08 11:27:22 +01002617 extent_info->insertions++;
Filipe Manana690a5db2019-07-05 11:09:50 +01002618
2619 return ret;
2620}
2621
Filipe Manana9cba40a2019-06-28 23:11:26 +01002622/*
2623 * The respective range must have been previously locked, as well as the inode.
2624 * The end offset is inclusive (last byte of the range).
Filipe Mananabf385642020-09-08 11:27:22 +01002625 * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing
2626 * the file range with an extent.
2627 * When not punching a hole, we don't want to end up in a state where we dropped
2628 * extents without inserting a new one, so we must abort the transaction to avoid
2629 * a corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002630 */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002631int btrfs_replace_file_extents(struct btrfs_inode *inode,
2632 struct btrfs_path *path, const u64 start,
2633 const u64 end,
2634 struct btrfs_replace_extent_info *extent_info,
2635 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002636{
Filipe Manana5893dfb2020-11-04 11:07:32 +00002637 struct btrfs_drop_extents_args drop_args = { 0 };
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002638 struct btrfs_root *root = inode->root;
2639 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2bd36e72019-08-22 15:14:33 -04002640 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002641 u64 ino_size = round_up(inode->vfs_inode.i_size, fs_info->sectorsize);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002642 struct btrfs_trans_handle *trans = NULL;
2643 struct btrfs_block_rsv *rsv;
2644 unsigned int rsv_count;
2645 u64 cur_offset;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002646 u64 len = end - start;
2647 int ret = 0;
2648
2649 if (end <= start)
2650 return -EINVAL;
2651
2652 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2653 if (!rsv) {
2654 ret = -ENOMEM;
2655 goto out;
2656 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002657 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002658 rsv->failfast = 1;
2659
2660 /*
2661 * 1 - update the inode
2662 * 1 - removing the extents in the range
Filipe Mananabf385642020-09-08 11:27:22 +01002663 * 1 - adding the hole extent if no_holes isn't set or if we are
2664 * replacing the range with a new extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002665 */
Filipe Mananabf385642020-09-08 11:27:22 +01002666 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info)
Filipe Manana690a5db2019-07-05 11:09:50 +01002667 rsv_count = 3;
2668 else
2669 rsv_count = 2;
2670
Filipe Manana9cba40a2019-06-28 23:11:26 +01002671 trans = btrfs_start_transaction(root, rsv_count);
2672 if (IS_ERR(trans)) {
2673 ret = PTR_ERR(trans);
2674 trans = NULL;
2675 goto out_free;
2676 }
2677
2678 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2679 min_size, false);
2680 BUG_ON(ret);
2681 trans->block_rsv = rsv;
2682
2683 cur_offset = start;
Filipe Manana5893dfb2020-11-04 11:07:32 +00002684 drop_args.path = path;
2685 drop_args.end = end + 1;
2686 drop_args.drop_cache = true;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002687 while (cur_offset < end) {
Filipe Manana5893dfb2020-11-04 11:07:32 +00002688 drop_args.start = cur_offset;
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002689 ret = btrfs_drop_extents(trans, root, inode, &drop_args);
Filipe Manana2766ff62020-11-04 11:07:34 +00002690 /* If we are punching a hole decrement the inode's byte count */
2691 if (!extent_info)
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002692 btrfs_update_inode_bytes(inode, 0,
Filipe Manana2766ff62020-11-04 11:07:34 +00002693 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002694 if (ret != -ENOSPC) {
2695 /*
2696 * When cloning we want to avoid transaction aborts when
2697 * nothing was done and we are attempting to clone parts
2698 * of inline extents, in such cases -EOPNOTSUPP is
2699 * returned by __btrfs_drop_extents() without having
2700 * changed anything in the file.
2701 */
Filipe Mananabf385642020-09-08 11:27:22 +01002702 if (extent_info && !extent_info->is_new_extent &&
Filipe Manana8fccebf2020-09-08 11:27:20 +01002703 ret && ret != -EOPNOTSUPP)
Filipe Manana690a5db2019-07-05 11:09:50 +01002704 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002705 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002706 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002707
2708 trans->block_rsv = &fs_info->trans_block_rsv;
2709
Filipe Manana5893dfb2020-11-04 11:07:32 +00002710 if (!extent_info && cur_offset < drop_args.drop_end &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002711 cur_offset < ino_size) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002712 ret = fill_holes(trans, inode, path, cur_offset,
2713 drop_args.drop_end);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002714 if (ret) {
2715 /*
2716 * If we failed then we didn't insert our hole
2717 * entries for the area we dropped, so now the
2718 * fs is corrupted, so we must abort the
2719 * transaction.
2720 */
2721 btrfs_abort_transaction(trans, ret);
2722 break;
2723 }
Filipe Manana5893dfb2020-11-04 11:07:32 +00002724 } else if (!extent_info && cur_offset < drop_args.drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002725 /*
2726 * We are past the i_size here, but since we didn't
2727 * insert holes we need to clear the mapped area so we
2728 * know to not set disk_i_size in this area until a new
2729 * file extent is inserted here.
2730 */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002731 ret = btrfs_inode_clear_file_extent_range(inode,
Filipe Manana5893dfb2020-11-04 11:07:32 +00002732 cur_offset,
2733 drop_args.drop_end - cur_offset);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002734 if (ret) {
2735 /*
2736 * We couldn't clear our area, so we could
2737 * presumably adjust up and corrupt the fs, so
2738 * we need to abort.
2739 */
2740 btrfs_abort_transaction(trans, ret);
2741 break;
2742 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002743 }
2744
Filipe Manana5893dfb2020-11-04 11:07:32 +00002745 if (extent_info &&
2746 drop_args.drop_end > extent_info->file_offset) {
2747 u64 replace_len = drop_args.drop_end -
2748 extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002749
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002750 ret = btrfs_insert_replace_extent(trans, inode, path,
2751 extent_info, replace_len,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002752 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002753 if (ret) {
2754 btrfs_abort_transaction(trans, ret);
2755 break;
2756 }
Filipe Mananabf385642020-09-08 11:27:22 +01002757 extent_info->data_len -= replace_len;
2758 extent_info->data_offset += replace_len;
2759 extent_info->file_offset += replace_len;
Filipe Manana690a5db2019-07-05 11:09:50 +01002760 }
2761
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002762 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002763 if (ret)
2764 break;
2765
2766 btrfs_end_transaction(trans);
2767 btrfs_btree_balance_dirty(fs_info);
2768
2769 trans = btrfs_start_transaction(root, rsv_count);
2770 if (IS_ERR(trans)) {
2771 ret = PTR_ERR(trans);
2772 trans = NULL;
2773 break;
2774 }
2775
2776 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2777 rsv, min_size, false);
2778 BUG_ON(ret); /* shouldn't happen */
2779 trans->block_rsv = rsv;
2780
BingJing Chang32277882021-03-25 09:56:22 +08002781 cur_offset = drop_args.drop_end;
2782 len = end - cur_offset;
2783 if (!extent_info && len) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002784 ret = find_first_non_hole(inode, &cur_offset, &len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002785 if (unlikely(ret < 0))
2786 break;
2787 if (ret && !len) {
2788 ret = 0;
2789 break;
2790 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002791 }
2792 }
2793
Filipe Manana690a5db2019-07-05 11:09:50 +01002794 /*
2795 * If we were cloning, force the next fsync to be a full one since we
2796 * we replaced (or just dropped in the case of cloning holes when
Filipe Mananae2b84212021-03-26 13:14:41 +00002797 * NO_HOLES is enabled) file extent items and did not setup new extent
2798 * maps for the replacement extents (or holes).
Filipe Manana690a5db2019-07-05 11:09:50 +01002799 */
Filipe Mananabf385642020-09-08 11:27:22 +01002800 if (extent_info && !extent_info->is_new_extent)
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002801 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana690a5db2019-07-05 11:09:50 +01002802
Filipe Manana9cba40a2019-06-28 23:11:26 +01002803 if (ret)
2804 goto out_trans;
2805
2806 trans->block_rsv = &fs_info->trans_block_rsv;
2807 /*
2808 * If we are using the NO_HOLES feature we might have had already an
2809 * hole that overlaps a part of the region [lockstart, lockend] and
2810 * ends at (or beyond) lockend. Since we have no file extent items to
2811 * represent holes, drop_end can be less than lockend and so we must
2812 * make sure we have an extent map representing the existing hole (the
2813 * call to __btrfs_drop_extents() might have dropped the existing extent
2814 * map representing the existing hole), otherwise the fast fsync path
2815 * will not record the existence of the hole region
2816 * [existing_hole_start, lockend].
2817 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00002818 if (drop_args.drop_end <= end)
2819 drop_args.drop_end = end + 1;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002820 /*
2821 * Don't insert file hole extent item if it's for a range beyond eof
2822 * (because it's useless) or if it represents a 0 bytes range (when
2823 * cur_offset == drop_end).
2824 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00002825 if (!extent_info && cur_offset < ino_size &&
2826 cur_offset < drop_args.drop_end) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002827 ret = fill_holes(trans, inode, path, cur_offset,
2828 drop_args.drop_end);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002829 if (ret) {
2830 /* Same comment as above. */
2831 btrfs_abort_transaction(trans, ret);
2832 goto out_trans;
2833 }
Filipe Manana5893dfb2020-11-04 11:07:32 +00002834 } else if (!extent_info && cur_offset < drop_args.drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002835 /* See the comment in the loop above for the reasoning here. */
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002836 ret = btrfs_inode_clear_file_extent_range(inode, cur_offset,
2837 drop_args.drop_end - cur_offset);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002838 if (ret) {
2839 btrfs_abort_transaction(trans, ret);
2840 goto out_trans;
2841 }
2842
Filipe Manana9cba40a2019-06-28 23:11:26 +01002843 }
Filipe Mananabf385642020-09-08 11:27:22 +01002844 if (extent_info) {
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002845 ret = btrfs_insert_replace_extent(trans, inode, path,
Nikolay Borisov03fcb1a2020-11-02 16:49:02 +02002846 extent_info, extent_info->data_len,
2847 drop_args.bytes_found);
Filipe Manana690a5db2019-07-05 11:09:50 +01002848 if (ret) {
2849 btrfs_abort_transaction(trans, ret);
2850 goto out_trans;
2851 }
2852 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002853
2854out_trans:
2855 if (!trans)
2856 goto out_free;
2857
2858 trans->block_rsv = &fs_info->trans_block_rsv;
2859 if (ret)
2860 btrfs_end_transaction(trans);
2861 else
2862 *trans_out = trans;
2863out_free:
2864 btrfs_free_block_rsv(fs_info, rsv);
2865out:
2866 return ret;
2867}
2868
Josef Bacik2aaa6652012-08-29 14:27:18 -04002869static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2870{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002871 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002872 struct btrfs_root *root = BTRFS_I(inode)->root;
2873 struct extent_state *cached_state = NULL;
2874 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002875 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002876 u64 lockstart;
2877 u64 lockend;
2878 u64 tail_start;
2879 u64 tail_len;
2880 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002881 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302882 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002883 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302884 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002885 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002886
Josef Bacik0ef8b722013-10-25 16:13:35 -04002887 ret = btrfs_wait_ordered_range(inode, offset, len);
2888 if (ret)
2889 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002890
Josef Bacik8d9b4a12021-02-10 17:14:36 -05002891 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002892 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002893 ret = find_first_non_hole(BTRFS_I(inode), &offset, &len);
Qu Wenruod7781542014-05-30 15:16:10 +08002894 if (ret < 0)
2895 goto out_only_mutex;
2896 if (ret && !len) {
2897 /* Already in a large hole */
2898 ret = 0;
2899 goto out_only_mutex;
2900 }
2901
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002902 lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode)));
Qu Wenruod7781542014-05-30 15:16:10 +08002903 lockend = round_down(offset + len,
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002904 btrfs_inode_sectorsize(BTRFS_I(inode))) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002905 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2906 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002907 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302908 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002909 * because we are sure there is no data there.
2910 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002911 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302912 * Only do this if we are in the same block and we aren't doing the
2913 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002914 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002915 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002916 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302917 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02002918 ret = btrfs_truncate_block(BTRFS_I(inode), offset, len,
2919 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002920 } else {
2921 ret = 0;
2922 }
Qu Wenruod7781542014-05-30 15:16:10 +08002923 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002924 }
2925
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302926 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002927 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302928 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02002929 ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002930 if (ret) {
Josef Bacik8d9b4a12021-02-10 17:14:36 -05002931 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Miao Xie7426cc02012-12-05 10:54:52 +00002932 return ret;
2933 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002934 }
2935
Qu Wenruod7781542014-05-30 15:16:10 +08002936 /* Check the aligned pages after the first unaligned page,
2937 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002938 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002939 * the extra check can be skipped */
2940 if (offset == orig_start) {
2941 /* after truncate page, check hole again */
2942 len = offset + len - lockstart;
2943 offset = lockstart;
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002944 ret = find_first_non_hole(BTRFS_I(inode), &offset, &len);
Qu Wenruod7781542014-05-30 15:16:10 +08002945 if (ret < 0)
2946 goto out_only_mutex;
2947 if (ret && !len) {
2948 ret = 0;
2949 goto out_only_mutex;
2950 }
2951 lockstart = offset;
2952 }
2953
2954 /* Check the tail unaligned part is in a hole */
2955 tail_start = lockend + 1;
2956 tail_len = offset + len - tail_start;
2957 if (tail_len) {
Nikolay Borisovdea46d82020-11-02 16:49:01 +02002958 ret = find_first_non_hole(BTRFS_I(inode), &tail_start, &tail_len);
Qu Wenruod7781542014-05-30 15:16:10 +08002959 if (unlikely(ret < 0))
2960 goto out_only_mutex;
2961 if (!ret) {
2962 /* zero the front end of the last page */
2963 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302964 truncated_block = true;
Nikolay Borisov217f42e2020-11-02 16:49:03 +02002965 ret = btrfs_truncate_block(BTRFS_I(inode),
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302966 tail_start + tail_len,
2967 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002968 if (ret)
2969 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002970 }
Miao Xie00612802012-12-05 10:54:12 +00002971 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002972 }
2973
2974 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002975 ret = 0;
2976 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002977 }
2978
Filipe Mananaf27451f2017-10-25 11:55:28 +01002979 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2980 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002981 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002982 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002983
2984 path = btrfs_alloc_path();
2985 if (!path) {
2986 ret = -ENOMEM;
2987 goto out;
2988 }
2989
Nikolay Borisovbfc78472021-02-17 15:12:47 +02002990 ret = btrfs_replace_file_extents(BTRFS_I(inode), path, lockstart,
2991 lockend, NULL, &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002992 btrfs_free_path(path);
2993 if (ret)
2994 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002995
Filipe Manana9cba40a2019-06-28 23:11:26 +01002996 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002997 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002998 inode->i_mtime = inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02002999 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananae8c1c762015-02-15 22:38:54 +00003000 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003001 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003002 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003003out:
3004 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003005 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08003006out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01003007 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00003008 /*
3009 * If we only end up zeroing part of a page, we still need to
3010 * update the inode item, so that all the time fields are
3011 * updated as well as the necessary btrfs inode in memory fields
3012 * for detecting, at fsync time, if the inode isn't yet in the
3013 * log tree or it's there but not up to date.
3014 */
Filipe Manana17900662019-06-19 13:05:50 +01003015 struct timespec64 now = current_time(inode);
3016
3017 inode_inc_iversion(inode);
3018 inode->i_mtime = now;
3019 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003020 trans = btrfs_start_transaction(root, 1);
3021 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003022 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00003023 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003024 int ret2;
3025
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003026 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Manana9cba40a2019-06-28 23:11:26 +01003027 ret2 = btrfs_end_transaction(trans);
3028 if (!ret)
3029 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003030 }
3031 }
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003032 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003033 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003034}
3035
Qu Wenruo14524a82015-09-08 17:22:44 +08003036/* Helper structure to record which range is already reserved */
3037struct falloc_range {
3038 struct list_head list;
3039 u64 start;
3040 u64 len;
3041};
3042
3043/*
3044 * Helper function to add falloc range
3045 *
3046 * Caller should have locked the larger range of extent containing
3047 * [start, len)
3048 */
3049static int add_falloc_range(struct list_head *head, u64 start, u64 len)
3050{
Qu Wenruo14524a82015-09-08 17:22:44 +08003051 struct falloc_range *range = NULL;
3052
3053 if (list_empty(head))
3054 goto insert;
3055
3056 /*
3057 * As fallocate iterate by bytenr order, we only need to check
3058 * the last range.
3059 */
Nikolay Borisovec87b422021-05-31 10:37:03 +03003060 range = list_last_entry(head, struct falloc_range, list);
3061 if (range->start + range->len == start) {
3062 range->len += len;
Qu Wenruo14524a82015-09-08 17:22:44 +08003063 return 0;
3064 }
3065insert:
David Sterba32fc9322016-02-11 14:25:38 +01003066 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08003067 if (!range)
3068 return -ENOMEM;
3069 range->start = start;
3070 range->len = len;
3071 list_add_tail(&range->list, head);
3072 return 0;
3073}
3074
Filipe Mananaf27451f2017-10-25 11:55:28 +01003075static int btrfs_fallocate_update_isize(struct inode *inode,
3076 const u64 end,
3077 const int mode)
3078{
3079 struct btrfs_trans_handle *trans;
3080 struct btrfs_root *root = BTRFS_I(inode)->root;
3081 int ret;
3082 int ret2;
3083
3084 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
3085 return 0;
3086
3087 trans = btrfs_start_transaction(root, 1);
3088 if (IS_ERR(trans))
3089 return PTR_ERR(trans);
3090
3091 inode->i_ctime = current_time(inode);
3092 i_size_write(inode, end);
Nikolay Borisov76aea532020-11-02 16:48:53 +02003093 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003094 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003095 ret2 = btrfs_end_transaction(trans);
3096
3097 return ret ? ret : ret2;
3098}
3099
Filipe Manana81fdf632018-01-18 11:34:31 +00003100enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003101 RANGE_BOUNDARY_WRITTEN_EXTENT,
3102 RANGE_BOUNDARY_PREALLOC_EXTENT,
3103 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003104};
3105
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003106static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003107 u64 offset)
3108{
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003109 const u64 sectorsize = btrfs_inode_sectorsize(inode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003110 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003111 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003112
3113 offset = round_down(offset, sectorsize);
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003114 em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003115 if (IS_ERR(em))
3116 return PTR_ERR(em);
3117
3118 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003119 ret = RANGE_BOUNDARY_HOLE;
3120 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3121 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3122 else
3123 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003124
3125 free_extent_map(em);
3126 return ret;
3127}
3128
3129static int btrfs_zero_range(struct inode *inode,
3130 loff_t offset,
3131 loff_t len,
3132 const int mode)
3133{
3134 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3135 struct extent_map *em;
3136 struct extent_changeset *data_reserved = NULL;
3137 int ret;
3138 u64 alloc_hint = 0;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003139 const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003140 u64 alloc_start = round_down(offset, sectorsize);
3141 u64 alloc_end = round_up(offset + len, sectorsize);
3142 u64 bytes_to_reserve = 0;
3143 bool space_reserved = false;
3144
3145 inode_dio_wait(inode);
3146
Omar Sandoval39b07b52019-12-02 17:34:23 -08003147 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3148 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003149 if (IS_ERR(em)) {
3150 ret = PTR_ERR(em);
3151 goto out;
3152 }
3153
3154 /*
3155 * Avoid hole punching and extent allocation for some cases. More cases
3156 * could be considered, but these are unlikely common and we keep things
3157 * as simple as possible for now. Also, intentionally, if the target
3158 * range contains one or more prealloc extents together with regular
3159 * extents and holes, we drop all the existing extents and allocate a
3160 * new prealloc extent, so that we get a larger contiguous disk extent.
3161 */
3162 if (em->start <= alloc_start &&
3163 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3164 const u64 em_end = em->start + em->len;
3165
3166 if (em_end >= offset + len) {
3167 /*
3168 * The whole range is already a prealloc extent,
3169 * do nothing except updating the inode's i_size if
3170 * needed.
3171 */
3172 free_extent_map(em);
3173 ret = btrfs_fallocate_update_isize(inode, offset + len,
3174 mode);
3175 goto out;
3176 }
3177 /*
3178 * Part of the range is already a prealloc extent, so operate
3179 * only on the remaining part of the range.
3180 */
3181 alloc_start = em_end;
3182 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3183 len = offset + len - alloc_start;
3184 offset = alloc_start;
3185 alloc_hint = em->block_start + em->len;
3186 }
3187 free_extent_map(em);
3188
3189 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3190 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003191 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3192 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003193 if (IS_ERR(em)) {
3194 ret = PTR_ERR(em);
3195 goto out;
3196 }
3197
3198 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3199 free_extent_map(em);
3200 ret = btrfs_fallocate_update_isize(inode, offset + len,
3201 mode);
3202 goto out;
3203 }
3204 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3205 free_extent_map(em);
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003206 ret = btrfs_truncate_block(BTRFS_I(inode), offset, len,
3207 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003208 if (!ret)
3209 ret = btrfs_fallocate_update_isize(inode,
3210 offset + len,
3211 mode);
3212 return ret;
3213 }
3214 free_extent_map(em);
3215 alloc_start = round_down(offset, sectorsize);
3216 alloc_end = alloc_start + sectorsize;
3217 goto reserve_space;
3218 }
3219
3220 alloc_start = round_up(offset, sectorsize);
3221 alloc_end = round_down(offset + len, sectorsize);
3222
3223 /*
3224 * For unaligned ranges, check the pages at the boundaries, they might
3225 * map to an extent, in which case we need to partially zero them, or
3226 * they might map to a hole, in which case we need our allocation range
3227 * to cover them.
3228 */
3229 if (!IS_ALIGNED(offset, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003230 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
3231 offset);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003232 if (ret < 0)
3233 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003234 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003235 alloc_start = round_down(offset, sectorsize);
3236 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003237 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003238 ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003239 if (ret)
3240 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003241 } else {
3242 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003243 }
3244 }
3245
3246 if (!IS_ALIGNED(offset + len, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003247 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
Filipe Mananaf27451f2017-10-25 11:55:28 +01003248 offset + len);
3249 if (ret < 0)
3250 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003251 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003252 alloc_end = round_up(offset + len, sectorsize);
3253 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003254 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003255 ret = btrfs_truncate_block(BTRFS_I(inode), offset + len,
3256 0, 1);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003257 if (ret)
3258 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003259 } else {
3260 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003261 }
3262 }
3263
3264reserve_space:
3265 if (alloc_start < alloc_end) {
3266 struct extent_state *cached_state = NULL;
3267 const u64 lockstart = alloc_start;
3268 const u64 lockend = alloc_end - 1;
3269
3270 bytes_to_reserve = alloc_end - alloc_start;
3271 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3272 bytes_to_reserve);
3273 if (ret < 0)
3274 goto out;
3275 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003276 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3277 &cached_state);
3278 if (ret)
3279 goto out;
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003280 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved,
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003281 alloc_start, bytes_to_reserve);
Nikolay Borisov4f6a49d2021-02-23 15:20:42 +02003282 if (ret) {
3283 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3284 lockend, &cached_state);
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003285 goto out;
Nikolay Borisov4f6a49d2021-02-23 15:20:42 +02003286 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003287 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3288 alloc_end - alloc_start,
3289 i_blocksize(inode),
3290 offset + len, &alloc_hint);
3291 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3292 lockend, &cached_state);
3293 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003294 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003295 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003296 goto out;
3297 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003298 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003299 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003300 out:
3301 if (ret && space_reserved)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003302 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003303 alloc_start, bytes_to_reserve);
3304 extent_changeset_free(data_reserved);
3305
3306 return ret;
3307}
3308
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003309static long btrfs_fallocate(struct file *file, int mode,
3310 loff_t offset, loff_t len)
3311{
Al Viro496ad9a2013-01-23 17:07:38 -05003312 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003313 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003314 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003315 struct falloc_range *range;
3316 struct falloc_range *tmp;
3317 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003318 u64 cur_offset;
3319 u64 last_byte;
3320 u64 alloc_start;
3321 u64 alloc_end;
3322 u64 alloc_hint = 0;
3323 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003324 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003325 struct extent_map *em;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003326 int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003327 int ret;
3328
Naohiro Aotaf1569c42020-11-10 20:26:12 +09003329 /* Do not allow fallocate in ZONED mode */
3330 if (btrfs_is_zoned(btrfs_sb(inode->i_sb)))
3331 return -EOPNOTSUPP;
3332
Miao Xie797f4272012-11-28 10:28:07 +00003333 alloc_start = round_down(offset, blocksize);
3334 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003335 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003336
Josef Bacik2aaa6652012-08-29 14:27:18 -04003337 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003338 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3339 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003340 return -EOPNOTSUPP;
3341
Josef Bacik2aaa6652012-08-29 14:27:18 -04003342 if (mode & FALLOC_FL_PUNCH_HOLE)
3343 return btrfs_punch_hole(inode, offset, len);
3344
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003345 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003346 * Only trigger disk allocation, don't trigger qgroup reserve
3347 *
3348 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003349 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003350 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3351 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3352 alloc_end - alloc_start);
3353 if (ret < 0)
3354 return ret;
3355 }
Chris Masond98456f2012-01-31 20:27:41 -05003356
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003357 btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003358
3359 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3360 ret = inode_newsize_ok(inode, offset + len);
3361 if (ret)
3362 goto out;
3363 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003364
Qu Wenruo14524a82015-09-08 17:22:44 +08003365 /*
3366 * TODO: Move these two operations after we have checked
3367 * accurate reserved space, or fallocate can still fail but
3368 * with page truncated or size expanded.
3369 *
3370 * But that's a minor problem and won't do much harm BTW.
3371 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003372 if (alloc_start > inode->i_size) {
Nikolay Borisovb06359a2020-11-02 16:49:04 +02003373 ret = btrfs_cont_expand(BTRFS_I(inode), i_size_read(inode),
Josef Bacika41ad392011-01-31 15:30:16 -05003374 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003375 if (ret)
3376 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003377 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003378 /*
3379 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303380 * need to zero out the end of the block if i_size lands in the
3381 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003382 */
Nikolay Borisov217f42e2020-11-02 16:49:03 +02003383 ret = btrfs_truncate_block(BTRFS_I(inode), inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003384 if (ret)
3385 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003386 }
3387
Josef Bacika71754f2013-06-17 17:14:39 -04003388 /*
3389 * wait for ordered IO before we have any locks. We'll loop again
3390 * below with the locks held.
3391 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003392 ret = btrfs_wait_ordered_range(inode, alloc_start,
3393 alloc_end - alloc_start);
3394 if (ret)
3395 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003396
Filipe Mananaf27451f2017-10-25 11:55:28 +01003397 if (mode & FALLOC_FL_ZERO_RANGE) {
3398 ret = btrfs_zero_range(inode, offset, len, mode);
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003399 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003400 return ret;
3401 }
3402
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003403 locked_end = alloc_end - 1;
3404 while (1) {
3405 struct btrfs_ordered_extent *ordered;
3406
3407 /* the extent lock is ordered inside the running
3408 * transaction
3409 */
3410 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003411 locked_end, &cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03003412 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
3413 locked_end);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003414
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003415 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003416 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003417 ordered->file_offset < alloc_end) {
3418 btrfs_put_ordered_extent(ordered);
3419 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3420 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003421 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003422 /*
3423 * we can't wait on the range with the transaction
3424 * running or with the extent lock held
3425 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003426 ret = btrfs_wait_ordered_range(inode, alloc_start,
3427 alloc_end - alloc_start);
3428 if (ret)
3429 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003430 } else {
3431 if (ordered)
3432 btrfs_put_ordered_extent(ordered);
3433 break;
3434 }
3435 }
3436
Qu Wenruo14524a82015-09-08 17:22:44 +08003437 /* First, check if we exceed the qgroup limit */
3438 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003439 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003440 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003441 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003442 if (IS_ERR(em)) {
3443 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003444 break;
3445 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003446 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003447 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003448 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003449 if (em->block_start == EXTENT_MAP_HOLE ||
3450 (cur_offset >= inode->i_size &&
3451 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003452 ret = add_falloc_range(&reserve_list, cur_offset,
3453 last_byte - cur_offset);
3454 if (ret < 0) {
3455 free_extent_map(em);
3456 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003457 }
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003458 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode),
3459 &data_reserved, cur_offset,
3460 last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003461 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003462 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003463 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003464 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003465 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003466 } else {
3467 /*
3468 * Do not need to reserve unwritten extent for this
3469 * range, free reserved data space first, otherwise
3470 * it'll result in false ENOSPC error.
3471 */
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003472 btrfs_free_reserved_data_space(BTRFS_I(inode),
3473 data_reserved, cur_offset,
3474 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003475 }
3476 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003477 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003478 }
3479
3480 /*
3481 * If ret is still 0, means we're OK to fallocate.
3482 * Or just cleanup the list and exit.
3483 */
3484 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3485 if (!ret)
3486 ret = btrfs_prealloc_file_range(inode, mode,
3487 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003488 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003489 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003490 else
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003491 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08003492 data_reserved, range->start,
3493 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003494 list_del(&range->list);
3495 kfree(range);
3496 }
3497 if (ret < 0)
3498 goto out_unlock;
3499
Filipe Mananaf27451f2017-10-25 11:55:28 +01003500 /*
3501 * We didn't need to allocate any more space, but we still extended the
3502 * size of the file so we need to update i_size and the inode item.
3503 */
3504 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003505out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003506 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003507 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003508out:
Josef Bacik8d9b4a12021-02-10 17:14:36 -05003509 btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP);
Chris Masond98456f2012-01-31 20:27:41 -05003510 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003511 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003512 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003513 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003514 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003515 return ret;
3516}
3517
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003518static loff_t find_desired_extent(struct btrfs_inode *inode, loff_t offset,
Nikolay Borisovbc802302019-09-27 13:23:18 +03003519 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003520{
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003521 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik7f4ca372013-10-18 11:44:46 -04003522 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003523 struct extent_state *cached_state = NULL;
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003524 loff_t i_size = inode->vfs_inode.i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003525 u64 lockstart;
3526 u64 lockend;
3527 u64 start;
3528 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003529 int ret = 0;
3530
Nikolay Borisovbc802302019-09-27 13:23:18 +03003531 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003532 return -ENXIO;
3533
Liu Bo4d1a40c2014-09-16 17:49:30 +08003534 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003535 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003536 * the very start of the file.
3537 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003538 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003539
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003540 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003541 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003542 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003543 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003544 lockend--;
3545 len = lockend - lockstart + 1;
3546
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003547 lock_extent_bits(&inode->io_tree, lockstart, lockend, &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003548
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003549 while (start < i_size) {
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003550 em = btrfs_get_extent_fiemap(inode, start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003551 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003552 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003553 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003554 break;
3555 }
3556
Josef Bacik7f4ca372013-10-18 11:44:46 -04003557 if (whence == SEEK_HOLE &&
3558 (em->block_start == EXTENT_MAP_HOLE ||
3559 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3560 break;
3561 else if (whence == SEEK_DATA &&
3562 (em->block_start != EXTENT_MAP_HOLE &&
3563 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3564 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003565
3566 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003567 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003568 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003569 cond_resched();
3570 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003571 free_extent_map(em);
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003572 unlock_extent_cached(&inode->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003573 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003574 if (ret) {
3575 offset = ret;
3576 } else {
3577 if (whence == SEEK_DATA && start >= i_size)
3578 offset = -ENXIO;
3579 else
3580 offset = min_t(loff_t, start, i_size);
3581 }
3582
3583 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003584}
3585
Andrew Morton965c8e52012-12-17 15:59:39 -08003586static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003587{
3588 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003589
Andrew Morton965c8e52012-12-17 15:59:39 -08003590 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003591 default:
3592 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003593 case SEEK_DATA:
3594 case SEEK_HOLE:
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003595 btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED);
Nikolay Borisovcca5de92021-02-17 15:12:48 +02003596 offset = find_desired_extent(BTRFS_I(inode), offset, whence);
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003597 btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003598 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003599 }
3600
Nikolay Borisovbc802302019-09-27 13:23:18 +03003601 if (offset < 0)
3602 return offset;
3603
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003604 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003605}
3606
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003607static int btrfs_file_open(struct inode *inode, struct file *filp)
3608{
Jens Axboe8730f122020-05-22 10:19:22 -06003609 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003610 return generic_file_open(inode, filp);
3611}
3612
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003613static int check_direct_read(struct btrfs_fs_info *fs_info,
3614 const struct iov_iter *iter, loff_t offset)
3615{
3616 int ret;
3617 int i, seg;
3618
3619 ret = check_direct_IO(fs_info, iter, offset);
3620 if (ret < 0)
3621 return ret;
3622
3623 if (!iter_is_iovec(iter))
3624 return 0;
3625
3626 for (seg = 0; seg < iter->nr_segs; seg++)
3627 for (i = seg + 1; i < iter->nr_segs; i++)
3628 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
3629 return -EINVAL;
3630 return 0;
3631}
3632
3633static ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to)
3634{
3635 struct inode *inode = file_inode(iocb->ki_filp);
3636 ssize_t ret;
3637
3638 if (check_direct_read(btrfs_sb(inode->i_sb), to, iocb->ki_pos))
3639 return 0;
3640
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003641 btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED);
Christoph Hellwig2f632962021-01-23 10:06:09 -08003642 ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops, 0);
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -05003643 btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003644 return ret;
3645}
3646
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003647static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3648{
3649 ssize_t ret = 0;
3650
3651 if (iocb->ki_flags & IOCB_DIRECT) {
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003652 ret = btrfs_direct_read(iocb, to);
Johannes Thumshirn0425e7b2020-10-22 23:05:05 +09003653 if (ret < 0 || !iov_iter_count(to) ||
3654 iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp)))
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003655 return ret;
3656 }
3657
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08003658 return filemap_read(iocb, to, ret);
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003659}
3660
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003661const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003662 .llseek = btrfs_file_llseek,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003663 .read_iter = btrfs_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003664 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003665 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003666 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003667 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003668 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003669 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003670 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003671 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003672 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003673#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003674 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003675#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003676 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003677};
Miao Xie9247f312012-11-26 09:24:43 +00003678
David Sterbae67c7182018-02-19 17:24:18 +01003679void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003680{
Kinglong Mee5598e902016-01-29 21:36:35 +08003681 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003682}
3683
Liu Bof5c29bd2017-11-02 17:21:50 -06003684int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003685{
3686 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3687 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003688 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003689 NULL);
3690 if (!btrfs_inode_defrag_cachep)
3691 return -ENOMEM;
3692
3693 return 0;
3694}
Filipe Manana728404d2014-10-10 09:43:11 +01003695
3696int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3697{
3698 int ret;
3699
3700 /*
3701 * So with compression we will find and lock a dirty page and clear the
3702 * first one as dirty, setup an async extent, and immediately return
3703 * with the entire range locked but with nobody actually marked with
3704 * writeback. So we can't just filemap_write_and_wait_range() and
3705 * expect it to work since it will just kick off a thread to do the
3706 * actual work. So we need to call filemap_fdatawrite_range _again_
3707 * since it will wait on the page lock, which won't be unlocked until
3708 * after the pages have been marked as writeback and so we're good to go
3709 * from there. We have to do this otherwise we'll miss the ordered
3710 * extents and that results in badness. Please Josef, do not think you
3711 * know better and pull this out at some point in the future, it is
3712 * right and you are wrong.
3713 */
3714 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3715 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3716 &BTRFS_I(inode)->runtime_flags))
3717 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3718
3719 return ret;
3720}