blob: 87355a38a654702e154e3c9490d0c3da590743d6 [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"
Chris Mason39279cc2007-06-12 06:35:45 -040031
Miao Xie9247f312012-11-26 09:24:43 +000032static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040033/*
34 * when auto defrag is enabled we
35 * queue up these defrag structs to remember which
36 * inodes need defragging passes
37 */
38struct inode_defrag {
39 struct rb_node rb_node;
40 /* objectid */
41 u64 ino;
42 /*
43 * transid where the defrag was added, we search for
44 * extents newer than this
45 */
46 u64 transid;
47
48 /* root objectid */
49 u64 root;
50
51 /* last offset we were able to defrag */
52 u64 last_offset;
53
54 /* if we've wrapped around back to zero once already */
55 int cycled;
56};
57
Miao Xie762f2262012-05-24 18:58:27 +080058static int __compare_inode_defrag(struct inode_defrag *defrag1,
59 struct inode_defrag *defrag2)
60{
61 if (defrag1->root > defrag2->root)
62 return 1;
63 else if (defrag1->root < defrag2->root)
64 return -1;
65 else if (defrag1->ino > defrag2->ino)
66 return 1;
67 else if (defrag1->ino < defrag2->ino)
68 return -1;
69 else
70 return 0;
71}
72
Chris Mason4cb53002011-05-24 15:35:30 -040073/* pop a record for an inode into the defrag tree. The lock
74 * must be held already
75 *
76 * If you're inserting a record for an older transid than an
77 * existing record, the transid already in the tree is lowered
78 *
79 * If an existing record is found the defrag item you
80 * pass in is freed
81 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020082static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040083 struct inode_defrag *defrag)
84{
David Sterba3ffbd682018-06-29 10:56:42 +020085 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040086 struct inode_defrag *entry;
87 struct rb_node **p;
88 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080089 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040090
Jeff Mahoney0b246af2016-06-22 18:54:23 -040091 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040092 while (*p) {
93 parent = *p;
94 entry = rb_entry(parent, struct inode_defrag, rb_node);
95
Miao Xie762f2262012-05-24 18:58:27 +080096 ret = __compare_inode_defrag(defrag, entry);
97 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040098 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +080099 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400100 p = &parent->rb_right;
101 else {
102 /* if we're reinserting an entry for
103 * an old defrag run, make sure to
104 * lower the transid of our existing record
105 */
106 if (defrag->transid < entry->transid)
107 entry->transid = defrag->transid;
108 if (defrag->last_offset > entry->last_offset)
109 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000110 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400111 }
112 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200113 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400114 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400115 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000116 return 0;
117}
Chris Mason4cb53002011-05-24 15:35:30 -0400118
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400119static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000120{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400121 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000122 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400123
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400124 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000125 return 0;
126
127 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400128}
129
130/*
131 * insert a defrag record for this inode if auto defrag is
132 * enabled
133 */
134int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200135 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400136{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200137 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200138 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400139 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400140 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000141 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400142
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400143 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400144 return 0;
145
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200146 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400147 return 0;
148
149 if (trans)
150 transid = trans->transid;
151 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200152 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400153
Miao Xie9247f312012-11-26 09:24:43 +0000154 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400155 if (!defrag)
156 return -ENOMEM;
157
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200158 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400159 defrag->transid = transid;
160 defrag->root = root->root_key.objectid;
161
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400162 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200163 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000164 /*
165 * If we set IN_DEFRAG flag and evict the inode from memory,
166 * and then re-read this inode, this new inode doesn't have
167 * IN_DEFRAG flag. At the case, we may find the existed defrag.
168 */
169 ret = __btrfs_add_inode_defrag(inode, defrag);
170 if (ret)
171 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
172 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000173 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000174 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400175 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000176 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400177}
178
179/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000180 * Requeue the defrag object. If there is a defrag object that points to
181 * the same inode in the tree, we will merge them together (by
182 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400183 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200184static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000185 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000186{
David Sterba3ffbd682018-06-29 10:56:42 +0200187 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000188 int ret;
189
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400190 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000191 goto out;
192
193 /*
194 * Here we don't check the IN_DEFRAG flag, because we need merge
195 * them together.
196 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400197 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000198 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400199 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000200 if (ret)
201 goto out;
202 return;
203out:
204 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
205}
206
207/*
Miao Xie26176e72012-11-26 09:26:20 +0000208 * pick the defragable inode that we want, if it doesn't exist, we will get
209 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400210 */
Miao Xie26176e72012-11-26 09:26:20 +0000211static struct inode_defrag *
212btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400213{
214 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800215 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400216 struct rb_node *p;
217 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800218 int ret;
219
220 tmp.ino = ino;
221 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400222
Miao Xie26176e72012-11-26 09:26:20 +0000223 spin_lock(&fs_info->defrag_inodes_lock);
224 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400225 while (p) {
226 parent = p;
227 entry = rb_entry(parent, struct inode_defrag, rb_node);
228
Miao Xie762f2262012-05-24 18:58:27 +0800229 ret = __compare_inode_defrag(&tmp, entry);
230 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400231 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800232 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400233 p = parent->rb_right;
234 else
Miao Xie26176e72012-11-26 09:26:20 +0000235 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400236 }
237
Miao Xie26176e72012-11-26 09:26:20 +0000238 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
239 parent = rb_next(parent);
240 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400241 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000242 else
243 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400244 }
Miao Xie26176e72012-11-26 09:26:20 +0000245out:
246 if (entry)
247 rb_erase(parent, &fs_info->defrag_inodes);
248 spin_unlock(&fs_info->defrag_inodes_lock);
249 return entry;
250}
251
252void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
253{
254 struct inode_defrag *defrag;
255 struct rb_node *node;
256
257 spin_lock(&fs_info->defrag_inodes_lock);
258 node = rb_first(&fs_info->defrag_inodes);
259 while (node) {
260 rb_erase(node, &fs_info->defrag_inodes);
261 defrag = rb_entry(node, struct inode_defrag, rb_node);
262 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
263
David Sterba351810c2015-01-08 15:20:54 +0100264 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000265
266 node = rb_first(&fs_info->defrag_inodes);
267 }
268 spin_unlock(&fs_info->defrag_inodes_lock);
269}
270
271#define BTRFS_DEFRAG_BATCH 1024
272
273static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
274 struct inode_defrag *defrag)
275{
276 struct btrfs_root *inode_root;
277 struct inode *inode;
Miao Xie26176e72012-11-26 09:26:20 +0000278 struct btrfs_ioctl_defrag_range_args range;
279 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000280 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000281
282 /* get the inode */
David Sterba56e93572020-05-15 19:35:55 +0200283 inode_root = btrfs_get_fs_root(fs_info, defrag->root, true);
Miao Xie26176e72012-11-26 09:26:20 +0000284 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000285 ret = PTR_ERR(inode_root);
286 goto cleanup;
287 }
Miao Xie26176e72012-11-26 09:26:20 +0000288
David Sterba0202e832020-05-15 19:35:59 +0200289 inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root);
Josef Bacik00246522020-01-24 09:33:01 -0500290 btrfs_put_root(inode_root);
Miao Xie26176e72012-11-26 09:26:20 +0000291 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000292 ret = PTR_ERR(inode);
293 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000294 }
295
296 /* do a chunk of defrag */
297 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
298 memset(&range, 0, sizeof(range));
299 range.len = (u64)-1;
300 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000301
302 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000303 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
304 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000305 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000306 /*
307 * if we filled the whole defrag batch, there
308 * must be more work to do. Queue this defrag
309 * again
310 */
311 if (num_defrag == BTRFS_DEFRAG_BATCH) {
312 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200313 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000314 } else if (defrag->last_offset && !defrag->cycled) {
315 /*
316 * we didn't fill our defrag batch, but
317 * we didn't start at zero. Make sure we loop
318 * around to the start of the file.
319 */
320 defrag->last_offset = 0;
321 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200322 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000323 } else {
324 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
325 }
326
327 iput(inode);
328 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000329cleanup:
Liu Bo6f1c3602013-01-29 03:22:10 +0000330 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
331 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400332}
333
334/*
335 * run through the list of inodes in the FS that need
336 * defragging
337 */
338int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
339{
340 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400341 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800342 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400343
344 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530345 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700346 /* Pause the auto defragger. */
347 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
348 &fs_info->fs_state))
349 break;
350
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400351 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000352 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400353
354 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000355 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
356 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400357 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000358 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800359 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400360 first_ino = 0;
361 continue;
362 } else {
363 break;
364 }
365 }
366
Chris Mason4cb53002011-05-24 15:35:30 -0400367 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800368 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400369
Miao Xie26176e72012-11-26 09:26:20 +0000370 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400371 }
Chris Mason4cb53002011-05-24 15:35:30 -0400372 atomic_dec(&fs_info->defrag_running);
373
374 /*
375 * during unmount, we use the transaction_wait queue to
376 * wait for the defragger to stop
377 */
378 wake_up(&fs_info->transaction_wait);
379 return 0;
380}
Chris Mason39279cc2007-06-12 06:35:45 -0400381
Chris Masond352ac62008-09-29 15:18:18 -0400382/* simple helper to fault in pages and copy. This should go away
383 * and be replaced with calls into generic code.
384 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800385static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400386 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400387 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400388{
Xin Zhong914ee292010-12-09 09:30:14 +0000389 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500390 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400391 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100392 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400393
Josef Bacik11c65dc2010-05-23 11:07:21 -0400394 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400395 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300396 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400397 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000398 /*
399 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000400 */
Xin Zhong914ee292010-12-09 09:30:14 +0000401 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400402
Chris Mason39279cc2007-06-12 06:35:45 -0400403 /* Flush processor's dcache for this page */
404 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500405
406 /*
407 * if we get a partial write, we can end up with
408 * partially up to date pages. These add
409 * a lot of complexity, so make sure they don't
410 * happen by forcing this copy to be retried.
411 *
412 * The rest of the btrfs_file_write code will fall
413 * back to page at a time copies after we return 0.
414 */
415 if (!PageUptodate(page) && copied < count)
416 copied = 0;
417
Josef Bacik11c65dc2010-05-23 11:07:21 -0400418 iov_iter_advance(i, copied);
419 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000420 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400421
Al Virob30ac0f2014-04-03 14:29:04 -0400422 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500423 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000424 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400425
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300426 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400427 offset += copied;
428 } else {
429 pg++;
430 offset = 0;
431 }
Chris Mason39279cc2007-06-12 06:35:45 -0400432 }
Xin Zhong914ee292010-12-09 09:30:14 +0000433 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400434}
435
Chris Masond352ac62008-09-29 15:18:18 -0400436/*
437 * unlocks pages after btrfs_file_write is done with them
438 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000439static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400440{
441 size_t i;
442 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400443 /* page checked is some magic around finding pages that
444 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700445 * clear it here. There should be no need to mark the pages
446 * accessed as prepare_pages should have marked them accessed
447 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400448 */
Chris Mason4a096752008-07-21 10:29:44 -0400449 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400450 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300451 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400452 }
453}
454
Filipe Mananaf48bf662017-11-03 22:26:44 +0000455static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
456 const u64 start,
457 const u64 len,
458 struct extent_state **cached_state)
459{
460 u64 search_start = start;
461 const u64 end = start + len - 1;
462
463 while (search_start < end) {
464 const u64 search_len = end - search_start + 1;
465 struct extent_map *em;
466 u64 em_len;
467 int ret = 0;
468
Omar Sandoval39b07b52019-12-02 17:34:23 -0800469 em = btrfs_get_extent(inode, NULL, 0, search_start, search_len);
Filipe Mananaf48bf662017-11-03 22:26:44 +0000470 if (IS_ERR(em))
471 return PTR_ERR(em);
472
473 if (em->block_start != EXTENT_MAP_HOLE)
474 goto next;
475
476 em_len = em->len;
477 if (em->start < search_start)
478 em_len -= search_start - em->start;
479 if (em_len > search_len)
480 em_len = search_len;
481
482 ret = set_extent_bit(&inode->io_tree, search_start,
483 search_start + em_len - 1,
484 EXTENT_DELALLOC_NEW,
485 NULL, cached_state, GFP_NOFS);
486next:
487 search_start = extent_map_end(em);
488 free_extent_map(em);
489 if (ret)
490 return ret;
491 }
492 return 0;
493}
494
Chris Masond352ac62008-09-29 15:18:18 -0400495/*
496 * after copy_from_user, pages need to be dirtied and we need to make
497 * sure holes are created between the current EOF and the start of
498 * any next extents (if required).
499 *
500 * this also makes the decision about creating an inline extent vs
501 * doing real data extents, marking pages dirty and delalloc as required.
502 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300503int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400504 size_t num_pages, loff_t pos, size_t write_bytes,
505 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400506{
Nikolay Borisov088545f2020-06-03 08:55:36 +0300507 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400508 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400509 int i;
Chris Masondb945352007-10-15 16:15:53 -0400510 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400511 u64 start_pos;
512 u64 end_of_last_block;
513 u64 end_pos = pos + write_bytes;
Nikolay Borisov088545f2020-06-03 08:55:36 +0300514 loff_t isize = i_size_read(&inode->vfs_inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000515 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400516
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400517 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400518 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400519 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400520
Chris Masondb945352007-10-15 16:15:53 -0400521 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000522
Chris Mason7703bdd2018-06-20 07:56:11 -0700523 /*
524 * The pages may have already been dirty, clear out old accounting so
525 * we can set things up properly
526 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300527 clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700528 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
529 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700530
Nikolay Borisov088545f2020-06-03 08:55:36 +0300531 if (!btrfs_is_free_space_inode(inode)) {
Filipe Mananae3b8a482017-11-04 00:16:59 +0000532 if (start_pos >= isize &&
Nikolay Borisov088545f2020-06-03 08:55:36 +0300533 !(inode->flags & BTRFS_INODE_PREALLOC)) {
Filipe Mananae3b8a482017-11-04 00:16:59 +0000534 /*
535 * There can't be any extents following eof in this case
536 * so just set the delalloc new bit for the range
537 * directly.
538 */
539 extra_bits |= EXTENT_DELALLOC_NEW;
540 } else {
Nikolay Borisov088545f2020-06-03 08:55:36 +0300541 err = btrfs_find_new_delalloc_bytes(inode, start_pos,
Filipe Mananae3b8a482017-11-04 00:16:59 +0000542 num_bytes, cached);
543 if (err)
544 return err;
545 }
546 }
547
Nikolay Borisov088545f2020-06-03 08:55:36 +0300548 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300549 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500550 if (err)
551 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400552
Chris Masonc8b97812008-10-29 14:49:59 -0400553 for (i = 0; i < num_pages; i++) {
554 struct page *p = pages[i];
555 SetPageUptodate(p);
556 ClearPageChecked(p);
557 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400558 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500559
560 /*
561 * we've only changed i_size in ram, and we haven't updated
562 * the disk i_size. There is no need to log the inode
563 * at this time.
564 */
565 if (end_pos > isize)
Nikolay Borisov088545f2020-06-03 08:55:36 +0300566 i_size_write(&inode->vfs_inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400567 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400568}
569
Chris Masond352ac62008-09-29 15:18:18 -0400570/*
571 * this drops all the extents in the cache that intersect the range
572 * [start, end]. Existing extents are split as required.
573 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200574void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400575 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400576{
577 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400578 struct extent_map *split = NULL;
579 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200580 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500581 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400582 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400583 int ret;
584 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400585 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400586 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400587 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400588
Chris Masone6dcd2d2008-07-17 12:53:50 -0400589 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400590 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500591 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400592 testend = 0;
593 }
Chris Masond3977122009-01-05 21:25:51 -0500594 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400595 int no_splits = 0;
596
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400597 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400598 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200599 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400600 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200601 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400602 if (!split || !split2)
603 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400604
Chris Mason890871b2009-09-02 16:24:52 -0400605 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500606 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500607 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400608 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400609 break;
Chris Masond1310b22008-01-24 16:13:08 -0500610 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400611 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400612 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400613 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000614 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400615 free_extent_map(em);
Chris Masona1ed835e12009-09-11 12:27:37 -0400616 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400617 break;
618 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000619 start = em->start + em->len;
620 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400621 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400622 free_extent_map(em);
Chris Masona1ed835e12009-09-11 12:27:37 -0400623 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400624 continue;
625 }
Chris Masonc8b97812008-10-29 14:49:59 -0400626 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400627 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600628 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400629 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400630 if (no_splits)
631 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400632
Josef Bacikee20a982013-07-11 10:34:59 -0400633 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400634 split->start = em->start;
635 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400636
Josef Bacikee20a982013-07-11 10:34:59 -0400637 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
638 split->orig_start = em->orig_start;
639 split->block_start = em->block_start;
640
641 if (compressed)
642 split->block_len = em->block_len;
643 else
644 split->block_len = split->len;
645 split->orig_block_len = max(split->block_len,
646 em->orig_block_len);
647 split->ram_bytes = em->ram_bytes;
648 } else {
649 split->orig_start = split->start;
650 split->block_len = 0;
651 split->block_start = em->block_start;
652 split->orig_block_len = 0;
653 split->ram_bytes = split->len;
654 }
655
Josef Bacik5dc562c2012-08-17 13:14:17 -0400656 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400657 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800658 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000659 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400660 free_extent_map(split);
661 split = split2;
662 split2 = NULL;
663 }
Josef Bacikee20a982013-07-11 10:34:59 -0400664 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400665 u64 diff = start + len - em->start;
666
667 split->start = start + len;
668 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400669 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800670 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400671 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400672
Josef Bacikee20a982013-07-11 10:34:59 -0400673 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
674 split->orig_block_len = max(em->block_len,
675 em->orig_block_len);
676
677 split->ram_bytes = em->ram_bytes;
678 if (compressed) {
679 split->block_len = em->block_len;
680 split->block_start = em->block_start;
681 split->orig_start = em->orig_start;
682 } else {
683 split->block_len = split->len;
684 split->block_start = em->block_start
685 + diff;
686 split->orig_start = em->orig_start;
687 }
Chris Masonc8b97812008-10-29 14:49:59 -0400688 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400689 split->ram_bytes = split->len;
690 split->orig_start = split->start;
691 split->block_len = 0;
692 split->block_start = em->block_start;
693 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400694 }
Chris Mason3b951512008-04-17 11:29:12 -0400695
Filipe Manana176840b2014-02-25 14:15:13 +0000696 if (extent_map_in_tree(em)) {
697 replace_extent_mapping(em_tree, em, split,
698 modified);
699 } else {
700 ret = add_extent_mapping(em_tree, split,
701 modified);
702 ASSERT(ret == 0); /* Logic error */
703 }
Chris Mason3b951512008-04-17 11:29:12 -0400704 free_extent_map(split);
705 split = NULL;
706 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400707next:
Filipe Manana176840b2014-02-25 14:15:13 +0000708 if (extent_map_in_tree(em))
709 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400710 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500711
Chris Masona52d9a82007-08-27 16:49:44 -0400712 /* once for us */
713 free_extent_map(em);
714 /* once for the tree*/
715 free_extent_map(em);
716 }
Chris Mason3b951512008-04-17 11:29:12 -0400717 if (split)
718 free_extent_map(split);
719 if (split2)
720 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400721}
722
Chris Mason39279cc2007-06-12 06:35:45 -0400723/*
724 * this is very complex, but the basic idea is to drop all extents
725 * in the range start - end. hint_block is filled in with a block number
726 * that would be a good hint to the block allocator for this file.
727 *
728 * If an extent intersects the range but is not entirely inside the range
729 * it is either truncated or split. Anything entirely inside the range
730 * is deleted from the tree.
731 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400732int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
Nikolay Borisov906c4482020-06-03 08:55:08 +0300733 struct btrfs_root *root, struct btrfs_inode *inode,
Josef Bacik5dc562c2012-08-17 13:14:17 -0400734 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000735 u64 *drop_end, int drop_cache,
736 int replace_extent,
737 u32 extent_item_size,
738 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400739{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400740 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500741 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000742 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800743 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500744 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000745 struct btrfs_key new_key;
Nikolay Borisov906c4482020-06-03 08:55:08 +0300746 struct inode *vfs_inode = &inode->vfs_inode;
747 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000748 u64 search_start = start;
749 u64 disk_bytenr = 0;
750 u64 num_bytes = 0;
751 u64 extent_offset = 0;
752 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500753 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000754 int del_nr = 0;
755 int del_slot = 0;
756 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400757 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500758 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400759 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800760 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400761 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000762 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400763
Chris Masona1ed835e12009-09-11 12:27:37 -0400764 if (drop_cache)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300765 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400766
Nikolay Borisov906c4482020-06-03 08:55:08 +0300767 if (start >= inode->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400768 modify_tree = 0;
769
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800770 update_refs = (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400771 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500772 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400773 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800774 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400775 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400776 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000777 break;
778 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
779 leaf = path->nodes[0];
780 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800781 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000782 key.type == BTRFS_EXTENT_DATA_KEY)
783 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400784 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400785 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000786 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000787next_slot:
788 leaf = path->nodes[0];
789 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
790 BUG_ON(del_nr > 0);
791 ret = btrfs_next_leaf(root, path);
792 if (ret < 0)
793 break;
794 if (ret > 0) {
795 ret = 0;
796 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400797 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000798 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000799 leaf = path->nodes[0];
800 recow = 1;
801 }
802
803 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000804
805 if (key.objectid > ino)
806 break;
807 if (WARN_ON_ONCE(key.objectid < ino) ||
808 key.type < BTRFS_EXTENT_DATA_KEY) {
809 ASSERT(del_nr == 0);
810 path->slots[0]++;
811 goto next_slot;
812 }
813 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000814 break;
815
816 fi = btrfs_item_ptr(leaf, path->slots[0],
817 struct btrfs_file_extent_item);
818 extent_type = btrfs_file_extent_type(leaf, fi);
819
820 if (extent_type == BTRFS_FILE_EXTENT_REG ||
821 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
822 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
823 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
824 extent_offset = btrfs_file_extent_offset(leaf, fi);
825 extent_end = key.offset +
826 btrfs_file_extent_num_bytes(leaf, fi);
827 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
828 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800829 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400830 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000831 /* can't happen */
832 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400833 }
834
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100835 /*
836 * Don't skip extent items representing 0 byte lengths. They
837 * used to be created (bug) if while punching holes we hit
838 * -ENOSPC condition. So if we find one here, just ensure we
839 * delete it, otherwise we would insert a new file extent item
840 * with the same key (offset) as that 0 bytes length file
841 * extent item in the call to setup_items_for_insert() later
842 * in this function.
843 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500844 if (extent_end == key.offset && extent_end >= search_start) {
845 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100846 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500847 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100848
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000849 if (extent_end <= search_start) {
850 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400851 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400852 }
853
Josef Bacikc3308f82012-09-14 14:51:22 -0400854 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000855 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400856 if (recow || !modify_tree) {
857 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200858 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000859 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400860 }
Chris Mason771ed682008-11-06 22:02:51 -0500861
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000862 /*
863 * | - range to drop - |
864 * | -------- extent -------- |
865 */
866 if (start > key.offset && end < extent_end) {
867 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800868 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200869 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800870 break;
871 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000872
873 memcpy(&new_key, &key, sizeof(new_key));
874 new_key.offset = start;
875 ret = btrfs_duplicate_item(trans, root, path,
876 &new_key);
877 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200878 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000879 continue;
880 }
881 if (ret < 0)
882 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400883
Chris Mason5f39d392007-10-15 16:14:19 -0400884 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000885 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
886 struct btrfs_file_extent_item);
887 btrfs_set_file_extent_num_bytes(leaf, fi,
888 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400889
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000890 fi = btrfs_item_ptr(leaf, path->slots[0],
891 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400892
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893 extent_offset += start - key.offset;
894 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
895 btrfs_set_file_extent_num_bytes(leaf, fi,
896 extent_end - start);
897 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400898
Josef Bacik5dc562c2012-08-17 13:14:17 -0400899 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800900 btrfs_init_generic_ref(&ref,
901 BTRFS_ADD_DELAYED_REF,
902 disk_bytenr, num_bytes, 0);
903 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000904 root->root_key.objectid,
905 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100906 start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800907 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100908 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400909 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000910 key.offset = start;
911 }
912 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500913 * From here on out we will have actually dropped something, so
914 * last_end can be updated.
915 */
916 last_end = extent_end;
917
918 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000919 * | ---- range to drop ----- |
920 * | -------- extent -------- |
921 */
922 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800923 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200924 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800925 break;
926 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000927
928 memcpy(&new_key, &key, sizeof(new_key));
929 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400930 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000931
932 extent_offset += end - key.offset;
933 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
934 btrfs_set_file_extent_num_bytes(leaf, fi,
935 extent_end - end);
936 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400937 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300938 inode_sub_bytes(vfs_inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000939 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400940 }
941
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000942 search_start = extent_end;
943 /*
944 * | ---- range to drop ----- |
945 * | -------- extent -------- |
946 */
947 if (start > key.offset && end >= extent_end) {
948 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800949 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200950 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800951 break;
952 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000953
954 btrfs_set_file_extent_num_bytes(leaf, fi,
955 start - key.offset);
956 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400957 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300958 inode_sub_bytes(vfs_inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000959 if (end == extent_end)
960 break;
961
962 path->slots[0]++;
963 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400964 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000965
966 /*
967 * | ---- range to drop ----- |
968 * | ------ extent ------ |
969 */
970 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100971delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000972 if (del_nr == 0) {
973 del_slot = path->slots[0];
974 del_nr = 1;
975 } else {
976 BUG_ON(del_slot + del_nr != path->slots[0]);
977 del_nr++;
978 }
979
Josef Bacik5dc562c2012-08-17 13:14:17 -0400980 if (update_refs &&
981 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Nikolay Borisov906c4482020-06-03 08:55:08 +0300982 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000983 extent_end - key.offset);
984 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400985 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400986 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800987 btrfs_init_generic_ref(&ref,
988 BTRFS_DROP_DELAYED_REF,
989 disk_bytenr, num_bytes, 0);
990 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000991 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800992 key.objectid,
993 key.offset - extent_offset);
994 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100995 BUG_ON(ret); /* -ENOMEM */
Nikolay Borisov906c4482020-06-03 08:55:08 +0300996 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000997 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000998 }
999
1000 if (end == extent_end)
1001 break;
1002
1003 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1004 path->slots[0]++;
1005 goto next_slot;
1006 }
1007
1008 ret = btrfs_del_items(trans, root, path, del_slot,
1009 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001010 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001011 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001012 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001013 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001014
1015 del_nr = 0;
1016 del_slot = 0;
1017
David Sterbab3b4aa72011-04-21 01:20:15 +02001018 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001019 continue;
1020 }
1021
Arnd Bergmann290342f2019-03-25 14:02:25 +01001022 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -04001023 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001024
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001025 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001026 /*
1027 * Set path->slots[0] to first slot, so that after the delete
1028 * if items are move off from our leaf to its immediate left or
1029 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001030 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001031 */
1032 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001033 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001034 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001035 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001036 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001037
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001038 leaf = path->nodes[0];
1039 /*
1040 * If btrfs_del_items() was called, it might have deleted a leaf, in
1041 * which case it unlocked our path, so check path->locks[0] matches a
1042 * write lock.
1043 */
1044 if (!ret && replace_extent && leafs_visited == 1 &&
1045 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1046 path->locks[0] == BTRFS_WRITE_LOCK) &&
David Sterbae902baa2019-03-20 14:36:46 +01001047 btrfs_leaf_free_space(leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001048 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001049
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001050 key.objectid = ino;
1051 key.type = BTRFS_EXTENT_DATA_KEY;
1052 key.offset = start;
1053 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1054 struct btrfs_key slot_key;
1055
1056 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1057 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1058 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001059 }
Nikolay Borisovfc0d82e2020-09-01 17:39:59 +03001060 setup_items_for_insert(root, path, &key, &extent_item_size, 1);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001061 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001062 }
1063
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001064 if (!replace_extent || !(*key_inserted))
1065 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001066 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001067 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001068 return ret;
1069}
1070
1071int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1072 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001073 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001074{
1075 struct btrfs_path *path;
1076 int ret;
1077
1078 path = btrfs_alloc_path();
1079 if (!path)
1080 return -ENOMEM;
Nikolay Borisov906c4482020-06-03 08:55:08 +03001081 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path, start,
1082 end, NULL, drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001083 btrfs_free_path(path);
1084 return ret;
1085}
1086
Yan Zhengd899e052008-10-30 14:25:28 -04001087static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001088 u64 objectid, u64 bytenr, u64 orig_offset,
1089 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001090{
1091 struct btrfs_file_extent_item *fi;
1092 struct btrfs_key key;
1093 u64 extent_end;
1094
1095 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1096 return 0;
1097
1098 btrfs_item_key_to_cpu(leaf, &key, slot);
1099 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1100 return 0;
1101
1102 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1103 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1104 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001105 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001106 btrfs_file_extent_compression(leaf, fi) ||
1107 btrfs_file_extent_encryption(leaf, fi) ||
1108 btrfs_file_extent_other_encoding(leaf, fi))
1109 return 0;
1110
1111 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1112 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1113 return 0;
1114
1115 *start = key.offset;
1116 *end = extent_end;
1117 return 1;
1118}
1119
1120/*
1121 * Mark extent in the range start - end as written.
1122 *
1123 * This changes extent type from 'pre-allocated' to 'regular'. If only
1124 * part of extent is marked as written, the extent will be split into
1125 * two or three.
1126 */
1127int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001128 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001129{
David Sterba3ffbd682018-06-29 10:56:42 +02001130 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001131 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001132 struct extent_buffer *leaf;
1133 struct btrfs_path *path;
1134 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001135 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001136 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001137 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001138 u64 bytenr;
1139 u64 num_bytes;
1140 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001141 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001142 u64 other_start;
1143 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001144 u64 split;
1145 int del_nr = 0;
1146 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001147 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001148 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001149 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001150
Yan Zhengd899e052008-10-30 14:25:28 -04001151 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001152 if (!path)
1153 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001154again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001155 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001156 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001157 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001158 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001159 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001160
1161 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001162 if (ret < 0)
1163 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001164 if (ret > 0 && path->slots[0] > 0)
1165 path->slots[0]--;
1166
1167 leaf = path->nodes[0];
1168 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001169 if (key.objectid != ino ||
1170 key.type != BTRFS_EXTENT_DATA_KEY) {
1171 ret = -EINVAL;
1172 btrfs_abort_transaction(trans, ret);
1173 goto out;
1174 }
Yan Zhengd899e052008-10-30 14:25:28 -04001175 fi = btrfs_item_ptr(leaf, path->slots[0],
1176 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001177 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1178 ret = -EINVAL;
1179 btrfs_abort_transaction(trans, ret);
1180 goto out;
1181 }
Yan Zhengd899e052008-10-30 14:25:28 -04001182 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001183 if (key.offset > start || extent_end < end) {
1184 ret = -EINVAL;
1185 btrfs_abort_transaction(trans, ret);
1186 goto out;
1187 }
Yan Zhengd899e052008-10-30 14:25:28 -04001188
1189 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1190 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001191 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001192 memcpy(&new_key, &key, sizeof(new_key));
1193
1194 if (start == key.offset && end < extent_end) {
1195 other_start = 0;
1196 other_end = start;
1197 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001198 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001199 &other_start, &other_end)) {
1200 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001201 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001202 fi = btrfs_item_ptr(leaf, path->slots[0],
1203 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001204 btrfs_set_file_extent_generation(leaf, fi,
1205 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001206 btrfs_set_file_extent_num_bytes(leaf, fi,
1207 extent_end - end);
1208 btrfs_set_file_extent_offset(leaf, fi,
1209 end - orig_offset);
1210 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1211 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001212 btrfs_set_file_extent_generation(leaf, fi,
1213 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001214 btrfs_set_file_extent_num_bytes(leaf, fi,
1215 end - other_start);
1216 btrfs_mark_buffer_dirty(leaf);
1217 goto out;
1218 }
1219 }
1220
1221 if (start > key.offset && end == extent_end) {
1222 other_start = end;
1223 other_end = 0;
1224 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001225 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001226 &other_start, &other_end)) {
1227 fi = btrfs_item_ptr(leaf, path->slots[0],
1228 struct btrfs_file_extent_item);
1229 btrfs_set_file_extent_num_bytes(leaf, fi,
1230 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001231 btrfs_set_file_extent_generation(leaf, fi,
1232 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001233 path->slots[0]++;
1234 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001235 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001236
1237 fi = btrfs_item_ptr(leaf, path->slots[0],
1238 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001239 btrfs_set_file_extent_generation(leaf, fi,
1240 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001241 btrfs_set_file_extent_num_bytes(leaf, fi,
1242 other_end - start);
1243 btrfs_set_file_extent_offset(leaf, fi,
1244 start - orig_offset);
1245 btrfs_mark_buffer_dirty(leaf);
1246 goto out;
1247 }
1248 }
Yan Zhengd899e052008-10-30 14:25:28 -04001249
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001250 while (start > key.offset || end < extent_end) {
1251 if (key.offset == start)
1252 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001253
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001254 new_key.offset = split;
1255 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1256 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001257 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001258 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001259 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001260 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001261 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001262 goto out;
1263 }
Yan Zhengd899e052008-10-30 14:25:28 -04001264
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001265 leaf = path->nodes[0];
1266 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001267 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001268 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001269 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001270 split - key.offset);
1271
1272 fi = btrfs_item_ptr(leaf, path->slots[0],
1273 struct btrfs_file_extent_item);
1274
Josef Bacik224ecce2012-08-16 16:32:06 -04001275 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001276 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1277 btrfs_set_file_extent_num_bytes(leaf, fi,
1278 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001279 btrfs_mark_buffer_dirty(leaf);
1280
Qu Wenruo82fa1132019-04-04 14:45:35 +08001281 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1282 num_bytes, 0);
1283 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1284 orig_offset);
1285 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001286 if (ret) {
1287 btrfs_abort_transaction(trans, ret);
1288 goto out;
1289 }
Yan Zhengd899e052008-10-30 14:25:28 -04001290
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001291 if (split == start) {
1292 key.offset = start;
1293 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001294 if (start != key.offset) {
1295 ret = -EINVAL;
1296 btrfs_abort_transaction(trans, ret);
1297 goto out;
1298 }
Yan Zhengd899e052008-10-30 14:25:28 -04001299 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001300 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001301 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001302 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001303 }
1304
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001305 other_start = end;
1306 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001307 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1308 num_bytes, 0);
1309 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001310 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001311 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001312 &other_start, &other_end)) {
1313 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001314 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001315 goto again;
1316 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001317 extent_end = other_end;
1318 del_slot = path->slots[0] + 1;
1319 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001320 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001321 if (ret) {
1322 btrfs_abort_transaction(trans, ret);
1323 goto out;
1324 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001325 }
1326 other_start = 0;
1327 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001328 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001329 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001330 &other_start, &other_end)) {
1331 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001332 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001333 goto again;
1334 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001335 key.offset = other_start;
1336 del_slot = path->slots[0];
1337 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001338 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001339 if (ret) {
1340 btrfs_abort_transaction(trans, ret);
1341 goto out;
1342 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001343 }
1344 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001345 fi = btrfs_item_ptr(leaf, path->slots[0],
1346 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001347 btrfs_set_file_extent_type(leaf, fi,
1348 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001349 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001350 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001351 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001352 fi = btrfs_item_ptr(leaf, del_slot - 1,
1353 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001354 btrfs_set_file_extent_type(leaf, fi,
1355 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001356 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001357 btrfs_set_file_extent_num_bytes(leaf, fi,
1358 extent_end - key.offset);
1359 btrfs_mark_buffer_dirty(leaf);
1360
1361 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001362 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001363 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001364 goto out;
1365 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001366 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001367out:
Yan Zhengd899e052008-10-30 14:25:28 -04001368 btrfs_free_path(path);
1369 return 0;
1370}
1371
Chris Mason39279cc2007-06-12 06:35:45 -04001372/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001373 * on error we return an unlocked page and the error value
1374 * on success we return a locked page and 0
1375 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001376static int prepare_uptodate_page(struct inode *inode,
1377 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001378 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001379{
1380 int ret = 0;
1381
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001383 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001384 ret = btrfs_readpage(NULL, page);
1385 if (ret)
1386 return ret;
1387 lock_page(page);
1388 if (!PageUptodate(page)) {
1389 unlock_page(page);
1390 return -EIO;
1391 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001392 if (page->mapping != inode->i_mapping) {
1393 unlock_page(page);
1394 return -EAGAIN;
1395 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001396 }
1397 return 0;
1398}
1399
1400/*
Miao Xie376cc682013-12-10 19:25:04 +08001401 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001402 */
Miao Xieb37392e2013-12-10 19:25:03 +08001403static noinline int prepare_pages(struct inode *inode, struct page **pages,
1404 size_t num_pages, loff_t pos,
1405 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001406{
1407 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001408 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001409 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001410 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001411 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001412
Chris Mason39279cc2007-06-12 06:35:45 -04001413 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001414again:
Josef Bacika94733d2011-07-11 10:47:06 -04001415 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001416 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001417 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001418 faili = i - 1;
1419 err = -ENOMEM;
1420 goto fail;
1421 }
1422
1423 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001424 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001425 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001426 if (!err && i == num_pages - 1)
1427 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001428 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001429 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001430 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001431 if (err == -EAGAIN) {
1432 err = 0;
1433 goto again;
1434 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001435 faili = i - 1;
1436 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001437 }
Chris Masonccd467d2007-06-28 15:57:36 -04001438 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001439 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001440
Chris Mason39279cc2007-06-12 06:35:45 -04001441 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001442fail:
1443 while (faili >= 0) {
1444 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001445 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001446 faili--;
1447 }
1448 return err;
1449
Chris Mason39279cc2007-06-12 06:35:45 -04001450}
1451
Miao Xie376cc682013-12-10 19:25:04 +08001452/*
1453 * This function locks the extent and properly waits for data=ordered extents
1454 * to finish before allowing the pages to be modified if need.
1455 *
1456 * The return value:
1457 * 1 - the extent is locked
1458 * 0 - the extent is not locked, and everything is OK
1459 * -EAGAIN - need re-prepare the pages
1460 * the other < 0 number - Something wrong happens
1461 */
1462static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001463lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001464 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301465 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001466 u64 *lockstart, u64 *lockend,
1467 struct extent_state **cached_state)
1468{
David Sterba3ffbd682018-06-29 10:56:42 +02001469 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001470 u64 start_pos;
1471 u64 last_pos;
1472 int i;
1473 int ret = 0;
1474
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001475 start_pos = round_down(pos, fs_info->sectorsize);
Qu Wenruoe21139c2020-08-13 14:33:52 +08001476 last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001477
Filipe Mananae3b8a482017-11-04 00:16:59 +00001478 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001479 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001480
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001481 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1482 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001483 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1484 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001485 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001486 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001487 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001488 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001489 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001490 for (i = 0; i < num_pages; i++) {
1491 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001492 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001493 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001494 btrfs_start_ordered_extent(ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001495 btrfs_put_ordered_extent(ordered);
1496 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001497 }
1498 if (ordered)
1499 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001500
Miao Xie376cc682013-12-10 19:25:04 +08001501 *lockstart = start_pos;
1502 *lockend = last_pos;
1503 ret = 1;
1504 }
1505
Chris Mason7703bdd2018-06-20 07:56:11 -07001506 /*
1507 * It's possible the pages are dirty right now, but we don't want
1508 * to clean them yet because copy_from_user may catch a page fault
1509 * and we might have to fall back to one page at a time. If that
1510 * happens, we'll unlock these pages and we'd have a window where
1511 * reclaim could sneak in and drop the once-dirty page on the floor
1512 * without writing it.
1513 *
1514 * We have the pages locked and the extent range locked, so there's
1515 * no way someone can start IO on any dirty pages in this range.
1516 *
1517 * We'll call btrfs_dirty_pages() later on, and that will flip around
1518 * delalloc bits and dirty the pages as required.
1519 */
Miao Xie376cc682013-12-10 19:25:04 +08001520 for (i = 0; i < num_pages; i++) {
Miao Xie376cc682013-12-10 19:25:04 +08001521 set_page_extent_mapped(pages[i]);
1522 WARN_ON(!PageLocked(pages[i]));
1523 }
1524
1525 return ret;
1526}
1527
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001528static int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
1529 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001530{
David Sterba3ffbd682018-06-29 10:56:42 +02001531 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001532 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001533 u64 lockstart, lockend;
1534 u64 num_bytes;
1535 int ret;
1536
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001537 if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)))
1538 return 0;
1539
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001540 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001541 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001542
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001543 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001544 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001545 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001546 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001547
1548 if (nowait) {
1549 struct btrfs_ordered_extent *ordered;
1550
1551 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1552 return -EAGAIN;
1553
1554 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1555 num_bytes);
1556 if (ordered) {
1557 btrfs_put_ordered_extent(ordered);
1558 ret = -EAGAIN;
1559 goto out_unlock;
1560 }
1561 } else {
1562 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1563 lockend, NULL);
1564 }
1565
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001566 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
Boris Burkova84d5d42020-08-18 11:00:05 -07001567 NULL, NULL, NULL, false);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001568 if (ret <= 0) {
1569 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001570 if (!nowait)
1571 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001572 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001573 *write_bytes = min_t(size_t, *write_bytes ,
1574 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001575 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001576out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001577 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001578
1579 return ret;
1580}
1581
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001582static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos,
1583 size_t *write_bytes)
1584{
1585 return check_can_nocow(inode, pos, write_bytes, true);
1586}
1587
1588/*
1589 * Check if we can do nocow write into the range [@pos, @pos + @write_bytes)
1590 *
1591 * @pos: File offset
1592 * @write_bytes: The length to write, will be updated to the nocow writeable
1593 * range
1594 *
1595 * This function will flush ordered extents in the range to ensure proper
1596 * nocow checks.
1597 *
1598 * Return:
1599 * >0 and update @write_bytes if we can do nocow write
1600 * 0 if we can't do nocow write
1601 * -EAGAIN if we can't get the needed lock or there are ordered extents
1602 * for * (nowait == true) case
1603 * <0 if other error happened
1604 *
1605 * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock().
1606 */
1607int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
1608 size_t *write_bytes)
1609{
1610 return check_can_nocow(inode, pos, write_bytes, false);
1611}
1612
1613void btrfs_check_nocow_unlock(struct btrfs_inode *inode)
1614{
1615 btrfs_drew_write_unlock(&inode->root->snapshot_lock);
1616}
1617
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001618static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1619 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001620{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001621 struct file *file = iocb->ki_filp;
1622 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001623 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001624 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001625 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001626 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001627 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001628 u64 lockstart;
1629 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001630 size_t num_written = 0;
1631 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001632 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001633 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001634 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001635
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001636 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1637 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001638 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1639 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001640 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001641 if (!pages)
1642 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001643
Josef Bacikd0215f32011-01-25 14:57:24 -05001644 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001645 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001646 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301647 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001648 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001649 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001650 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001651 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001652 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001653 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001654 size_t dirty_pages;
1655 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301656 size_t dirty_sectors;
1657 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001658 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001659
Chris Mason8c2383c2007-06-18 09:57:58 -04001660 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001661
Xin Zhong914ee292010-12-09 09:30:14 +00001662 /*
1663 * Fault pages before locking them in prepare_pages
1664 * to avoid recursive lock
1665 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001666 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001667 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001668 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001669 }
1670
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001671 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001672 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301673 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001674 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001675
Qu Wenruo364ecf32017-02-27 15:10:38 +08001676 extent_changeset_release(data_reserved);
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03001677 ret = btrfs_check_data_free_space(BTRFS_I(inode),
1678 &data_reserved, pos,
Qu Wenruo364ecf32017-02-27 15:10:38 +08001679 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001680 if (ret < 0) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001681 if (btrfs_check_nocow_lock(BTRFS_I(inode), pos,
1682 &write_bytes) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001683 /*
1684 * For nodata cow case, no need to reserve
1685 * data space.
1686 */
1687 only_release_metadata = true;
1688 /*
1689 * our prealloc extent may be smaller than
1690 * write_bytes, so scale down.
1691 */
1692 num_pages = DIV_ROUND_UP(write_bytes + offset,
1693 PAGE_SIZE);
1694 reserve_bytes = round_up(write_bytes +
1695 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001696 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001697 } else {
1698 break;
1699 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001700 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001701
Josef Bacik8b62f87b2017-10-19 14:15:55 -04001702 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001703 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1704 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001705 if (ret) {
1706 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03001707 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001708 data_reserved, pos,
1709 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001710 else
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001711 btrfs_check_nocow_unlock(BTRFS_I(inode));
Josef Bacik7ee9e442013-06-21 16:37:03 -04001712 break;
1713 }
1714
1715 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001716again:
Josef Bacik4a640012011-01-25 15:10:08 -05001717 /*
1718 * This is going to setup the pages array with the number of
1719 * pages we want, so we don't really need to worry about the
1720 * contents of pages from loop to loop
1721 */
Miao Xieb37392e2013-12-10 19:25:03 +08001722 ret = prepare_pages(inode, pages, num_pages,
1723 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001724 force_page_uptodate);
Josef Bacik8b62f87b2017-10-19 14:15:55 -04001725 if (ret) {
1726 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001727 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001728 break;
Josef Bacik8b62f87b2017-10-19 14:15:55 -04001729 }
Chris Mason39279cc2007-06-12 06:35:45 -04001730
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001731 extents_locked = lock_and_cleanup_extent_if_need(
1732 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001733 num_pages, pos, write_bytes, &lockstart,
1734 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001735 if (extents_locked < 0) {
1736 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001737 goto again;
Josef Bacik8b62f87b2017-10-19 14:15:55 -04001738 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001739 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001740 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001741 break;
Miao Xie376cc682013-12-10 19:25:04 +08001742 }
1743
Zhao Leiee22f0c2016-01-06 18:47:31 +08001744 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001745
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001746 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001747 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001748 fs_info->sectorsize);
1749 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001750
Chris Masonb1bf8622011-02-28 09:52:08 -05001751 /*
1752 * if we have trouble faulting in the pages, fall
1753 * back to one page at a time
1754 */
1755 if (copied < write_bytes)
1756 nrptrs = 1;
1757
Josef Bacikb63164292011-09-30 15:23:54 -04001758 if (copied == 0) {
1759 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001760 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001761 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001762 } else {
1763 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001764 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001765 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001766 }
Xin Zhong914ee292010-12-09 09:30:14 +00001767
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301768 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001769 /* release everything except the sectors we dirtied */
1770 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001771 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001772 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001773 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001774 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001775 } else {
1776 u64 __pos;
1777
Jeff Mahoneyda170662016-06-15 09:22:56 -04001778 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001779 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001780 (dirty_pages << PAGE_SHIFT);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001781 btrfs_delalloc_release_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001782 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001783 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001784 }
Xin Zhong914ee292010-12-09 09:30:14 +00001785 }
1786
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301787 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001788 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001789
1790 if (copied > 0)
Nikolay Borisov088545f2020-06-03 08:55:36 +03001791 ret = btrfs_dirty_pages(BTRFS_I(inode), pages,
1792 dirty_pages, pos, copied,
1793 &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001794
1795 /*
1796 * If we have not locked the extent range, because the range's
1797 * start offset is >= i_size, we might still have a non-NULL
1798 * cached extent state, acquired while marking the extent range
1799 * as delalloc through btrfs_dirty_pages(). Therefore free any
1800 * possible cached extent state to avoid a memory leak.
1801 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001802 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001803 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001804 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001805 else
1806 free_extent_state(cached_state);
1807
Qu Wenruo8702ba92019-10-14 14:34:51 +08001808 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001809 if (ret) {
1810 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001811 break;
Miao Xief1de9682014-01-09 10:06:10 +08001812 }
Chris Mason39279cc2007-06-12 06:35:45 -04001813
Josef Bacik7ee9e442013-06-21 16:37:03 -04001814 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001815 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001816 btrfs_check_nocow_unlock(BTRFS_I(inode));
Miao Xie8257b2d2014-03-06 13:38:19 +08001817
Josef Bacik7ee9e442013-06-21 16:37:03 -04001818 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001819 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001820 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001821 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001822 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001823
1824 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1825 lockend, EXTENT_NORESERVE, NULL,
1826 NULL, GFP_NOFS);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001827 }
1828
Miao Xief1de9682014-01-09 10:06:10 +08001829 btrfs_drop_pages(pages, num_pages);
1830
Josef Bacikd0215f32011-01-25 14:57:24 -05001831 cond_resched();
1832
Namjae Jeond0e1d662012-12-11 16:00:21 -08001833 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001834
Xin Zhong914ee292010-12-09 09:30:14 +00001835 pos += copied;
1836 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001837 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001838
Chris Mason8c2383c2007-06-18 09:57:58 -04001839 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001840
Josef Bacik7ee9e442013-06-21 16:37:03 -04001841 if (release_bytes) {
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));
Nikolay Borisov691fa052017-02-20 13:50:42 +02001844 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001845 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001846 } else {
Nikolay Borisov86d52922020-06-03 08:55:40 +03001847 btrfs_delalloc_release_space(BTRFS_I(inode),
1848 data_reserved,
Qu Wenruobc42bda2017-02-27 15:10:39 +08001849 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001850 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001851 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001852 }
1853
Qu Wenruo364ecf32017-02-27 15:10:38 +08001854 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001855 return num_written ? num_written : ret;
1856}
1857
David Sterbaf4c48b42020-06-09 19:19:27 +02001858static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001859{
1860 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001861 struct inode *inode = file_inode(file);
David Sterbaf4c48b42020-06-09 19:19:27 +02001862 loff_t pos;
1863 ssize_t written;
Josef Bacikd0215f32011-01-25 14:57:24 -05001864 ssize_t written_buffered;
1865 loff_t endbyte;
1866 int err;
1867
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05001868 written = btrfs_direct_IO(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001869
Al Viro0c949332014-03-22 06:51:37 -04001870 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001871 return written;
1872
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001873 pos = iocb->ki_pos;
1874 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001875 if (written_buffered < 0) {
1876 err = written_buffered;
1877 goto out;
1878 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001879 /*
1880 * Ensure all data is persisted. We want the next direct IO read to be
1881 * able to read what was just written.
1882 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001883 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001884 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001885 if (err)
1886 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001887 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001888 if (err)
1889 goto out;
1890 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001891 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001892 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1893 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001894out:
1895 return written ? written : err;
1896}
1897
Josef Bacik6c760c02012-11-09 10:53:21 -05001898static void update_time_for_write(struct inode *inode)
1899{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001900 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001901
1902 if (IS_NOCMTIME(inode))
1903 return;
1904
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001905 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001906 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001907 inode->i_mtime = now;
1908
Deepa Dinamani95582b02018-05-08 19:36:02 -07001909 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001910 inode->i_ctime = now;
1911
1912 if (IS_I_VERSION(inode))
1913 inode_inc_iversion(inode);
1914}
1915
Al Virob30ac0f2014-04-03 14:29:04 -04001916static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1917 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001918{
1919 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001920 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001921 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001922 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001923 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001924 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001925 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07001926 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Al Viro3309dd02015-04-09 12:55:47 -04001927 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001928 loff_t pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001929 size_t count;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301930 loff_t oldsize;
1931 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001932
Christoph Hellwig91f99432017-08-29 16:13:20 +02001933 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1934 (iocb->ki_flags & IOCB_NOWAIT))
1935 return -EOPNOTSUPP;
1936
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001937 if (iocb->ki_flags & IOCB_NOWAIT) {
1938 if (!inode_trylock(inode))
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001939 return -EAGAIN;
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001940 } else {
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001941 inode_lock(inode);
1942 }
1943
1944 err = generic_write_checks(iocb, from);
1945 if (err <= 0) {
1946 inode_unlock(inode);
1947 return err;
1948 }
1949
1950 pos = iocb->ki_pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001951 count = iov_iter_count(from);
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001952 if (iocb->ki_flags & IOCB_NOWAIT) {
Filipe Manana260a6332020-06-15 18:49:13 +01001953 size_t nocow_bytes = count;
1954
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001955 /*
1956 * We will allocate space in case nodatacow is not set,
1957 * so bail
1958 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001959 if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes)
1960 <= 0) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001961 inode_unlock(inode);
1962 return -EAGAIN;
1963 }
Filipe Manana260a6332020-06-15 18:49:13 +01001964 /*
1965 * There are holes in the range or parts of the range that must
1966 * be COWed (shared extents, RO block groups, etc), so just bail
1967 * out.
1968 */
1969 if (nocow_bytes < count) {
1970 inode_unlock(inode);
1971 return -EAGAIN;
1972 }
Al Viro3309dd02015-04-09 12:55:47 -04001973 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001974
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001975 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001976 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001977 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001978 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001979 goto out;
1980 }
1981
1982 /*
1983 * If BTRFS flips readonly due to some impossible error
1984 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1985 * although we have opened a file as writable, we have
1986 * to stop this write operation to ensure FS consistency.
1987 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001988 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001989 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001990 err = -EROFS;
1991 goto out;
1992 }
1993
Josef Bacik6c760c02012-11-09 10:53:21 -05001994 /*
1995 * We reserve space for updating the inode when we reserve space for the
1996 * extent we are going to write, so we will enospc out there. We don't
1997 * need to start yet another transaction to update the inode as we will
1998 * update the inode when we finish writing whatever data we write.
1999 */
2000 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05002001
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002002 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05302003 oldsize = i_size_read(inode);
2004 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00002005 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04002006 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002007 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05302008 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04002009 if (err) {
Al Viro59551022016-01-22 15:40:57 -05002010 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04002011 goto out;
2012 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002013 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05302014 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04002015 }
2016
Josef Bacikb812ce22012-11-16 13:56:32 -05002017 if (sync)
2018 atomic_inc(&BTRFS_I(inode)->sync_writers);
2019
Al Viro2ba48ce2015-04-09 13:52:01 -04002020 if (iocb->ki_flags & IOCB_DIRECT) {
Josef Bacik0eb79292020-09-03 11:16:51 -04002021 /*
2022 * 1. We must always clear IOCB_DSYNC in order to not deadlock
2023 * in iomap, as it calls generic_write_sync() in this case.
2024 * 2. If we are async, we can call iomap_dio_complete() either
2025 * in
2026 *
2027 * 2.1. A worker thread from the last bio completed. In this
2028 * case we need to mark the btrfs_dio_data that it is
2029 * async in order to call generic_write_sync() properly.
2030 * This is handled by setting BTRFS_DIO_SYNC_STUB in the
2031 * current->journal_info.
2032 * 2.2 The submitter context, because all IO completed
2033 * before we exited iomap_dio_rw(). In this case we can
2034 * just re-set the IOCB_DSYNC on the iocb and we'll do
2035 * the sync below. If our ->end_io() gets called and
2036 * current->journal_info is set, then we know we're in
2037 * our current context and we will clear
2038 * current->journal_info to indicate that we need to
2039 * sync below.
2040 */
2041 if (sync) {
2042 ASSERT(current->journal_info == NULL);
2043 iocb->ki_flags &= ~IOCB_DSYNC;
2044 current->journal_info = BTRFS_DIO_SYNC_STUB;
2045 }
David Sterbaf4c48b42020-06-09 19:19:27 +02002046 num_written = __btrfs_direct_write(iocb, from);
Josef Bacik0eb79292020-09-03 11:16:51 -04002047
2048 /*
2049 * As stated above, we cleared journal_info, so we need to do
2050 * the sync ourselves.
2051 */
2052 if (sync && current->journal_info == NULL)
2053 iocb->ki_flags |= IOCB_DSYNC;
2054 current->journal_info = NULL;
Josef Bacikd0215f32011-01-25 14:57:24 -05002055 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05002056 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05002057 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05002058 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05302059 if (clean_page)
2060 pagecache_isize_extended(inode, oldsize,
2061 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05002062 }
2063
Al Viro59551022016-01-22 15:40:57 -05002064 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04002065
Chris Mason5a3f23d2009-03-31 13:27:11 -04002066 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05002067 * We also have to set last_sub_trans to the current log transid,
2068 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002069 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04002070 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002071 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05002072 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002073 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07002074 if (num_written > 0)
2075 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002076
Josef Bacikb812ce22012-11-16 13:56:32 -05002077 if (sync)
2078 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00002079out:
Chris Mason39279cc2007-06-12 06:35:45 -04002080 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002081 return num_written ? num_written : err;
2082}
2083
Chris Masond3977122009-01-05 21:25:51 -05002084int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002085{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002086 struct btrfs_file_private *private = filp->private_data;
2087
Josef Bacik23b5ec72017-07-24 15:14:25 -04002088 if (private && private->filldir_buf)
2089 kfree(private->filldir_buf);
2090 kfree(private);
2091 filp->private_data = NULL;
2092
Chris Masonf6dc45c2014-08-20 07:15:33 -07002093 /*
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002094 * Set by setattr when we are about to truncate a file from a non-zero
2095 * size to a zero size. This tries to flush down new bytes that may
2096 * have been written if the application were using truncate to replace
2097 * a file in place.
Chris Masonf6dc45c2014-08-20 07:15:33 -07002098 */
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002099 if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Chris Masonf6dc45c2014-08-20 07:15:33 -07002100 &BTRFS_I(inode)->runtime_flags))
2101 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002102 return 0;
2103}
2104
Filipe Manana669249e2014-09-02 11:09:58 +01002105static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2106{
2107 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002108 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002109
Liu Bo343e4fc2017-11-15 16:10:28 -07002110 /*
2111 * This is only called in fsync, which would do synchronous writes, so
2112 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2113 * multiple disks using raid profile, a large IO can be split to
2114 * several segments of stripe length (currently 64K).
2115 */
2116 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002117 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002118 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002119 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002120 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002121
2122 return ret;
2123}
2124
Chris Masond352ac62008-09-29 15:18:18 -04002125/*
2126 * fsync call for both files and directories. This logs the inode into
2127 * the tree log instead of forcing full commits whenever possible.
2128 *
2129 * It needs to call filemap_fdatawait so that all ordered extent updates are
2130 * in the metadata btree are up to date for copying to the log.
2131 *
2132 * It drops the inode mutex before doing the tree log commit. This is an
2133 * important optimization for directories because holding the mutex prevents
2134 * new operations on the dir while we write to disk.
2135 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002136int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002137{
Filipe Mananade17e792016-03-30 19:03:13 -04002138 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002139 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002140 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002141 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002142 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002143 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002144 int ret = 0, err;
Filipe Manana48778172020-08-11 12:43:58 +01002145 u64 len;
2146 bool full_sync;
Chris Mason39279cc2007-06-12 06:35:45 -04002147
liubo1abe9b82011-03-24 11:18:59 +00002148 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002149
Liu Boebb70442017-11-21 14:35:40 -07002150 btrfs_init_log_ctx(&ctx, inode);
2151
Miao Xie90abccf2012-09-13 04:53:47 -06002152 /*
Filipe Manana48778172020-08-11 12:43:58 +01002153 * Always set the range to a full range, otherwise we can get into
2154 * several problems, from missing file extent items to represent holes
2155 * when not using the NO_HOLES feature, to log tree corruption due to
2156 * races between hole detection during logging and completion of ordered
2157 * extents outside the range, to missing checksums due to ordered extents
2158 * for which we flushed only a subset of their pages.
Filipe Manana95418ed2020-03-09 12:41:05 +00002159 */
Filipe Manana48778172020-08-11 12:43:58 +01002160 start = 0;
2161 end = LLONG_MAX;
2162 len = (u64)LLONG_MAX + 1;
Filipe Manana95418ed2020-03-09 12:41:05 +00002163
2164 /*
Miao Xie90abccf2012-09-13 04:53:47 -06002165 * We write the dirty pages in the range and wait until they complete
2166 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002167 * multi-task, and make the performance up. See
2168 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002169 */
Filipe Manana669249e2014-09-02 11:09:58 +01002170 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002171 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002172 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002173
Al Viro59551022016-01-22 15:40:57 -05002174 inode_lock(inode);
Josef Bacikc4951442018-10-12 15:32:32 -04002175
2176 /*
2177 * We take the dio_sem here because the tree log stuff can race with
2178 * lockless dio writes and get an extent map logged for an extent we
2179 * never waited on. We need it this high up for lockdep reasons.
2180 */
2181 down_write(&BTRFS_I(inode)->dio_sem);
2182
Miao Xie2ecb7922012-09-06 04:04:27 -06002183 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002184
Filipe Manana669249e2014-09-02 11:09:58 +01002185 /*
Filipe Manana48778172020-08-11 12:43:58 +01002186 * Always check for the full sync flag while holding the inode's lock,
2187 * to avoid races with other tasks. The flag must be either set all the
2188 * time during logging or always off all the time while logging.
Filipe Manana7af59742020-04-07 11:37:44 +01002189 */
Filipe Manana48778172020-08-11 12:43:58 +01002190 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2191 &BTRFS_I(inode)->runtime_flags);
Filipe Manana7af59742020-04-07 11:37:44 +01002192
2193 /*
Filipe Mananaaab15e82018-11-12 10:23:58 +00002194 * Before we acquired the inode's lock, someone may have dirtied more
2195 * pages in the target range. We need to make sure that writeback for
2196 * any such pages does not start while we are logging the inode, because
2197 * if it does, any of the following might happen when we are not doing a
2198 * full inode sync:
2199 *
2200 * 1) We log an extent after its writeback finishes but before its
2201 * checksums are added to the csum tree, leading to -EIO errors
2202 * when attempting to read the extent after a log replay.
2203 *
2204 * 2) We can end up logging an extent before its writeback finishes.
2205 * Therefore after the log replay we will have a file extent item
2206 * pointing to an unwritten extent (and no data checksums as well).
2207 *
2208 * So trigger writeback for any eventual new dirty pages and then we
2209 * wait for all ordered extents to complete below.
2210 */
2211 ret = start_ordered_ops(inode, start, end);
2212 if (ret) {
Robbie Ko6ff06722020-03-17 14:31:02 +08002213 up_write(&BTRFS_I(inode)->dio_sem);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002214 inode_unlock(inode);
2215 goto out;
2216 }
2217
2218 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002219 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002220 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002221 *
Filipe Manana48778172020-08-11 12:43:58 +01002222 * For a full fsync we wait for the ordered extents to complete while
2223 * for a fast fsync we wait just for writeback to complete, and then
2224 * attach the ordered extents to the transaction so that a transaction
2225 * commit waits for their completion, to avoid data loss if we fsync,
2226 * the current transaction commits before the ordered extents complete
2227 * and a power failure happens right after that.
Filipe Manana669249e2014-09-02 11:09:58 +01002228 */
Filipe Manana48778172020-08-11 12:43:58 +01002229 if (full_sync) {
2230 ret = btrfs_wait_ordered_range(inode, start, len);
2231 } else {
2232 /*
2233 * Get our ordered extents as soon as possible to avoid doing
2234 * checksum lookups in the csum tree, and use instead the
2235 * checksums attached to the ordered extents.
2236 */
2237 btrfs_get_ordered_extents_for_logging(BTRFS_I(inode),
2238 &ctx.ordered_extents);
2239 ret = filemap_fdatawait_range(inode->i_mapping, start, end);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002240 }
Filipe Manana48778172020-08-11 12:43:58 +01002241
2242 if (ret)
2243 goto out_release_extents;
2244
Miao Xie2ecb7922012-09-06 04:04:27 -06002245 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002246
Filipe Manana48778172020-08-11 12:43:58 +01002247 /*
2248 * If we are doing a fast fsync we can not bail out if the inode's
2249 * last_trans is <= then the last committed transaction, because we only
2250 * update the last_trans of the inode during ordered extent completion,
2251 * and for a fast fsync we don't wait for that, we only wait for the
2252 * writeback to complete.
2253 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002254 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002255 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
Filipe Manana48778172020-08-11 12:43:58 +01002256 (BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed &&
2257 (full_sync || list_empty(&ctx.ordered_extents)))) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002258 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002259 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002260 * modified so clear this flag in case it was set for whatever
2261 * reason, it's no longer relevant.
2262 */
2263 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2264 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002265 /*
2266 * An ordered extent might have started before and completed
2267 * already with io errors, in which case the inode was not
2268 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002269 * for any errors that might have happened since we last
2270 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002271 */
Jeff Layton333427a2017-07-06 07:02:31 -04002272 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Filipe Manana48778172020-08-11 12:43:58 +01002273 goto out_release_extents;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002274 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002275
2276 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002277 * We use start here because we will need to wait on the IO to complete
2278 * in btrfs_sync_log, which could require joining a transaction (for
2279 * example checking cross references in the nocow path). If we use join
2280 * here we could get into a situation where we're waiting on IO to
2281 * happen that is blocked on a transaction trying to commit. With start
2282 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002283 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002284 * from thinking they are super smart and changing this to
2285 * btrfs_join_transaction *cough*Josef*cough*.
2286 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002287 trans = btrfs_start_transaction(root, 0);
2288 if (IS_ERR(trans)) {
2289 ret = PTR_ERR(trans);
Filipe Manana48778172020-08-11 12:43:58 +01002290 goto out_release_extents;
Chris Mason39279cc2007-06-12 06:35:45 -04002291 }
Chris Masone02119d2008-09-05 16:13:11 -04002292
Filipe Manana48778172020-08-11 12:43:58 +01002293 ret = btrfs_log_dentry_safe(trans, dentry, &ctx);
2294 btrfs_release_log_ctx_extents(&ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002295 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002296 /* Fallthrough and commit/free transaction. */
2297 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002298 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002299
2300 /* we've logged all the items and now have a consistent
2301 * version of the file in the log. It is possible that
2302 * someone will come in and modify the file, but that's
2303 * fine because the log is consistent on disk, and we
2304 * have references to all of the file's extents
2305 *
2306 * It is possible that someone will come in and log the
2307 * file again, but that will end up using the synchronization
2308 * inside btrfs_sync_log to keep things safe.
2309 */
Josef Bacikc4951442018-10-12 15:32:32 -04002310 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002311 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002312
Chris Mason257c62e2009-10-13 13:21:08 -04002313 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002314 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002315 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002316 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002317 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002318 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002319 }
Chris Mason257c62e2009-10-13 13:21:08 -04002320 }
Filipe Manana48778172020-08-11 12:43:58 +01002321 if (!full_sync) {
2322 ret = btrfs_wait_ordered_range(inode, start, len);
2323 if (ret) {
2324 btrfs_end_transaction(trans);
2325 goto out;
2326 }
2327 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002328 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002329 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002330 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002331 }
Chris Mason39279cc2007-06-12 06:35:45 -04002332out:
Liu Boebb70442017-11-21 14:35:40 -07002333 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002334 err = file_check_and_advance_wb_err(file);
2335 if (!ret)
2336 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002337 return ret > 0 ? -EIO : ret;
Filipe Manana48778172020-08-11 12:43:58 +01002338
2339out_release_extents:
2340 btrfs_release_log_ctx_extents(&ctx);
2341 up_write(&BTRFS_I(inode)->dio_sem);
2342 inode_unlock(inode);
2343 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002344}
2345
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002346static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002347 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002348 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002349 .page_mkwrite = btrfs_page_mkwrite,
2350};
2351
2352static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2353{
Miao Xie058a4572010-05-20 07:21:50 +00002354 struct address_space *mapping = filp->f_mapping;
2355
2356 if (!mapping->a_ops->readpage)
2357 return -ENOEXEC;
2358
Chris Mason9ebefb182007-06-15 13:50:00 -04002359 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002360 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002361
Chris Mason9ebefb182007-06-15 13:50:00 -04002362 return 0;
2363}
2364
Nikolay Borisov35339c22017-02-20 13:50:46 +02002365static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002366 int slot, u64 start, u64 end)
2367{
2368 struct btrfs_file_extent_item *fi;
2369 struct btrfs_key key;
2370
2371 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2372 return 0;
2373
2374 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002375 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002376 key.type != BTRFS_EXTENT_DATA_KEY)
2377 return 0;
2378
2379 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2380
2381 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2382 return 0;
2383
2384 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2385 return 0;
2386
2387 if (key.offset == end)
2388 return 1;
2389 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2390 return 1;
2391 return 0;
2392}
2393
Nikolay Borisova012a742017-02-20 13:50:47 +02002394static int fill_holes(struct btrfs_trans_handle *trans,
2395 struct btrfs_inode *inode,
2396 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002397{
David Sterba3ffbd682018-06-29 10:56:42 +02002398 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002399 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002400 struct extent_buffer *leaf;
2401 struct btrfs_file_extent_item *fi;
2402 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002403 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002404 struct btrfs_key key;
2405 int ret;
2406
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002408 goto out;
2409
Nikolay Borisova012a742017-02-20 13:50:47 +02002410 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002411 key.type = BTRFS_EXTENT_DATA_KEY;
2412 key.offset = offset;
2413
Josef Bacik2aaa6652012-08-29 14:27:18 -04002414 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002415 if (ret <= 0) {
2416 /*
2417 * We should have dropped this offset, so if we find it then
2418 * something has gone horribly wrong.
2419 */
2420 if (ret == 0)
2421 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002422 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002423 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002424
2425 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002426 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002427 u64 num_bytes;
2428
2429 path->slots[0]--;
2430 fi = btrfs_item_ptr(leaf, path->slots[0],
2431 struct btrfs_file_extent_item);
2432 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2433 end - offset;
2434 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2435 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2436 btrfs_set_file_extent_offset(leaf, fi, 0);
2437 btrfs_mark_buffer_dirty(leaf);
2438 goto out;
2439 }
2440
chandan1707e262014-07-01 12:04:28 +05302441 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002442 u64 num_bytes;
2443
Josef Bacik2aaa6652012-08-29 14:27:18 -04002444 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002445 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002446 fi = btrfs_item_ptr(leaf, path->slots[0],
2447 struct btrfs_file_extent_item);
2448 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2449 offset;
2450 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2451 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2452 btrfs_set_file_extent_offset(leaf, fi, 0);
2453 btrfs_mark_buffer_dirty(leaf);
2454 goto out;
2455 }
2456 btrfs_release_path(path);
2457
Nikolay Borisova012a742017-02-20 13:50:47 +02002458 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002459 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002460 if (ret)
2461 return ret;
2462
2463out:
2464 btrfs_release_path(path);
2465
2466 hole_em = alloc_extent_map();
2467 if (!hole_em) {
2468 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002469 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002470 } else {
2471 hole_em->start = offset;
2472 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002473 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002474 hole_em->orig_start = offset;
2475
2476 hole_em->block_start = EXTENT_MAP_HOLE;
2477 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002478 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002479 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2480 hole_em->generation = trans->transid;
2481
2482 do {
2483 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2484 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002485 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002486 write_unlock(&em_tree->lock);
2487 } while (ret == -EEXIST);
2488 free_extent_map(hole_em);
2489 if (ret)
2490 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002491 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002492 }
2493
2494 return 0;
2495}
2496
Qu Wenruod7781542014-05-30 15:16:10 +08002497/*
2498 * Find a hole extent on given inode and change start/len to the end of hole
2499 * extent.(hole/vacuum extent whose em->start <= start &&
2500 * em->start + em->len > start)
2501 * When a hole extent is found, return 1 and modify start/len.
2502 */
2503static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2504{
Filipe Manana609805d2017-05-30 05:29:09 +01002505 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002506 struct extent_map *em;
2507 int ret = 0;
2508
Filipe Manana609805d2017-05-30 05:29:09 +01002509 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2510 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002511 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002512 if (IS_ERR(em))
2513 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002514
2515 /* Hole or vacuum extent(only exists in no-hole mode) */
2516 if (em->block_start == EXTENT_MAP_HOLE) {
2517 ret = 1;
2518 *len = em->start + em->len > *start + *len ?
2519 0 : *start + *len - em->start - em->len;
2520 *start = em->start + em->len;
2521 }
2522 free_extent_map(em);
2523 return ret;
2524}
2525
Filipe Mananaf27451f2017-10-25 11:55:28 +01002526static int btrfs_punch_hole_lock_range(struct inode *inode,
2527 const u64 lockstart,
2528 const u64 lockend,
2529 struct extent_state **cached_state)
2530{
2531 while (1) {
2532 struct btrfs_ordered_extent *ordered;
2533 int ret;
2534
2535 truncate_pagecache_range(inode, lockstart, lockend);
2536
2537 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2538 cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03002539 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
2540 lockend);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002541
2542 /*
2543 * We need to make sure we have no ordered extents in this range
2544 * and nobody raced in and read a page in this range, if we did
2545 * we need to try again.
2546 */
2547 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002548 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002549 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002550 !filemap_range_has_page(inode->i_mapping,
2551 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002552 if (ordered)
2553 btrfs_put_ordered_extent(ordered);
2554 break;
2555 }
2556 if (ordered)
2557 btrfs_put_ordered_extent(ordered);
2558 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2559 lockend, cached_state);
2560 ret = btrfs_wait_ordered_range(inode, lockstart,
2561 lockend - lockstart + 1);
2562 if (ret)
2563 return ret;
2564 }
2565 return 0;
2566}
2567
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002568static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans,
Filipe Manana690a5db2019-07-05 11:09:50 +01002569 struct inode *inode,
2570 struct btrfs_path *path,
Filipe Mananabf385642020-09-08 11:27:22 +01002571 struct btrfs_replace_extent_info *extent_info,
2572 const u64 replace_len)
Filipe Manana690a5db2019-07-05 11:09:50 +01002573{
2574 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2575 struct btrfs_root *root = BTRFS_I(inode)->root;
2576 struct btrfs_file_extent_item *extent;
2577 struct extent_buffer *leaf;
2578 struct btrfs_key key;
2579 int slot;
2580 struct btrfs_ref ref = { 0 };
Filipe Manana690a5db2019-07-05 11:09:50 +01002581 int ret;
2582
Filipe Mananabf385642020-09-08 11:27:22 +01002583 if (replace_len == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002584 return 0;
2585
Filipe Mananabf385642020-09-08 11:27:22 +01002586 if (extent_info->disk_offset == 0 &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002587 btrfs_fs_incompat(fs_info, NO_HOLES))
2588 return 0;
2589
2590 key.objectid = btrfs_ino(BTRFS_I(inode));
2591 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002592 key.offset = extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002593 ret = btrfs_insert_empty_item(trans, root, path, &key,
Filipe Mananafb870f62020-09-08 11:27:21 +01002594 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002595 if (ret)
2596 return ret;
2597 leaf = path->nodes[0];
2598 slot = path->slots[0];
Filipe Mananabf385642020-09-08 11:27:22 +01002599 write_extent_buffer(leaf, extent_info->extent_buf,
Filipe Manana690a5db2019-07-05 11:09:50 +01002600 btrfs_item_ptr_offset(leaf, slot),
Filipe Mananafb870f62020-09-08 11:27:21 +01002601 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002602 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananafb870f62020-09-08 11:27:21 +01002603 ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE);
Filipe Mananabf385642020-09-08 11:27:22 +01002604 btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset);
2605 btrfs_set_file_extent_num_bytes(leaf, extent, replace_len);
2606 if (extent_info->is_new_extent)
Filipe Manana8fccebf2020-09-08 11:27:20 +01002607 btrfs_set_file_extent_generation(leaf, extent, trans->transid);
Filipe Manana690a5db2019-07-05 11:09:50 +01002608 btrfs_mark_buffer_dirty(leaf);
2609 btrfs_release_path(path);
2610
Josef Bacik9ddc9592020-01-17 09:02:22 -05002611 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
Filipe Mananabf385642020-09-08 11:27:22 +01002612 extent_info->file_offset, replace_len);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002613 if (ret)
2614 return ret;
2615
Filipe Manana690a5db2019-07-05 11:09:50 +01002616 /* If it's a hole, nothing more needs to be done. */
Filipe Mananabf385642020-09-08 11:27:22 +01002617 if (extent_info->disk_offset == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002618 return 0;
2619
Filipe Mananabf385642020-09-08 11:27:22 +01002620 inode_add_bytes(inode, replace_len);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002621
Filipe Mananabf385642020-09-08 11:27:22 +01002622 if (extent_info->is_new_extent && extent_info->insertions == 0) {
2623 key.objectid = extent_info->disk_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002624 key.type = BTRFS_EXTENT_ITEM_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002625 key.offset = extent_info->disk_len;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002626 ret = btrfs_alloc_reserved_file_extent(trans, root,
2627 btrfs_ino(BTRFS_I(inode)),
Filipe Mananabf385642020-09-08 11:27:22 +01002628 extent_info->file_offset,
2629 extent_info->qgroup_reserved,
Filipe Manana8fccebf2020-09-08 11:27:20 +01002630 &key);
2631 } else {
2632 u64 ref_offset;
2633
2634 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
Filipe Mananabf385642020-09-08 11:27:22 +01002635 extent_info->disk_offset,
2636 extent_info->disk_len, 0);
2637 ref_offset = extent_info->file_offset - extent_info->data_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002638 btrfs_init_data_ref(&ref, root->root_key.objectid,
2639 btrfs_ino(BTRFS_I(inode)), ref_offset);
2640 ret = btrfs_inc_extent_ref(trans, &ref);
2641 }
2642
Filipe Mananabf385642020-09-08 11:27:22 +01002643 extent_info->insertions++;
Filipe Manana690a5db2019-07-05 11:09:50 +01002644
2645 return ret;
2646}
2647
Filipe Manana9cba40a2019-06-28 23:11:26 +01002648/*
2649 * The respective range must have been previously locked, as well as the inode.
2650 * The end offset is inclusive (last byte of the range).
Filipe Mananabf385642020-09-08 11:27:22 +01002651 * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing
2652 * the file range with an extent.
2653 * When not punching a hole, we don't want to end up in a state where we dropped
2654 * extents without inserting a new one, so we must abort the transaction to avoid
2655 * a corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002656 */
Filipe Manana306bfec2020-09-08 11:27:23 +01002657int btrfs_replace_file_extents(struct inode *inode, struct btrfs_path *path,
Filipe Manana690a5db2019-07-05 11:09:50 +01002658 const u64 start, const u64 end,
Filipe Mananabf385642020-09-08 11:27:22 +01002659 struct btrfs_replace_extent_info *extent_info,
Filipe Manana690a5db2019-07-05 11:09:50 +01002660 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002661{
2662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2bd36e72019-08-22 15:14:33 -04002663 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002664 u64 ino_size = round_up(inode->i_size, fs_info->sectorsize);
2665 struct btrfs_root *root = BTRFS_I(inode)->root;
2666 struct btrfs_trans_handle *trans = NULL;
2667 struct btrfs_block_rsv *rsv;
2668 unsigned int rsv_count;
2669 u64 cur_offset;
2670 u64 drop_end;
2671 u64 len = end - start;
2672 int ret = 0;
2673
2674 if (end <= start)
2675 return -EINVAL;
2676
2677 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2678 if (!rsv) {
2679 ret = -ENOMEM;
2680 goto out;
2681 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002682 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002683 rsv->failfast = 1;
2684
2685 /*
2686 * 1 - update the inode
2687 * 1 - removing the extents in the range
Filipe Mananabf385642020-09-08 11:27:22 +01002688 * 1 - adding the hole extent if no_holes isn't set or if we are
2689 * replacing the range with a new extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002690 */
Filipe Mananabf385642020-09-08 11:27:22 +01002691 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info)
Filipe Manana690a5db2019-07-05 11:09:50 +01002692 rsv_count = 3;
2693 else
2694 rsv_count = 2;
2695
Filipe Manana9cba40a2019-06-28 23:11:26 +01002696 trans = btrfs_start_transaction(root, rsv_count);
2697 if (IS_ERR(trans)) {
2698 ret = PTR_ERR(trans);
2699 trans = NULL;
2700 goto out_free;
2701 }
2702
2703 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2704 min_size, false);
2705 BUG_ON(ret);
2706 trans->block_rsv = rsv;
2707
2708 cur_offset = start;
2709 while (cur_offset < end) {
Nikolay Borisov906c4482020-06-03 08:55:08 +03002710 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path,
Filipe Manana9cba40a2019-06-28 23:11:26 +01002711 cur_offset, end + 1, &drop_end,
2712 1, 0, 0, NULL);
Filipe Manana690a5db2019-07-05 11:09:50 +01002713 if (ret != -ENOSPC) {
2714 /*
2715 * When cloning we want to avoid transaction aborts when
2716 * nothing was done and we are attempting to clone parts
2717 * of inline extents, in such cases -EOPNOTSUPP is
2718 * returned by __btrfs_drop_extents() without having
2719 * changed anything in the file.
2720 */
Filipe Mananabf385642020-09-08 11:27:22 +01002721 if (extent_info && !extent_info->is_new_extent &&
Filipe Manana8fccebf2020-09-08 11:27:20 +01002722 ret && ret != -EOPNOTSUPP)
Filipe Manana690a5db2019-07-05 11:09:50 +01002723 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002724 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002725 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002726
2727 trans->block_rsv = &fs_info->trans_block_rsv;
2728
Filipe Mananabf385642020-09-08 11:27:22 +01002729 if (!extent_info && cur_offset < drop_end &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002730 cur_offset < ino_size) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002731 ret = fill_holes(trans, BTRFS_I(inode), path,
2732 cur_offset, drop_end);
2733 if (ret) {
2734 /*
2735 * If we failed then we didn't insert our hole
2736 * entries for the area we dropped, so now the
2737 * fs is corrupted, so we must abort the
2738 * transaction.
2739 */
2740 btrfs_abort_transaction(trans, ret);
2741 break;
2742 }
Filipe Mananabf385642020-09-08 11:27:22 +01002743 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002744 /*
2745 * We are past the i_size here, but since we didn't
2746 * insert holes we need to clear the mapped area so we
2747 * know to not set disk_i_size in this area until a new
2748 * file extent is inserted here.
2749 */
2750 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2751 cur_offset, drop_end - cur_offset);
2752 if (ret) {
2753 /*
2754 * We couldn't clear our area, so we could
2755 * presumably adjust up and corrupt the fs, so
2756 * we need to abort.
2757 */
2758 btrfs_abort_transaction(trans, ret);
2759 break;
2760 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002761 }
2762
Filipe Mananabf385642020-09-08 11:27:22 +01002763 if (extent_info && drop_end > extent_info->file_offset) {
2764 u64 replace_len = drop_end - extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002765
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002766 ret = btrfs_insert_replace_extent(trans, inode, path,
Filipe Mananabf385642020-09-08 11:27:22 +01002767 extent_info, replace_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002768 if (ret) {
2769 btrfs_abort_transaction(trans, ret);
2770 break;
2771 }
Filipe Mananabf385642020-09-08 11:27:22 +01002772 extent_info->data_len -= replace_len;
2773 extent_info->data_offset += replace_len;
2774 extent_info->file_offset += replace_len;
Filipe Manana690a5db2019-07-05 11:09:50 +01002775 }
2776
Filipe Manana9cba40a2019-06-28 23:11:26 +01002777 cur_offset = drop_end;
2778
2779 ret = btrfs_update_inode(trans, root, inode);
2780 if (ret)
2781 break;
2782
2783 btrfs_end_transaction(trans);
2784 btrfs_btree_balance_dirty(fs_info);
2785
2786 trans = btrfs_start_transaction(root, rsv_count);
2787 if (IS_ERR(trans)) {
2788 ret = PTR_ERR(trans);
2789 trans = NULL;
2790 break;
2791 }
2792
2793 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2794 rsv, min_size, false);
2795 BUG_ON(ret); /* shouldn't happen */
2796 trans->block_rsv = rsv;
2797
Filipe Mananabf385642020-09-08 11:27:22 +01002798 if (!extent_info) {
Filipe Manana690a5db2019-07-05 11:09:50 +01002799 ret = find_first_non_hole(inode, &cur_offset, &len);
2800 if (unlikely(ret < 0))
2801 break;
2802 if (ret && !len) {
2803 ret = 0;
2804 break;
2805 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002806 }
2807 }
2808
Filipe Manana690a5db2019-07-05 11:09:50 +01002809 /*
2810 * If we were cloning, force the next fsync to be a full one since we
2811 * we replaced (or just dropped in the case of cloning holes when
2812 * NO_HOLES is enabled) extents and extent maps.
2813 * This is for the sake of simplicity, and cloning into files larger
2814 * than 16Mb would force the full fsync any way (when
2815 * try_release_extent_mapping() is invoked during page cache truncation.
2816 */
Filipe Mananabf385642020-09-08 11:27:22 +01002817 if (extent_info && !extent_info->is_new_extent)
Filipe Manana690a5db2019-07-05 11:09:50 +01002818 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2819 &BTRFS_I(inode)->runtime_flags);
2820
Filipe Manana9cba40a2019-06-28 23:11:26 +01002821 if (ret)
2822 goto out_trans;
2823
2824 trans->block_rsv = &fs_info->trans_block_rsv;
2825 /*
2826 * If we are using the NO_HOLES feature we might have had already an
2827 * hole that overlaps a part of the region [lockstart, lockend] and
2828 * ends at (or beyond) lockend. Since we have no file extent items to
2829 * represent holes, drop_end can be less than lockend and so we must
2830 * make sure we have an extent map representing the existing hole (the
2831 * call to __btrfs_drop_extents() might have dropped the existing extent
2832 * map representing the existing hole), otherwise the fast fsync path
2833 * will not record the existence of the hole region
2834 * [existing_hole_start, lockend].
2835 */
2836 if (drop_end <= end)
2837 drop_end = end + 1;
2838 /*
2839 * Don't insert file hole extent item if it's for a range beyond eof
2840 * (because it's useless) or if it represents a 0 bytes range (when
2841 * cur_offset == drop_end).
2842 */
Filipe Mananabf385642020-09-08 11:27:22 +01002843 if (!extent_info && cur_offset < ino_size && cur_offset < drop_end) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002844 ret = fill_holes(trans, BTRFS_I(inode), path,
2845 cur_offset, drop_end);
2846 if (ret) {
2847 /* Same comment as above. */
2848 btrfs_abort_transaction(trans, ret);
2849 goto out_trans;
2850 }
Filipe Mananabf385642020-09-08 11:27:22 +01002851 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002852 /* See the comment in the loop above for the reasoning here. */
2853 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2854 cur_offset, drop_end - cur_offset);
2855 if (ret) {
2856 btrfs_abort_transaction(trans, ret);
2857 goto out_trans;
2858 }
2859
Filipe Manana9cba40a2019-06-28 23:11:26 +01002860 }
Filipe Mananabf385642020-09-08 11:27:22 +01002861 if (extent_info) {
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002862 ret = btrfs_insert_replace_extent(trans, inode, path, extent_info,
Filipe Mananabf385642020-09-08 11:27:22 +01002863 extent_info->data_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002864 if (ret) {
2865 btrfs_abort_transaction(trans, ret);
2866 goto out_trans;
2867 }
2868 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002869
2870out_trans:
2871 if (!trans)
2872 goto out_free;
2873
2874 trans->block_rsv = &fs_info->trans_block_rsv;
2875 if (ret)
2876 btrfs_end_transaction(trans);
2877 else
2878 *trans_out = trans;
2879out_free:
2880 btrfs_free_block_rsv(fs_info, rsv);
2881out:
2882 return ret;
2883}
2884
Josef Bacik2aaa6652012-08-29 14:27:18 -04002885static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2886{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002887 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002888 struct btrfs_root *root = BTRFS_I(inode)->root;
2889 struct extent_state *cached_state = NULL;
2890 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002891 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002892 u64 lockstart;
2893 u64 lockend;
2894 u64 tail_start;
2895 u64 tail_len;
2896 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002897 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302898 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002899 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302900 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002901 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002902
Josef Bacik0ef8b722013-10-25 16:13:35 -04002903 ret = btrfs_wait_ordered_range(inode, offset, len);
2904 if (ret)
2905 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002906
Al Viro59551022016-01-22 15:40:57 -05002907 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002908 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002909 ret = find_first_non_hole(inode, &offset, &len);
2910 if (ret < 0)
2911 goto out_only_mutex;
2912 if (ret && !len) {
2913 /* Already in a large hole */
2914 ret = 0;
2915 goto out_only_mutex;
2916 }
2917
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002918 lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode)));
Qu Wenruod7781542014-05-30 15:16:10 +08002919 lockend = round_down(offset + len,
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002920 btrfs_inode_sectorsize(BTRFS_I(inode))) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002921 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2922 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002923 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302924 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002925 * because we are sure there is no data there.
2926 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002927 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302928 * Only do this if we are in the same block and we aren't doing the
2929 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002930 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002931 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002932 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302933 truncated_block = true;
2934 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002935 } else {
2936 ret = 0;
2937 }
Qu Wenruod7781542014-05-30 15:16:10 +08002938 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002939 }
2940
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302941 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002942 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302943 truncated_block = true;
2944 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002945 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002946 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002947 return ret;
2948 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002949 }
2950
Qu Wenruod7781542014-05-30 15:16:10 +08002951 /* Check the aligned pages after the first unaligned page,
2952 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002953 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002954 * the extra check can be skipped */
2955 if (offset == orig_start) {
2956 /* after truncate page, check hole again */
2957 len = offset + len - lockstart;
2958 offset = lockstart;
2959 ret = find_first_non_hole(inode, &offset, &len);
2960 if (ret < 0)
2961 goto out_only_mutex;
2962 if (ret && !len) {
2963 ret = 0;
2964 goto out_only_mutex;
2965 }
2966 lockstart = offset;
2967 }
2968
2969 /* Check the tail unaligned part is in a hole */
2970 tail_start = lockend + 1;
2971 tail_len = offset + len - tail_start;
2972 if (tail_len) {
2973 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2974 if (unlikely(ret < 0))
2975 goto out_only_mutex;
2976 if (!ret) {
2977 /* zero the front end of the last page */
2978 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302979 truncated_block = true;
2980 ret = btrfs_truncate_block(inode,
2981 tail_start + tail_len,
2982 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002983 if (ret)
2984 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002985 }
Miao Xie00612802012-12-05 10:54:12 +00002986 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002987 }
2988
2989 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002990 ret = 0;
2991 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002992 }
2993
Filipe Mananaf27451f2017-10-25 11:55:28 +01002994 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2995 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002996 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002997 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002998
2999 path = btrfs_alloc_path();
3000 if (!path) {
3001 ret = -ENOMEM;
3002 goto out;
3003 }
3004
Filipe Manana306bfec2020-09-08 11:27:23 +01003005 ret = btrfs_replace_file_extents(inode, path, lockstart, lockend, NULL,
Filipe Manana690a5db2019-07-05 11:09:50 +01003006 &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003007 btrfs_free_path(path);
3008 if (ret)
3009 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003010
Filipe Manana9cba40a2019-06-28 23:11:26 +01003011 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00003012 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003013 inode->i_mtime = inode->i_ctime = current_time(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003014 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00003015 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003016 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003017 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003018out:
3019 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003020 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08003021out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01003022 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00003023 /*
3024 * If we only end up zeroing part of a page, we still need to
3025 * update the inode item, so that all the time fields are
3026 * updated as well as the necessary btrfs inode in memory fields
3027 * for detecting, at fsync time, if the inode isn't yet in the
3028 * log tree or it's there but not up to date.
3029 */
Filipe Manana17900662019-06-19 13:05:50 +01003030 struct timespec64 now = current_time(inode);
3031
3032 inode_inc_iversion(inode);
3033 inode->i_mtime = now;
3034 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003035 trans = btrfs_start_transaction(root, 1);
3036 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003037 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00003038 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003039 int ret2;
3040
3041 ret = btrfs_update_inode(trans, root, inode);
3042 ret2 = btrfs_end_transaction(trans);
3043 if (!ret)
3044 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003045 }
3046 }
Al Viro59551022016-01-22 15:40:57 -05003047 inode_unlock(inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003048 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003049}
3050
Qu Wenruo14524a82015-09-08 17:22:44 +08003051/* Helper structure to record which range is already reserved */
3052struct falloc_range {
3053 struct list_head list;
3054 u64 start;
3055 u64 len;
3056};
3057
3058/*
3059 * Helper function to add falloc range
3060 *
3061 * Caller should have locked the larger range of extent containing
3062 * [start, len)
3063 */
3064static int add_falloc_range(struct list_head *head, u64 start, u64 len)
3065{
3066 struct falloc_range *prev = NULL;
3067 struct falloc_range *range = NULL;
3068
3069 if (list_empty(head))
3070 goto insert;
3071
3072 /*
3073 * As fallocate iterate by bytenr order, we only need to check
3074 * the last range.
3075 */
3076 prev = list_entry(head->prev, struct falloc_range, list);
3077 if (prev->start + prev->len == start) {
3078 prev->len += len;
3079 return 0;
3080 }
3081insert:
David Sterba32fc9322016-02-11 14:25:38 +01003082 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08003083 if (!range)
3084 return -ENOMEM;
3085 range->start = start;
3086 range->len = len;
3087 list_add_tail(&range->list, head);
3088 return 0;
3089}
3090
Filipe Mananaf27451f2017-10-25 11:55:28 +01003091static int btrfs_fallocate_update_isize(struct inode *inode,
3092 const u64 end,
3093 const int mode)
3094{
3095 struct btrfs_trans_handle *trans;
3096 struct btrfs_root *root = BTRFS_I(inode)->root;
3097 int ret;
3098 int ret2;
3099
3100 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
3101 return 0;
3102
3103 trans = btrfs_start_transaction(root, 1);
3104 if (IS_ERR(trans))
3105 return PTR_ERR(trans);
3106
3107 inode->i_ctime = current_time(inode);
3108 i_size_write(inode, end);
Josef Bacikd923afe2020-01-17 09:02:23 -05003109 btrfs_inode_safe_disk_i_size_write(inode, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003110 ret = btrfs_update_inode(trans, root, inode);
3111 ret2 = btrfs_end_transaction(trans);
3112
3113 return ret ? ret : ret2;
3114}
3115
Filipe Manana81fdf632018-01-18 11:34:31 +00003116enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003117 RANGE_BOUNDARY_WRITTEN_EXTENT,
3118 RANGE_BOUNDARY_PREALLOC_EXTENT,
3119 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003120};
3121
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003122static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003123 u64 offset)
3124{
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003125 const u64 sectorsize = btrfs_inode_sectorsize(inode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003126 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003127 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003128
3129 offset = round_down(offset, sectorsize);
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003130 em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003131 if (IS_ERR(em))
3132 return PTR_ERR(em);
3133
3134 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003135 ret = RANGE_BOUNDARY_HOLE;
3136 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3137 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3138 else
3139 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003140
3141 free_extent_map(em);
3142 return ret;
3143}
3144
3145static int btrfs_zero_range(struct inode *inode,
3146 loff_t offset,
3147 loff_t len,
3148 const int mode)
3149{
3150 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3151 struct extent_map *em;
3152 struct extent_changeset *data_reserved = NULL;
3153 int ret;
3154 u64 alloc_hint = 0;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003155 const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003156 u64 alloc_start = round_down(offset, sectorsize);
3157 u64 alloc_end = round_up(offset + len, sectorsize);
3158 u64 bytes_to_reserve = 0;
3159 bool space_reserved = false;
3160
3161 inode_dio_wait(inode);
3162
Omar Sandoval39b07b52019-12-02 17:34:23 -08003163 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3164 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003165 if (IS_ERR(em)) {
3166 ret = PTR_ERR(em);
3167 goto out;
3168 }
3169
3170 /*
3171 * Avoid hole punching and extent allocation for some cases. More cases
3172 * could be considered, but these are unlikely common and we keep things
3173 * as simple as possible for now. Also, intentionally, if the target
3174 * range contains one or more prealloc extents together with regular
3175 * extents and holes, we drop all the existing extents and allocate a
3176 * new prealloc extent, so that we get a larger contiguous disk extent.
3177 */
3178 if (em->start <= alloc_start &&
3179 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3180 const u64 em_end = em->start + em->len;
3181
3182 if (em_end >= offset + len) {
3183 /*
3184 * The whole range is already a prealloc extent,
3185 * do nothing except updating the inode's i_size if
3186 * needed.
3187 */
3188 free_extent_map(em);
3189 ret = btrfs_fallocate_update_isize(inode, offset + len,
3190 mode);
3191 goto out;
3192 }
3193 /*
3194 * Part of the range is already a prealloc extent, so operate
3195 * only on the remaining part of the range.
3196 */
3197 alloc_start = em_end;
3198 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3199 len = offset + len - alloc_start;
3200 offset = alloc_start;
3201 alloc_hint = em->block_start + em->len;
3202 }
3203 free_extent_map(em);
3204
3205 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3206 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003207 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3208 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003209 if (IS_ERR(em)) {
3210 ret = PTR_ERR(em);
3211 goto out;
3212 }
3213
3214 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3215 free_extent_map(em);
3216 ret = btrfs_fallocate_update_isize(inode, offset + len,
3217 mode);
3218 goto out;
3219 }
3220 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3221 free_extent_map(em);
3222 ret = btrfs_truncate_block(inode, offset, len, 0);
3223 if (!ret)
3224 ret = btrfs_fallocate_update_isize(inode,
3225 offset + len,
3226 mode);
3227 return ret;
3228 }
3229 free_extent_map(em);
3230 alloc_start = round_down(offset, sectorsize);
3231 alloc_end = alloc_start + sectorsize;
3232 goto reserve_space;
3233 }
3234
3235 alloc_start = round_up(offset, sectorsize);
3236 alloc_end = round_down(offset + len, sectorsize);
3237
3238 /*
3239 * For unaligned ranges, check the pages at the boundaries, they might
3240 * map to an extent, in which case we need to partially zero them, or
3241 * they might map to a hole, in which case we need our allocation range
3242 * to cover them.
3243 */
3244 if (!IS_ALIGNED(offset, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003245 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
3246 offset);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003247 if (ret < 0)
3248 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003249 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003250 alloc_start = round_down(offset, sectorsize);
3251 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003252 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003253 ret = btrfs_truncate_block(inode, offset, 0, 0);
3254 if (ret)
3255 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003256 } else {
3257 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003258 }
3259 }
3260
3261 if (!IS_ALIGNED(offset + len, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003262 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
Filipe Mananaf27451f2017-10-25 11:55:28 +01003263 offset + len);
3264 if (ret < 0)
3265 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003266 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003267 alloc_end = round_up(offset + len, sectorsize);
3268 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003269 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003270 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3271 if (ret)
3272 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003273 } else {
3274 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003275 }
3276 }
3277
3278reserve_space:
3279 if (alloc_start < alloc_end) {
3280 struct extent_state *cached_state = NULL;
3281 const u64 lockstart = alloc_start;
3282 const u64 lockend = alloc_end - 1;
3283
3284 bytes_to_reserve = alloc_end - alloc_start;
3285 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3286 bytes_to_reserve);
3287 if (ret < 0)
3288 goto out;
3289 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003290 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3291 &cached_state);
3292 if (ret)
3293 goto out;
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003294 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved,
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003295 alloc_start, bytes_to_reserve);
3296 if (ret)
3297 goto out;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003298 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3299 alloc_end - alloc_start,
3300 i_blocksize(inode),
3301 offset + len, &alloc_hint);
3302 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3303 lockend, &cached_state);
3304 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003305 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003306 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003307 goto out;
3308 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003309 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003310 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003311 out:
3312 if (ret && space_reserved)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003313 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003314 alloc_start, bytes_to_reserve);
3315 extent_changeset_free(data_reserved);
3316
3317 return ret;
3318}
3319
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003320static long btrfs_fallocate(struct file *file, int mode,
3321 loff_t offset, loff_t len)
3322{
Al Viro496ad9a2013-01-23 17:07:38 -05003323 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003324 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003325 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003326 struct falloc_range *range;
3327 struct falloc_range *tmp;
3328 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003329 u64 cur_offset;
3330 u64 last_byte;
3331 u64 alloc_start;
3332 u64 alloc_end;
3333 u64 alloc_hint = 0;
3334 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003335 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003336 struct extent_map *em;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003337 int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003338 int ret;
3339
Miao Xie797f4272012-11-28 10:28:07 +00003340 alloc_start = round_down(offset, blocksize);
3341 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003342 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003343
Josef Bacik2aaa6652012-08-29 14:27:18 -04003344 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003345 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3346 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003347 return -EOPNOTSUPP;
3348
Josef Bacik2aaa6652012-08-29 14:27:18 -04003349 if (mode & FALLOC_FL_PUNCH_HOLE)
3350 return btrfs_punch_hole(inode, offset, len);
3351
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003352 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003353 * Only trigger disk allocation, don't trigger qgroup reserve
3354 *
3355 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003356 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003357 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3358 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3359 alloc_end - alloc_start);
3360 if (ret < 0)
3361 return ret;
3362 }
Chris Masond98456f2012-01-31 20:27:41 -05003363
Al Viro59551022016-01-22 15:40:57 -05003364 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003365
3366 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3367 ret = inode_newsize_ok(inode, offset + len);
3368 if (ret)
3369 goto out;
3370 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003371
Qu Wenruo14524a82015-09-08 17:22:44 +08003372 /*
3373 * TODO: Move these two operations after we have checked
3374 * accurate reserved space, or fallocate can still fail but
3375 * with page truncated or size expanded.
3376 *
3377 * But that's a minor problem and won't do much harm BTW.
3378 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003379 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003380 ret = btrfs_cont_expand(inode, i_size_read(inode),
3381 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003382 if (ret)
3383 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003384 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003385 /*
3386 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303387 * need to zero out the end of the block if i_size lands in the
3388 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003389 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303390 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003391 if (ret)
3392 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003393 }
3394
Josef Bacika71754f2013-06-17 17:14:39 -04003395 /*
3396 * wait for ordered IO before we have any locks. We'll loop again
3397 * below with the locks held.
3398 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003399 ret = btrfs_wait_ordered_range(inode, alloc_start,
3400 alloc_end - alloc_start);
3401 if (ret)
3402 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003403
Filipe Mananaf27451f2017-10-25 11:55:28 +01003404 if (mode & FALLOC_FL_ZERO_RANGE) {
3405 ret = btrfs_zero_range(inode, offset, len, mode);
3406 inode_unlock(inode);
3407 return ret;
3408 }
3409
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003410 locked_end = alloc_end - 1;
3411 while (1) {
3412 struct btrfs_ordered_extent *ordered;
3413
3414 /* the extent lock is ordered inside the running
3415 * transaction
3416 */
3417 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003418 locked_end, &cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03003419 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
3420 locked_end);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003421
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003422 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003423 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003424 ordered->file_offset < alloc_end) {
3425 btrfs_put_ordered_extent(ordered);
3426 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3427 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003428 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003429 /*
3430 * we can't wait on the range with the transaction
3431 * running or with the extent lock held
3432 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003433 ret = btrfs_wait_ordered_range(inode, alloc_start,
3434 alloc_end - alloc_start);
3435 if (ret)
3436 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003437 } else {
3438 if (ordered)
3439 btrfs_put_ordered_extent(ordered);
3440 break;
3441 }
3442 }
3443
Qu Wenruo14524a82015-09-08 17:22:44 +08003444 /* First, check if we exceed the qgroup limit */
3445 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003446 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003447 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003448 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003449 if (IS_ERR(em)) {
3450 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003451 break;
3452 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003453 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003454 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003455 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003456 if (em->block_start == EXTENT_MAP_HOLE ||
3457 (cur_offset >= inode->i_size &&
3458 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003459 ret = add_falloc_range(&reserve_list, cur_offset,
3460 last_byte - cur_offset);
3461 if (ret < 0) {
3462 free_extent_map(em);
3463 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003464 }
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003465 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode),
3466 &data_reserved, cur_offset,
3467 last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003468 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003469 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003470 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003471 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003472 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003473 } else {
3474 /*
3475 * Do not need to reserve unwritten extent for this
3476 * range, free reserved data space first, otherwise
3477 * it'll result in false ENOSPC error.
3478 */
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003479 btrfs_free_reserved_data_space(BTRFS_I(inode),
3480 data_reserved, cur_offset,
3481 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003482 }
3483 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003484 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003485 }
3486
3487 /*
3488 * If ret is still 0, means we're OK to fallocate.
3489 * Or just cleanup the list and exit.
3490 */
3491 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3492 if (!ret)
3493 ret = btrfs_prealloc_file_range(inode, mode,
3494 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003495 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003496 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003497 else
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003498 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08003499 data_reserved, range->start,
3500 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003501 list_del(&range->list);
3502 kfree(range);
3503 }
3504 if (ret < 0)
3505 goto out_unlock;
3506
Filipe Mananaf27451f2017-10-25 11:55:28 +01003507 /*
3508 * We didn't need to allocate any more space, but we still extended the
3509 * size of the file so we need to update i_size and the inode item.
3510 */
3511 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003512out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003513 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003514 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003515out:
Al Viro59551022016-01-22 15:40:57 -05003516 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003517 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003518 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003519 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003520 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003521 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003522 return ret;
3523}
3524
Nikolay Borisovbc802302019-09-27 13:23:18 +03003525static loff_t find_desired_extent(struct inode *inode, loff_t offset,
3526 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003527{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003528 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003529 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003530 struct extent_state *cached_state = NULL;
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003531 loff_t i_size = inode->i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003532 u64 lockstart;
3533 u64 lockend;
3534 u64 start;
3535 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003536 int ret = 0;
3537
Nikolay Borisovbc802302019-09-27 13:23:18 +03003538 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003539 return -ENXIO;
3540
Liu Bo4d1a40c2014-09-16 17:49:30 +08003541 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003542 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003543 * the very start of the file.
3544 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003545 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003546
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003547 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003548 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003549 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003550 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003551 lockend--;
3552 len = lockend - lockstart + 1;
3553
David Sterbaff13db42015-12-03 14:30:40 +01003554 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003555 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003556
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003557 while (start < i_size) {
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02003558 em = btrfs_get_extent_fiemap(BTRFS_I(inode), start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003559 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003560 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003561 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003562 break;
3563 }
3564
Josef Bacik7f4ca372013-10-18 11:44:46 -04003565 if (whence == SEEK_HOLE &&
3566 (em->block_start == EXTENT_MAP_HOLE ||
3567 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3568 break;
3569 else if (whence == SEEK_DATA &&
3570 (em->block_start != EXTENT_MAP_HOLE &&
3571 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3572 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003573
3574 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003575 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003576 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003577 cond_resched();
3578 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003579 free_extent_map(em);
Josef Bacikb2675152011-07-18 13:21:36 -04003580 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003581 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003582 if (ret) {
3583 offset = ret;
3584 } else {
3585 if (whence == SEEK_DATA && start >= i_size)
3586 offset = -ENXIO;
3587 else
3588 offset = min_t(loff_t, start, i_size);
3589 }
3590
3591 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003592}
3593
Andrew Morton965c8e52012-12-17 15:59:39 -08003594static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003595{
3596 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003597
Andrew Morton965c8e52012-12-17 15:59:39 -08003598 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003599 default:
3600 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003601 case SEEK_DATA:
3602 case SEEK_HOLE:
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003603 inode_lock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003604 offset = find_desired_extent(inode, offset, whence);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003605 inode_unlock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003606 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003607 }
3608
Nikolay Borisovbc802302019-09-27 13:23:18 +03003609 if (offset < 0)
3610 return offset;
3611
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003612 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003613}
3614
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003615static int btrfs_file_open(struct inode *inode, struct file *filp)
3616{
Jens Axboe8730f122020-05-22 10:19:22 -06003617 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003618 return generic_file_open(inode, filp);
3619}
3620
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003621static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3622{
3623 ssize_t ret = 0;
3624
3625 if (iocb->ki_flags & IOCB_DIRECT) {
3626 struct inode *inode = file_inode(iocb->ki_filp);
3627
3628 inode_lock_shared(inode);
3629 ret = btrfs_direct_IO(iocb, to);
3630 inode_unlock_shared(inode);
Johannes Thumshirn0425e7b2020-10-22 23:05:05 +09003631 if (ret < 0 || !iov_iter_count(to) ||
3632 iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp)))
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003633 return ret;
3634 }
3635
3636 return generic_file_buffered_read(iocb, to, ret);
3637}
3638
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003639const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003640 .llseek = btrfs_file_llseek,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003641 .read_iter = btrfs_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003642 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003643 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003644 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003645 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003646 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003647 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003648 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003649 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003650 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003651#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003652 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003653#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003654 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003655};
Miao Xie9247f312012-11-26 09:24:43 +00003656
David Sterbae67c7182018-02-19 17:24:18 +01003657void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003658{
Kinglong Mee5598e902016-01-29 21:36:35 +08003659 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003660}
3661
Liu Bof5c29bd2017-11-02 17:21:50 -06003662int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003663{
3664 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3665 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003666 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003667 NULL);
3668 if (!btrfs_inode_defrag_cachep)
3669 return -ENOMEM;
3670
3671 return 0;
3672}
Filipe Manana728404d2014-10-10 09:43:11 +01003673
3674int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3675{
3676 int ret;
3677
3678 /*
3679 * So with compression we will find and lock a dirty page and clear the
3680 * first one as dirty, setup an async extent, and immediately return
3681 * with the entire range locked but with nobody actually marked with
3682 * writeback. So we can't just filemap_write_and_wait_range() and
3683 * expect it to work since it will just kick off a thread to do the
3684 * actual work. So we need to call filemap_fdatawrite_range _again_
3685 * since it will wait on the page lock, which won't be unlocked until
3686 * after the pages have been marked as writeback and so we're good to go
3687 * from there. We have to do this otherwise we'll miss the ordered
3688 * extents and that results in badness. Please Josef, do not think you
3689 * know better and pull this out at some point in the future, it is
3690 * right and you are wrong.
3691 */
3692 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3693 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3694 &BTRFS_I(inode)->runtime_flags))
3695 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3696
3697 return ret;
3698}