blob: b15858e1d75357ed528ff914791ab94c319b33b8 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason39279cc2007-06-12 06:35:45 -04006#include <linux/fs.h>
7#include <linux/pagemap.h>
Chris Mason39279cc2007-06-12 06:35:45 -04008#include <linux/time.h>
9#include <linux/init.h>
10#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040011#include <linux/backing-dev.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010012#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040013#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040014#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000016#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080017#include <linux/uio.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050018#include <linux/iversion.h>
Chris Mason39279cc2007-06-12 06:35:45 -040019#include "ctree.h"
20#include "disk-io.h"
21#include "transaction.h"
22#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040023#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "tree-log.h"
25#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040026#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070027#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080028#include "compression.h"
Josef Bacik86736342019-06-19 15:12:00 -040029#include "delalloc-space.h"
Filipe Manana6a177382020-02-28 13:04:17 +000030#include "reflink.h"
Chris Mason39279cc2007-06-12 06:35:45 -040031
Miao Xie9247f312012-11-26 09:24:43 +000032static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040033/*
34 * when auto defrag is enabled we
35 * queue up these defrag structs to remember which
36 * inodes need defragging passes
37 */
38struct inode_defrag {
39 struct rb_node rb_node;
40 /* objectid */
41 u64 ino;
42 /*
43 * transid where the defrag was added, we search for
44 * extents newer than this
45 */
46 u64 transid;
47
48 /* root objectid */
49 u64 root;
50
51 /* last offset we were able to defrag */
52 u64 last_offset;
53
54 /* if we've wrapped around back to zero once already */
55 int cycled;
56};
57
Miao Xie762f2262012-05-24 18:58:27 +080058static int __compare_inode_defrag(struct inode_defrag *defrag1,
59 struct inode_defrag *defrag2)
60{
61 if (defrag1->root > defrag2->root)
62 return 1;
63 else if (defrag1->root < defrag2->root)
64 return -1;
65 else if (defrag1->ino > defrag2->ino)
66 return 1;
67 else if (defrag1->ino < defrag2->ino)
68 return -1;
69 else
70 return 0;
71}
72
Chris Mason4cb53002011-05-24 15:35:30 -040073/* pop a record for an inode into the defrag tree. The lock
74 * must be held already
75 *
76 * If you're inserting a record for an older transid than an
77 * existing record, the transid already in the tree is lowered
78 *
79 * If an existing record is found the defrag item you
80 * pass in is freed
81 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020082static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040083 struct inode_defrag *defrag)
84{
David Sterba3ffbd682018-06-29 10:56:42 +020085 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040086 struct inode_defrag *entry;
87 struct rb_node **p;
88 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080089 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040090
Jeff Mahoney0b246af2016-06-22 18:54:23 -040091 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040092 while (*p) {
93 parent = *p;
94 entry = rb_entry(parent, struct inode_defrag, rb_node);
95
Miao Xie762f2262012-05-24 18:58:27 +080096 ret = __compare_inode_defrag(defrag, entry);
97 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040098 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +080099 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400100 p = &parent->rb_right;
101 else {
102 /* if we're reinserting an entry for
103 * an old defrag run, make sure to
104 * lower the transid of our existing record
105 */
106 if (defrag->transid < entry->transid)
107 entry->transid = defrag->transid;
108 if (defrag->last_offset > entry->last_offset)
109 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000110 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400111 }
112 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200113 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400114 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400115 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000116 return 0;
117}
Chris Mason4cb53002011-05-24 15:35:30 -0400118
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400119static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000120{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400121 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000122 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400123
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400124 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000125 return 0;
126
127 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400128}
129
130/*
131 * insert a defrag record for this inode if auto defrag is
132 * enabled
133 */
134int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200135 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400136{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200137 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200138 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400139 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400140 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000141 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400142
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400143 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400144 return 0;
145
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200146 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400147 return 0;
148
149 if (trans)
150 transid = trans->transid;
151 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200152 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400153
Miao Xie9247f312012-11-26 09:24:43 +0000154 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400155 if (!defrag)
156 return -ENOMEM;
157
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200158 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400159 defrag->transid = transid;
160 defrag->root = root->root_key.objectid;
161
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400162 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200163 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000164 /*
165 * If we set IN_DEFRAG flag and evict the inode from memory,
166 * and then re-read this inode, this new inode doesn't have
167 * IN_DEFRAG flag. At the case, we may find the existed defrag.
168 */
169 ret = __btrfs_add_inode_defrag(inode, defrag);
170 if (ret)
171 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
172 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000173 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000174 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400175 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000176 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400177}
178
179/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000180 * Requeue the defrag object. If there is a defrag object that points to
181 * the same inode in the tree, we will merge them together (by
182 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400183 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200184static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000185 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000186{
David Sterba3ffbd682018-06-29 10:56:42 +0200187 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000188 int ret;
189
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400190 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000191 goto out;
192
193 /*
194 * Here we don't check the IN_DEFRAG flag, because we need merge
195 * them together.
196 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400197 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000198 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400199 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000200 if (ret)
201 goto out;
202 return;
203out:
204 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
205}
206
207/*
Miao Xie26176e72012-11-26 09:26:20 +0000208 * pick the defragable inode that we want, if it doesn't exist, we will get
209 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400210 */
Miao Xie26176e72012-11-26 09:26:20 +0000211static struct inode_defrag *
212btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400213{
214 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800215 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400216 struct rb_node *p;
217 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800218 int ret;
219
220 tmp.ino = ino;
221 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400222
Miao Xie26176e72012-11-26 09:26:20 +0000223 spin_lock(&fs_info->defrag_inodes_lock);
224 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400225 while (p) {
226 parent = p;
227 entry = rb_entry(parent, struct inode_defrag, rb_node);
228
Miao Xie762f2262012-05-24 18:58:27 +0800229 ret = __compare_inode_defrag(&tmp, entry);
230 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400231 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800232 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400233 p = parent->rb_right;
234 else
Miao Xie26176e72012-11-26 09:26:20 +0000235 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400236 }
237
Miao Xie26176e72012-11-26 09:26:20 +0000238 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
239 parent = rb_next(parent);
240 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400241 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000242 else
243 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400244 }
Miao Xie26176e72012-11-26 09:26:20 +0000245out:
246 if (entry)
247 rb_erase(parent, &fs_info->defrag_inodes);
248 spin_unlock(&fs_info->defrag_inodes_lock);
249 return entry;
250}
251
252void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
253{
254 struct inode_defrag *defrag;
255 struct rb_node *node;
256
257 spin_lock(&fs_info->defrag_inodes_lock);
258 node = rb_first(&fs_info->defrag_inodes);
259 while (node) {
260 rb_erase(node, &fs_info->defrag_inodes);
261 defrag = rb_entry(node, struct inode_defrag, rb_node);
262 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
263
David Sterba351810c2015-01-08 15:20:54 +0100264 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000265
266 node = rb_first(&fs_info->defrag_inodes);
267 }
268 spin_unlock(&fs_info->defrag_inodes_lock);
269}
270
271#define BTRFS_DEFRAG_BATCH 1024
272
273static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
274 struct inode_defrag *defrag)
275{
276 struct btrfs_root *inode_root;
277 struct inode *inode;
Miao Xie26176e72012-11-26 09:26:20 +0000278 struct btrfs_ioctl_defrag_range_args range;
279 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000280 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000281
282 /* get the inode */
David Sterba56e93572020-05-15 19:35:55 +0200283 inode_root = btrfs_get_fs_root(fs_info, defrag->root, true);
Miao Xie26176e72012-11-26 09:26:20 +0000284 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000285 ret = PTR_ERR(inode_root);
286 goto cleanup;
287 }
Miao Xie26176e72012-11-26 09:26:20 +0000288
David Sterba0202e832020-05-15 19:35:59 +0200289 inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root);
Josef Bacik00246522020-01-24 09:33:01 -0500290 btrfs_put_root(inode_root);
Miao Xie26176e72012-11-26 09:26:20 +0000291 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000292 ret = PTR_ERR(inode);
293 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000294 }
295
296 /* do a chunk of defrag */
297 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
298 memset(&range, 0, sizeof(range));
299 range.len = (u64)-1;
300 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000301
302 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000303 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
304 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000305 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000306 /*
307 * if we filled the whole defrag batch, there
308 * must be more work to do. Queue this defrag
309 * again
310 */
311 if (num_defrag == BTRFS_DEFRAG_BATCH) {
312 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200313 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000314 } else if (defrag->last_offset && !defrag->cycled) {
315 /*
316 * we didn't fill our defrag batch, but
317 * we didn't start at zero. Make sure we loop
318 * around to the start of the file.
319 */
320 defrag->last_offset = 0;
321 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200322 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000323 } else {
324 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
325 }
326
327 iput(inode);
328 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000329cleanup:
Liu Bo6f1c3602013-01-29 03:22:10 +0000330 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
331 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400332}
333
334/*
335 * run through the list of inodes in the FS that need
336 * defragging
337 */
338int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
339{
340 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400341 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800342 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400343
344 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530345 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700346 /* Pause the auto defragger. */
347 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
348 &fs_info->fs_state))
349 break;
350
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400351 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000352 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400353
354 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000355 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
356 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400357 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000358 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800359 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400360 first_ino = 0;
361 continue;
362 } else {
363 break;
364 }
365 }
366
Chris Mason4cb53002011-05-24 15:35:30 -0400367 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800368 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400369
Miao Xie26176e72012-11-26 09:26:20 +0000370 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400371 }
Chris Mason4cb53002011-05-24 15:35:30 -0400372 atomic_dec(&fs_info->defrag_running);
373
374 /*
375 * during unmount, we use the transaction_wait queue to
376 * wait for the defragger to stop
377 */
378 wake_up(&fs_info->transaction_wait);
379 return 0;
380}
Chris Mason39279cc2007-06-12 06:35:45 -0400381
Chris Masond352ac62008-09-29 15:18:18 -0400382/* simple helper to fault in pages and copy. This should go away
383 * and be replaced with calls into generic code.
384 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800385static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400386 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400387 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400388{
Xin Zhong914ee292010-12-09 09:30:14 +0000389 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500390 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400391 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100392 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400393
Josef Bacik11c65dc2010-05-23 11:07:21 -0400394 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400395 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300396 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400397 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000398 /*
399 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000400 */
Xin Zhong914ee292010-12-09 09:30:14 +0000401 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400402
Chris Mason39279cc2007-06-12 06:35:45 -0400403 /* Flush processor's dcache for this page */
404 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500405
406 /*
407 * if we get a partial write, we can end up with
408 * partially up to date pages. These add
409 * a lot of complexity, so make sure they don't
410 * happen by forcing this copy to be retried.
411 *
412 * The rest of the btrfs_file_write code will fall
413 * back to page at a time copies after we return 0.
414 */
415 if (!PageUptodate(page) && copied < count)
416 copied = 0;
417
Josef Bacik11c65dc2010-05-23 11:07:21 -0400418 iov_iter_advance(i, copied);
419 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000420 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400421
Al Virob30ac0f2014-04-03 14:29:04 -0400422 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500423 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000424 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400425
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300426 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400427 offset += copied;
428 } else {
429 pg++;
430 offset = 0;
431 }
Chris Mason39279cc2007-06-12 06:35:45 -0400432 }
Xin Zhong914ee292010-12-09 09:30:14 +0000433 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400434}
435
Chris Masond352ac62008-09-29 15:18:18 -0400436/*
437 * unlocks pages after btrfs_file_write is done with them
438 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000439static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400440{
441 size_t i;
442 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400443 /* page checked is some magic around finding pages that
444 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700445 * clear it here. There should be no need to mark the pages
446 * accessed as prepare_pages should have marked them accessed
447 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400448 */
Chris Mason4a096752008-07-21 10:29:44 -0400449 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400450 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300451 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400452 }
453}
454
Filipe Mananaf48bf662017-11-03 22:26:44 +0000455static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
456 const u64 start,
457 const u64 len,
458 struct extent_state **cached_state)
459{
460 u64 search_start = start;
461 const u64 end = start + len - 1;
462
463 while (search_start < end) {
464 const u64 search_len = end - search_start + 1;
465 struct extent_map *em;
466 u64 em_len;
467 int ret = 0;
468
Omar Sandoval39b07b52019-12-02 17:34:23 -0800469 em = btrfs_get_extent(inode, NULL, 0, search_start, search_len);
Filipe Mananaf48bf662017-11-03 22:26:44 +0000470 if (IS_ERR(em))
471 return PTR_ERR(em);
472
473 if (em->block_start != EXTENT_MAP_HOLE)
474 goto next;
475
476 em_len = em->len;
477 if (em->start < search_start)
478 em_len -= search_start - em->start;
479 if (em_len > search_len)
480 em_len = search_len;
481
482 ret = set_extent_bit(&inode->io_tree, search_start,
483 search_start + em_len - 1,
484 EXTENT_DELALLOC_NEW,
485 NULL, cached_state, GFP_NOFS);
486next:
487 search_start = extent_map_end(em);
488 free_extent_map(em);
489 if (ret)
490 return ret;
491 }
492 return 0;
493}
494
Chris Masond352ac62008-09-29 15:18:18 -0400495/*
496 * after copy_from_user, pages need to be dirtied and we need to make
497 * sure holes are created between the current EOF and the start of
498 * any next extents (if required).
499 *
500 * this also makes the decision about creating an inline extent vs
501 * doing real data extents, marking pages dirty and delalloc as required.
502 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400503int btrfs_dirty_pages(struct inode *inode, struct page **pages,
504 size_t num_pages, loff_t pos, size_t write_bytes,
505 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400506{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400507 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -0400508 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400509 int i;
Chris Masondb945352007-10-15 16:15:53 -0400510 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400511 u64 start_pos;
512 u64 end_of_last_block;
513 u64 end_pos = pos + write_bytes;
514 loff_t isize = i_size_read(inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000515 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400516
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400517 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400518 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400519 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400520
Chris Masondb945352007-10-15 16:15:53 -0400521 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000522
Chris Mason7703bdd2018-06-20 07:56:11 -0700523 /*
524 * The pages may have already been dirty, clear out old accounting so
525 * we can set things up properly
526 */
527 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700528 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
529 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700530
Filipe Mananae3b8a482017-11-04 00:16:59 +0000531 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
532 if (start_pos >= isize &&
533 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
534 /*
535 * There can't be any extents following eof in this case
536 * so just set the delalloc new bit for the range
537 * directly.
538 */
539 extra_bits |= EXTENT_DELALLOC_NEW;
540 } else {
541 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
542 start_pos,
543 num_bytes, cached);
544 if (err)
545 return err;
546 }
547 }
548
Josef Bacik2ac55d42010-02-03 19:33:23 +0000549 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300550 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500551 if (err)
552 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400553
Chris Masonc8b97812008-10-29 14:49:59 -0400554 for (i = 0; i < num_pages; i++) {
555 struct page *p = pages[i];
556 SetPageUptodate(p);
557 ClearPageChecked(p);
558 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400559 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500560
561 /*
562 * we've only changed i_size in ram, and we haven't updated
563 * the disk i_size. There is no need to log the inode
564 * at this time.
565 */
566 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400567 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400568 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400569}
570
Chris Masond352ac62008-09-29 15:18:18 -0400571/*
572 * this drops all the extents in the cache that intersect the range
573 * [start, end]. Existing extents are split as required.
574 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200575void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400576 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400577{
578 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400579 struct extent_map *split = NULL;
580 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200581 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500582 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400583 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400584 int ret;
585 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400586 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400587 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400588 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400589
Chris Masone6dcd2d2008-07-17 12:53:50 -0400590 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400591 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500592 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400593 testend = 0;
594 }
Chris Masond3977122009-01-05 21:25:51 -0500595 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400596 int no_splits = 0;
597
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400598 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400599 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200600 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400601 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200602 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400603 if (!split || !split2)
604 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400605
Chris Mason890871b2009-09-02 16:24:52 -0400606 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500607 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500608 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400609 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400610 break;
Chris Masond1310b22008-01-24 16:13:08 -0500611 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400612 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400613 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400614 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000615 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400616 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400617 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400618 break;
619 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000620 start = em->start + em->len;
621 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400622 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400623 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400624 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400625 continue;
626 }
Chris Masonc8b97812008-10-29 14:49:59 -0400627 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400628 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600629 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400630 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400631 if (no_splits)
632 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400633
Josef Bacikee20a982013-07-11 10:34:59 -0400634 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400635 split->start = em->start;
636 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400637
Josef Bacikee20a982013-07-11 10:34:59 -0400638 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
639 split->orig_start = em->orig_start;
640 split->block_start = em->block_start;
641
642 if (compressed)
643 split->block_len = em->block_len;
644 else
645 split->block_len = split->len;
646 split->orig_block_len = max(split->block_len,
647 em->orig_block_len);
648 split->ram_bytes = em->ram_bytes;
649 } else {
650 split->orig_start = split->start;
651 split->block_len = 0;
652 split->block_start = em->block_start;
653 split->orig_block_len = 0;
654 split->ram_bytes = split->len;
655 }
656
Josef Bacik5dc562c2012-08-17 13:14:17 -0400657 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400658 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800659 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000660 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400661 free_extent_map(split);
662 split = split2;
663 split2 = NULL;
664 }
Josef Bacikee20a982013-07-11 10:34:59 -0400665 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400666 u64 diff = start + len - em->start;
667
668 split->start = start + len;
669 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400670 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800671 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400672 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400673
Josef Bacikee20a982013-07-11 10:34:59 -0400674 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
675 split->orig_block_len = max(em->block_len,
676 em->orig_block_len);
677
678 split->ram_bytes = em->ram_bytes;
679 if (compressed) {
680 split->block_len = em->block_len;
681 split->block_start = em->block_start;
682 split->orig_start = em->orig_start;
683 } else {
684 split->block_len = split->len;
685 split->block_start = em->block_start
686 + diff;
687 split->orig_start = em->orig_start;
688 }
Chris Masonc8b97812008-10-29 14:49:59 -0400689 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400690 split->ram_bytes = split->len;
691 split->orig_start = split->start;
692 split->block_len = 0;
693 split->block_start = em->block_start;
694 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400695 }
Chris Mason3b951512008-04-17 11:29:12 -0400696
Filipe Manana176840b2014-02-25 14:15:13 +0000697 if (extent_map_in_tree(em)) {
698 replace_extent_mapping(em_tree, em, split,
699 modified);
700 } else {
701 ret = add_extent_mapping(em_tree, split,
702 modified);
703 ASSERT(ret == 0); /* Logic error */
704 }
Chris Mason3b951512008-04-17 11:29:12 -0400705 free_extent_map(split);
706 split = NULL;
707 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400708next:
Filipe Manana176840b2014-02-25 14:15:13 +0000709 if (extent_map_in_tree(em))
710 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400711 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500712
Chris Masona52d9a82007-08-27 16:49:44 -0400713 /* once for us */
714 free_extent_map(em);
715 /* once for the tree*/
716 free_extent_map(em);
717 }
Chris Mason3b951512008-04-17 11:29:12 -0400718 if (split)
719 free_extent_map(split);
720 if (split2)
721 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400722}
723
Chris Mason39279cc2007-06-12 06:35:45 -0400724/*
725 * this is very complex, but the basic idea is to drop all extents
726 * in the range start - end. hint_block is filled in with a block number
727 * that would be a good hint to the block allocator for this file.
728 *
729 * If an extent intersects the range but is not entirely inside the range
730 * it is either truncated or split. Anything entirely inside the range
731 * is deleted from the tree.
732 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400733int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
734 struct btrfs_root *root, struct inode *inode,
735 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000736 u64 *drop_end, int drop_cache,
737 int replace_extent,
738 u32 extent_item_size,
739 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400740{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400741 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500742 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000743 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800744 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500745 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000746 struct btrfs_key new_key;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200747 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000748 u64 search_start = start;
749 u64 disk_bytenr = 0;
750 u64 num_bytes = 0;
751 u64 extent_offset = 0;
752 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500753 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000754 int del_nr = 0;
755 int del_slot = 0;
756 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400757 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500758 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400759 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800760 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400761 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000762 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400763
Chris Masona1ed8352009-09-11 12:27:37 -0400764 if (drop_cache)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200765 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400766
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000767 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400768 modify_tree = 0;
769
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800770 update_refs = (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400771 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500772 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400773 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800774 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400775 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400776 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000777 break;
778 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
779 leaf = path->nodes[0];
780 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800781 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000782 key.type == BTRFS_EXTENT_DATA_KEY)
783 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400784 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400785 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000786 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000787next_slot:
788 leaf = path->nodes[0];
789 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
790 BUG_ON(del_nr > 0);
791 ret = btrfs_next_leaf(root, path);
792 if (ret < 0)
793 break;
794 if (ret > 0) {
795 ret = 0;
796 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400797 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000798 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000799 leaf = path->nodes[0];
800 recow = 1;
801 }
802
803 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000804
805 if (key.objectid > ino)
806 break;
807 if (WARN_ON_ONCE(key.objectid < ino) ||
808 key.type < BTRFS_EXTENT_DATA_KEY) {
809 ASSERT(del_nr == 0);
810 path->slots[0]++;
811 goto next_slot;
812 }
813 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000814 break;
815
816 fi = btrfs_item_ptr(leaf, path->slots[0],
817 struct btrfs_file_extent_item);
818 extent_type = btrfs_file_extent_type(leaf, fi);
819
820 if (extent_type == BTRFS_FILE_EXTENT_REG ||
821 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
822 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
823 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
824 extent_offset = btrfs_file_extent_offset(leaf, fi);
825 extent_end = key.offset +
826 btrfs_file_extent_num_bytes(leaf, fi);
827 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
828 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800829 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400830 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000831 /* can't happen */
832 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400833 }
834
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100835 /*
836 * Don't skip extent items representing 0 byte lengths. They
837 * used to be created (bug) if while punching holes we hit
838 * -ENOSPC condition. So if we find one here, just ensure we
839 * delete it, otherwise we would insert a new file extent item
840 * with the same key (offset) as that 0 bytes length file
841 * extent item in the call to setup_items_for_insert() later
842 * in this function.
843 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500844 if (extent_end == key.offset && extent_end >= search_start) {
845 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100846 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500847 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100848
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000849 if (extent_end <= search_start) {
850 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400851 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400852 }
853
Josef Bacikc3308f82012-09-14 14:51:22 -0400854 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000855 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400856 if (recow || !modify_tree) {
857 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200858 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000859 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400860 }
Chris Mason771ed682008-11-06 22:02:51 -0500861
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000862 /*
863 * | - range to drop - |
864 * | -------- extent -------- |
865 */
866 if (start > key.offset && end < extent_end) {
867 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800868 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200869 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800870 break;
871 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000872
873 memcpy(&new_key, &key, sizeof(new_key));
874 new_key.offset = start;
875 ret = btrfs_duplicate_item(trans, root, path,
876 &new_key);
877 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200878 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000879 continue;
880 }
881 if (ret < 0)
882 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400883
Chris Mason5f39d392007-10-15 16:14:19 -0400884 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000885 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
886 struct btrfs_file_extent_item);
887 btrfs_set_file_extent_num_bytes(leaf, fi,
888 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400889
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000890 fi = btrfs_item_ptr(leaf, path->slots[0],
891 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400892
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893 extent_offset += start - key.offset;
894 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
895 btrfs_set_file_extent_num_bytes(leaf, fi,
896 extent_end - start);
897 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400898
Josef Bacik5dc562c2012-08-17 13:14:17 -0400899 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800900 btrfs_init_generic_ref(&ref,
901 BTRFS_ADD_DELAYED_REF,
902 disk_bytenr, num_bytes, 0);
903 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000904 root->root_key.objectid,
905 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100906 start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800907 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100908 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400909 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000910 key.offset = start;
911 }
912 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500913 * From here on out we will have actually dropped something, so
914 * last_end can be updated.
915 */
916 last_end = extent_end;
917
918 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000919 * | ---- range to drop ----- |
920 * | -------- extent -------- |
921 */
922 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800923 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200924 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800925 break;
926 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000927
928 memcpy(&new_key, &key, sizeof(new_key));
929 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400930 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000931
932 extent_offset += end - key.offset;
933 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
934 btrfs_set_file_extent_num_bytes(leaf, fi,
935 extent_end - end);
936 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400937 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000938 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000939 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400940 }
941
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000942 search_start = extent_end;
943 /*
944 * | ---- range to drop ----- |
945 * | -------- extent -------- |
946 */
947 if (start > key.offset && end >= extent_end) {
948 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800949 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200950 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800951 break;
952 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000953
954 btrfs_set_file_extent_num_bytes(leaf, fi,
955 start - key.offset);
956 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400957 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000958 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000959 if (end == extent_end)
960 break;
961
962 path->slots[0]++;
963 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400964 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000965
966 /*
967 * | ---- range to drop ----- |
968 * | ------ extent ------ |
969 */
970 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100971delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000972 if (del_nr == 0) {
973 del_slot = path->slots[0];
974 del_nr = 1;
975 } else {
976 BUG_ON(del_slot + del_nr != path->slots[0]);
977 del_nr++;
978 }
979
Josef Bacik5dc562c2012-08-17 13:14:17 -0400980 if (update_refs &&
981 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000982 inode_sub_bytes(inode,
983 extent_end - key.offset);
984 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400985 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400986 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800987 btrfs_init_generic_ref(&ref,
988 BTRFS_DROP_DELAYED_REF,
989 disk_bytenr, num_bytes, 0);
990 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000991 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800992 key.objectid,
993 key.offset - extent_offset);
994 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100995 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000996 inode_sub_bytes(inode,
997 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000998 }
999
1000 if (end == extent_end)
1001 break;
1002
1003 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1004 path->slots[0]++;
1005 goto next_slot;
1006 }
1007
1008 ret = btrfs_del_items(trans, root, path, del_slot,
1009 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001010 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001011 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001012 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001013 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001014
1015 del_nr = 0;
1016 del_slot = 0;
1017
David Sterbab3b4aa72011-04-21 01:20:15 +02001018 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001019 continue;
1020 }
1021
Arnd Bergmann290342f2019-03-25 14:02:25 +01001022 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -04001023 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001024
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001025 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001026 /*
1027 * Set path->slots[0] to first slot, so that after the delete
1028 * if items are move off from our leaf to its immediate left or
1029 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001030 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001031 */
1032 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001033 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001034 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001035 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001036 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001037
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001038 leaf = path->nodes[0];
1039 /*
1040 * If btrfs_del_items() was called, it might have deleted a leaf, in
1041 * which case it unlocked our path, so check path->locks[0] matches a
1042 * write lock.
1043 */
1044 if (!ret && replace_extent && leafs_visited == 1 &&
1045 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1046 path->locks[0] == BTRFS_WRITE_LOCK) &&
David Sterbae902baa2019-03-20 14:36:46 +01001047 btrfs_leaf_free_space(leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001048 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001049
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001050 key.objectid = ino;
1051 key.type = BTRFS_EXTENT_DATA_KEY;
1052 key.offset = start;
1053 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1054 struct btrfs_key slot_key;
1055
1056 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1057 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1058 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001059 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001060 setup_items_for_insert(root, path, &key,
1061 &extent_item_size,
1062 extent_item_size,
1063 sizeof(struct btrfs_item) +
1064 extent_item_size, 1);
1065 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001066 }
1067
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001068 if (!replace_extent || !(*key_inserted))
1069 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001070 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001071 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001072 return ret;
1073}
1074
1075int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1076 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001077 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001078{
1079 struct btrfs_path *path;
1080 int ret;
1081
1082 path = btrfs_alloc_path();
1083 if (!path)
1084 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001085 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001086 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001087 btrfs_free_path(path);
1088 return ret;
1089}
1090
Yan Zhengd899e052008-10-30 14:25:28 -04001091static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001092 u64 objectid, u64 bytenr, u64 orig_offset,
1093 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001094{
1095 struct btrfs_file_extent_item *fi;
1096 struct btrfs_key key;
1097 u64 extent_end;
1098
1099 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1100 return 0;
1101
1102 btrfs_item_key_to_cpu(leaf, &key, slot);
1103 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1104 return 0;
1105
1106 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1107 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1108 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001109 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001110 btrfs_file_extent_compression(leaf, fi) ||
1111 btrfs_file_extent_encryption(leaf, fi) ||
1112 btrfs_file_extent_other_encoding(leaf, fi))
1113 return 0;
1114
1115 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1116 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1117 return 0;
1118
1119 *start = key.offset;
1120 *end = extent_end;
1121 return 1;
1122}
1123
1124/*
1125 * Mark extent in the range start - end as written.
1126 *
1127 * This changes extent type from 'pre-allocated' to 'regular'. If only
1128 * part of extent is marked as written, the extent will be split into
1129 * two or three.
1130 */
1131int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001132 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001133{
David Sterba3ffbd682018-06-29 10:56:42 +02001134 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001135 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001136 struct extent_buffer *leaf;
1137 struct btrfs_path *path;
1138 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001139 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001140 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001141 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001142 u64 bytenr;
1143 u64 num_bytes;
1144 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001145 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001146 u64 other_start;
1147 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001148 u64 split;
1149 int del_nr = 0;
1150 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001151 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001152 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001153 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001154
Yan Zhengd899e052008-10-30 14:25:28 -04001155 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001156 if (!path)
1157 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001158again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001159 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001160 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001161 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001162 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001163 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001164
1165 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001166 if (ret < 0)
1167 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001168 if (ret > 0 && path->slots[0] > 0)
1169 path->slots[0]--;
1170
1171 leaf = path->nodes[0];
1172 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001173 if (key.objectid != ino ||
1174 key.type != BTRFS_EXTENT_DATA_KEY) {
1175 ret = -EINVAL;
1176 btrfs_abort_transaction(trans, ret);
1177 goto out;
1178 }
Yan Zhengd899e052008-10-30 14:25:28 -04001179 fi = btrfs_item_ptr(leaf, path->slots[0],
1180 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001181 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1182 ret = -EINVAL;
1183 btrfs_abort_transaction(trans, ret);
1184 goto out;
1185 }
Yan Zhengd899e052008-10-30 14:25:28 -04001186 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001187 if (key.offset > start || extent_end < end) {
1188 ret = -EINVAL;
1189 btrfs_abort_transaction(trans, ret);
1190 goto out;
1191 }
Yan Zhengd899e052008-10-30 14:25:28 -04001192
1193 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1194 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001195 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001196 memcpy(&new_key, &key, sizeof(new_key));
1197
1198 if (start == key.offset && end < extent_end) {
1199 other_start = 0;
1200 other_end = start;
1201 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001202 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001203 &other_start, &other_end)) {
1204 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001205 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001206 fi = btrfs_item_ptr(leaf, path->slots[0],
1207 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001208 btrfs_set_file_extent_generation(leaf, fi,
1209 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001210 btrfs_set_file_extent_num_bytes(leaf, fi,
1211 extent_end - end);
1212 btrfs_set_file_extent_offset(leaf, fi,
1213 end - orig_offset);
1214 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1215 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001216 btrfs_set_file_extent_generation(leaf, fi,
1217 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001218 btrfs_set_file_extent_num_bytes(leaf, fi,
1219 end - other_start);
1220 btrfs_mark_buffer_dirty(leaf);
1221 goto out;
1222 }
1223 }
1224
1225 if (start > key.offset && end == extent_end) {
1226 other_start = end;
1227 other_end = 0;
1228 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001229 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001230 &other_start, &other_end)) {
1231 fi = btrfs_item_ptr(leaf, path->slots[0],
1232 struct btrfs_file_extent_item);
1233 btrfs_set_file_extent_num_bytes(leaf, fi,
1234 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001235 btrfs_set_file_extent_generation(leaf, fi,
1236 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001237 path->slots[0]++;
1238 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001239 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001240
1241 fi = btrfs_item_ptr(leaf, path->slots[0],
1242 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001243 btrfs_set_file_extent_generation(leaf, fi,
1244 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001245 btrfs_set_file_extent_num_bytes(leaf, fi,
1246 other_end - start);
1247 btrfs_set_file_extent_offset(leaf, fi,
1248 start - orig_offset);
1249 btrfs_mark_buffer_dirty(leaf);
1250 goto out;
1251 }
1252 }
Yan Zhengd899e052008-10-30 14:25:28 -04001253
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001254 while (start > key.offset || end < extent_end) {
1255 if (key.offset == start)
1256 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001257
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001258 new_key.offset = split;
1259 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1260 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001261 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001262 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001263 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001264 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001265 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001266 goto out;
1267 }
Yan Zhengd899e052008-10-30 14:25:28 -04001268
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001269 leaf = path->nodes[0];
1270 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001271 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001272 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001273 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001274 split - key.offset);
1275
1276 fi = btrfs_item_ptr(leaf, path->slots[0],
1277 struct btrfs_file_extent_item);
1278
Josef Bacik224ecce2012-08-16 16:32:06 -04001279 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001280 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1281 btrfs_set_file_extent_num_bytes(leaf, fi,
1282 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001283 btrfs_mark_buffer_dirty(leaf);
1284
Qu Wenruo82fa1132019-04-04 14:45:35 +08001285 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1286 num_bytes, 0);
1287 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1288 orig_offset);
1289 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001290 if (ret) {
1291 btrfs_abort_transaction(trans, ret);
1292 goto out;
1293 }
Yan Zhengd899e052008-10-30 14:25:28 -04001294
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001295 if (split == start) {
1296 key.offset = start;
1297 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001298 if (start != key.offset) {
1299 ret = -EINVAL;
1300 btrfs_abort_transaction(trans, ret);
1301 goto out;
1302 }
Yan Zhengd899e052008-10-30 14:25:28 -04001303 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001304 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001305 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001306 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001307 }
1308
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001309 other_start = end;
1310 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001311 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1312 num_bytes, 0);
1313 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001314 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001315 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001316 &other_start, &other_end)) {
1317 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001318 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001319 goto again;
1320 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001321 extent_end = other_end;
1322 del_slot = path->slots[0] + 1;
1323 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001324 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001325 if (ret) {
1326 btrfs_abort_transaction(trans, ret);
1327 goto out;
1328 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001329 }
1330 other_start = 0;
1331 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001332 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001333 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001334 &other_start, &other_end)) {
1335 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001336 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001337 goto again;
1338 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001339 key.offset = other_start;
1340 del_slot = path->slots[0];
1341 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001342 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001343 if (ret) {
1344 btrfs_abort_transaction(trans, ret);
1345 goto out;
1346 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001347 }
1348 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001349 fi = btrfs_item_ptr(leaf, path->slots[0],
1350 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001351 btrfs_set_file_extent_type(leaf, fi,
1352 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001353 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001354 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001355 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001356 fi = btrfs_item_ptr(leaf, del_slot - 1,
1357 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001358 btrfs_set_file_extent_type(leaf, fi,
1359 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001360 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001361 btrfs_set_file_extent_num_bytes(leaf, fi,
1362 extent_end - key.offset);
1363 btrfs_mark_buffer_dirty(leaf);
1364
1365 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001366 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001367 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001368 goto out;
1369 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001370 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001371out:
Yan Zhengd899e052008-10-30 14:25:28 -04001372 btrfs_free_path(path);
1373 return 0;
1374}
1375
Chris Mason39279cc2007-06-12 06:35:45 -04001376/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001377 * on error we return an unlocked page and the error value
1378 * on success we return a locked page and 0
1379 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001380static int prepare_uptodate_page(struct inode *inode,
1381 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001382 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001383{
1384 int ret = 0;
1385
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001386 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001387 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001388 ret = btrfs_readpage(NULL, page);
1389 if (ret)
1390 return ret;
1391 lock_page(page);
1392 if (!PageUptodate(page)) {
1393 unlock_page(page);
1394 return -EIO;
1395 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001396 if (page->mapping != inode->i_mapping) {
1397 unlock_page(page);
1398 return -EAGAIN;
1399 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001400 }
1401 return 0;
1402}
1403
1404/*
Miao Xie376cc682013-12-10 19:25:04 +08001405 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001406 */
Miao Xieb37392e2013-12-10 19:25:03 +08001407static noinline int prepare_pages(struct inode *inode, struct page **pages,
1408 size_t num_pages, loff_t pos,
1409 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001410{
1411 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001412 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001413 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001414 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001415 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001416
Chris Mason39279cc2007-06-12 06:35:45 -04001417 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001418again:
Josef Bacika94733d2011-07-11 10:47:06 -04001419 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001420 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001421 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001422 faili = i - 1;
1423 err = -ENOMEM;
1424 goto fail;
1425 }
1426
1427 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001428 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001429 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001430 if (!err && i == num_pages - 1)
1431 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001432 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001433 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001434 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001435 if (err == -EAGAIN) {
1436 err = 0;
1437 goto again;
1438 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001439 faili = i - 1;
1440 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001441 }
Chris Masonccd467d2007-06-28 15:57:36 -04001442 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001443 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001444
Chris Mason39279cc2007-06-12 06:35:45 -04001445 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001446fail:
1447 while (faili >= 0) {
1448 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001449 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001450 faili--;
1451 }
1452 return err;
1453
Chris Mason39279cc2007-06-12 06:35:45 -04001454}
1455
Miao Xie376cc682013-12-10 19:25:04 +08001456/*
1457 * This function locks the extent and properly waits for data=ordered extents
1458 * to finish before allowing the pages to be modified if need.
1459 *
1460 * The return value:
1461 * 1 - the extent is locked
1462 * 0 - the extent is not locked, and everything is OK
1463 * -EAGAIN - need re-prepare the pages
1464 * the other < 0 number - Something wrong happens
1465 */
1466static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001467lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001468 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301469 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001470 u64 *lockstart, u64 *lockend,
1471 struct extent_state **cached_state)
1472{
David Sterba3ffbd682018-06-29 10:56:42 +02001473 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001474 u64 start_pos;
1475 u64 last_pos;
1476 int i;
1477 int ret = 0;
1478
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001479 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301480 last_pos = start_pos
Jeff Mahoneyda170662016-06-15 09:22:56 -04001481 + round_up(pos + write_bytes - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001482 fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001483
Filipe Mananae3b8a482017-11-04 00:16:59 +00001484 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001485 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001486
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001487 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1488 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001489 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1490 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001491 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001492 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001493 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001494 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001495 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001496 for (i = 0; i < num_pages; i++) {
1497 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001498 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001499 }
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001500 btrfs_start_ordered_extent(&inode->vfs_inode,
1501 ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001502 btrfs_put_ordered_extent(ordered);
1503 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001504 }
1505 if (ordered)
1506 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001507
Miao Xie376cc682013-12-10 19:25:04 +08001508 *lockstart = start_pos;
1509 *lockend = last_pos;
1510 ret = 1;
1511 }
1512
Chris Mason7703bdd2018-06-20 07:56:11 -07001513 /*
1514 * It's possible the pages are dirty right now, but we don't want
1515 * to clean them yet because copy_from_user may catch a page fault
1516 * and we might have to fall back to one page at a time. If that
1517 * happens, we'll unlock these pages and we'd have a window where
1518 * reclaim could sneak in and drop the once-dirty page on the floor
1519 * without writing it.
1520 *
1521 * We have the pages locked and the extent range locked, so there's
1522 * no way someone can start IO on any dirty pages in this range.
1523 *
1524 * We'll call btrfs_dirty_pages() later on, and that will flip around
1525 * delalloc bits and dirty the pages as required.
1526 */
Miao Xie376cc682013-12-10 19:25:04 +08001527 for (i = 0; i < num_pages; i++) {
Miao Xie376cc682013-12-10 19:25:04 +08001528 set_page_extent_mapped(pages[i]);
1529 WARN_ON(!PageLocked(pages[i]));
1530 }
1531
1532 return ret;
1533}
1534
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001535static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001536 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001537{
David Sterba3ffbd682018-06-29 10:56:42 +02001538 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001539 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001540 u64 lockstart, lockend;
1541 u64 num_bytes;
1542 int ret;
1543
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001544 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001545 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001546
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001547 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001548 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001549 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001550 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001551
1552 if (nowait) {
1553 struct btrfs_ordered_extent *ordered;
1554
1555 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1556 return -EAGAIN;
1557
1558 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1559 num_bytes);
1560 if (ordered) {
1561 btrfs_put_ordered_extent(ordered);
1562 ret = -EAGAIN;
1563 goto out_unlock;
1564 }
1565 } else {
1566 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1567 lockend, NULL);
1568 }
1569
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001570 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1571 NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001572 if (ret <= 0) {
1573 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001574 if (!nowait)
1575 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001576 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001577 *write_bytes = min_t(size_t, *write_bytes ,
1578 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001579 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001580out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001581 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001582
1583 return ret;
1584}
1585
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001586static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1587 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001588{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001589 struct file *file = iocb->ki_filp;
1590 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001591 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001592 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001593 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001594 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001595 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001596 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001597 u64 lockstart;
1598 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001599 size_t num_written = 0;
1600 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001601 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001602 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001603 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001604
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001605 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1606 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001607 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1608 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001609 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001610 if (!pages)
1611 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001612
Josef Bacikd0215f32011-01-25 14:57:24 -05001613 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001614 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001615 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301616 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001617 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001618 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001619 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001620 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001621 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001622 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001623 size_t dirty_pages;
1624 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301625 size_t dirty_sectors;
1626 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001627 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001628
Chris Mason8c2383c2007-06-18 09:57:58 -04001629 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001630
Xin Zhong914ee292010-12-09 09:30:14 +00001631 /*
1632 * Fault pages before locking them in prepare_pages
1633 * to avoid recursive lock
1634 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001635 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001636 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001637 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001638 }
1639
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001640 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001641 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301642 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001643 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001644
Qu Wenruo364ecf32017-02-27 15:10:38 +08001645 extent_changeset_release(data_reserved);
1646 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1647 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001648 if (ret < 0) {
1649 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1650 BTRFS_INODE_PREALLOC)) &&
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001651 check_can_nocow(BTRFS_I(inode), pos,
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001652 &write_bytes, false) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001653 /*
1654 * For nodata cow case, no need to reserve
1655 * data space.
1656 */
1657 only_release_metadata = true;
1658 /*
1659 * our prealloc extent may be smaller than
1660 * write_bytes, so scale down.
1661 */
1662 num_pages = DIV_ROUND_UP(write_bytes + offset,
1663 PAGE_SIZE);
1664 reserve_bytes = round_up(write_bytes +
1665 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001666 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001667 } else {
1668 break;
1669 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001670 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001671
Josef Bacik8b62f872017-10-19 14:15:55 -04001672 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001673 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1674 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001675 if (ret) {
1676 if (!only_release_metadata)
Qu Wenruobc42bda2017-02-27 15:10:39 +08001677 btrfs_free_reserved_data_space(inode,
1678 data_reserved, pos,
1679 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001680 else
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02001681 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001682 break;
1683 }
1684
1685 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001686again:
Josef Bacik4a640012011-01-25 15:10:08 -05001687 /*
1688 * This is going to setup the pages array with the number of
1689 * pages we want, so we don't really need to worry about the
1690 * contents of pages from loop to loop
1691 */
Miao Xieb37392e2013-12-10 19:25:03 +08001692 ret = prepare_pages(inode, pages, num_pages,
1693 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001694 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001695 if (ret) {
1696 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001697 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001698 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001699 }
Chris Mason39279cc2007-06-12 06:35:45 -04001700
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001701 extents_locked = lock_and_cleanup_extent_if_need(
1702 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001703 num_pages, pos, write_bytes, &lockstart,
1704 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001705 if (extents_locked < 0) {
1706 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001707 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001708 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001709 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001710 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001711 break;
Miao Xie376cc682013-12-10 19:25:04 +08001712 }
1713
Zhao Leiee22f0c2016-01-06 18:47:31 +08001714 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001715
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001716 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001717 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001718 fs_info->sectorsize);
1719 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001720
Chris Masonb1bf8622011-02-28 09:52:08 -05001721 /*
1722 * if we have trouble faulting in the pages, fall
1723 * back to one page at a time
1724 */
1725 if (copied < write_bytes)
1726 nrptrs = 1;
1727
Josef Bacikb63164292011-09-30 15:23:54 -04001728 if (copied == 0) {
1729 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001730 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001731 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001732 } else {
1733 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001734 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001735 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001736 }
Xin Zhong914ee292010-12-09 09:30:14 +00001737
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301738 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001739 /* release everything except the sectors we dirtied */
1740 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001741 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001742 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001743 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001744 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001745 } else {
1746 u64 __pos;
1747
Jeff Mahoneyda170662016-06-15 09:22:56 -04001748 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001749 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001750 (dirty_pages << PAGE_SHIFT);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001751 btrfs_delalloc_release_space(inode,
1752 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001753 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001754 }
Xin Zhong914ee292010-12-09 09:30:14 +00001755 }
1756
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301757 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001758 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001759
1760 if (copied > 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001761 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
Filipe Manana94f45072017-10-31 17:59:54 +00001762 pos, copied, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001763
1764 /*
1765 * If we have not locked the extent range, because the range's
1766 * start offset is >= i_size, we might still have a non-NULL
1767 * cached extent state, acquired while marking the extent range
1768 * as delalloc through btrfs_dirty_pages(). Therefore free any
1769 * possible cached extent state to avoid a memory leak.
1770 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001771 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001772 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001773 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001774 else
1775 free_extent_state(cached_state);
1776
Qu Wenruo8702ba92019-10-14 14:34:51 +08001777 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001778 if (ret) {
1779 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001780 break;
Miao Xief1de9682014-01-09 10:06:10 +08001781 }
Chris Mason39279cc2007-06-12 06:35:45 -04001782
Josef Bacik7ee9e442013-06-21 16:37:03 -04001783 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001784 if (only_release_metadata)
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02001785 btrfs_drew_write_unlock(&root->snapshot_lock);
Miao Xie8257b2d2014-03-06 13:38:19 +08001786
Josef Bacik7ee9e442013-06-21 16:37:03 -04001787 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001788 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001789 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001790 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001791 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001792
1793 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1794 lockend, EXTENT_NORESERVE, NULL,
1795 NULL, GFP_NOFS);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001796 }
1797
Miao Xief1de9682014-01-09 10:06:10 +08001798 btrfs_drop_pages(pages, num_pages);
1799
Josef Bacikd0215f32011-01-25 14:57:24 -05001800 cond_resched();
1801
Namjae Jeond0e1d662012-12-11 16:00:21 -08001802 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001803
Xin Zhong914ee292010-12-09 09:30:14 +00001804 pos += copied;
1805 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001806 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001807
Chris Mason8c2383c2007-06-18 09:57:58 -04001808 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001809
Josef Bacik7ee9e442013-06-21 16:37:03 -04001810 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001811 if (only_release_metadata) {
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02001812 btrfs_drew_write_unlock(&root->snapshot_lock);
Nikolay Borisov691fa052017-02-20 13:50:42 +02001813 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001814 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001815 } else {
Qu Wenruobc42bda2017-02-27 15:10:39 +08001816 btrfs_delalloc_release_space(inode, data_reserved,
1817 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001818 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001819 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001820 }
1821
Qu Wenruo364ecf32017-02-27 15:10:38 +08001822 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001823 return num_written ? num_written : ret;
1824}
1825
David Sterbaf4c48b42020-06-09 19:19:27 +02001826static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001827{
1828 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001829 struct inode *inode = file_inode(file);
David Sterbaf4c48b42020-06-09 19:19:27 +02001830 loff_t pos;
1831 ssize_t written;
Josef Bacikd0215f32011-01-25 14:57:24 -05001832 ssize_t written_buffered;
1833 loff_t endbyte;
1834 int err;
1835
David Sterba55e20bd2020-06-09 19:56:06 +02001836 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001837
Al Viro0c949332014-03-22 06:51:37 -04001838 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001839 return written;
1840
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001841 pos = iocb->ki_pos;
1842 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001843 if (written_buffered < 0) {
1844 err = written_buffered;
1845 goto out;
1846 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001847 /*
1848 * Ensure all data is persisted. We want the next direct IO read to be
1849 * able to read what was just written.
1850 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001851 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001852 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001853 if (err)
1854 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001855 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001856 if (err)
1857 goto out;
1858 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001859 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001860 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1861 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001862out:
1863 return written ? written : err;
1864}
1865
Josef Bacik6c760c02012-11-09 10:53:21 -05001866static void update_time_for_write(struct inode *inode)
1867{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001868 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001869
1870 if (IS_NOCMTIME(inode))
1871 return;
1872
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001873 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001874 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001875 inode->i_mtime = now;
1876
Deepa Dinamani95582b02018-05-08 19:36:02 -07001877 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001878 inode->i_ctime = now;
1879
1880 if (IS_I_VERSION(inode))
1881 inode_inc_iversion(inode);
1882}
1883
Al Virob30ac0f2014-04-03 14:29:04 -04001884static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1885 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001886{
1887 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001888 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001889 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001890 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001891 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001892 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001893 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07001894 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Al Viro3309dd02015-04-09 12:55:47 -04001895 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001896 loff_t pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001897 size_t count;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301898 loff_t oldsize;
1899 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001900
Christoph Hellwig91f99432017-08-29 16:13:20 +02001901 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1902 (iocb->ki_flags & IOCB_NOWAIT))
1903 return -EOPNOTSUPP;
1904
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001905 if (iocb->ki_flags & IOCB_NOWAIT) {
1906 if (!inode_trylock(inode))
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001907 return -EAGAIN;
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001908 } else {
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001909 inode_lock(inode);
1910 }
1911
1912 err = generic_write_checks(iocb, from);
1913 if (err <= 0) {
1914 inode_unlock(inode);
1915 return err;
1916 }
1917
1918 pos = iocb->ki_pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001919 count = iov_iter_count(from);
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001920 if (iocb->ki_flags & IOCB_NOWAIT) {
Filipe Manana260a6332020-06-15 18:49:13 +01001921 size_t nocow_bytes = count;
1922
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001923 /*
1924 * We will allocate space in case nodatacow is not set,
1925 * so bail
1926 */
1927 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1928 BTRFS_INODE_PREALLOC)) ||
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001929 check_can_nocow(BTRFS_I(inode), pos, &nocow_bytes,
1930 true) <= 0) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001931 inode_unlock(inode);
1932 return -EAGAIN;
1933 }
Filipe Manana260a6332020-06-15 18:49:13 +01001934 /*
1935 * There are holes in the range or parts of the range that must
1936 * be COWed (shared extents, RO block groups, etc), so just bail
1937 * out.
1938 */
1939 if (nocow_bytes < count) {
1940 inode_unlock(inode);
1941 return -EAGAIN;
1942 }
Al Viro3309dd02015-04-09 12:55:47 -04001943 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001944
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001945 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001946 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001947 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001948 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001949 goto out;
1950 }
1951
1952 /*
1953 * If BTRFS flips readonly due to some impossible error
1954 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1955 * although we have opened a file as writable, we have
1956 * to stop this write operation to ensure FS consistency.
1957 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001958 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001959 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001960 err = -EROFS;
1961 goto out;
1962 }
1963
Josef Bacik6c760c02012-11-09 10:53:21 -05001964 /*
1965 * We reserve space for updating the inode when we reserve space for the
1966 * extent we are going to write, so we will enospc out there. We don't
1967 * need to start yet another transaction to update the inode as we will
1968 * update the inode when we finish writing whatever data we write.
1969 */
1970 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001971
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001972 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301973 oldsize = i_size_read(inode);
1974 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001975 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001976 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001977 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301978 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001979 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001980 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001981 goto out;
1982 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001983 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301984 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001985 }
1986
Josef Bacikb812ce22012-11-16 13:56:32 -05001987 if (sync)
1988 atomic_inc(&BTRFS_I(inode)->sync_writers);
1989
Al Viro2ba48ce2015-04-09 13:52:01 -04001990 if (iocb->ki_flags & IOCB_DIRECT) {
David Sterbaf4c48b42020-06-09 19:19:27 +02001991 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001992 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001993 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001994 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001995 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301996 if (clean_page)
1997 pagecache_isize_extended(inode, oldsize,
1998 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001999 }
2000
Al Viro59551022016-01-22 15:40:57 -05002001 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04002002
Chris Mason5a3f23d2009-03-31 13:27:11 -04002003 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05002004 * We also have to set last_sub_trans to the current log transid,
2005 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002006 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04002007 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002008 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05002009 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002010 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07002011 if (num_written > 0)
2012 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002013
Josef Bacikb812ce22012-11-16 13:56:32 -05002014 if (sync)
2015 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00002016out:
Chris Mason39279cc2007-06-12 06:35:45 -04002017 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002018 return num_written ? num_written : err;
2019}
2020
Chris Masond3977122009-01-05 21:25:51 -05002021int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002022{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002023 struct btrfs_file_private *private = filp->private_data;
2024
Josef Bacik23b5ec72017-07-24 15:14:25 -04002025 if (private && private->filldir_buf)
2026 kfree(private->filldir_buf);
2027 kfree(private);
2028 filp->private_data = NULL;
2029
Chris Masonf6dc45c2014-08-20 07:15:33 -07002030 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +01002031 * ordered_data_close is set by setattr when we are about to truncate
Chris Masonf6dc45c2014-08-20 07:15:33 -07002032 * a file from a non-zero size to a zero size. This tries to
2033 * flush down new bytes that may have been written if the
2034 * application were using truncate to replace a file in place.
2035 */
2036 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
2037 &BTRFS_I(inode)->runtime_flags))
2038 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002039 return 0;
2040}
2041
Filipe Manana669249e2014-09-02 11:09:58 +01002042static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2043{
2044 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002045 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002046
Liu Bo343e4fc2017-11-15 16:10:28 -07002047 /*
2048 * This is only called in fsync, which would do synchronous writes, so
2049 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2050 * multiple disks using raid profile, a large IO can be split to
2051 * several segments of stripe length (currently 64K).
2052 */
2053 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002054 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002055 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002056 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002057 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002058
2059 return ret;
2060}
2061
Chris Masond352ac62008-09-29 15:18:18 -04002062/*
2063 * fsync call for both files and directories. This logs the inode into
2064 * the tree log instead of forcing full commits whenever possible.
2065 *
2066 * It needs to call filemap_fdatawait so that all ordered extent updates are
2067 * in the metadata btree are up to date for copying to the log.
2068 *
2069 * It drops the inode mutex before doing the tree log commit. This is an
2070 * important optimization for directories because holding the mutex prevents
2071 * new operations on the dir while we write to disk.
2072 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002073int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002074{
Filipe Mananade17e792016-03-30 19:03:13 -04002075 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002076 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002077 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002078 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002079 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002080 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002081 int ret = 0, err;
Chris Mason39279cc2007-06-12 06:35:45 -04002082
liubo1abe9b82011-03-24 11:18:59 +00002083 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002084
Liu Boebb70442017-11-21 14:35:40 -07002085 btrfs_init_log_ctx(&ctx, inode);
2086
Miao Xie90abccf2012-09-13 04:53:47 -06002087 /*
Filipe Manana95418ed2020-03-09 12:41:05 +00002088 * Set the range to full if the NO_HOLES feature is not enabled.
2089 * This is to avoid missing file extent items representing holes after
2090 * replaying the log.
2091 */
2092 if (!btrfs_fs_incompat(fs_info, NO_HOLES)) {
2093 start = 0;
2094 end = LLONG_MAX;
2095 }
2096
2097 /*
Miao Xie90abccf2012-09-13 04:53:47 -06002098 * We write the dirty pages in the range and wait until they complete
2099 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002100 * multi-task, and make the performance up. See
2101 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002102 */
Filipe Manana669249e2014-09-02 11:09:58 +01002103 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002104 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002105 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002106
Al Viro59551022016-01-22 15:40:57 -05002107 inode_lock(inode);
Josef Bacikc4951442018-10-12 15:32:32 -04002108
2109 /*
2110 * We take the dio_sem here because the tree log stuff can race with
2111 * lockless dio writes and get an extent map logged for an extent we
2112 * never waited on. We need it this high up for lockdep reasons.
2113 */
2114 down_write(&BTRFS_I(inode)->dio_sem);
2115
Miao Xie2ecb7922012-09-06 04:04:27 -06002116 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002117
Filipe Manana669249e2014-09-02 11:09:58 +01002118 /*
Filipe Manana7af59742020-04-07 11:37:44 +01002119 * If the inode needs a full sync, make sure we use a full range to
2120 * avoid log tree corruption, due to hole detection racing with ordered
2121 * extent completion for adjacent ranges and races between logging and
2122 * completion of ordered extents for adjancent ranges - both races
2123 * could lead to file extent items in the log with overlapping ranges.
2124 * Do this while holding the inode lock, to avoid races with other
2125 * tasks.
2126 */
2127 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2128 &BTRFS_I(inode)->runtime_flags)) {
2129 start = 0;
2130 end = LLONG_MAX;
2131 }
2132
2133 /*
Filipe Mananaaab15e82018-11-12 10:23:58 +00002134 * Before we acquired the inode's lock, someone may have dirtied more
2135 * pages in the target range. We need to make sure that writeback for
2136 * any such pages does not start while we are logging the inode, because
2137 * if it does, any of the following might happen when we are not doing a
2138 * full inode sync:
2139 *
2140 * 1) We log an extent after its writeback finishes but before its
2141 * checksums are added to the csum tree, leading to -EIO errors
2142 * when attempting to read the extent after a log replay.
2143 *
2144 * 2) We can end up logging an extent before its writeback finishes.
2145 * Therefore after the log replay we will have a file extent item
2146 * pointing to an unwritten extent (and no data checksums as well).
2147 *
2148 * So trigger writeback for any eventual new dirty pages and then we
2149 * wait for all ordered extents to complete below.
2150 */
2151 ret = start_ordered_ops(inode, start, end);
2152 if (ret) {
Robbie Ko6ff06722020-03-17 14:31:02 +08002153 up_write(&BTRFS_I(inode)->dio_sem);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002154 inode_unlock(inode);
2155 goto out;
2156 }
2157
2158 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002159 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002160 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002161 *
2162 * Also, the range length can be represented by u64, we have to do the
2163 * typecasts to avoid signed overflow if it's [0, LLONG_MAX].
Filipe Manana669249e2014-09-02 11:09:58 +01002164 */
Filipe Mananaba0b0842019-10-16 16:28:52 +01002165 ret = btrfs_wait_ordered_range(inode, start, (u64)end - (u64)start + 1);
Filipe Manana669249e2014-09-02 11:09:58 +01002166 if (ret) {
Josef Bacikc4951442018-10-12 15:32:32 -04002167 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002168 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002169 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002170 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002171 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002172
Josef Bacika4abeea2011-04-11 17:25:13 -04002173 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002174 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
David Sterbaca5788a2018-07-19 15:27:46 +02002175 BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002176 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002177 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002178 * modified so clear this flag in case it was set for whatever
2179 * reason, it's no longer relevant.
2180 */
2181 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2182 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002183 /*
2184 * An ordered extent might have started before and completed
2185 * already with io errors, in which case the inode was not
2186 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002187 * for any errors that might have happened since we last
2188 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002189 */
Jeff Layton333427a2017-07-06 07:02:31 -04002190 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Josef Bacikc4951442018-10-12 15:32:32 -04002191 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002192 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002193 goto out;
2194 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002195
2196 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002197 * We use start here because we will need to wait on the IO to complete
2198 * in btrfs_sync_log, which could require joining a transaction (for
2199 * example checking cross references in the nocow path). If we use join
2200 * here we could get into a situation where we're waiting on IO to
2201 * happen that is blocked on a transaction trying to commit. With start
2202 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002203 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002204 * from thinking they are super smart and changing this to
2205 * btrfs_join_transaction *cough*Josef*cough*.
2206 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002207 trans = btrfs_start_transaction(root, 0);
2208 if (IS_ERR(trans)) {
2209 ret = PTR_ERR(trans);
Josef Bacikc4951442018-10-12 15:32:32 -04002210 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002211 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002212 goto out;
2213 }
Chris Masone02119d2008-09-05 16:13:11 -04002214
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02002215 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002216 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002217 /* Fallthrough and commit/free transaction. */
2218 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002219 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002220
2221 /* we've logged all the items and now have a consistent
2222 * version of the file in the log. It is possible that
2223 * someone will come in and modify the file, but that's
2224 * fine because the log is consistent on disk, and we
2225 * have references to all of the file's extents
2226 *
2227 * It is possible that someone will come in and log the
2228 * file again, but that will end up using the synchronization
2229 * inside btrfs_sync_log to keep things safe.
2230 */
Josef Bacikc4951442018-10-12 15:32:32 -04002231 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002232 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002233
Chris Mason257c62e2009-10-13 13:21:08 -04002234 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002235 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002236 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002237 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002238 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002239 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002240 }
Chris Mason257c62e2009-10-13 13:21:08 -04002241 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002242 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002243 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002244 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002245 }
Chris Mason39279cc2007-06-12 06:35:45 -04002246out:
Liu Boebb70442017-11-21 14:35:40 -07002247 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002248 err = file_check_and_advance_wb_err(file);
2249 if (!ret)
2250 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002251 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002252}
2253
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002254static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002255 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002256 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002257 .page_mkwrite = btrfs_page_mkwrite,
2258};
2259
2260static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2261{
Miao Xie058a4572010-05-20 07:21:50 +00002262 struct address_space *mapping = filp->f_mapping;
2263
2264 if (!mapping->a_ops->readpage)
2265 return -ENOEXEC;
2266
Chris Mason9ebefb182007-06-15 13:50:00 -04002267 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002268 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002269
Chris Mason9ebefb182007-06-15 13:50:00 -04002270 return 0;
2271}
2272
Nikolay Borisov35339c22017-02-20 13:50:46 +02002273static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002274 int slot, u64 start, u64 end)
2275{
2276 struct btrfs_file_extent_item *fi;
2277 struct btrfs_key key;
2278
2279 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2280 return 0;
2281
2282 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002283 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002284 key.type != BTRFS_EXTENT_DATA_KEY)
2285 return 0;
2286
2287 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2288
2289 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2290 return 0;
2291
2292 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2293 return 0;
2294
2295 if (key.offset == end)
2296 return 1;
2297 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2298 return 1;
2299 return 0;
2300}
2301
Nikolay Borisova012a742017-02-20 13:50:47 +02002302static int fill_holes(struct btrfs_trans_handle *trans,
2303 struct btrfs_inode *inode,
2304 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002305{
David Sterba3ffbd682018-06-29 10:56:42 +02002306 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002307 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002308 struct extent_buffer *leaf;
2309 struct btrfs_file_extent_item *fi;
2310 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002311 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002312 struct btrfs_key key;
2313 int ret;
2314
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002315 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002316 goto out;
2317
Nikolay Borisova012a742017-02-20 13:50:47 +02002318 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002319 key.type = BTRFS_EXTENT_DATA_KEY;
2320 key.offset = offset;
2321
Josef Bacik2aaa6652012-08-29 14:27:18 -04002322 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002323 if (ret <= 0) {
2324 /*
2325 * We should have dropped this offset, so if we find it then
2326 * something has gone horribly wrong.
2327 */
2328 if (ret == 0)
2329 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002330 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002331 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002332
2333 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002334 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002335 u64 num_bytes;
2336
2337 path->slots[0]--;
2338 fi = btrfs_item_ptr(leaf, path->slots[0],
2339 struct btrfs_file_extent_item);
2340 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2341 end - offset;
2342 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2343 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2344 btrfs_set_file_extent_offset(leaf, fi, 0);
2345 btrfs_mark_buffer_dirty(leaf);
2346 goto out;
2347 }
2348
chandan1707e262014-07-01 12:04:28 +05302349 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002350 u64 num_bytes;
2351
Josef Bacik2aaa6652012-08-29 14:27:18 -04002352 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002353 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002354 fi = btrfs_item_ptr(leaf, path->slots[0],
2355 struct btrfs_file_extent_item);
2356 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2357 offset;
2358 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2359 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2360 btrfs_set_file_extent_offset(leaf, fi, 0);
2361 btrfs_mark_buffer_dirty(leaf);
2362 goto out;
2363 }
2364 btrfs_release_path(path);
2365
Nikolay Borisova012a742017-02-20 13:50:47 +02002366 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002367 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002368 if (ret)
2369 return ret;
2370
2371out:
2372 btrfs_release_path(path);
2373
2374 hole_em = alloc_extent_map();
2375 if (!hole_em) {
2376 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002377 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002378 } else {
2379 hole_em->start = offset;
2380 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002381 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002382 hole_em->orig_start = offset;
2383
2384 hole_em->block_start = EXTENT_MAP_HOLE;
2385 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002386 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002387 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2388 hole_em->generation = trans->transid;
2389
2390 do {
2391 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2392 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002393 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002394 write_unlock(&em_tree->lock);
2395 } while (ret == -EEXIST);
2396 free_extent_map(hole_em);
2397 if (ret)
2398 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002399 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002400 }
2401
2402 return 0;
2403}
2404
Qu Wenruod7781542014-05-30 15:16:10 +08002405/*
2406 * Find a hole extent on given inode and change start/len to the end of hole
2407 * extent.(hole/vacuum extent whose em->start <= start &&
2408 * em->start + em->len > start)
2409 * When a hole extent is found, return 1 and modify start/len.
2410 */
2411static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2412{
Filipe Manana609805d2017-05-30 05:29:09 +01002413 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002414 struct extent_map *em;
2415 int ret = 0;
2416
Filipe Manana609805d2017-05-30 05:29:09 +01002417 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2418 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002419 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002420 if (IS_ERR(em))
2421 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002422
2423 /* Hole or vacuum extent(only exists in no-hole mode) */
2424 if (em->block_start == EXTENT_MAP_HOLE) {
2425 ret = 1;
2426 *len = em->start + em->len > *start + *len ?
2427 0 : *start + *len - em->start - em->len;
2428 *start = em->start + em->len;
2429 }
2430 free_extent_map(em);
2431 return ret;
2432}
2433
Filipe Mananaf27451f2017-10-25 11:55:28 +01002434static int btrfs_punch_hole_lock_range(struct inode *inode,
2435 const u64 lockstart,
2436 const u64 lockend,
2437 struct extent_state **cached_state)
2438{
2439 while (1) {
2440 struct btrfs_ordered_extent *ordered;
2441 int ret;
2442
2443 truncate_pagecache_range(inode, lockstart, lockend);
2444
2445 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2446 cached_state);
2447 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2448
2449 /*
2450 * We need to make sure we have no ordered extents in this range
2451 * and nobody raced in and read a page in this range, if we did
2452 * we need to try again.
2453 */
2454 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002455 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002456 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002457 !filemap_range_has_page(inode->i_mapping,
2458 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002459 if (ordered)
2460 btrfs_put_ordered_extent(ordered);
2461 break;
2462 }
2463 if (ordered)
2464 btrfs_put_ordered_extent(ordered);
2465 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2466 lockend, cached_state);
2467 ret = btrfs_wait_ordered_range(inode, lockstart,
2468 lockend - lockstart + 1);
2469 if (ret)
2470 return ret;
2471 }
2472 return 0;
2473}
2474
Filipe Manana690a5db2019-07-05 11:09:50 +01002475static int btrfs_insert_clone_extent(struct btrfs_trans_handle *trans,
2476 struct inode *inode,
2477 struct btrfs_path *path,
2478 struct btrfs_clone_extent_info *clone_info,
2479 const u64 clone_len)
2480{
2481 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2482 struct btrfs_root *root = BTRFS_I(inode)->root;
2483 struct btrfs_file_extent_item *extent;
2484 struct extent_buffer *leaf;
2485 struct btrfs_key key;
2486 int slot;
2487 struct btrfs_ref ref = { 0 };
2488 u64 ref_offset;
2489 int ret;
2490
2491 if (clone_len == 0)
2492 return 0;
2493
2494 if (clone_info->disk_offset == 0 &&
2495 btrfs_fs_incompat(fs_info, NO_HOLES))
2496 return 0;
2497
2498 key.objectid = btrfs_ino(BTRFS_I(inode));
2499 key.type = BTRFS_EXTENT_DATA_KEY;
2500 key.offset = clone_info->file_offset;
2501 ret = btrfs_insert_empty_item(trans, root, path, &key,
2502 clone_info->item_size);
2503 if (ret)
2504 return ret;
2505 leaf = path->nodes[0];
2506 slot = path->slots[0];
2507 write_extent_buffer(leaf, clone_info->extent_buf,
2508 btrfs_item_ptr_offset(leaf, slot),
2509 clone_info->item_size);
2510 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2511 btrfs_set_file_extent_offset(leaf, extent, clone_info->data_offset);
2512 btrfs_set_file_extent_num_bytes(leaf, extent, clone_len);
2513 btrfs_mark_buffer_dirty(leaf);
2514 btrfs_release_path(path);
2515
Josef Bacik9ddc9592020-01-17 09:02:22 -05002516 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
2517 clone_info->file_offset, clone_len);
2518 if (ret)
2519 return ret;
2520
Filipe Manana690a5db2019-07-05 11:09:50 +01002521 /* If it's a hole, nothing more needs to be done. */
2522 if (clone_info->disk_offset == 0)
2523 return 0;
2524
2525 inode_add_bytes(inode, clone_len);
2526 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
2527 clone_info->disk_offset,
2528 clone_info->disk_len, 0);
2529 ref_offset = clone_info->file_offset - clone_info->data_offset;
2530 btrfs_init_data_ref(&ref, root->root_key.objectid,
2531 btrfs_ino(BTRFS_I(inode)), ref_offset);
2532 ret = btrfs_inc_extent_ref(trans, &ref);
2533
2534 return ret;
2535}
2536
Filipe Manana9cba40a2019-06-28 23:11:26 +01002537/*
2538 * The respective range must have been previously locked, as well as the inode.
2539 * The end offset is inclusive (last byte of the range).
Filipe Manana690a5db2019-07-05 11:09:50 +01002540 * @clone_info is NULL for fallocate's hole punching and non-NULL for extent
2541 * cloning.
2542 * When cloning, we don't want to end up in a state where we dropped extents
2543 * without inserting a new one, so we must abort the transaction to avoid a
2544 * corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002545 */
Filipe Manana690a5db2019-07-05 11:09:50 +01002546int btrfs_punch_hole_range(struct inode *inode, struct btrfs_path *path,
2547 const u64 start, const u64 end,
2548 struct btrfs_clone_extent_info *clone_info,
2549 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002550{
2551 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2bd36e72019-08-22 15:14:33 -04002552 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002553 u64 ino_size = round_up(inode->i_size, fs_info->sectorsize);
2554 struct btrfs_root *root = BTRFS_I(inode)->root;
2555 struct btrfs_trans_handle *trans = NULL;
2556 struct btrfs_block_rsv *rsv;
2557 unsigned int rsv_count;
2558 u64 cur_offset;
2559 u64 drop_end;
2560 u64 len = end - start;
2561 int ret = 0;
2562
2563 if (end <= start)
2564 return -EINVAL;
2565
2566 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2567 if (!rsv) {
2568 ret = -ENOMEM;
2569 goto out;
2570 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002571 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002572 rsv->failfast = 1;
2573
2574 /*
2575 * 1 - update the inode
2576 * 1 - removing the extents in the range
Filipe Manana690a5db2019-07-05 11:09:50 +01002577 * 1 - adding the hole extent if no_holes isn't set or if we are cloning
2578 * an extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002579 */
Filipe Manana690a5db2019-07-05 11:09:50 +01002580 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || clone_info)
2581 rsv_count = 3;
2582 else
2583 rsv_count = 2;
2584
Filipe Manana9cba40a2019-06-28 23:11:26 +01002585 trans = btrfs_start_transaction(root, rsv_count);
2586 if (IS_ERR(trans)) {
2587 ret = PTR_ERR(trans);
2588 trans = NULL;
2589 goto out_free;
2590 }
2591
2592 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2593 min_size, false);
2594 BUG_ON(ret);
2595 trans->block_rsv = rsv;
2596
2597 cur_offset = start;
2598 while (cur_offset < end) {
2599 ret = __btrfs_drop_extents(trans, root, inode, path,
2600 cur_offset, end + 1, &drop_end,
2601 1, 0, 0, NULL);
Filipe Manana690a5db2019-07-05 11:09:50 +01002602 if (ret != -ENOSPC) {
2603 /*
2604 * When cloning we want to avoid transaction aborts when
2605 * nothing was done and we are attempting to clone parts
2606 * of inline extents, in such cases -EOPNOTSUPP is
2607 * returned by __btrfs_drop_extents() without having
2608 * changed anything in the file.
2609 */
2610 if (clone_info && ret && ret != -EOPNOTSUPP)
2611 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002612 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002613 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002614
2615 trans->block_rsv = &fs_info->trans_block_rsv;
2616
Filipe Manana690a5db2019-07-05 11:09:50 +01002617 if (!clone_info && cur_offset < drop_end &&
2618 cur_offset < ino_size) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002619 ret = fill_holes(trans, BTRFS_I(inode), path,
2620 cur_offset, drop_end);
2621 if (ret) {
2622 /*
2623 * If we failed then we didn't insert our hole
2624 * entries for the area we dropped, so now the
2625 * fs is corrupted, so we must abort the
2626 * transaction.
2627 */
2628 btrfs_abort_transaction(trans, ret);
2629 break;
2630 }
Josef Bacik9ddc9592020-01-17 09:02:22 -05002631 } else if (!clone_info && cur_offset < drop_end) {
2632 /*
2633 * We are past the i_size here, but since we didn't
2634 * insert holes we need to clear the mapped area so we
2635 * know to not set disk_i_size in this area until a new
2636 * file extent is inserted here.
2637 */
2638 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2639 cur_offset, drop_end - cur_offset);
2640 if (ret) {
2641 /*
2642 * We couldn't clear our area, so we could
2643 * presumably adjust up and corrupt the fs, so
2644 * we need to abort.
2645 */
2646 btrfs_abort_transaction(trans, ret);
2647 break;
2648 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002649 }
2650
Filipe Mananafcb97052019-12-05 16:57:39 +00002651 if (clone_info && drop_end > clone_info->file_offset) {
2652 u64 clone_len = drop_end - clone_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002653
2654 ret = btrfs_insert_clone_extent(trans, inode, path,
2655 clone_info, clone_len);
2656 if (ret) {
2657 btrfs_abort_transaction(trans, ret);
2658 break;
2659 }
2660 clone_info->data_len -= clone_len;
2661 clone_info->data_offset += clone_len;
2662 clone_info->file_offset += clone_len;
2663 }
2664
Filipe Manana9cba40a2019-06-28 23:11:26 +01002665 cur_offset = drop_end;
2666
2667 ret = btrfs_update_inode(trans, root, inode);
2668 if (ret)
2669 break;
2670
2671 btrfs_end_transaction(trans);
2672 btrfs_btree_balance_dirty(fs_info);
2673
2674 trans = btrfs_start_transaction(root, rsv_count);
2675 if (IS_ERR(trans)) {
2676 ret = PTR_ERR(trans);
2677 trans = NULL;
2678 break;
2679 }
2680
2681 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2682 rsv, min_size, false);
2683 BUG_ON(ret); /* shouldn't happen */
2684 trans->block_rsv = rsv;
2685
Filipe Manana690a5db2019-07-05 11:09:50 +01002686 if (!clone_info) {
2687 ret = find_first_non_hole(inode, &cur_offset, &len);
2688 if (unlikely(ret < 0))
2689 break;
2690 if (ret && !len) {
2691 ret = 0;
2692 break;
2693 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002694 }
2695 }
2696
Filipe Manana690a5db2019-07-05 11:09:50 +01002697 /*
2698 * If we were cloning, force the next fsync to be a full one since we
2699 * we replaced (or just dropped in the case of cloning holes when
2700 * NO_HOLES is enabled) extents and extent maps.
2701 * This is for the sake of simplicity, and cloning into files larger
2702 * than 16Mb would force the full fsync any way (when
2703 * try_release_extent_mapping() is invoked during page cache truncation.
2704 */
2705 if (clone_info)
2706 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2707 &BTRFS_I(inode)->runtime_flags);
2708
Filipe Manana9cba40a2019-06-28 23:11:26 +01002709 if (ret)
2710 goto out_trans;
2711
2712 trans->block_rsv = &fs_info->trans_block_rsv;
2713 /*
2714 * If we are using the NO_HOLES feature we might have had already an
2715 * hole that overlaps a part of the region [lockstart, lockend] and
2716 * ends at (or beyond) lockend. Since we have no file extent items to
2717 * represent holes, drop_end can be less than lockend and so we must
2718 * make sure we have an extent map representing the existing hole (the
2719 * call to __btrfs_drop_extents() might have dropped the existing extent
2720 * map representing the existing hole), otherwise the fast fsync path
2721 * will not record the existence of the hole region
2722 * [existing_hole_start, lockend].
2723 */
2724 if (drop_end <= end)
2725 drop_end = end + 1;
2726 /*
2727 * Don't insert file hole extent item if it's for a range beyond eof
2728 * (because it's useless) or if it represents a 0 bytes range (when
2729 * cur_offset == drop_end).
2730 */
Filipe Manana690a5db2019-07-05 11:09:50 +01002731 if (!clone_info && cur_offset < ino_size && cur_offset < drop_end) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002732 ret = fill_holes(trans, BTRFS_I(inode), path,
2733 cur_offset, drop_end);
2734 if (ret) {
2735 /* Same comment as above. */
2736 btrfs_abort_transaction(trans, ret);
2737 goto out_trans;
2738 }
Josef Bacik9ddc9592020-01-17 09:02:22 -05002739 } else if (!clone_info && cur_offset < drop_end) {
2740 /* See the comment in the loop above for the reasoning here. */
2741 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2742 cur_offset, drop_end - cur_offset);
2743 if (ret) {
2744 btrfs_abort_transaction(trans, ret);
2745 goto out_trans;
2746 }
2747
Filipe Manana9cba40a2019-06-28 23:11:26 +01002748 }
Filipe Manana690a5db2019-07-05 11:09:50 +01002749 if (clone_info) {
2750 ret = btrfs_insert_clone_extent(trans, inode, path, clone_info,
2751 clone_info->data_len);
2752 if (ret) {
2753 btrfs_abort_transaction(trans, ret);
2754 goto out_trans;
2755 }
2756 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002757
2758out_trans:
2759 if (!trans)
2760 goto out_free;
2761
2762 trans->block_rsv = &fs_info->trans_block_rsv;
2763 if (ret)
2764 btrfs_end_transaction(trans);
2765 else
2766 *trans_out = trans;
2767out_free:
2768 btrfs_free_block_rsv(fs_info, rsv);
2769out:
2770 return ret;
2771}
2772
Josef Bacik2aaa6652012-08-29 14:27:18 -04002773static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2774{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002775 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002776 struct btrfs_root *root = BTRFS_I(inode)->root;
2777 struct extent_state *cached_state = NULL;
2778 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002779 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002780 u64 lockstart;
2781 u64 lockend;
2782 u64 tail_start;
2783 u64 tail_len;
2784 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002785 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302786 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002787 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302788 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002789 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002790
Josef Bacik0ef8b722013-10-25 16:13:35 -04002791 ret = btrfs_wait_ordered_range(inode, offset, len);
2792 if (ret)
2793 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002794
Al Viro59551022016-01-22 15:40:57 -05002795 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002796 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002797 ret = find_first_non_hole(inode, &offset, &len);
2798 if (ret < 0)
2799 goto out_only_mutex;
2800 if (ret && !len) {
2801 /* Already in a large hole */
2802 ret = 0;
2803 goto out_only_mutex;
2804 }
2805
Jeff Mahoneyda170662016-06-15 09:22:56 -04002806 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
Qu Wenruod7781542014-05-30 15:16:10 +08002807 lockend = round_down(offset + len,
Jeff Mahoneyda170662016-06-15 09:22:56 -04002808 btrfs_inode_sectorsize(inode)) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002809 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2810 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002811 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302812 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002813 * because we are sure there is no data there.
2814 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002815 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302816 * Only do this if we are in the same block and we aren't doing the
2817 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002818 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002819 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002820 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302821 truncated_block = true;
2822 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002823 } else {
2824 ret = 0;
2825 }
Qu Wenruod7781542014-05-30 15:16:10 +08002826 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002827 }
2828
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302829 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002830 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302831 truncated_block = true;
2832 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002833 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002834 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002835 return ret;
2836 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002837 }
2838
Qu Wenruod7781542014-05-30 15:16:10 +08002839 /* Check the aligned pages after the first unaligned page,
2840 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002841 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002842 * the extra check can be skipped */
2843 if (offset == orig_start) {
2844 /* after truncate page, check hole again */
2845 len = offset + len - lockstart;
2846 offset = lockstart;
2847 ret = find_first_non_hole(inode, &offset, &len);
2848 if (ret < 0)
2849 goto out_only_mutex;
2850 if (ret && !len) {
2851 ret = 0;
2852 goto out_only_mutex;
2853 }
2854 lockstart = offset;
2855 }
2856
2857 /* Check the tail unaligned part is in a hole */
2858 tail_start = lockend + 1;
2859 tail_len = offset + len - tail_start;
2860 if (tail_len) {
2861 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2862 if (unlikely(ret < 0))
2863 goto out_only_mutex;
2864 if (!ret) {
2865 /* zero the front end of the last page */
2866 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302867 truncated_block = true;
2868 ret = btrfs_truncate_block(inode,
2869 tail_start + tail_len,
2870 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002871 if (ret)
2872 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002873 }
Miao Xie00612802012-12-05 10:54:12 +00002874 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002875 }
2876
2877 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002878 ret = 0;
2879 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002880 }
2881
Filipe Mananaf27451f2017-10-25 11:55:28 +01002882 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2883 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002884 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002885 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002886
2887 path = btrfs_alloc_path();
2888 if (!path) {
2889 ret = -ENOMEM;
2890 goto out;
2891 }
2892
Filipe Manana690a5db2019-07-05 11:09:50 +01002893 ret = btrfs_punch_hole_range(inode, path, lockstart, lockend, NULL,
2894 &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002895 btrfs_free_path(path);
2896 if (ret)
2897 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002898
Filipe Manana9cba40a2019-06-28 23:11:26 +01002899 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002900 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002901 inode->i_mtime = inode->i_ctime = current_time(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002902 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002903 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002904 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002905 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002906out:
2907 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002908 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002909out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01002910 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002911 /*
2912 * If we only end up zeroing part of a page, we still need to
2913 * update the inode item, so that all the time fields are
2914 * updated as well as the necessary btrfs inode in memory fields
2915 * for detecting, at fsync time, if the inode isn't yet in the
2916 * log tree or it's there but not up to date.
2917 */
Filipe Manana17900662019-06-19 13:05:50 +01002918 struct timespec64 now = current_time(inode);
2919
2920 inode_inc_iversion(inode);
2921 inode->i_mtime = now;
2922 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002923 trans = btrfs_start_transaction(root, 1);
2924 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002925 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002926 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002927 int ret2;
2928
2929 ret = btrfs_update_inode(trans, root, inode);
2930 ret2 = btrfs_end_transaction(trans);
2931 if (!ret)
2932 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002933 }
2934 }
Al Viro59551022016-01-22 15:40:57 -05002935 inode_unlock(inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002936 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002937}
2938
Qu Wenruo14524a82015-09-08 17:22:44 +08002939/* Helper structure to record which range is already reserved */
2940struct falloc_range {
2941 struct list_head list;
2942 u64 start;
2943 u64 len;
2944};
2945
2946/*
2947 * Helper function to add falloc range
2948 *
2949 * Caller should have locked the larger range of extent containing
2950 * [start, len)
2951 */
2952static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2953{
2954 struct falloc_range *prev = NULL;
2955 struct falloc_range *range = NULL;
2956
2957 if (list_empty(head))
2958 goto insert;
2959
2960 /*
2961 * As fallocate iterate by bytenr order, we only need to check
2962 * the last range.
2963 */
2964 prev = list_entry(head->prev, struct falloc_range, list);
2965 if (prev->start + prev->len == start) {
2966 prev->len += len;
2967 return 0;
2968 }
2969insert:
David Sterba32fc9322016-02-11 14:25:38 +01002970 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002971 if (!range)
2972 return -ENOMEM;
2973 range->start = start;
2974 range->len = len;
2975 list_add_tail(&range->list, head);
2976 return 0;
2977}
2978
Filipe Mananaf27451f2017-10-25 11:55:28 +01002979static int btrfs_fallocate_update_isize(struct inode *inode,
2980 const u64 end,
2981 const int mode)
2982{
2983 struct btrfs_trans_handle *trans;
2984 struct btrfs_root *root = BTRFS_I(inode)->root;
2985 int ret;
2986 int ret2;
2987
2988 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2989 return 0;
2990
2991 trans = btrfs_start_transaction(root, 1);
2992 if (IS_ERR(trans))
2993 return PTR_ERR(trans);
2994
2995 inode->i_ctime = current_time(inode);
2996 i_size_write(inode, end);
Josef Bacikd923afe2020-01-17 09:02:23 -05002997 btrfs_inode_safe_disk_i_size_write(inode, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002998 ret = btrfs_update_inode(trans, root, inode);
2999 ret2 = btrfs_end_transaction(trans);
3000
3001 return ret ? ret : ret2;
3002}
3003
Filipe Manana81fdf632018-01-18 11:34:31 +00003004enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003005 RANGE_BOUNDARY_WRITTEN_EXTENT,
3006 RANGE_BOUNDARY_PREALLOC_EXTENT,
3007 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003008};
3009
Filipe Mananaf27451f2017-10-25 11:55:28 +01003010static int btrfs_zero_range_check_range_boundary(struct inode *inode,
3011 u64 offset)
3012{
3013 const u64 sectorsize = btrfs_inode_sectorsize(inode);
3014 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003015 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003016
3017 offset = round_down(offset, sectorsize);
Omar Sandoval39b07b52019-12-02 17:34:23 -08003018 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003019 if (IS_ERR(em))
3020 return PTR_ERR(em);
3021
3022 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003023 ret = RANGE_BOUNDARY_HOLE;
3024 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3025 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3026 else
3027 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003028
3029 free_extent_map(em);
3030 return ret;
3031}
3032
3033static int btrfs_zero_range(struct inode *inode,
3034 loff_t offset,
3035 loff_t len,
3036 const int mode)
3037{
3038 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3039 struct extent_map *em;
3040 struct extent_changeset *data_reserved = NULL;
3041 int ret;
3042 u64 alloc_hint = 0;
3043 const u64 sectorsize = btrfs_inode_sectorsize(inode);
3044 u64 alloc_start = round_down(offset, sectorsize);
3045 u64 alloc_end = round_up(offset + len, sectorsize);
3046 u64 bytes_to_reserve = 0;
3047 bool space_reserved = false;
3048
3049 inode_dio_wait(inode);
3050
Omar Sandoval39b07b52019-12-02 17:34:23 -08003051 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3052 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003053 if (IS_ERR(em)) {
3054 ret = PTR_ERR(em);
3055 goto out;
3056 }
3057
3058 /*
3059 * Avoid hole punching and extent allocation for some cases. More cases
3060 * could be considered, but these are unlikely common and we keep things
3061 * as simple as possible for now. Also, intentionally, if the target
3062 * range contains one or more prealloc extents together with regular
3063 * extents and holes, we drop all the existing extents and allocate a
3064 * new prealloc extent, so that we get a larger contiguous disk extent.
3065 */
3066 if (em->start <= alloc_start &&
3067 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3068 const u64 em_end = em->start + em->len;
3069
3070 if (em_end >= offset + len) {
3071 /*
3072 * The whole range is already a prealloc extent,
3073 * do nothing except updating the inode's i_size if
3074 * needed.
3075 */
3076 free_extent_map(em);
3077 ret = btrfs_fallocate_update_isize(inode, offset + len,
3078 mode);
3079 goto out;
3080 }
3081 /*
3082 * Part of the range is already a prealloc extent, so operate
3083 * only on the remaining part of the range.
3084 */
3085 alloc_start = em_end;
3086 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3087 len = offset + len - alloc_start;
3088 offset = alloc_start;
3089 alloc_hint = em->block_start + em->len;
3090 }
3091 free_extent_map(em);
3092
3093 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3094 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003095 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3096 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003097 if (IS_ERR(em)) {
3098 ret = PTR_ERR(em);
3099 goto out;
3100 }
3101
3102 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3103 free_extent_map(em);
3104 ret = btrfs_fallocate_update_isize(inode, offset + len,
3105 mode);
3106 goto out;
3107 }
3108 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3109 free_extent_map(em);
3110 ret = btrfs_truncate_block(inode, offset, len, 0);
3111 if (!ret)
3112 ret = btrfs_fallocate_update_isize(inode,
3113 offset + len,
3114 mode);
3115 return ret;
3116 }
3117 free_extent_map(em);
3118 alloc_start = round_down(offset, sectorsize);
3119 alloc_end = alloc_start + sectorsize;
3120 goto reserve_space;
3121 }
3122
3123 alloc_start = round_up(offset, sectorsize);
3124 alloc_end = round_down(offset + len, sectorsize);
3125
3126 /*
3127 * For unaligned ranges, check the pages at the boundaries, they might
3128 * map to an extent, in which case we need to partially zero them, or
3129 * they might map to a hole, in which case we need our allocation range
3130 * to cover them.
3131 */
3132 if (!IS_ALIGNED(offset, sectorsize)) {
3133 ret = btrfs_zero_range_check_range_boundary(inode, offset);
3134 if (ret < 0)
3135 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003136 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003137 alloc_start = round_down(offset, sectorsize);
3138 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003139 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003140 ret = btrfs_truncate_block(inode, offset, 0, 0);
3141 if (ret)
3142 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003143 } else {
3144 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003145 }
3146 }
3147
3148 if (!IS_ALIGNED(offset + len, sectorsize)) {
3149 ret = btrfs_zero_range_check_range_boundary(inode,
3150 offset + len);
3151 if (ret < 0)
3152 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003153 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003154 alloc_end = round_up(offset + len, sectorsize);
3155 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003156 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003157 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3158 if (ret)
3159 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003160 } else {
3161 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003162 }
3163 }
3164
3165reserve_space:
3166 if (alloc_start < alloc_end) {
3167 struct extent_state *cached_state = NULL;
3168 const u64 lockstart = alloc_start;
3169 const u64 lockend = alloc_end - 1;
3170
3171 bytes_to_reserve = alloc_end - alloc_start;
3172 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3173 bytes_to_reserve);
3174 if (ret < 0)
3175 goto out;
3176 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003177 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3178 &cached_state);
3179 if (ret)
3180 goto out;
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003181 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3182 alloc_start, bytes_to_reserve);
3183 if (ret)
3184 goto out;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003185 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3186 alloc_end - alloc_start,
3187 i_blocksize(inode),
3188 offset + len, &alloc_hint);
3189 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3190 lockend, &cached_state);
3191 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003192 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003193 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003194 goto out;
3195 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003196 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003197 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003198 out:
3199 if (ret && space_reserved)
3200 btrfs_free_reserved_data_space(inode, data_reserved,
3201 alloc_start, bytes_to_reserve);
3202 extent_changeset_free(data_reserved);
3203
3204 return ret;
3205}
3206
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003207static long btrfs_fallocate(struct file *file, int mode,
3208 loff_t offset, loff_t len)
3209{
Al Viro496ad9a2013-01-23 17:07:38 -05003210 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003211 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003212 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003213 struct falloc_range *range;
3214 struct falloc_range *tmp;
3215 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003216 u64 cur_offset;
3217 u64 last_byte;
3218 u64 alloc_start;
3219 u64 alloc_end;
3220 u64 alloc_hint = 0;
3221 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003222 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003223 struct extent_map *em;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003224 int blocksize = btrfs_inode_sectorsize(inode);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003225 int ret;
3226
Miao Xie797f4272012-11-28 10:28:07 +00003227 alloc_start = round_down(offset, blocksize);
3228 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003229 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003230
Josef Bacik2aaa6652012-08-29 14:27:18 -04003231 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003232 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3233 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003234 return -EOPNOTSUPP;
3235
Josef Bacik2aaa6652012-08-29 14:27:18 -04003236 if (mode & FALLOC_FL_PUNCH_HOLE)
3237 return btrfs_punch_hole(inode, offset, len);
3238
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003239 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003240 * Only trigger disk allocation, don't trigger qgroup reserve
3241 *
3242 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003243 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003244 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3245 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3246 alloc_end - alloc_start);
3247 if (ret < 0)
3248 return ret;
3249 }
Chris Masond98456f2012-01-31 20:27:41 -05003250
Al Viro59551022016-01-22 15:40:57 -05003251 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003252
3253 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3254 ret = inode_newsize_ok(inode, offset + len);
3255 if (ret)
3256 goto out;
3257 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003258
Qu Wenruo14524a82015-09-08 17:22:44 +08003259 /*
3260 * TODO: Move these two operations after we have checked
3261 * accurate reserved space, or fallocate can still fail but
3262 * with page truncated or size expanded.
3263 *
3264 * But that's a minor problem and won't do much harm BTW.
3265 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003266 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003267 ret = btrfs_cont_expand(inode, i_size_read(inode),
3268 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003269 if (ret)
3270 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003271 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003272 /*
3273 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303274 * need to zero out the end of the block if i_size lands in the
3275 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003276 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303277 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003278 if (ret)
3279 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003280 }
3281
Josef Bacika71754f2013-06-17 17:14:39 -04003282 /*
3283 * wait for ordered IO before we have any locks. We'll loop again
3284 * below with the locks held.
3285 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003286 ret = btrfs_wait_ordered_range(inode, alloc_start,
3287 alloc_end - alloc_start);
3288 if (ret)
3289 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003290
Filipe Mananaf27451f2017-10-25 11:55:28 +01003291 if (mode & FALLOC_FL_ZERO_RANGE) {
3292 ret = btrfs_zero_range(inode, offset, len, mode);
3293 inode_unlock(inode);
3294 return ret;
3295 }
3296
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003297 locked_end = alloc_end - 1;
3298 while (1) {
3299 struct btrfs_ordered_extent *ordered;
3300
3301 /* the extent lock is ordered inside the running
3302 * transaction
3303 */
3304 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003305 locked_end, &cached_state);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003306 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3307
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003308 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003309 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003310 ordered->file_offset < alloc_end) {
3311 btrfs_put_ordered_extent(ordered);
3312 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3313 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003314 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003315 /*
3316 * we can't wait on the range with the transaction
3317 * running or with the extent lock held
3318 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003319 ret = btrfs_wait_ordered_range(inode, alloc_start,
3320 alloc_end - alloc_start);
3321 if (ret)
3322 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003323 } else {
3324 if (ordered)
3325 btrfs_put_ordered_extent(ordered);
3326 break;
3327 }
3328 }
3329
Qu Wenruo14524a82015-09-08 17:22:44 +08003330 /* First, check if we exceed the qgroup limit */
3331 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003332 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003333 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003334 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003335 if (IS_ERR(em)) {
3336 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003337 break;
3338 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003339 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003340 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003341 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003342 if (em->block_start == EXTENT_MAP_HOLE ||
3343 (cur_offset >= inode->i_size &&
3344 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003345 ret = add_falloc_range(&reserve_list, cur_offset,
3346 last_byte - cur_offset);
3347 if (ret < 0) {
3348 free_extent_map(em);
3349 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003350 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003351 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3352 cur_offset, last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003353 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003354 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003355 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003356 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003357 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003358 } else {
3359 /*
3360 * Do not need to reserve unwritten extent for this
3361 * range, free reserved data space first, otherwise
3362 * it'll result in false ENOSPC error.
3363 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003364 btrfs_free_reserved_data_space(inode, data_reserved,
3365 cur_offset, last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003366 }
3367 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003368 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003369 }
3370
3371 /*
3372 * If ret is still 0, means we're OK to fallocate.
3373 * Or just cleanup the list and exit.
3374 */
3375 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3376 if (!ret)
3377 ret = btrfs_prealloc_file_range(inode, mode,
3378 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003379 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003380 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003381 else
Qu Wenruobc42bda2017-02-27 15:10:39 +08003382 btrfs_free_reserved_data_space(inode,
3383 data_reserved, range->start,
3384 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003385 list_del(&range->list);
3386 kfree(range);
3387 }
3388 if (ret < 0)
3389 goto out_unlock;
3390
Filipe Mananaf27451f2017-10-25 11:55:28 +01003391 /*
3392 * We didn't need to allocate any more space, but we still extended the
3393 * size of the file so we need to update i_size and the inode item.
3394 */
3395 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003396out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003397 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003398 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003399out:
Al Viro59551022016-01-22 15:40:57 -05003400 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003401 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003402 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Qu Wenruobc42bda2017-02-27 15:10:39 +08003403 btrfs_free_reserved_data_space(inode, data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003404 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003405 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003406 return ret;
3407}
3408
Nikolay Borisovbc802302019-09-27 13:23:18 +03003409static loff_t find_desired_extent(struct inode *inode, loff_t offset,
3410 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003411{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003412 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003413 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003414 struct extent_state *cached_state = NULL;
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003415 loff_t i_size = inode->i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003416 u64 lockstart;
3417 u64 lockend;
3418 u64 start;
3419 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003420 int ret = 0;
3421
Nikolay Borisovbc802302019-09-27 13:23:18 +03003422 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003423 return -ENXIO;
3424
Liu Bo4d1a40c2014-09-16 17:49:30 +08003425 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003426 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003427 * the very start of the file.
3428 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003429 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003430
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003431 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003432 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003433 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003434 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003435 lockend--;
3436 len = lockend - lockstart + 1;
3437
David Sterbaff13db42015-12-03 14:30:40 +01003438 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003439 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003440
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003441 while (start < i_size) {
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02003442 em = btrfs_get_extent_fiemap(BTRFS_I(inode), start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003443 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003444 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003445 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003446 break;
3447 }
3448
Josef Bacik7f4ca372013-10-18 11:44:46 -04003449 if (whence == SEEK_HOLE &&
3450 (em->block_start == EXTENT_MAP_HOLE ||
3451 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3452 break;
3453 else if (whence == SEEK_DATA &&
3454 (em->block_start != EXTENT_MAP_HOLE &&
3455 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3456 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003457
3458 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003459 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003460 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003461 cond_resched();
3462 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003463 free_extent_map(em);
Josef Bacikb2675152011-07-18 13:21:36 -04003464 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003465 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003466 if (ret) {
3467 offset = ret;
3468 } else {
3469 if (whence == SEEK_DATA && start >= i_size)
3470 offset = -ENXIO;
3471 else
3472 offset = min_t(loff_t, start, i_size);
3473 }
3474
3475 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003476}
3477
Andrew Morton965c8e52012-12-17 15:59:39 -08003478static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003479{
3480 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003481
Andrew Morton965c8e52012-12-17 15:59:39 -08003482 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003483 default:
3484 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003485 case SEEK_DATA:
3486 case SEEK_HOLE:
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003487 inode_lock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003488 offset = find_desired_extent(inode, offset, whence);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003489 inode_unlock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003490 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003491 }
3492
Nikolay Borisovbc802302019-09-27 13:23:18 +03003493 if (offset < 0)
3494 return offset;
3495
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003496 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003497}
3498
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003499static int btrfs_file_open(struct inode *inode, struct file *filp)
3500{
Christoph Hellwig91f99432017-08-29 16:13:20 +02003501 filp->f_mode |= FMODE_NOWAIT;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003502 return generic_file_open(inode, filp);
3503}
3504
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003505const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003506 .llseek = btrfs_file_llseek,
David Sterba55e20bd2020-06-09 19:56:06 +02003507 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003508 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003509 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003510 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003511 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003512 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003513 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003514 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003515 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003516 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003517#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003518 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003519#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003520 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003521};
Miao Xie9247f312012-11-26 09:24:43 +00003522
David Sterbae67c7182018-02-19 17:24:18 +01003523void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003524{
Kinglong Mee5598e902016-01-29 21:36:35 +08003525 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003526}
3527
Liu Bof5c29bd2017-11-02 17:21:50 -06003528int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003529{
3530 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3531 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003532 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003533 NULL);
3534 if (!btrfs_inode_defrag_cachep)
3535 return -ENOMEM;
3536
3537 return 0;
3538}
Filipe Manana728404d2014-10-10 09:43:11 +01003539
3540int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3541{
3542 int ret;
3543
3544 /*
3545 * So with compression we will find and lock a dirty page and clear the
3546 * first one as dirty, setup an async extent, and immediately return
3547 * with the entire range locked but with nobody actually marked with
3548 * writeback. So we can't just filemap_write_and_wait_range() and
3549 * expect it to work since it will just kick off a thread to do the
3550 * actual work. So we need to call filemap_fdatawrite_range _again_
3551 * since it will wait on the page lock, which won't be unlocked until
3552 * after the pages have been marked as writeback and so we're good to go
3553 * from there. We have to do this otherwise we'll miss the ordered
3554 * extents and that results in badness. Please Josef, do not think you
3555 * know better and pull this out at some point in the future, it is
3556 * right and you are wrong.
3557 */
3558 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3559 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3560 &BTRFS_I(inode)->runtime_flags))
3561 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3562
3563 return ret;
3564}