blob: 6c12f5703faa7d028776f5c67cc01e38d7fa1417 [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
Chris Masond352ac62008-09-29 15:18:18 -0400455/*
456 * after copy_from_user, pages need to be dirtied and we need to make
457 * sure holes are created between the current EOF and the start of
458 * any next extents (if required).
459 *
460 * this also makes the decision about creating an inline extent vs
461 * doing real data extents, marking pages dirty and delalloc as required.
462 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300463int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400464 size_t num_pages, loff_t pos, size_t write_bytes,
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500465 struct extent_state **cached, bool noreserve)
Chris Mason39279cc2007-06-12 06:35:45 -0400466{
Nikolay Borisov088545f2020-06-03 08:55:36 +0300467 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400468 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400469 int i;
Chris Masondb945352007-10-15 16:15:53 -0400470 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400471 u64 start_pos;
472 u64 end_of_last_block;
473 u64 end_pos = pos + write_bytes;
Nikolay Borisov088545f2020-06-03 08:55:36 +0300474 loff_t isize = i_size_read(&inode->vfs_inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000475 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400476
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -0500477 if (write_bytes == 0)
478 return 0;
479
480 if (noreserve)
481 extra_bits |= EXTENT_NORESERVE;
482
Goldwyn Rodrigues13f0dd82020-10-14 09:55:44 -0500483 start_pos = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400484 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400485 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400486
Chris Masondb945352007-10-15 16:15:53 -0400487 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000488
Chris Mason7703bdd2018-06-20 07:56:11 -0700489 /*
490 * The pages may have already been dirty, clear out old accounting so
491 * we can set things up properly
492 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300493 clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700494 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
495 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700496
Nikolay Borisov088545f2020-06-03 08:55:36 +0300497 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300498 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500499 if (err)
500 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400501
Chris Masonc8b97812008-10-29 14:49:59 -0400502 for (i = 0; i < num_pages; i++) {
503 struct page *p = pages[i];
504 SetPageUptodate(p);
505 ClearPageChecked(p);
506 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400507 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500508
509 /*
510 * we've only changed i_size in ram, and we haven't updated
511 * the disk i_size. There is no need to log the inode
512 * at this time.
513 */
514 if (end_pos > isize)
Nikolay Borisov088545f2020-06-03 08:55:36 +0300515 i_size_write(&inode->vfs_inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400516 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400517}
518
Chris Masond352ac62008-09-29 15:18:18 -0400519/*
520 * this drops all the extents in the cache that intersect the range
521 * [start, end]. Existing extents are split as required.
522 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200523void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400524 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400525{
526 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400527 struct extent_map *split = NULL;
528 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200529 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500530 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400531 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400532 int ret;
533 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400534 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400535 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400536 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400537
Chris Masone6dcd2d2008-07-17 12:53:50 -0400538 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400539 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500540 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400541 testend = 0;
542 }
Chris Masond3977122009-01-05 21:25:51 -0500543 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400544 int no_splits = 0;
545
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400546 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400547 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200548 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400549 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200550 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400551 if (!split || !split2)
552 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400553
Chris Mason890871b2009-09-02 16:24:52 -0400554 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500555 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500556 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400557 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400558 break;
Chris Masond1310b22008-01-24 16:13:08 -0500559 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400560 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400561 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400562 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000563 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400564 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400565 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400566 break;
567 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000568 start = em->start + em->len;
569 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400570 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400571 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400572 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400573 continue;
574 }
Chris Masonc8b97812008-10-29 14:49:59 -0400575 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400576 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600577 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400578 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400579 if (no_splits)
580 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400581
Josef Bacikee20a982013-07-11 10:34:59 -0400582 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400583 split->start = em->start;
584 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400585
Josef Bacikee20a982013-07-11 10:34:59 -0400586 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
587 split->orig_start = em->orig_start;
588 split->block_start = em->block_start;
589
590 if (compressed)
591 split->block_len = em->block_len;
592 else
593 split->block_len = split->len;
594 split->orig_block_len = max(split->block_len,
595 em->orig_block_len);
596 split->ram_bytes = em->ram_bytes;
597 } else {
598 split->orig_start = split->start;
599 split->block_len = 0;
600 split->block_start = em->block_start;
601 split->orig_block_len = 0;
602 split->ram_bytes = split->len;
603 }
604
Josef Bacik5dc562c2012-08-17 13:14:17 -0400605 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400606 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800607 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000608 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400609 free_extent_map(split);
610 split = split2;
611 split2 = NULL;
612 }
Josef Bacikee20a982013-07-11 10:34:59 -0400613 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400614 u64 diff = start + len - em->start;
615
616 split->start = start + len;
617 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400618 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800619 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400620 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400621
Josef Bacikee20a982013-07-11 10:34:59 -0400622 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
623 split->orig_block_len = max(em->block_len,
624 em->orig_block_len);
625
626 split->ram_bytes = em->ram_bytes;
627 if (compressed) {
628 split->block_len = em->block_len;
629 split->block_start = em->block_start;
630 split->orig_start = em->orig_start;
631 } else {
632 split->block_len = split->len;
633 split->block_start = em->block_start
634 + diff;
635 split->orig_start = em->orig_start;
636 }
Chris Masonc8b97812008-10-29 14:49:59 -0400637 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400638 split->ram_bytes = split->len;
639 split->orig_start = split->start;
640 split->block_len = 0;
641 split->block_start = em->block_start;
642 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400643 }
Chris Mason3b951512008-04-17 11:29:12 -0400644
Filipe Manana176840b2014-02-25 14:15:13 +0000645 if (extent_map_in_tree(em)) {
646 replace_extent_mapping(em_tree, em, split,
647 modified);
648 } else {
649 ret = add_extent_mapping(em_tree, split,
650 modified);
651 ASSERT(ret == 0); /* Logic error */
652 }
Chris Mason3b951512008-04-17 11:29:12 -0400653 free_extent_map(split);
654 split = NULL;
655 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400656next:
Filipe Manana176840b2014-02-25 14:15:13 +0000657 if (extent_map_in_tree(em))
658 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400659 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500660
Chris Masona52d9a82007-08-27 16:49:44 -0400661 /* once for us */
662 free_extent_map(em);
663 /* once for the tree*/
664 free_extent_map(em);
665 }
Chris Mason3b951512008-04-17 11:29:12 -0400666 if (split)
667 free_extent_map(split);
668 if (split2)
669 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400670}
671
Chris Mason39279cc2007-06-12 06:35:45 -0400672/*
673 * this is very complex, but the basic idea is to drop all extents
674 * in the range start - end. hint_block is filled in with a block number
675 * that would be a good hint to the block allocator for this file.
676 *
677 * If an extent intersects the range but is not entirely inside the range
678 * it is either truncated or split. Anything entirely inside the range
679 * is deleted from the tree.
680 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400681int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
Nikolay Borisov906c4482020-06-03 08:55:08 +0300682 struct btrfs_root *root, struct btrfs_inode *inode,
Josef Bacik5dc562c2012-08-17 13:14:17 -0400683 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000684 u64 *drop_end, int drop_cache,
685 int replace_extent,
686 u32 extent_item_size,
687 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400688{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400689 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500690 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000691 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800692 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500693 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000694 struct btrfs_key new_key;
Nikolay Borisov906c4482020-06-03 08:55:08 +0300695 struct inode *vfs_inode = &inode->vfs_inode;
696 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000697 u64 search_start = start;
698 u64 disk_bytenr = 0;
699 u64 num_bytes = 0;
700 u64 extent_offset = 0;
701 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500702 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000703 int del_nr = 0;
704 int del_slot = 0;
705 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400706 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500707 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400708 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800709 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400710 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000711 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400712
Chris Masona1ed8352009-09-11 12:27:37 -0400713 if (drop_cache)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300714 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400715
Nikolay Borisov906c4482020-06-03 08:55:08 +0300716 if (start >= inode->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400717 modify_tree = 0;
718
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800719 update_refs = (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400720 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500721 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400722 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800723 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400724 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400725 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000726 break;
727 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
728 leaf = path->nodes[0];
729 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800730 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000731 key.type == BTRFS_EXTENT_DATA_KEY)
732 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400733 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400734 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000735 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000736next_slot:
737 leaf = path->nodes[0];
738 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
739 BUG_ON(del_nr > 0);
740 ret = btrfs_next_leaf(root, path);
741 if (ret < 0)
742 break;
743 if (ret > 0) {
744 ret = 0;
745 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400746 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000747 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000748 leaf = path->nodes[0];
749 recow = 1;
750 }
751
752 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000753
754 if (key.objectid > ino)
755 break;
756 if (WARN_ON_ONCE(key.objectid < ino) ||
757 key.type < BTRFS_EXTENT_DATA_KEY) {
758 ASSERT(del_nr == 0);
759 path->slots[0]++;
760 goto next_slot;
761 }
762 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000763 break;
764
765 fi = btrfs_item_ptr(leaf, path->slots[0],
766 struct btrfs_file_extent_item);
767 extent_type = btrfs_file_extent_type(leaf, fi);
768
769 if (extent_type == BTRFS_FILE_EXTENT_REG ||
770 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
771 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
772 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
773 extent_offset = btrfs_file_extent_offset(leaf, fi);
774 extent_end = key.offset +
775 btrfs_file_extent_num_bytes(leaf, fi);
776 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
777 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800778 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400779 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000780 /* can't happen */
781 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400782 }
783
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100784 /*
785 * Don't skip extent items representing 0 byte lengths. They
786 * used to be created (bug) if while punching holes we hit
787 * -ENOSPC condition. So if we find one here, just ensure we
788 * delete it, otherwise we would insert a new file extent item
789 * with the same key (offset) as that 0 bytes length file
790 * extent item in the call to setup_items_for_insert() later
791 * in this function.
792 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500793 if (extent_end == key.offset && extent_end >= search_start) {
794 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100795 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500796 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100797
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000798 if (extent_end <= search_start) {
799 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400800 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400801 }
802
Josef Bacikc3308f82012-09-14 14:51:22 -0400803 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000804 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400805 if (recow || !modify_tree) {
806 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200807 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000808 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400809 }
Chris Mason771ed682008-11-06 22:02:51 -0500810
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000811 /*
812 * | - range to drop - |
813 * | -------- extent -------- |
814 */
815 if (start > key.offset && end < extent_end) {
816 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800817 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200818 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800819 break;
820 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000821
822 memcpy(&new_key, &key, sizeof(new_key));
823 new_key.offset = start;
824 ret = btrfs_duplicate_item(trans, root, path,
825 &new_key);
826 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200827 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000828 continue;
829 }
830 if (ret < 0)
831 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400832
Chris Mason5f39d392007-10-15 16:14:19 -0400833 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000834 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
835 struct btrfs_file_extent_item);
836 btrfs_set_file_extent_num_bytes(leaf, fi,
837 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400838
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000839 fi = btrfs_item_ptr(leaf, path->slots[0],
840 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400841
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000842 extent_offset += start - key.offset;
843 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
844 btrfs_set_file_extent_num_bytes(leaf, fi,
845 extent_end - start);
846 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400847
Josef Bacik5dc562c2012-08-17 13:14:17 -0400848 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800849 btrfs_init_generic_ref(&ref,
850 BTRFS_ADD_DELAYED_REF,
851 disk_bytenr, num_bytes, 0);
852 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000853 root->root_key.objectid,
854 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100855 start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800856 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100857 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400858 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000859 key.offset = start;
860 }
861 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500862 * From here on out we will have actually dropped something, so
863 * last_end can be updated.
864 */
865 last_end = extent_end;
866
867 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000868 * | ---- range to drop ----- |
869 * | -------- extent -------- |
870 */
871 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800872 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200873 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800874 break;
875 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000876
877 memcpy(&new_key, &key, sizeof(new_key));
878 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400879 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000880
881 extent_offset += end - key.offset;
882 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
883 btrfs_set_file_extent_num_bytes(leaf, fi,
884 extent_end - end);
885 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400886 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300887 inode_sub_bytes(vfs_inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000888 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400889 }
890
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000891 search_start = extent_end;
892 /*
893 * | ---- range to drop ----- |
894 * | -------- extent -------- |
895 */
896 if (start > key.offset && end >= extent_end) {
897 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800898 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200899 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800900 break;
901 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000902
903 btrfs_set_file_extent_num_bytes(leaf, fi,
904 start - key.offset);
905 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400906 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300907 inode_sub_bytes(vfs_inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000908 if (end == extent_end)
909 break;
910
911 path->slots[0]++;
912 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400913 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000914
915 /*
916 * | ---- range to drop ----- |
917 * | ------ extent ------ |
918 */
919 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100920delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000921 if (del_nr == 0) {
922 del_slot = path->slots[0];
923 del_nr = 1;
924 } else {
925 BUG_ON(del_slot + del_nr != path->slots[0]);
926 del_nr++;
927 }
928
Josef Bacik5dc562c2012-08-17 13:14:17 -0400929 if (update_refs &&
930 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Nikolay Borisov906c4482020-06-03 08:55:08 +0300931 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000932 extent_end - key.offset);
933 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400934 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400935 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800936 btrfs_init_generic_ref(&ref,
937 BTRFS_DROP_DELAYED_REF,
938 disk_bytenr, num_bytes, 0);
939 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800941 key.objectid,
942 key.offset - extent_offset);
943 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100944 BUG_ON(ret); /* -ENOMEM */
Nikolay Borisov906c4482020-06-03 08:55:08 +0300945 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000946 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000947 }
948
949 if (end == extent_end)
950 break;
951
952 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
953 path->slots[0]++;
954 goto next_slot;
955 }
956
957 ret = btrfs_del_items(trans, root, path, del_slot,
958 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100959 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400960 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400961 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100962 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000963
964 del_nr = 0;
965 del_slot = 0;
966
David Sterbab3b4aa72011-04-21 01:20:15 +0200967 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000968 continue;
969 }
970
Arnd Bergmann290342f2019-03-25 14:02:25 +0100971 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400972 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000973
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100974 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000975 /*
976 * Set path->slots[0] to first slot, so that after the delete
977 * if items are move off from our leaf to its immediate left or
978 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000979 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000980 */
981 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000982 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100983 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400984 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000985 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000986
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000987 leaf = path->nodes[0];
988 /*
989 * If btrfs_del_items() was called, it might have deleted a leaf, in
990 * which case it unlocked our path, so check path->locks[0] matches a
991 * write lock.
992 */
993 if (!ret && replace_extent && leafs_visited == 1 &&
994 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
995 path->locks[0] == BTRFS_WRITE_LOCK) &&
David Sterbae902baa2019-03-20 14:36:46 +0100996 btrfs_leaf_free_space(leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000997 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000998
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000999 key.objectid = ino;
1000 key.type = BTRFS_EXTENT_DATA_KEY;
1001 key.offset = start;
1002 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1003 struct btrfs_key slot_key;
1004
1005 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1006 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1007 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001008 }
Nikolay Borisovfc0d82e2020-09-01 17:39:59 +03001009 setup_items_for_insert(root, path, &key, &extent_item_size, 1);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001010 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001011 }
1012
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001013 if (!replace_extent || !(*key_inserted))
1014 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001015 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001016 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001017 return ret;
1018}
1019
1020int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1021 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001022 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001023{
1024 struct btrfs_path *path;
1025 int ret;
1026
1027 path = btrfs_alloc_path();
1028 if (!path)
1029 return -ENOMEM;
Nikolay Borisov906c4482020-06-03 08:55:08 +03001030 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path, start,
1031 end, NULL, drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001032 btrfs_free_path(path);
1033 return ret;
1034}
1035
Yan Zhengd899e052008-10-30 14:25:28 -04001036static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001037 u64 objectid, u64 bytenr, u64 orig_offset,
1038 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001039{
1040 struct btrfs_file_extent_item *fi;
1041 struct btrfs_key key;
1042 u64 extent_end;
1043
1044 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1045 return 0;
1046
1047 btrfs_item_key_to_cpu(leaf, &key, slot);
1048 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1049 return 0;
1050
1051 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1052 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1053 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001054 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001055 btrfs_file_extent_compression(leaf, fi) ||
1056 btrfs_file_extent_encryption(leaf, fi) ||
1057 btrfs_file_extent_other_encoding(leaf, fi))
1058 return 0;
1059
1060 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1061 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1062 return 0;
1063
1064 *start = key.offset;
1065 *end = extent_end;
1066 return 1;
1067}
1068
1069/*
1070 * Mark extent in the range start - end as written.
1071 *
1072 * This changes extent type from 'pre-allocated' to 'regular'. If only
1073 * part of extent is marked as written, the extent will be split into
1074 * two or three.
1075 */
1076int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001077 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001078{
David Sterba3ffbd682018-06-29 10:56:42 +02001079 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001080 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001081 struct extent_buffer *leaf;
1082 struct btrfs_path *path;
1083 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001084 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001085 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001086 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001087 u64 bytenr;
1088 u64 num_bytes;
1089 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001090 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001091 u64 other_start;
1092 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001093 u64 split;
1094 int del_nr = 0;
1095 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001096 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001097 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001098 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001099
Yan Zhengd899e052008-10-30 14:25:28 -04001100 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001101 if (!path)
1102 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001103again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001104 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001105 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001106 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001107 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001108 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001109
1110 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001111 if (ret < 0)
1112 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001113 if (ret > 0 && path->slots[0] > 0)
1114 path->slots[0]--;
1115
1116 leaf = path->nodes[0];
1117 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001118 if (key.objectid != ino ||
1119 key.type != BTRFS_EXTENT_DATA_KEY) {
1120 ret = -EINVAL;
1121 btrfs_abort_transaction(trans, ret);
1122 goto out;
1123 }
Yan Zhengd899e052008-10-30 14:25:28 -04001124 fi = btrfs_item_ptr(leaf, path->slots[0],
1125 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001126 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1127 ret = -EINVAL;
1128 btrfs_abort_transaction(trans, ret);
1129 goto out;
1130 }
Yan Zhengd899e052008-10-30 14:25:28 -04001131 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001132 if (key.offset > start || extent_end < end) {
1133 ret = -EINVAL;
1134 btrfs_abort_transaction(trans, ret);
1135 goto out;
1136 }
Yan Zhengd899e052008-10-30 14:25:28 -04001137
1138 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1139 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001140 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001141 memcpy(&new_key, &key, sizeof(new_key));
1142
1143 if (start == key.offset && end < extent_end) {
1144 other_start = 0;
1145 other_end = start;
1146 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001147 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001148 &other_start, &other_end)) {
1149 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001150 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001151 fi = btrfs_item_ptr(leaf, path->slots[0],
1152 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001153 btrfs_set_file_extent_generation(leaf, fi,
1154 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001155 btrfs_set_file_extent_num_bytes(leaf, fi,
1156 extent_end - end);
1157 btrfs_set_file_extent_offset(leaf, fi,
1158 end - orig_offset);
1159 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1160 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001161 btrfs_set_file_extent_generation(leaf, fi,
1162 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001163 btrfs_set_file_extent_num_bytes(leaf, fi,
1164 end - other_start);
1165 btrfs_mark_buffer_dirty(leaf);
1166 goto out;
1167 }
1168 }
1169
1170 if (start > key.offset && end == extent_end) {
1171 other_start = end;
1172 other_end = 0;
1173 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001174 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001175 &other_start, &other_end)) {
1176 fi = btrfs_item_ptr(leaf, path->slots[0],
1177 struct btrfs_file_extent_item);
1178 btrfs_set_file_extent_num_bytes(leaf, fi,
1179 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001180 btrfs_set_file_extent_generation(leaf, fi,
1181 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001182 path->slots[0]++;
1183 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001184 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001185
1186 fi = btrfs_item_ptr(leaf, path->slots[0],
1187 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001188 btrfs_set_file_extent_generation(leaf, fi,
1189 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001190 btrfs_set_file_extent_num_bytes(leaf, fi,
1191 other_end - start);
1192 btrfs_set_file_extent_offset(leaf, fi,
1193 start - orig_offset);
1194 btrfs_mark_buffer_dirty(leaf);
1195 goto out;
1196 }
1197 }
Yan Zhengd899e052008-10-30 14:25:28 -04001198
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001199 while (start > key.offset || end < extent_end) {
1200 if (key.offset == start)
1201 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001202
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001203 new_key.offset = split;
1204 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1205 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001206 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001207 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001208 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001209 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001210 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001211 goto out;
1212 }
Yan Zhengd899e052008-10-30 14:25:28 -04001213
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001214 leaf = path->nodes[0];
1215 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001216 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001217 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001218 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001219 split - key.offset);
1220
1221 fi = btrfs_item_ptr(leaf, path->slots[0],
1222 struct btrfs_file_extent_item);
1223
Josef Bacik224ecce2012-08-16 16:32:06 -04001224 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001225 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1226 btrfs_set_file_extent_num_bytes(leaf, fi,
1227 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001228 btrfs_mark_buffer_dirty(leaf);
1229
Qu Wenruo82fa1132019-04-04 14:45:35 +08001230 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1231 num_bytes, 0);
1232 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1233 orig_offset);
1234 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001235 if (ret) {
1236 btrfs_abort_transaction(trans, ret);
1237 goto out;
1238 }
Yan Zhengd899e052008-10-30 14:25:28 -04001239
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001240 if (split == start) {
1241 key.offset = start;
1242 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001243 if (start != key.offset) {
1244 ret = -EINVAL;
1245 btrfs_abort_transaction(trans, ret);
1246 goto out;
1247 }
Yan Zhengd899e052008-10-30 14:25:28 -04001248 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001249 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001250 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001251 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001252 }
1253
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001254 other_start = end;
1255 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001256 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1257 num_bytes, 0);
1258 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001259 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001260 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001261 &other_start, &other_end)) {
1262 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001263 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001264 goto again;
1265 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001266 extent_end = other_end;
1267 del_slot = path->slots[0] + 1;
1268 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001269 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001270 if (ret) {
1271 btrfs_abort_transaction(trans, ret);
1272 goto out;
1273 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001274 }
1275 other_start = 0;
1276 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001277 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001278 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001279 &other_start, &other_end)) {
1280 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001281 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001282 goto again;
1283 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001284 key.offset = other_start;
1285 del_slot = path->slots[0];
1286 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001287 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001288 if (ret) {
1289 btrfs_abort_transaction(trans, ret);
1290 goto out;
1291 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001292 }
1293 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001294 fi = btrfs_item_ptr(leaf, path->slots[0],
1295 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001296 btrfs_set_file_extent_type(leaf, fi,
1297 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001298 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001299 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001300 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001301 fi = btrfs_item_ptr(leaf, del_slot - 1,
1302 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001303 btrfs_set_file_extent_type(leaf, fi,
1304 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001305 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001306 btrfs_set_file_extent_num_bytes(leaf, fi,
1307 extent_end - key.offset);
1308 btrfs_mark_buffer_dirty(leaf);
1309
1310 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001311 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001312 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001313 goto out;
1314 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001315 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001316out:
Yan Zhengd899e052008-10-30 14:25:28 -04001317 btrfs_free_path(path);
1318 return 0;
1319}
1320
Chris Mason39279cc2007-06-12 06:35:45 -04001321/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001322 * on error we return an unlocked page and the error value
1323 * on success we return a locked page and 0
1324 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001325static int prepare_uptodate_page(struct inode *inode,
1326 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001327 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001328{
1329 int ret = 0;
1330
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001332 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001333 ret = btrfs_readpage(NULL, page);
1334 if (ret)
1335 return ret;
1336 lock_page(page);
1337 if (!PageUptodate(page)) {
1338 unlock_page(page);
1339 return -EIO;
1340 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001341 if (page->mapping != inode->i_mapping) {
1342 unlock_page(page);
1343 return -EAGAIN;
1344 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001345 }
1346 return 0;
1347}
1348
1349/*
Miao Xie376cc682013-12-10 19:25:04 +08001350 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001351 */
Miao Xieb37392e2013-12-10 19:25:03 +08001352static noinline int prepare_pages(struct inode *inode, struct page **pages,
1353 size_t num_pages, loff_t pos,
1354 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001355{
1356 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001357 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001358 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001359 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001360 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001361
Chris Mason39279cc2007-06-12 06:35:45 -04001362 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001363again:
Josef Bacika94733d2011-07-11 10:47:06 -04001364 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001365 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001366 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001367 faili = i - 1;
1368 err = -ENOMEM;
1369 goto fail;
1370 }
1371
1372 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001373 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001374 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001375 if (!err && i == num_pages - 1)
1376 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001377 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001378 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001379 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001380 if (err == -EAGAIN) {
1381 err = 0;
1382 goto again;
1383 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001384 faili = i - 1;
1385 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001386 }
Chris Masonccd467d2007-06-28 15:57:36 -04001387 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001388 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001389
Chris Mason39279cc2007-06-12 06:35:45 -04001390 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001391fail:
1392 while (faili >= 0) {
1393 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001394 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001395 faili--;
1396 }
1397 return err;
1398
Chris Mason39279cc2007-06-12 06:35:45 -04001399}
1400
Miao Xie376cc682013-12-10 19:25:04 +08001401/*
1402 * This function locks the extent and properly waits for data=ordered extents
1403 * to finish before allowing the pages to be modified if need.
1404 *
1405 * The return value:
1406 * 1 - the extent is locked
1407 * 0 - the extent is not locked, and everything is OK
1408 * -EAGAIN - need re-prepare the pages
1409 * the other < 0 number - Something wrong happens
1410 */
1411static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001412lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001413 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301414 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001415 u64 *lockstart, u64 *lockend,
1416 struct extent_state **cached_state)
1417{
David Sterba3ffbd682018-06-29 10:56:42 +02001418 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001419 u64 start_pos;
1420 u64 last_pos;
1421 int i;
1422 int ret = 0;
1423
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001424 start_pos = round_down(pos, fs_info->sectorsize);
Qu Wenruoe21139c2020-08-13 14:33:52 +08001425 last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001426
Filipe Mananae3b8a482017-11-04 00:16:59 +00001427 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001428 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001429
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001430 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1431 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001432 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1433 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001434 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001435 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001436 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001437 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001438 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001439 for (i = 0; i < num_pages; i++) {
1440 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001441 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001442 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001443 btrfs_start_ordered_extent(ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001444 btrfs_put_ordered_extent(ordered);
1445 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001446 }
1447 if (ordered)
1448 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001449
Miao Xie376cc682013-12-10 19:25:04 +08001450 *lockstart = start_pos;
1451 *lockend = last_pos;
1452 ret = 1;
1453 }
1454
Chris Mason7703bdd2018-06-20 07:56:11 -07001455 /*
1456 * It's possible the pages are dirty right now, but we don't want
1457 * to clean them yet because copy_from_user may catch a page fault
1458 * and we might have to fall back to one page at a time. If that
1459 * happens, we'll unlock these pages and we'd have a window where
1460 * reclaim could sneak in and drop the once-dirty page on the floor
1461 * without writing it.
1462 *
1463 * We have the pages locked and the extent range locked, so there's
1464 * no way someone can start IO on any dirty pages in this range.
1465 *
1466 * We'll call btrfs_dirty_pages() later on, and that will flip around
1467 * delalloc bits and dirty the pages as required.
1468 */
Miao Xie376cc682013-12-10 19:25:04 +08001469 for (i = 0; i < num_pages; i++) {
Miao Xie376cc682013-12-10 19:25:04 +08001470 set_page_extent_mapped(pages[i]);
1471 WARN_ON(!PageLocked(pages[i]));
1472 }
1473
1474 return ret;
1475}
1476
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001477static int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
1478 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001479{
David Sterba3ffbd682018-06-29 10:56:42 +02001480 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001481 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001482 u64 lockstart, lockend;
1483 u64 num_bytes;
1484 int ret;
1485
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001486 if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)))
1487 return 0;
1488
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001489 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001490 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001491
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001492 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001493 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001494 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001495 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001496
1497 if (nowait) {
1498 struct btrfs_ordered_extent *ordered;
1499
1500 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1501 return -EAGAIN;
1502
1503 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1504 num_bytes);
1505 if (ordered) {
1506 btrfs_put_ordered_extent(ordered);
1507 ret = -EAGAIN;
1508 goto out_unlock;
1509 }
1510 } else {
1511 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1512 lockend, NULL);
1513 }
1514
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001515 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
Boris Burkova84d5d42020-08-18 11:00:05 -07001516 NULL, NULL, NULL, false);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001517 if (ret <= 0) {
1518 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001519 if (!nowait)
1520 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001521 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001522 *write_bytes = min_t(size_t, *write_bytes ,
1523 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001524 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001525out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001526 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001527
1528 return ret;
1529}
1530
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001531static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos,
1532 size_t *write_bytes)
1533{
1534 return check_can_nocow(inode, pos, write_bytes, true);
1535}
1536
1537/*
1538 * Check if we can do nocow write into the range [@pos, @pos + @write_bytes)
1539 *
1540 * @pos: File offset
1541 * @write_bytes: The length to write, will be updated to the nocow writeable
1542 * range
1543 *
1544 * This function will flush ordered extents in the range to ensure proper
1545 * nocow checks.
1546 *
1547 * Return:
1548 * >0 and update @write_bytes if we can do nocow write
1549 * 0 if we can't do nocow write
1550 * -EAGAIN if we can't get the needed lock or there are ordered extents
1551 * for * (nowait == true) case
1552 * <0 if other error happened
1553 *
1554 * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock().
1555 */
1556int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
1557 size_t *write_bytes)
1558{
1559 return check_can_nocow(inode, pos, write_bytes, false);
1560}
1561
1562void btrfs_check_nocow_unlock(struct btrfs_inode *inode)
1563{
1564 btrfs_drew_write_unlock(&inode->root->snapshot_lock);
1565}
1566
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001567static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1568 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001569{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001570 struct file *file = iocb->ki_filp;
1571 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001572 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001573 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001574 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001575 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001576 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001577 u64 lockstart;
1578 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001579 size_t num_written = 0;
1580 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001581 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001582 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001583 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001584
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001585 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1586 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001587 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1588 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001589 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001590 if (!pages)
1591 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001592
Josef Bacikd0215f32011-01-25 14:57:24 -05001593 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001594 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001595 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301596 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001597 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001598 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001599 offset);
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001600 size_t num_pages;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001601 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001602 size_t dirty_pages;
1603 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301604 size_t dirty_sectors;
1605 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001606 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001607
Xin Zhong914ee292010-12-09 09:30:14 +00001608 /*
1609 * Fault pages before locking them in prepare_pages
1610 * to avoid recursive lock
1611 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001612 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001613 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001614 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001615 }
1616
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001617 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001618 sector_offset = pos & (fs_info->sectorsize - 1);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001619
Qu Wenruo364ecf32017-02-27 15:10:38 +08001620 extent_changeset_release(data_reserved);
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03001621 ret = btrfs_check_data_free_space(BTRFS_I(inode),
1622 &data_reserved, pos,
Qu Wenruo364ecf32017-02-27 15:10:38 +08001623 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001624 if (ret < 0) {
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001625 /*
1626 * If we don't have to COW at the offset, reserve
1627 * metadata only. write_bytes may get smaller than
1628 * requested here.
1629 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001630 if (btrfs_check_nocow_lock(BTRFS_I(inode), pos,
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001631 &write_bytes) > 0)
Josef Bacikc6887cd2016-03-25 13:26:00 -04001632 only_release_metadata = true;
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001633 else
Josef Bacikc6887cd2016-03-25 13:26:00 -04001634 break;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001635 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001636
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001637 num_pages = DIV_ROUND_UP(write_bytes + offset, PAGE_SIZE);
1638 WARN_ON(num_pages > nrptrs);
1639 reserve_bytes = round_up(write_bytes + sector_offset,
1640 fs_info->sectorsize);
Josef Bacik8b62f872017-10-19 14:15:55 -04001641 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001642 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1643 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001644 if (ret) {
1645 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03001646 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001647 data_reserved, pos,
1648 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001649 else
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001650 btrfs_check_nocow_unlock(BTRFS_I(inode));
Josef Bacik7ee9e442013-06-21 16:37:03 -04001651 break;
1652 }
1653
1654 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001655again:
Josef Bacik4a640012011-01-25 15:10:08 -05001656 /*
1657 * This is going to setup the pages array with the number of
1658 * pages we want, so we don't really need to worry about the
1659 * contents of pages from loop to loop
1660 */
Miao Xieb37392e2013-12-10 19:25:03 +08001661 ret = prepare_pages(inode, pages, num_pages,
1662 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001663 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001664 if (ret) {
1665 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001666 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001667 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001668 }
Chris Mason39279cc2007-06-12 06:35:45 -04001669
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001670 extents_locked = lock_and_cleanup_extent_if_need(
1671 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001672 num_pages, pos, write_bytes, &lockstart,
1673 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001674 if (extents_locked < 0) {
1675 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001676 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001677 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001678 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001679 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001680 break;
Miao Xie376cc682013-12-10 19:25:04 +08001681 }
1682
Zhao Leiee22f0c2016-01-06 18:47:31 +08001683 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001684
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001685 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001686 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001687 fs_info->sectorsize);
1688 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001689
Chris Masonb1bf8622011-02-28 09:52:08 -05001690 /*
1691 * if we have trouble faulting in the pages, fall
1692 * back to one page at a time
1693 */
1694 if (copied < write_bytes)
1695 nrptrs = 1;
1696
Josef Bacikb63164292011-09-30 15:23:54 -04001697 if (copied == 0) {
1698 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001699 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001700 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001701 } else {
1702 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001703 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001704 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001705 }
Xin Zhong914ee292010-12-09 09:30:14 +00001706
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301707 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001708 /* release everything except the sectors we dirtied */
1709 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001710 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001711 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001712 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001713 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001714 } else {
1715 u64 __pos;
1716
Jeff Mahoneyda170662016-06-15 09:22:56 -04001717 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001718 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001719 (dirty_pages << PAGE_SHIFT);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001720 btrfs_delalloc_release_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001721 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001722 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001723 }
Xin Zhong914ee292010-12-09 09:30:14 +00001724 }
1725
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301726 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001727 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001728
Goldwyn Rodriguesaa8c1a42020-10-14 09:55:45 -05001729 ret = btrfs_dirty_pages(BTRFS_I(inode), pages,
1730 dirty_pages, pos, copied,
1731 &cached_state, only_release_metadata);
Filipe Mananac67d9702019-09-30 10:20:25 +01001732
1733 /*
1734 * If we have not locked the extent range, because the range's
1735 * start offset is >= i_size, we might still have a non-NULL
1736 * cached extent state, acquired while marking the extent range
1737 * as delalloc through btrfs_dirty_pages(). Therefore free any
1738 * possible cached extent state to avoid a memory leak.
1739 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001740 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001741 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001742 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001743 else
1744 free_extent_state(cached_state);
1745
Qu Wenruo8702ba92019-10-14 14:34:51 +08001746 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001747 if (ret) {
1748 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001749 break;
Miao Xief1de9682014-01-09 10:06:10 +08001750 }
Chris Mason39279cc2007-06-12 06:35:45 -04001751
Josef Bacik7ee9e442013-06-21 16:37:03 -04001752 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001753 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001754 btrfs_check_nocow_unlock(BTRFS_I(inode));
Miao Xie8257b2d2014-03-06 13:38:19 +08001755
Miao Xief1de9682014-01-09 10:06:10 +08001756 btrfs_drop_pages(pages, num_pages);
1757
Josef Bacikd0215f32011-01-25 14:57:24 -05001758 cond_resched();
1759
Namjae Jeond0e1d662012-12-11 16:00:21 -08001760 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001761
Xin Zhong914ee292010-12-09 09:30:14 +00001762 pos += copied;
1763 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001764 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001765
Chris Mason8c2383c2007-06-18 09:57:58 -04001766 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001767
Josef Bacik7ee9e442013-06-21 16:37:03 -04001768 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001769 if (only_release_metadata) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001770 btrfs_check_nocow_unlock(BTRFS_I(inode));
Nikolay Borisov691fa052017-02-20 13:50:42 +02001771 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001772 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001773 } else {
Nikolay Borisov86d52922020-06-03 08:55:40 +03001774 btrfs_delalloc_release_space(BTRFS_I(inode),
1775 data_reserved,
Qu Wenruobc42bda2017-02-27 15:10:39 +08001776 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001777 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001778 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001779 }
1780
Qu Wenruo364ecf32017-02-27 15:10:38 +08001781 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001782 return num_written ? num_written : ret;
1783}
1784
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001785static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
1786 const struct iov_iter *iter, loff_t offset)
1787{
1788 const u32 blocksize_mask = fs_info->sectorsize - 1;
1789
1790 if (offset & blocksize_mask)
1791 return -EINVAL;
1792
1793 if (iov_iter_alignment(iter) & blocksize_mask)
1794 return -EINVAL;
1795
1796 return 0;
1797}
1798
1799static ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001800{
1801 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001802 struct inode *inode = file_inode(file);
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001803 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1804 loff_t pos = iocb->ki_pos;
1805 ssize_t written = 0;
1806 bool relock = false;
Josef Bacikd0215f32011-01-25 14:57:24 -05001807 ssize_t written_buffered;
1808 loff_t endbyte;
1809 int err;
1810
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001811 if (check_direct_IO(fs_info, from, pos))
1812 goto buffered;
1813
1814 /*
1815 * If the write DIO is beyond EOF, we need to update the isize, but it
1816 * is protected by inode lock. So we cannot unlock it here.
1817 */
1818 if (pos + iov_iter_count(from) <= inode->i_size) {
1819 inode_unlock(inode);
1820 relock = true;
1821 }
1822 down_read(&BTRFS_I(inode)->dio_sem);
1823
1824 /*
1825 * This is actually a sync iocb, so we need our fancy endio to know if
1826 * we need to sync.
1827 */
1828 if (current->journal_info)
1829 written = iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops,
1830 &btrfs_sync_dops, is_sync_kiocb(iocb));
1831 else
1832 written = iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops,
1833 &btrfs_dio_ops, is_sync_kiocb(iocb));
1834
1835 if (written == -ENOTBLK)
1836 written = 0;
1837
1838 up_read(&BTRFS_I(inode)->dio_sem);
1839 if (relock)
1840 inode_lock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001841
Al Viro0c949332014-03-22 06:51:37 -04001842 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001843 return written;
1844
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05001845buffered:
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001846 pos = iocb->ki_pos;
1847 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001848 if (written_buffered < 0) {
1849 err = written_buffered;
1850 goto out;
1851 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001852 /*
1853 * Ensure all data is persisted. We want the next direct IO read to be
1854 * able to read what was just written.
1855 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001856 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001857 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001858 if (err)
1859 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001860 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001861 if (err)
1862 goto out;
1863 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001864 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001865 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1866 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001867out:
1868 return written ? written : err;
1869}
1870
Josef Bacik6c760c02012-11-09 10:53:21 -05001871static void update_time_for_write(struct inode *inode)
1872{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001873 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001874
1875 if (IS_NOCMTIME(inode))
1876 return;
1877
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001878 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001879 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001880 inode->i_mtime = now;
1881
Deepa Dinamani95582b02018-05-08 19:36:02 -07001882 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001883 inode->i_ctime = now;
1884
1885 if (IS_I_VERSION(inode))
1886 inode_inc_iversion(inode);
1887}
1888
Al Virob30ac0f2014-04-03 14:29:04 -04001889static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1890 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001891{
1892 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001893 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001894 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001895 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001896 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001897 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001898 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07001899 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Al Viro3309dd02015-04-09 12:55:47 -04001900 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001901 loff_t pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001902 size_t count;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301903 loff_t oldsize;
1904 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001905
Christoph Hellwig91f99432017-08-29 16:13:20 +02001906 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1907 (iocb->ki_flags & IOCB_NOWAIT))
1908 return -EOPNOTSUPP;
1909
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001910 if (iocb->ki_flags & IOCB_NOWAIT) {
1911 if (!inode_trylock(inode))
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001912 return -EAGAIN;
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001913 } else {
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001914 inode_lock(inode);
1915 }
1916
1917 err = generic_write_checks(iocb, from);
1918 if (err <= 0) {
1919 inode_unlock(inode);
1920 return err;
1921 }
1922
1923 pos = iocb->ki_pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001924 count = iov_iter_count(from);
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001925 if (iocb->ki_flags & IOCB_NOWAIT) {
Filipe Manana260a6332020-06-15 18:49:13 +01001926 size_t nocow_bytes = count;
1927
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001928 /*
1929 * We will allocate space in case nodatacow is not set,
1930 * so bail
1931 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001932 if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes)
1933 <= 0) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001934 inode_unlock(inode);
1935 return -EAGAIN;
1936 }
Filipe Manana260a6332020-06-15 18:49:13 +01001937 /*
1938 * There are holes in the range or parts of the range that must
1939 * be COWed (shared extents, RO block groups, etc), so just bail
1940 * out.
1941 */
1942 if (nocow_bytes < count) {
1943 inode_unlock(inode);
1944 return -EAGAIN;
1945 }
Al Viro3309dd02015-04-09 12:55:47 -04001946 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001947
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001948 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001949 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001950 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001951 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001952 goto out;
1953 }
1954
1955 /*
1956 * If BTRFS flips readonly due to some impossible error
1957 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1958 * although we have opened a file as writable, we have
1959 * to stop this write operation to ensure FS consistency.
1960 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001961 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001962 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001963 err = -EROFS;
1964 goto out;
1965 }
1966
Josef Bacik6c760c02012-11-09 10:53:21 -05001967 /*
1968 * We reserve space for updating the inode when we reserve space for the
1969 * extent we are going to write, so we will enospc out there. We don't
1970 * need to start yet another transaction to update the inode as we will
1971 * update the inode when we finish writing whatever data we write.
1972 */
1973 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001974
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001975 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301976 oldsize = i_size_read(inode);
1977 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001978 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001979 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001980 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301981 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001982 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001983 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001984 goto out;
1985 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001986 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301987 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001988 }
1989
Josef Bacikb812ce22012-11-16 13:56:32 -05001990 if (sync)
1991 atomic_inc(&BTRFS_I(inode)->sync_writers);
1992
Al Viro2ba48ce2015-04-09 13:52:01 -04001993 if (iocb->ki_flags & IOCB_DIRECT) {
Josef Bacik0eb79292020-09-03 11:16:51 -04001994 /*
1995 * 1. We must always clear IOCB_DSYNC in order to not deadlock
1996 * in iomap, as it calls generic_write_sync() in this case.
1997 * 2. If we are async, we can call iomap_dio_complete() either
1998 * in
1999 *
2000 * 2.1. A worker thread from the last bio completed. In this
2001 * case we need to mark the btrfs_dio_data that it is
2002 * async in order to call generic_write_sync() properly.
2003 * This is handled by setting BTRFS_DIO_SYNC_STUB in the
2004 * current->journal_info.
2005 * 2.2 The submitter context, because all IO completed
2006 * before we exited iomap_dio_rw(). In this case we can
2007 * just re-set the IOCB_DSYNC on the iocb and we'll do
2008 * the sync below. If our ->end_io() gets called and
2009 * current->journal_info is set, then we know we're in
2010 * our current context and we will clear
2011 * current->journal_info to indicate that we need to
2012 * sync below.
2013 */
2014 if (sync) {
2015 ASSERT(current->journal_info == NULL);
2016 iocb->ki_flags &= ~IOCB_DSYNC;
2017 current->journal_info = BTRFS_DIO_SYNC_STUB;
2018 }
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05002019 num_written = btrfs_direct_write(iocb, from);
Josef Bacik0eb79292020-09-03 11:16:51 -04002020
2021 /*
2022 * As stated above, we cleared journal_info, so we need to do
2023 * the sync ourselves.
2024 */
2025 if (sync && current->journal_info == NULL)
2026 iocb->ki_flags |= IOCB_DSYNC;
2027 current->journal_info = NULL;
Josef Bacikd0215f32011-01-25 14:57:24 -05002028 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05002029 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05002030 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05002031 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05302032 if (clean_page)
2033 pagecache_isize_extended(inode, oldsize,
2034 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05002035 }
2036
Al Viro59551022016-01-22 15:40:57 -05002037 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04002038
Chris Mason5a3f23d2009-03-31 13:27:11 -04002039 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05002040 * We also have to set last_sub_trans to the current log transid,
2041 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002042 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04002043 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002044 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05002045 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002046 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07002047 if (num_written > 0)
2048 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002049
Josef Bacikb812ce22012-11-16 13:56:32 -05002050 if (sync)
2051 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00002052out:
Chris Mason39279cc2007-06-12 06:35:45 -04002053 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002054 return num_written ? num_written : err;
2055}
2056
Chris Masond3977122009-01-05 21:25:51 -05002057int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002058{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002059 struct btrfs_file_private *private = filp->private_data;
2060
Josef Bacik23b5ec72017-07-24 15:14:25 -04002061 if (private && private->filldir_buf)
2062 kfree(private->filldir_buf);
2063 kfree(private);
2064 filp->private_data = NULL;
2065
Chris Masonf6dc45c2014-08-20 07:15:33 -07002066 /*
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002067 * Set by setattr when we are about to truncate a file from a non-zero
2068 * size to a zero size. This tries to flush down new bytes that may
2069 * have been written if the application were using truncate to replace
2070 * a file in place.
Chris Masonf6dc45c2014-08-20 07:15:33 -07002071 */
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002072 if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Chris Masonf6dc45c2014-08-20 07:15:33 -07002073 &BTRFS_I(inode)->runtime_flags))
2074 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002075 return 0;
2076}
2077
Filipe Manana669249e2014-09-02 11:09:58 +01002078static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2079{
2080 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002081 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002082
Liu Bo343e4fc2017-11-15 16:10:28 -07002083 /*
2084 * This is only called in fsync, which would do synchronous writes, so
2085 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2086 * multiple disks using raid profile, a large IO can be split to
2087 * several segments of stripe length (currently 64K).
2088 */
2089 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002090 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002091 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002092 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002093 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002094
2095 return ret;
2096}
2097
Chris Masond352ac62008-09-29 15:18:18 -04002098/*
2099 * fsync call for both files and directories. This logs the inode into
2100 * the tree log instead of forcing full commits whenever possible.
2101 *
2102 * It needs to call filemap_fdatawait so that all ordered extent updates are
2103 * in the metadata btree are up to date for copying to the log.
2104 *
2105 * It drops the inode mutex before doing the tree log commit. This is an
2106 * important optimization for directories because holding the mutex prevents
2107 * new operations on the dir while we write to disk.
2108 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002109int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002110{
Filipe Mananade17e792016-03-30 19:03:13 -04002111 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002112 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002113 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002114 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002115 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002116 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002117 int ret = 0, err;
Filipe Manana48778172020-08-11 12:43:58 +01002118 u64 len;
2119 bool full_sync;
Chris Mason39279cc2007-06-12 06:35:45 -04002120
liubo1abe9b82011-03-24 11:18:59 +00002121 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002122
Liu Boebb70442017-11-21 14:35:40 -07002123 btrfs_init_log_ctx(&ctx, inode);
2124
Miao Xie90abccf2012-09-13 04:53:47 -06002125 /*
Filipe Manana48778172020-08-11 12:43:58 +01002126 * Always set the range to a full range, otherwise we can get into
2127 * several problems, from missing file extent items to represent holes
2128 * when not using the NO_HOLES feature, to log tree corruption due to
2129 * races between hole detection during logging and completion of ordered
2130 * extents outside the range, to missing checksums due to ordered extents
2131 * for which we flushed only a subset of their pages.
Filipe Manana95418ed2020-03-09 12:41:05 +00002132 */
Filipe Manana48778172020-08-11 12:43:58 +01002133 start = 0;
2134 end = LLONG_MAX;
2135 len = (u64)LLONG_MAX + 1;
Filipe Manana95418ed2020-03-09 12:41:05 +00002136
2137 /*
Miao Xie90abccf2012-09-13 04:53:47 -06002138 * We write the dirty pages in the range and wait until they complete
2139 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002140 * multi-task, and make the performance up. See
2141 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002142 */
Filipe Manana669249e2014-09-02 11:09:58 +01002143 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002144 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002145 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002146
Al Viro59551022016-01-22 15:40:57 -05002147 inode_lock(inode);
Josef Bacikc4951442018-10-12 15:32:32 -04002148
2149 /*
2150 * We take the dio_sem here because the tree log stuff can race with
2151 * lockless dio writes and get an extent map logged for an extent we
2152 * never waited on. We need it this high up for lockdep reasons.
2153 */
2154 down_write(&BTRFS_I(inode)->dio_sem);
2155
Miao Xie2ecb7922012-09-06 04:04:27 -06002156 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002157
Filipe Manana669249e2014-09-02 11:09:58 +01002158 /*
Filipe Manana48778172020-08-11 12:43:58 +01002159 * Always check for the full sync flag while holding the inode's lock,
2160 * to avoid races with other tasks. The flag must be either set all the
2161 * time during logging or always off all the time while logging.
Filipe Manana7af59742020-04-07 11:37:44 +01002162 */
Filipe Manana48778172020-08-11 12:43:58 +01002163 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2164 &BTRFS_I(inode)->runtime_flags);
Filipe Manana7af59742020-04-07 11:37:44 +01002165
2166 /*
Filipe Mananaaab15e82018-11-12 10:23:58 +00002167 * Before we acquired the inode's lock, someone may have dirtied more
2168 * pages in the target range. We need to make sure that writeback for
2169 * any such pages does not start while we are logging the inode, because
2170 * if it does, any of the following might happen when we are not doing a
2171 * full inode sync:
2172 *
2173 * 1) We log an extent after its writeback finishes but before its
2174 * checksums are added to the csum tree, leading to -EIO errors
2175 * when attempting to read the extent after a log replay.
2176 *
2177 * 2) We can end up logging an extent before its writeback finishes.
2178 * Therefore after the log replay we will have a file extent item
2179 * pointing to an unwritten extent (and no data checksums as well).
2180 *
2181 * So trigger writeback for any eventual new dirty pages and then we
2182 * wait for all ordered extents to complete below.
2183 */
2184 ret = start_ordered_ops(inode, start, end);
2185 if (ret) {
Robbie Ko6ff06722020-03-17 14:31:02 +08002186 up_write(&BTRFS_I(inode)->dio_sem);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002187 inode_unlock(inode);
2188 goto out;
2189 }
2190
2191 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002192 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002193 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002194 *
Filipe Manana48778172020-08-11 12:43:58 +01002195 * For a full fsync we wait for the ordered extents to complete while
2196 * for a fast fsync we wait just for writeback to complete, and then
2197 * attach the ordered extents to the transaction so that a transaction
2198 * commit waits for their completion, to avoid data loss if we fsync,
2199 * the current transaction commits before the ordered extents complete
2200 * and a power failure happens right after that.
Filipe Manana669249e2014-09-02 11:09:58 +01002201 */
Filipe Manana48778172020-08-11 12:43:58 +01002202 if (full_sync) {
2203 ret = btrfs_wait_ordered_range(inode, start, len);
2204 } else {
2205 /*
2206 * Get our ordered extents as soon as possible to avoid doing
2207 * checksum lookups in the csum tree, and use instead the
2208 * checksums attached to the ordered extents.
2209 */
2210 btrfs_get_ordered_extents_for_logging(BTRFS_I(inode),
2211 &ctx.ordered_extents);
2212 ret = filemap_fdatawait_range(inode->i_mapping, start, end);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002213 }
Filipe Manana48778172020-08-11 12:43:58 +01002214
2215 if (ret)
2216 goto out_release_extents;
2217
Miao Xie2ecb7922012-09-06 04:04:27 -06002218 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002219
Filipe Manana48778172020-08-11 12:43:58 +01002220 /*
2221 * If we are doing a fast fsync we can not bail out if the inode's
2222 * last_trans is <= then the last committed transaction, because we only
2223 * update the last_trans of the inode during ordered extent completion,
2224 * and for a fast fsync we don't wait for that, we only wait for the
2225 * writeback to complete.
2226 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002227 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002228 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
Filipe Manana48778172020-08-11 12:43:58 +01002229 (BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed &&
2230 (full_sync || list_empty(&ctx.ordered_extents)))) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002231 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002232 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002233 * modified so clear this flag in case it was set for whatever
2234 * reason, it's no longer relevant.
2235 */
2236 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2237 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002238 /*
2239 * An ordered extent might have started before and completed
2240 * already with io errors, in which case the inode was not
2241 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002242 * for any errors that might have happened since we last
2243 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002244 */
Jeff Layton333427a2017-07-06 07:02:31 -04002245 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Filipe Manana48778172020-08-11 12:43:58 +01002246 goto out_release_extents;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002247 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002248
2249 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002250 * We use start here because we will need to wait on the IO to complete
2251 * in btrfs_sync_log, which could require joining a transaction (for
2252 * example checking cross references in the nocow path). If we use join
2253 * here we could get into a situation where we're waiting on IO to
2254 * happen that is blocked on a transaction trying to commit. With start
2255 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002256 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002257 * from thinking they are super smart and changing this to
2258 * btrfs_join_transaction *cough*Josef*cough*.
2259 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002260 trans = btrfs_start_transaction(root, 0);
2261 if (IS_ERR(trans)) {
2262 ret = PTR_ERR(trans);
Filipe Manana48778172020-08-11 12:43:58 +01002263 goto out_release_extents;
Chris Mason39279cc2007-06-12 06:35:45 -04002264 }
Chris Masone02119d2008-09-05 16:13:11 -04002265
Filipe Manana48778172020-08-11 12:43:58 +01002266 ret = btrfs_log_dentry_safe(trans, dentry, &ctx);
2267 btrfs_release_log_ctx_extents(&ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002268 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002269 /* Fallthrough and commit/free transaction. */
2270 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002271 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002272
2273 /* we've logged all the items and now have a consistent
2274 * version of the file in the log. It is possible that
2275 * someone will come in and modify the file, but that's
2276 * fine because the log is consistent on disk, and we
2277 * have references to all of the file's extents
2278 *
2279 * It is possible that someone will come in and log the
2280 * file again, but that will end up using the synchronization
2281 * inside btrfs_sync_log to keep things safe.
2282 */
Josef Bacikc4951442018-10-12 15:32:32 -04002283 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002284 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002285
Chris Mason257c62e2009-10-13 13:21:08 -04002286 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002287 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002288 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002289 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002290 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002291 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002292 }
Chris Mason257c62e2009-10-13 13:21:08 -04002293 }
Filipe Manana48778172020-08-11 12:43:58 +01002294 if (!full_sync) {
2295 ret = btrfs_wait_ordered_range(inode, start, len);
2296 if (ret) {
2297 btrfs_end_transaction(trans);
2298 goto out;
2299 }
2300 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002301 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002302 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002303 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002304 }
Chris Mason39279cc2007-06-12 06:35:45 -04002305out:
Liu Boebb70442017-11-21 14:35:40 -07002306 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002307 err = file_check_and_advance_wb_err(file);
2308 if (!ret)
2309 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002310 return ret > 0 ? -EIO : ret;
Filipe Manana48778172020-08-11 12:43:58 +01002311
2312out_release_extents:
2313 btrfs_release_log_ctx_extents(&ctx);
2314 up_write(&BTRFS_I(inode)->dio_sem);
2315 inode_unlock(inode);
2316 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002317}
2318
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002319static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002320 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002321 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002322 .page_mkwrite = btrfs_page_mkwrite,
2323};
2324
2325static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2326{
Miao Xie058a4572010-05-20 07:21:50 +00002327 struct address_space *mapping = filp->f_mapping;
2328
2329 if (!mapping->a_ops->readpage)
2330 return -ENOEXEC;
2331
Chris Mason9ebefb182007-06-15 13:50:00 -04002332 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002333 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002334
Chris Mason9ebefb182007-06-15 13:50:00 -04002335 return 0;
2336}
2337
Nikolay Borisov35339c22017-02-20 13:50:46 +02002338static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002339 int slot, u64 start, u64 end)
2340{
2341 struct btrfs_file_extent_item *fi;
2342 struct btrfs_key key;
2343
2344 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2345 return 0;
2346
2347 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002348 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002349 key.type != BTRFS_EXTENT_DATA_KEY)
2350 return 0;
2351
2352 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2353
2354 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2355 return 0;
2356
2357 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2358 return 0;
2359
2360 if (key.offset == end)
2361 return 1;
2362 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2363 return 1;
2364 return 0;
2365}
2366
Nikolay Borisova012a742017-02-20 13:50:47 +02002367static int fill_holes(struct btrfs_trans_handle *trans,
2368 struct btrfs_inode *inode,
2369 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002370{
David Sterba3ffbd682018-06-29 10:56:42 +02002371 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002372 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002373 struct extent_buffer *leaf;
2374 struct btrfs_file_extent_item *fi;
2375 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002376 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002377 struct btrfs_key key;
2378 int ret;
2379
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002380 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002381 goto out;
2382
Nikolay Borisova012a742017-02-20 13:50:47 +02002383 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002384 key.type = BTRFS_EXTENT_DATA_KEY;
2385 key.offset = offset;
2386
Josef Bacik2aaa6652012-08-29 14:27:18 -04002387 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002388 if (ret <= 0) {
2389 /*
2390 * We should have dropped this offset, so if we find it then
2391 * something has gone horribly wrong.
2392 */
2393 if (ret == 0)
2394 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002395 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002396 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002397
2398 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002399 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002400 u64 num_bytes;
2401
2402 path->slots[0]--;
2403 fi = btrfs_item_ptr(leaf, path->slots[0],
2404 struct btrfs_file_extent_item);
2405 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2406 end - offset;
2407 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2408 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2409 btrfs_set_file_extent_offset(leaf, fi, 0);
2410 btrfs_mark_buffer_dirty(leaf);
2411 goto out;
2412 }
2413
chandan1707e262014-07-01 12:04:28 +05302414 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002415 u64 num_bytes;
2416
Josef Bacik2aaa6652012-08-29 14:27:18 -04002417 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002418 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002419 fi = btrfs_item_ptr(leaf, path->slots[0],
2420 struct btrfs_file_extent_item);
2421 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2422 offset;
2423 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2424 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2425 btrfs_set_file_extent_offset(leaf, fi, 0);
2426 btrfs_mark_buffer_dirty(leaf);
2427 goto out;
2428 }
2429 btrfs_release_path(path);
2430
Nikolay Borisova012a742017-02-20 13:50:47 +02002431 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002432 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002433 if (ret)
2434 return ret;
2435
2436out:
2437 btrfs_release_path(path);
2438
2439 hole_em = alloc_extent_map();
2440 if (!hole_em) {
2441 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002442 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002443 } else {
2444 hole_em->start = offset;
2445 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002446 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002447 hole_em->orig_start = offset;
2448
2449 hole_em->block_start = EXTENT_MAP_HOLE;
2450 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002451 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002452 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2453 hole_em->generation = trans->transid;
2454
2455 do {
2456 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2457 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002458 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002459 write_unlock(&em_tree->lock);
2460 } while (ret == -EEXIST);
2461 free_extent_map(hole_em);
2462 if (ret)
2463 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002464 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002465 }
2466
2467 return 0;
2468}
2469
Qu Wenruod7781542014-05-30 15:16:10 +08002470/*
2471 * Find a hole extent on given inode and change start/len to the end of hole
2472 * extent.(hole/vacuum extent whose em->start <= start &&
2473 * em->start + em->len > start)
2474 * When a hole extent is found, return 1 and modify start/len.
2475 */
2476static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2477{
Filipe Manana609805d2017-05-30 05:29:09 +01002478 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002479 struct extent_map *em;
2480 int ret = 0;
2481
Filipe Manana609805d2017-05-30 05:29:09 +01002482 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2483 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002484 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002485 if (IS_ERR(em))
2486 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002487
2488 /* Hole or vacuum extent(only exists in no-hole mode) */
2489 if (em->block_start == EXTENT_MAP_HOLE) {
2490 ret = 1;
2491 *len = em->start + em->len > *start + *len ?
2492 0 : *start + *len - em->start - em->len;
2493 *start = em->start + em->len;
2494 }
2495 free_extent_map(em);
2496 return ret;
2497}
2498
Filipe Mananaf27451f2017-10-25 11:55:28 +01002499static int btrfs_punch_hole_lock_range(struct inode *inode,
2500 const u64 lockstart,
2501 const u64 lockend,
2502 struct extent_state **cached_state)
2503{
2504 while (1) {
2505 struct btrfs_ordered_extent *ordered;
2506 int ret;
2507
2508 truncate_pagecache_range(inode, lockstart, lockend);
2509
2510 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2511 cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03002512 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
2513 lockend);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002514
2515 /*
2516 * We need to make sure we have no ordered extents in this range
2517 * and nobody raced in and read a page in this range, if we did
2518 * we need to try again.
2519 */
2520 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002521 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002522 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002523 !filemap_range_has_page(inode->i_mapping,
2524 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002525 if (ordered)
2526 btrfs_put_ordered_extent(ordered);
2527 break;
2528 }
2529 if (ordered)
2530 btrfs_put_ordered_extent(ordered);
2531 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2532 lockend, cached_state);
2533 ret = btrfs_wait_ordered_range(inode, lockstart,
2534 lockend - lockstart + 1);
2535 if (ret)
2536 return ret;
2537 }
2538 return 0;
2539}
2540
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002541static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans,
Filipe Manana690a5db2019-07-05 11:09:50 +01002542 struct inode *inode,
2543 struct btrfs_path *path,
Filipe Mananabf385642020-09-08 11:27:22 +01002544 struct btrfs_replace_extent_info *extent_info,
2545 const u64 replace_len)
Filipe Manana690a5db2019-07-05 11:09:50 +01002546{
2547 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2548 struct btrfs_root *root = BTRFS_I(inode)->root;
2549 struct btrfs_file_extent_item *extent;
2550 struct extent_buffer *leaf;
2551 struct btrfs_key key;
2552 int slot;
2553 struct btrfs_ref ref = { 0 };
Filipe Manana690a5db2019-07-05 11:09:50 +01002554 int ret;
2555
Filipe Mananabf385642020-09-08 11:27:22 +01002556 if (replace_len == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002557 return 0;
2558
Filipe Mananabf385642020-09-08 11:27:22 +01002559 if (extent_info->disk_offset == 0 &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002560 btrfs_fs_incompat(fs_info, NO_HOLES))
2561 return 0;
2562
2563 key.objectid = btrfs_ino(BTRFS_I(inode));
2564 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002565 key.offset = extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002566 ret = btrfs_insert_empty_item(trans, root, path, &key,
Filipe Mananafb870f62020-09-08 11:27:21 +01002567 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002568 if (ret)
2569 return ret;
2570 leaf = path->nodes[0];
2571 slot = path->slots[0];
Filipe Mananabf385642020-09-08 11:27:22 +01002572 write_extent_buffer(leaf, extent_info->extent_buf,
Filipe Manana690a5db2019-07-05 11:09:50 +01002573 btrfs_item_ptr_offset(leaf, slot),
Filipe Mananafb870f62020-09-08 11:27:21 +01002574 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002575 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananafb870f62020-09-08 11:27:21 +01002576 ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE);
Filipe Mananabf385642020-09-08 11:27:22 +01002577 btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset);
2578 btrfs_set_file_extent_num_bytes(leaf, extent, replace_len);
2579 if (extent_info->is_new_extent)
Filipe Manana8fccebf2020-09-08 11:27:20 +01002580 btrfs_set_file_extent_generation(leaf, extent, trans->transid);
Filipe Manana690a5db2019-07-05 11:09:50 +01002581 btrfs_mark_buffer_dirty(leaf);
2582 btrfs_release_path(path);
2583
Josef Bacik9ddc9592020-01-17 09:02:22 -05002584 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
Filipe Mananabf385642020-09-08 11:27:22 +01002585 extent_info->file_offset, replace_len);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002586 if (ret)
2587 return ret;
2588
Filipe Manana690a5db2019-07-05 11:09:50 +01002589 /* If it's a hole, nothing more needs to be done. */
Filipe Mananabf385642020-09-08 11:27:22 +01002590 if (extent_info->disk_offset == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002591 return 0;
2592
Filipe Mananabf385642020-09-08 11:27:22 +01002593 inode_add_bytes(inode, replace_len);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002594
Filipe Mananabf385642020-09-08 11:27:22 +01002595 if (extent_info->is_new_extent && extent_info->insertions == 0) {
2596 key.objectid = extent_info->disk_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002597 key.type = BTRFS_EXTENT_ITEM_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002598 key.offset = extent_info->disk_len;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002599 ret = btrfs_alloc_reserved_file_extent(trans, root,
2600 btrfs_ino(BTRFS_I(inode)),
Filipe Mananabf385642020-09-08 11:27:22 +01002601 extent_info->file_offset,
2602 extent_info->qgroup_reserved,
Filipe Manana8fccebf2020-09-08 11:27:20 +01002603 &key);
2604 } else {
2605 u64 ref_offset;
2606
2607 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
Filipe Mananabf385642020-09-08 11:27:22 +01002608 extent_info->disk_offset,
2609 extent_info->disk_len, 0);
2610 ref_offset = extent_info->file_offset - extent_info->data_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002611 btrfs_init_data_ref(&ref, root->root_key.objectid,
2612 btrfs_ino(BTRFS_I(inode)), ref_offset);
2613 ret = btrfs_inc_extent_ref(trans, &ref);
2614 }
2615
Filipe Mananabf385642020-09-08 11:27:22 +01002616 extent_info->insertions++;
Filipe Manana690a5db2019-07-05 11:09:50 +01002617
2618 return ret;
2619}
2620
Filipe Manana9cba40a2019-06-28 23:11:26 +01002621/*
2622 * The respective range must have been previously locked, as well as the inode.
2623 * The end offset is inclusive (last byte of the range).
Filipe Mananabf385642020-09-08 11:27:22 +01002624 * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing
2625 * the file range with an extent.
2626 * When not punching a hole, we don't want to end up in a state where we dropped
2627 * extents without inserting a new one, so we must abort the transaction to avoid
2628 * a corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002629 */
Filipe Manana306bfec2020-09-08 11:27:23 +01002630int btrfs_replace_file_extents(struct inode *inode, struct btrfs_path *path,
Filipe Manana690a5db2019-07-05 11:09:50 +01002631 const u64 start, const u64 end,
Filipe Mananabf385642020-09-08 11:27:22 +01002632 struct btrfs_replace_extent_info *extent_info,
Filipe Manana690a5db2019-07-05 11:09:50 +01002633 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002634{
2635 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2bd36e72019-08-22 15:14:33 -04002636 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002637 u64 ino_size = round_up(inode->i_size, fs_info->sectorsize);
2638 struct btrfs_root *root = BTRFS_I(inode)->root;
2639 struct btrfs_trans_handle *trans = NULL;
2640 struct btrfs_block_rsv *rsv;
2641 unsigned int rsv_count;
2642 u64 cur_offset;
2643 u64 drop_end;
2644 u64 len = end - start;
2645 int ret = 0;
2646
2647 if (end <= start)
2648 return -EINVAL;
2649
2650 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2651 if (!rsv) {
2652 ret = -ENOMEM;
2653 goto out;
2654 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002655 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002656 rsv->failfast = 1;
2657
2658 /*
2659 * 1 - update the inode
2660 * 1 - removing the extents in the range
Filipe Mananabf385642020-09-08 11:27:22 +01002661 * 1 - adding the hole extent if no_holes isn't set or if we are
2662 * replacing the range with a new extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002663 */
Filipe Mananabf385642020-09-08 11:27:22 +01002664 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info)
Filipe Manana690a5db2019-07-05 11:09:50 +01002665 rsv_count = 3;
2666 else
2667 rsv_count = 2;
2668
Filipe Manana9cba40a2019-06-28 23:11:26 +01002669 trans = btrfs_start_transaction(root, rsv_count);
2670 if (IS_ERR(trans)) {
2671 ret = PTR_ERR(trans);
2672 trans = NULL;
2673 goto out_free;
2674 }
2675
2676 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2677 min_size, false);
2678 BUG_ON(ret);
2679 trans->block_rsv = rsv;
2680
2681 cur_offset = start;
2682 while (cur_offset < end) {
Nikolay Borisov906c4482020-06-03 08:55:08 +03002683 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path,
Filipe Manana9cba40a2019-06-28 23:11:26 +01002684 cur_offset, end + 1, &drop_end,
2685 1, 0, 0, NULL);
Filipe Manana690a5db2019-07-05 11:09:50 +01002686 if (ret != -ENOSPC) {
2687 /*
2688 * When cloning we want to avoid transaction aborts when
2689 * nothing was done and we are attempting to clone parts
2690 * of inline extents, in such cases -EOPNOTSUPP is
2691 * returned by __btrfs_drop_extents() without having
2692 * changed anything in the file.
2693 */
Filipe Mananabf385642020-09-08 11:27:22 +01002694 if (extent_info && !extent_info->is_new_extent &&
Filipe Manana8fccebf2020-09-08 11:27:20 +01002695 ret && ret != -EOPNOTSUPP)
Filipe Manana690a5db2019-07-05 11:09:50 +01002696 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002697 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002698 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002699
2700 trans->block_rsv = &fs_info->trans_block_rsv;
2701
Filipe Mananabf385642020-09-08 11:27:22 +01002702 if (!extent_info && cur_offset < drop_end &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002703 cur_offset < ino_size) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002704 ret = fill_holes(trans, BTRFS_I(inode), path,
2705 cur_offset, drop_end);
2706 if (ret) {
2707 /*
2708 * If we failed then we didn't insert our hole
2709 * entries for the area we dropped, so now the
2710 * fs is corrupted, so we must abort the
2711 * transaction.
2712 */
2713 btrfs_abort_transaction(trans, ret);
2714 break;
2715 }
Filipe Mananabf385642020-09-08 11:27:22 +01002716 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002717 /*
2718 * We are past the i_size here, but since we didn't
2719 * insert holes we need to clear the mapped area so we
2720 * know to not set disk_i_size in this area until a new
2721 * file extent is inserted here.
2722 */
2723 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2724 cur_offset, drop_end - cur_offset);
2725 if (ret) {
2726 /*
2727 * We couldn't clear our area, so we could
2728 * presumably adjust up and corrupt the fs, so
2729 * we need to abort.
2730 */
2731 btrfs_abort_transaction(trans, ret);
2732 break;
2733 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002734 }
2735
Filipe Mananabf385642020-09-08 11:27:22 +01002736 if (extent_info && drop_end > extent_info->file_offset) {
2737 u64 replace_len = drop_end - extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002738
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002739 ret = btrfs_insert_replace_extent(trans, inode, path,
Filipe Mananabf385642020-09-08 11:27:22 +01002740 extent_info, replace_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002741 if (ret) {
2742 btrfs_abort_transaction(trans, ret);
2743 break;
2744 }
Filipe Mananabf385642020-09-08 11:27:22 +01002745 extent_info->data_len -= replace_len;
2746 extent_info->data_offset += replace_len;
2747 extent_info->file_offset += replace_len;
Filipe Manana690a5db2019-07-05 11:09:50 +01002748 }
2749
Filipe Manana9cba40a2019-06-28 23:11:26 +01002750 cur_offset = drop_end;
2751
2752 ret = btrfs_update_inode(trans, root, inode);
2753 if (ret)
2754 break;
2755
2756 btrfs_end_transaction(trans);
2757 btrfs_btree_balance_dirty(fs_info);
2758
2759 trans = btrfs_start_transaction(root, rsv_count);
2760 if (IS_ERR(trans)) {
2761 ret = PTR_ERR(trans);
2762 trans = NULL;
2763 break;
2764 }
2765
2766 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2767 rsv, min_size, false);
2768 BUG_ON(ret); /* shouldn't happen */
2769 trans->block_rsv = rsv;
2770
Filipe Mananabf385642020-09-08 11:27:22 +01002771 if (!extent_info) {
Filipe Manana690a5db2019-07-05 11:09:50 +01002772 ret = find_first_non_hole(inode, &cur_offset, &len);
2773 if (unlikely(ret < 0))
2774 break;
2775 if (ret && !len) {
2776 ret = 0;
2777 break;
2778 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002779 }
2780 }
2781
Filipe Manana690a5db2019-07-05 11:09:50 +01002782 /*
2783 * If we were cloning, force the next fsync to be a full one since we
2784 * we replaced (or just dropped in the case of cloning holes when
2785 * NO_HOLES is enabled) extents and extent maps.
2786 * This is for the sake of simplicity, and cloning into files larger
2787 * than 16Mb would force the full fsync any way (when
2788 * try_release_extent_mapping() is invoked during page cache truncation.
2789 */
Filipe Mananabf385642020-09-08 11:27:22 +01002790 if (extent_info && !extent_info->is_new_extent)
Filipe Manana690a5db2019-07-05 11:09:50 +01002791 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2792 &BTRFS_I(inode)->runtime_flags);
2793
Filipe Manana9cba40a2019-06-28 23:11:26 +01002794 if (ret)
2795 goto out_trans;
2796
2797 trans->block_rsv = &fs_info->trans_block_rsv;
2798 /*
2799 * If we are using the NO_HOLES feature we might have had already an
2800 * hole that overlaps a part of the region [lockstart, lockend] and
2801 * ends at (or beyond) lockend. Since we have no file extent items to
2802 * represent holes, drop_end can be less than lockend and so we must
2803 * make sure we have an extent map representing the existing hole (the
2804 * call to __btrfs_drop_extents() might have dropped the existing extent
2805 * map representing the existing hole), otherwise the fast fsync path
2806 * will not record the existence of the hole region
2807 * [existing_hole_start, lockend].
2808 */
2809 if (drop_end <= end)
2810 drop_end = end + 1;
2811 /*
2812 * Don't insert file hole extent item if it's for a range beyond eof
2813 * (because it's useless) or if it represents a 0 bytes range (when
2814 * cur_offset == drop_end).
2815 */
Filipe Mananabf385642020-09-08 11:27:22 +01002816 if (!extent_info && cur_offset < ino_size && cur_offset < drop_end) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002817 ret = fill_holes(trans, BTRFS_I(inode), path,
2818 cur_offset, drop_end);
2819 if (ret) {
2820 /* Same comment as above. */
2821 btrfs_abort_transaction(trans, ret);
2822 goto out_trans;
2823 }
Filipe Mananabf385642020-09-08 11:27:22 +01002824 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002825 /* See the comment in the loop above for the reasoning here. */
2826 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2827 cur_offset, drop_end - cur_offset);
2828 if (ret) {
2829 btrfs_abort_transaction(trans, ret);
2830 goto out_trans;
2831 }
2832
Filipe Manana9cba40a2019-06-28 23:11:26 +01002833 }
Filipe Mananabf385642020-09-08 11:27:22 +01002834 if (extent_info) {
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002835 ret = btrfs_insert_replace_extent(trans, inode, path, extent_info,
Filipe Mananabf385642020-09-08 11:27:22 +01002836 extent_info->data_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002837 if (ret) {
2838 btrfs_abort_transaction(trans, ret);
2839 goto out_trans;
2840 }
2841 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002842
2843out_trans:
2844 if (!trans)
2845 goto out_free;
2846
2847 trans->block_rsv = &fs_info->trans_block_rsv;
2848 if (ret)
2849 btrfs_end_transaction(trans);
2850 else
2851 *trans_out = trans;
2852out_free:
2853 btrfs_free_block_rsv(fs_info, rsv);
2854out:
2855 return ret;
2856}
2857
Josef Bacik2aaa6652012-08-29 14:27:18 -04002858static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2859{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002860 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002861 struct btrfs_root *root = BTRFS_I(inode)->root;
2862 struct extent_state *cached_state = NULL;
2863 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002864 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002865 u64 lockstart;
2866 u64 lockend;
2867 u64 tail_start;
2868 u64 tail_len;
2869 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002870 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302871 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002872 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302873 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002874 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002875
Josef Bacik0ef8b722013-10-25 16:13:35 -04002876 ret = btrfs_wait_ordered_range(inode, offset, len);
2877 if (ret)
2878 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002879
Al Viro59551022016-01-22 15:40:57 -05002880 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002881 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002882 ret = find_first_non_hole(inode, &offset, &len);
2883 if (ret < 0)
2884 goto out_only_mutex;
2885 if (ret && !len) {
2886 /* Already in a large hole */
2887 ret = 0;
2888 goto out_only_mutex;
2889 }
2890
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002891 lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode)));
Qu Wenruod7781542014-05-30 15:16:10 +08002892 lockend = round_down(offset + len,
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002893 btrfs_inode_sectorsize(BTRFS_I(inode))) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002894 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2895 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002896 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302897 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002898 * because we are sure there is no data there.
2899 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002900 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302901 * Only do this if we are in the same block and we aren't doing the
2902 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002903 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002904 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002905 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302906 truncated_block = true;
2907 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002908 } else {
2909 ret = 0;
2910 }
Qu Wenruod7781542014-05-30 15:16:10 +08002911 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002912 }
2913
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302914 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002915 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302916 truncated_block = true;
2917 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002918 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002919 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002920 return ret;
2921 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002922 }
2923
Qu Wenruod7781542014-05-30 15:16:10 +08002924 /* Check the aligned pages after the first unaligned page,
2925 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002926 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002927 * the extra check can be skipped */
2928 if (offset == orig_start) {
2929 /* after truncate page, check hole again */
2930 len = offset + len - lockstart;
2931 offset = lockstart;
2932 ret = find_first_non_hole(inode, &offset, &len);
2933 if (ret < 0)
2934 goto out_only_mutex;
2935 if (ret && !len) {
2936 ret = 0;
2937 goto out_only_mutex;
2938 }
2939 lockstart = offset;
2940 }
2941
2942 /* Check the tail unaligned part is in a hole */
2943 tail_start = lockend + 1;
2944 tail_len = offset + len - tail_start;
2945 if (tail_len) {
2946 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2947 if (unlikely(ret < 0))
2948 goto out_only_mutex;
2949 if (!ret) {
2950 /* zero the front end of the last page */
2951 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302952 truncated_block = true;
2953 ret = btrfs_truncate_block(inode,
2954 tail_start + tail_len,
2955 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002956 if (ret)
2957 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002958 }
Miao Xie00612802012-12-05 10:54:12 +00002959 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002960 }
2961
2962 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002963 ret = 0;
2964 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002965 }
2966
Filipe Mananaf27451f2017-10-25 11:55:28 +01002967 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2968 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002969 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002970 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002971
2972 path = btrfs_alloc_path();
2973 if (!path) {
2974 ret = -ENOMEM;
2975 goto out;
2976 }
2977
Filipe Manana306bfec2020-09-08 11:27:23 +01002978 ret = btrfs_replace_file_extents(inode, path, lockstart, lockend, NULL,
Filipe Manana690a5db2019-07-05 11:09:50 +01002979 &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002980 btrfs_free_path(path);
2981 if (ret)
2982 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002983
Filipe Manana9cba40a2019-06-28 23:11:26 +01002984 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002985 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002986 inode->i_mtime = inode->i_ctime = current_time(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002987 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002988 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002989 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002990 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002991out:
2992 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002993 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002994out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01002995 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002996 /*
2997 * If we only end up zeroing part of a page, we still need to
2998 * update the inode item, so that all the time fields are
2999 * updated as well as the necessary btrfs inode in memory fields
3000 * for detecting, at fsync time, if the inode isn't yet in the
3001 * log tree or it's there but not up to date.
3002 */
Filipe Manana17900662019-06-19 13:05:50 +01003003 struct timespec64 now = current_time(inode);
3004
3005 inode_inc_iversion(inode);
3006 inode->i_mtime = now;
3007 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003008 trans = btrfs_start_transaction(root, 1);
3009 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003010 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00003011 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01003012 int ret2;
3013
3014 ret = btrfs_update_inode(trans, root, inode);
3015 ret2 = btrfs_end_transaction(trans);
3016 if (!ret)
3017 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00003018 }
3019 }
Al Viro59551022016-01-22 15:40:57 -05003020 inode_unlock(inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01003021 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04003022}
3023
Qu Wenruo14524a82015-09-08 17:22:44 +08003024/* Helper structure to record which range is already reserved */
3025struct falloc_range {
3026 struct list_head list;
3027 u64 start;
3028 u64 len;
3029};
3030
3031/*
3032 * Helper function to add falloc range
3033 *
3034 * Caller should have locked the larger range of extent containing
3035 * [start, len)
3036 */
3037static int add_falloc_range(struct list_head *head, u64 start, u64 len)
3038{
3039 struct falloc_range *prev = NULL;
3040 struct falloc_range *range = NULL;
3041
3042 if (list_empty(head))
3043 goto insert;
3044
3045 /*
3046 * As fallocate iterate by bytenr order, we only need to check
3047 * the last range.
3048 */
3049 prev = list_entry(head->prev, struct falloc_range, list);
3050 if (prev->start + prev->len == start) {
3051 prev->len += len;
3052 return 0;
3053 }
3054insert:
David Sterba32fc9322016-02-11 14:25:38 +01003055 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08003056 if (!range)
3057 return -ENOMEM;
3058 range->start = start;
3059 range->len = len;
3060 list_add_tail(&range->list, head);
3061 return 0;
3062}
3063
Filipe Mananaf27451f2017-10-25 11:55:28 +01003064static int btrfs_fallocate_update_isize(struct inode *inode,
3065 const u64 end,
3066 const int mode)
3067{
3068 struct btrfs_trans_handle *trans;
3069 struct btrfs_root *root = BTRFS_I(inode)->root;
3070 int ret;
3071 int ret2;
3072
3073 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
3074 return 0;
3075
3076 trans = btrfs_start_transaction(root, 1);
3077 if (IS_ERR(trans))
3078 return PTR_ERR(trans);
3079
3080 inode->i_ctime = current_time(inode);
3081 i_size_write(inode, end);
Josef Bacikd923afe2020-01-17 09:02:23 -05003082 btrfs_inode_safe_disk_i_size_write(inode, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003083 ret = btrfs_update_inode(trans, root, inode);
3084 ret2 = btrfs_end_transaction(trans);
3085
3086 return ret ? ret : ret2;
3087}
3088
Filipe Manana81fdf632018-01-18 11:34:31 +00003089enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003090 RANGE_BOUNDARY_WRITTEN_EXTENT,
3091 RANGE_BOUNDARY_PREALLOC_EXTENT,
3092 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003093};
3094
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003095static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003096 u64 offset)
3097{
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003098 const u64 sectorsize = btrfs_inode_sectorsize(inode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003099 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003100 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003101
3102 offset = round_down(offset, sectorsize);
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003103 em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003104 if (IS_ERR(em))
3105 return PTR_ERR(em);
3106
3107 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003108 ret = RANGE_BOUNDARY_HOLE;
3109 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3110 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3111 else
3112 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003113
3114 free_extent_map(em);
3115 return ret;
3116}
3117
3118static int btrfs_zero_range(struct inode *inode,
3119 loff_t offset,
3120 loff_t len,
3121 const int mode)
3122{
3123 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3124 struct extent_map *em;
3125 struct extent_changeset *data_reserved = NULL;
3126 int ret;
3127 u64 alloc_hint = 0;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003128 const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003129 u64 alloc_start = round_down(offset, sectorsize);
3130 u64 alloc_end = round_up(offset + len, sectorsize);
3131 u64 bytes_to_reserve = 0;
3132 bool space_reserved = false;
3133
3134 inode_dio_wait(inode);
3135
Omar Sandoval39b07b52019-12-02 17:34:23 -08003136 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3137 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003138 if (IS_ERR(em)) {
3139 ret = PTR_ERR(em);
3140 goto out;
3141 }
3142
3143 /*
3144 * Avoid hole punching and extent allocation for some cases. More cases
3145 * could be considered, but these are unlikely common and we keep things
3146 * as simple as possible for now. Also, intentionally, if the target
3147 * range contains one or more prealloc extents together with regular
3148 * extents and holes, we drop all the existing extents and allocate a
3149 * new prealloc extent, so that we get a larger contiguous disk extent.
3150 */
3151 if (em->start <= alloc_start &&
3152 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3153 const u64 em_end = em->start + em->len;
3154
3155 if (em_end >= offset + len) {
3156 /*
3157 * The whole range is already a prealloc extent,
3158 * do nothing except updating the inode's i_size if
3159 * needed.
3160 */
3161 free_extent_map(em);
3162 ret = btrfs_fallocate_update_isize(inode, offset + len,
3163 mode);
3164 goto out;
3165 }
3166 /*
3167 * Part of the range is already a prealloc extent, so operate
3168 * only on the remaining part of the range.
3169 */
3170 alloc_start = em_end;
3171 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3172 len = offset + len - alloc_start;
3173 offset = alloc_start;
3174 alloc_hint = em->block_start + em->len;
3175 }
3176 free_extent_map(em);
3177
3178 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3179 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003180 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3181 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003182 if (IS_ERR(em)) {
3183 ret = PTR_ERR(em);
3184 goto out;
3185 }
3186
3187 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3188 free_extent_map(em);
3189 ret = btrfs_fallocate_update_isize(inode, offset + len,
3190 mode);
3191 goto out;
3192 }
3193 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3194 free_extent_map(em);
3195 ret = btrfs_truncate_block(inode, offset, len, 0);
3196 if (!ret)
3197 ret = btrfs_fallocate_update_isize(inode,
3198 offset + len,
3199 mode);
3200 return ret;
3201 }
3202 free_extent_map(em);
3203 alloc_start = round_down(offset, sectorsize);
3204 alloc_end = alloc_start + sectorsize;
3205 goto reserve_space;
3206 }
3207
3208 alloc_start = round_up(offset, sectorsize);
3209 alloc_end = round_down(offset + len, sectorsize);
3210
3211 /*
3212 * For unaligned ranges, check the pages at the boundaries, they might
3213 * map to an extent, in which case we need to partially zero them, or
3214 * they might map to a hole, in which case we need our allocation range
3215 * to cover them.
3216 */
3217 if (!IS_ALIGNED(offset, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003218 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
3219 offset);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003220 if (ret < 0)
3221 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003222 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003223 alloc_start = round_down(offset, sectorsize);
3224 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003225 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003226 ret = btrfs_truncate_block(inode, offset, 0, 0);
3227 if (ret)
3228 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003229 } else {
3230 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003231 }
3232 }
3233
3234 if (!IS_ALIGNED(offset + len, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003235 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
Filipe Mananaf27451f2017-10-25 11:55:28 +01003236 offset + len);
3237 if (ret < 0)
3238 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003239 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003240 alloc_end = round_up(offset + len, sectorsize);
3241 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003242 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003243 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3244 if (ret)
3245 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003246 } else {
3247 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003248 }
3249 }
3250
3251reserve_space:
3252 if (alloc_start < alloc_end) {
3253 struct extent_state *cached_state = NULL;
3254 const u64 lockstart = alloc_start;
3255 const u64 lockend = alloc_end - 1;
3256
3257 bytes_to_reserve = alloc_end - alloc_start;
3258 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3259 bytes_to_reserve);
3260 if (ret < 0)
3261 goto out;
3262 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003263 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3264 &cached_state);
3265 if (ret)
3266 goto out;
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003267 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved,
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003268 alloc_start, bytes_to_reserve);
3269 if (ret)
3270 goto out;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003271 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3272 alloc_end - alloc_start,
3273 i_blocksize(inode),
3274 offset + len, &alloc_hint);
3275 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3276 lockend, &cached_state);
3277 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003278 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003279 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003280 goto out;
3281 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003282 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003283 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003284 out:
3285 if (ret && space_reserved)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003286 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003287 alloc_start, bytes_to_reserve);
3288 extent_changeset_free(data_reserved);
3289
3290 return ret;
3291}
3292
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003293static long btrfs_fallocate(struct file *file, int mode,
3294 loff_t offset, loff_t len)
3295{
Al Viro496ad9a2013-01-23 17:07:38 -05003296 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003297 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003298 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003299 struct falloc_range *range;
3300 struct falloc_range *tmp;
3301 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003302 u64 cur_offset;
3303 u64 last_byte;
3304 u64 alloc_start;
3305 u64 alloc_end;
3306 u64 alloc_hint = 0;
3307 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003308 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003309 struct extent_map *em;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003310 int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003311 int ret;
3312
Miao Xie797f4272012-11-28 10:28:07 +00003313 alloc_start = round_down(offset, blocksize);
3314 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003315 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003316
Josef Bacik2aaa6652012-08-29 14:27:18 -04003317 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003318 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3319 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003320 return -EOPNOTSUPP;
3321
Josef Bacik2aaa6652012-08-29 14:27:18 -04003322 if (mode & FALLOC_FL_PUNCH_HOLE)
3323 return btrfs_punch_hole(inode, offset, len);
3324
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003325 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003326 * Only trigger disk allocation, don't trigger qgroup reserve
3327 *
3328 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003329 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003330 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3331 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3332 alloc_end - alloc_start);
3333 if (ret < 0)
3334 return ret;
3335 }
Chris Masond98456f2012-01-31 20:27:41 -05003336
Al Viro59551022016-01-22 15:40:57 -05003337 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003338
3339 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3340 ret = inode_newsize_ok(inode, offset + len);
3341 if (ret)
3342 goto out;
3343 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003344
Qu Wenruo14524a82015-09-08 17:22:44 +08003345 /*
3346 * TODO: Move these two operations after we have checked
3347 * accurate reserved space, or fallocate can still fail but
3348 * with page truncated or size expanded.
3349 *
3350 * But that's a minor problem and won't do much harm BTW.
3351 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003352 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003353 ret = btrfs_cont_expand(inode, i_size_read(inode),
3354 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003355 if (ret)
3356 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003357 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003358 /*
3359 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303360 * need to zero out the end of the block if i_size lands in the
3361 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003362 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303363 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003364 if (ret)
3365 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003366 }
3367
Josef Bacika71754f2013-06-17 17:14:39 -04003368 /*
3369 * wait for ordered IO before we have any locks. We'll loop again
3370 * below with the locks held.
3371 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003372 ret = btrfs_wait_ordered_range(inode, alloc_start,
3373 alloc_end - alloc_start);
3374 if (ret)
3375 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003376
Filipe Mananaf27451f2017-10-25 11:55:28 +01003377 if (mode & FALLOC_FL_ZERO_RANGE) {
3378 ret = btrfs_zero_range(inode, offset, len, mode);
3379 inode_unlock(inode);
3380 return ret;
3381 }
3382
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003383 locked_end = alloc_end - 1;
3384 while (1) {
3385 struct btrfs_ordered_extent *ordered;
3386
3387 /* the extent lock is ordered inside the running
3388 * transaction
3389 */
3390 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003391 locked_end, &cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03003392 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
3393 locked_end);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003394
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003395 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003396 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003397 ordered->file_offset < alloc_end) {
3398 btrfs_put_ordered_extent(ordered);
3399 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3400 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003401 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003402 /*
3403 * we can't wait on the range with the transaction
3404 * running or with the extent lock held
3405 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003406 ret = btrfs_wait_ordered_range(inode, alloc_start,
3407 alloc_end - alloc_start);
3408 if (ret)
3409 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003410 } else {
3411 if (ordered)
3412 btrfs_put_ordered_extent(ordered);
3413 break;
3414 }
3415 }
3416
Qu Wenruo14524a82015-09-08 17:22:44 +08003417 /* First, check if we exceed the qgroup limit */
3418 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003419 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003420 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003421 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003422 if (IS_ERR(em)) {
3423 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003424 break;
3425 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003426 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003427 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003428 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003429 if (em->block_start == EXTENT_MAP_HOLE ||
3430 (cur_offset >= inode->i_size &&
3431 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003432 ret = add_falloc_range(&reserve_list, cur_offset,
3433 last_byte - cur_offset);
3434 if (ret < 0) {
3435 free_extent_map(em);
3436 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003437 }
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003438 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode),
3439 &data_reserved, cur_offset,
3440 last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003441 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003442 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003443 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003444 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003445 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003446 } else {
3447 /*
3448 * Do not need to reserve unwritten extent for this
3449 * range, free reserved data space first, otherwise
3450 * it'll result in false ENOSPC error.
3451 */
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003452 btrfs_free_reserved_data_space(BTRFS_I(inode),
3453 data_reserved, cur_offset,
3454 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003455 }
3456 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003457 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003458 }
3459
3460 /*
3461 * If ret is still 0, means we're OK to fallocate.
3462 * Or just cleanup the list and exit.
3463 */
3464 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3465 if (!ret)
3466 ret = btrfs_prealloc_file_range(inode, mode,
3467 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003468 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003469 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003470 else
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003471 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08003472 data_reserved, range->start,
3473 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003474 list_del(&range->list);
3475 kfree(range);
3476 }
3477 if (ret < 0)
3478 goto out_unlock;
3479
Filipe Mananaf27451f2017-10-25 11:55:28 +01003480 /*
3481 * We didn't need to allocate any more space, but we still extended the
3482 * size of the file so we need to update i_size and the inode item.
3483 */
3484 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003485out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003486 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003487 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003488out:
Al Viro59551022016-01-22 15:40:57 -05003489 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003490 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003491 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003492 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003493 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003494 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003495 return ret;
3496}
3497
Nikolay Borisovbc802302019-09-27 13:23:18 +03003498static loff_t find_desired_extent(struct inode *inode, loff_t offset,
3499 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003500{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003501 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003502 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003503 struct extent_state *cached_state = NULL;
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003504 loff_t i_size = inode->i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003505 u64 lockstart;
3506 u64 lockend;
3507 u64 start;
3508 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003509 int ret = 0;
3510
Nikolay Borisovbc802302019-09-27 13:23:18 +03003511 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003512 return -ENXIO;
3513
Liu Bo4d1a40c2014-09-16 17:49:30 +08003514 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003515 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003516 * the very start of the file.
3517 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003518 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003519
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003520 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003521 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003522 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003523 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003524 lockend--;
3525 len = lockend - lockstart + 1;
3526
David Sterbaff13db42015-12-03 14:30:40 +01003527 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003528 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003529
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003530 while (start < i_size) {
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02003531 em = btrfs_get_extent_fiemap(BTRFS_I(inode), start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003532 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003533 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003534 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003535 break;
3536 }
3537
Josef Bacik7f4ca372013-10-18 11:44:46 -04003538 if (whence == SEEK_HOLE &&
3539 (em->block_start == EXTENT_MAP_HOLE ||
3540 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3541 break;
3542 else if (whence == SEEK_DATA &&
3543 (em->block_start != EXTENT_MAP_HOLE &&
3544 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3545 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003546
3547 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003548 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003549 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003550 cond_resched();
3551 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003552 free_extent_map(em);
Josef Bacikb2675152011-07-18 13:21:36 -04003553 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003554 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003555 if (ret) {
3556 offset = ret;
3557 } else {
3558 if (whence == SEEK_DATA && start >= i_size)
3559 offset = -ENXIO;
3560 else
3561 offset = min_t(loff_t, start, i_size);
3562 }
3563
3564 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003565}
3566
Andrew Morton965c8e52012-12-17 15:59:39 -08003567static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003568{
3569 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003570
Andrew Morton965c8e52012-12-17 15:59:39 -08003571 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003572 default:
3573 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003574 case SEEK_DATA:
3575 case SEEK_HOLE:
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003576 inode_lock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003577 offset = find_desired_extent(inode, offset, whence);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003578 inode_unlock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003579 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003580 }
3581
Nikolay Borisovbc802302019-09-27 13:23:18 +03003582 if (offset < 0)
3583 return offset;
3584
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003585 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003586}
3587
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003588static int btrfs_file_open(struct inode *inode, struct file *filp)
3589{
Jens Axboe8730f122020-05-22 10:19:22 -06003590 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003591 return generic_file_open(inode, filp);
3592}
3593
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003594static int check_direct_read(struct btrfs_fs_info *fs_info,
3595 const struct iov_iter *iter, loff_t offset)
3596{
3597 int ret;
3598 int i, seg;
3599
3600 ret = check_direct_IO(fs_info, iter, offset);
3601 if (ret < 0)
3602 return ret;
3603
3604 if (!iter_is_iovec(iter))
3605 return 0;
3606
3607 for (seg = 0; seg < iter->nr_segs; seg++)
3608 for (i = seg + 1; i < iter->nr_segs; i++)
3609 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
3610 return -EINVAL;
3611 return 0;
3612}
3613
3614static ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to)
3615{
3616 struct inode *inode = file_inode(iocb->ki_filp);
3617 ssize_t ret;
3618
3619 if (check_direct_read(btrfs_sb(inode->i_sb), to, iocb->ki_pos))
3620 return 0;
3621
3622 inode_lock_shared(inode);
3623 ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops,
3624 is_sync_kiocb(iocb));
3625 inode_unlock_shared(inode);
3626 return ret;
3627}
3628
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003629static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3630{
3631 ssize_t ret = 0;
3632
3633 if (iocb->ki_flags & IOCB_DIRECT) {
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05003634 ret = btrfs_direct_read(iocb, to);
Johannes Thumshirn0425e7b2020-10-22 23:05:05 +09003635 if (ret < 0 || !iov_iter_count(to) ||
3636 iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp)))
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003637 return ret;
3638 }
3639
3640 return generic_file_buffered_read(iocb, to, ret);
3641}
3642
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003643const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003644 .llseek = btrfs_file_llseek,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003645 .read_iter = btrfs_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003646 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003647 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003648 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003649 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003650 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003651 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003652 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003653 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003654 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003655#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003656 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003657#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003658 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003659};
Miao Xie9247f312012-11-26 09:24:43 +00003660
David Sterbae67c7182018-02-19 17:24:18 +01003661void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003662{
Kinglong Mee5598e902016-01-29 21:36:35 +08003663 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003664}
3665
Liu Bof5c29bd2017-11-02 17:21:50 -06003666int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003667{
3668 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3669 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003670 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003671 NULL);
3672 if (!btrfs_inode_defrag_cachep)
3673 return -ENOMEM;
3674
3675 return 0;
3676}
Filipe Manana728404d2014-10-10 09:43:11 +01003677
3678int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3679{
3680 int ret;
3681
3682 /*
3683 * So with compression we will find and lock a dirty page and clear the
3684 * first one as dirty, setup an async extent, and immediately return
3685 * with the entire range locked but with nobody actually marked with
3686 * writeback. So we can't just filemap_write_and_wait_range() and
3687 * expect it to work since it will just kick off a thread to do the
3688 * actual work. So we need to call filemap_fdatawrite_range _again_
3689 * since it will wait on the page lock, which won't be unlocked until
3690 * after the pages have been marked as writeback and so we're good to go
3691 * from there. We have to do this otherwise we'll miss the ordered
3692 * extents and that results in badness. Please Josef, do not think you
3693 * know better and pull this out at some point in the future, it is
3694 * right and you are wrong.
3695 */
3696 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3697 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3698 &BTRFS_I(inode)->runtime_flags))
3699 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3700
3701 return ret;
3702}