blob: c7ed30edf1cd4009c087bc25a176ee10218625ab [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason39279cc2007-06-12 06:35:45 -04006#include <linux/fs.h>
7#include <linux/pagemap.h>
Chris Mason39279cc2007-06-12 06:35:45 -04008#include <linux/time.h>
9#include <linux/init.h>
10#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040011#include <linux/backing-dev.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010012#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040013#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040014#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000016#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080017#include <linux/uio.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050018#include <linux/iversion.h>
Chris Mason39279cc2007-06-12 06:35:45 -040019#include "ctree.h"
20#include "disk-io.h"
21#include "transaction.h"
22#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040023#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "tree-log.h"
25#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040026#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070027#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080028#include "compression.h"
Josef Bacik86736342019-06-19 15:12:00 -040029#include "delalloc-space.h"
Filipe Manana6a177382020-02-28 13:04:17 +000030#include "reflink.h"
Chris Mason39279cc2007-06-12 06:35:45 -040031
Miao Xie9247f312012-11-26 09:24:43 +000032static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040033/*
34 * when auto defrag is enabled we
35 * queue up these defrag structs to remember which
36 * inodes need defragging passes
37 */
38struct inode_defrag {
39 struct rb_node rb_node;
40 /* objectid */
41 u64 ino;
42 /*
43 * transid where the defrag was added, we search for
44 * extents newer than this
45 */
46 u64 transid;
47
48 /* root objectid */
49 u64 root;
50
51 /* last offset we were able to defrag */
52 u64 last_offset;
53
54 /* if we've wrapped around back to zero once already */
55 int cycled;
56};
57
Miao Xie762f2262012-05-24 18:58:27 +080058static int __compare_inode_defrag(struct inode_defrag *defrag1,
59 struct inode_defrag *defrag2)
60{
61 if (defrag1->root > defrag2->root)
62 return 1;
63 else if (defrag1->root < defrag2->root)
64 return -1;
65 else if (defrag1->ino > defrag2->ino)
66 return 1;
67 else if (defrag1->ino < defrag2->ino)
68 return -1;
69 else
70 return 0;
71}
72
Chris Mason4cb53002011-05-24 15:35:30 -040073/* pop a record for an inode into the defrag tree. The lock
74 * must be held already
75 *
76 * If you're inserting a record for an older transid than an
77 * existing record, the transid already in the tree is lowered
78 *
79 * If an existing record is found the defrag item you
80 * pass in is freed
81 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020082static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040083 struct inode_defrag *defrag)
84{
David Sterba3ffbd682018-06-29 10:56:42 +020085 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040086 struct inode_defrag *entry;
87 struct rb_node **p;
88 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080089 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040090
Jeff Mahoney0b246af2016-06-22 18:54:23 -040091 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040092 while (*p) {
93 parent = *p;
94 entry = rb_entry(parent, struct inode_defrag, rb_node);
95
Miao Xie762f2262012-05-24 18:58:27 +080096 ret = __compare_inode_defrag(defrag, entry);
97 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040098 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +080099 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400100 p = &parent->rb_right;
101 else {
102 /* if we're reinserting an entry for
103 * an old defrag run, make sure to
104 * lower the transid of our existing record
105 */
106 if (defrag->transid < entry->transid)
107 entry->transid = defrag->transid;
108 if (defrag->last_offset > entry->last_offset)
109 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000110 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400111 }
112 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200113 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400114 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400115 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000116 return 0;
117}
Chris Mason4cb53002011-05-24 15:35:30 -0400118
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400119static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000120{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400121 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000122 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400123
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400124 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000125 return 0;
126
127 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400128}
129
130/*
131 * insert a defrag record for this inode if auto defrag is
132 * enabled
133 */
134int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200135 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400136{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200137 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200138 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400139 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400140 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000141 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400142
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400143 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400144 return 0;
145
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200146 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400147 return 0;
148
149 if (trans)
150 transid = trans->transid;
151 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200152 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400153
Miao Xie9247f312012-11-26 09:24:43 +0000154 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400155 if (!defrag)
156 return -ENOMEM;
157
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200158 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400159 defrag->transid = transid;
160 defrag->root = root->root_key.objectid;
161
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400162 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200163 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000164 /*
165 * If we set IN_DEFRAG flag and evict the inode from memory,
166 * and then re-read this inode, this new inode doesn't have
167 * IN_DEFRAG flag. At the case, we may find the existed defrag.
168 */
169 ret = __btrfs_add_inode_defrag(inode, defrag);
170 if (ret)
171 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
172 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000173 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000174 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400175 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000176 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400177}
178
179/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000180 * Requeue the defrag object. If there is a defrag object that points to
181 * the same inode in the tree, we will merge them together (by
182 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400183 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200184static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000185 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000186{
David Sterba3ffbd682018-06-29 10:56:42 +0200187 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000188 int ret;
189
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400190 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000191 goto out;
192
193 /*
194 * Here we don't check the IN_DEFRAG flag, because we need merge
195 * them together.
196 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400197 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000198 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400199 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000200 if (ret)
201 goto out;
202 return;
203out:
204 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
205}
206
207/*
Miao Xie26176e72012-11-26 09:26:20 +0000208 * pick the defragable inode that we want, if it doesn't exist, we will get
209 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400210 */
Miao Xie26176e72012-11-26 09:26:20 +0000211static struct inode_defrag *
212btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400213{
214 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800215 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400216 struct rb_node *p;
217 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800218 int ret;
219
220 tmp.ino = ino;
221 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400222
Miao Xie26176e72012-11-26 09:26:20 +0000223 spin_lock(&fs_info->defrag_inodes_lock);
224 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400225 while (p) {
226 parent = p;
227 entry = rb_entry(parent, struct inode_defrag, rb_node);
228
Miao Xie762f2262012-05-24 18:58:27 +0800229 ret = __compare_inode_defrag(&tmp, entry);
230 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400231 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800232 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400233 p = parent->rb_right;
234 else
Miao Xie26176e72012-11-26 09:26:20 +0000235 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400236 }
237
Miao Xie26176e72012-11-26 09:26:20 +0000238 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
239 parent = rb_next(parent);
240 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400241 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000242 else
243 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400244 }
Miao Xie26176e72012-11-26 09:26:20 +0000245out:
246 if (entry)
247 rb_erase(parent, &fs_info->defrag_inodes);
248 spin_unlock(&fs_info->defrag_inodes_lock);
249 return entry;
250}
251
252void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
253{
254 struct inode_defrag *defrag;
255 struct rb_node *node;
256
257 spin_lock(&fs_info->defrag_inodes_lock);
258 node = rb_first(&fs_info->defrag_inodes);
259 while (node) {
260 rb_erase(node, &fs_info->defrag_inodes);
261 defrag = rb_entry(node, struct inode_defrag, rb_node);
262 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
263
David Sterba351810c2015-01-08 15:20:54 +0100264 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000265
266 node = rb_first(&fs_info->defrag_inodes);
267 }
268 spin_unlock(&fs_info->defrag_inodes_lock);
269}
270
271#define BTRFS_DEFRAG_BATCH 1024
272
273static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
274 struct inode_defrag *defrag)
275{
276 struct btrfs_root *inode_root;
277 struct inode *inode;
Miao Xie26176e72012-11-26 09:26:20 +0000278 struct btrfs_ioctl_defrag_range_args range;
279 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000280 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000281
282 /* get the inode */
David Sterba56e93572020-05-15 19:35:55 +0200283 inode_root = btrfs_get_fs_root(fs_info, defrag->root, true);
Miao Xie26176e72012-11-26 09:26:20 +0000284 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000285 ret = PTR_ERR(inode_root);
286 goto cleanup;
287 }
Miao Xie26176e72012-11-26 09:26:20 +0000288
David Sterba0202e832020-05-15 19:35:59 +0200289 inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root);
Josef Bacik00246522020-01-24 09:33:01 -0500290 btrfs_put_root(inode_root);
Miao Xie26176e72012-11-26 09:26:20 +0000291 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000292 ret = PTR_ERR(inode);
293 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000294 }
295
296 /* do a chunk of defrag */
297 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
298 memset(&range, 0, sizeof(range));
299 range.len = (u64)-1;
300 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000301
302 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000303 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
304 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000305 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000306 /*
307 * if we filled the whole defrag batch, there
308 * must be more work to do. Queue this defrag
309 * again
310 */
311 if (num_defrag == BTRFS_DEFRAG_BATCH) {
312 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200313 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000314 } else if (defrag->last_offset && !defrag->cycled) {
315 /*
316 * we didn't fill our defrag batch, but
317 * we didn't start at zero. Make sure we loop
318 * around to the start of the file.
319 */
320 defrag->last_offset = 0;
321 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200322 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000323 } else {
324 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
325 }
326
327 iput(inode);
328 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000329cleanup:
Liu Bo6f1c3602013-01-29 03:22:10 +0000330 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
331 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400332}
333
334/*
335 * run through the list of inodes in the FS that need
336 * defragging
337 */
338int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
339{
340 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400341 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800342 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400343
344 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530345 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700346 /* Pause the auto defragger. */
347 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
348 &fs_info->fs_state))
349 break;
350
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400351 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000352 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400353
354 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000355 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
356 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400357 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000358 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800359 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400360 first_ino = 0;
361 continue;
362 } else {
363 break;
364 }
365 }
366
Chris Mason4cb53002011-05-24 15:35:30 -0400367 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800368 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400369
Miao Xie26176e72012-11-26 09:26:20 +0000370 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400371 }
Chris Mason4cb53002011-05-24 15:35:30 -0400372 atomic_dec(&fs_info->defrag_running);
373
374 /*
375 * during unmount, we use the transaction_wait queue to
376 * wait for the defragger to stop
377 */
378 wake_up(&fs_info->transaction_wait);
379 return 0;
380}
Chris Mason39279cc2007-06-12 06:35:45 -0400381
Chris Masond352ac62008-09-29 15:18:18 -0400382/* simple helper to fault in pages and copy. This should go away
383 * and be replaced with calls into generic code.
384 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800385static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400386 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400387 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400388{
Xin Zhong914ee292010-12-09 09:30:14 +0000389 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500390 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400391 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100392 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400393
Josef Bacik11c65dc2010-05-23 11:07:21 -0400394 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400395 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300396 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400397 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000398 /*
399 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000400 */
Xin Zhong914ee292010-12-09 09:30:14 +0000401 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400402
Chris Mason39279cc2007-06-12 06:35:45 -0400403 /* Flush processor's dcache for this page */
404 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500405
406 /*
407 * if we get a partial write, we can end up with
408 * partially up to date pages. These add
409 * a lot of complexity, so make sure they don't
410 * happen by forcing this copy to be retried.
411 *
412 * The rest of the btrfs_file_write code will fall
413 * back to page at a time copies after we return 0.
414 */
415 if (!PageUptodate(page) && copied < count)
416 copied = 0;
417
Josef Bacik11c65dc2010-05-23 11:07:21 -0400418 iov_iter_advance(i, copied);
419 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000420 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400421
Al Virob30ac0f2014-04-03 14:29:04 -0400422 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500423 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000424 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400425
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300426 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400427 offset += copied;
428 } else {
429 pg++;
430 offset = 0;
431 }
Chris Mason39279cc2007-06-12 06:35:45 -0400432 }
Xin Zhong914ee292010-12-09 09:30:14 +0000433 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400434}
435
Chris Masond352ac62008-09-29 15:18:18 -0400436/*
437 * unlocks pages after btrfs_file_write is done with them
438 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000439static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400440{
441 size_t i;
442 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400443 /* page checked is some magic around finding pages that
444 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700445 * clear it here. There should be no need to mark the pages
446 * accessed as prepare_pages should have marked them accessed
447 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400448 */
Chris Mason4a096752008-07-21 10:29:44 -0400449 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400450 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300451 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400452 }
453}
454
Chris Masond352ac62008-09-29 15:18:18 -0400455/*
456 * after copy_from_user, pages need to be dirtied and we need to make
457 * sure holes are created between the current EOF and the start of
458 * any next extents (if required).
459 *
460 * this also makes the decision about creating an inline extent vs
461 * doing real data extents, marking pages dirty and delalloc as required.
462 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300463int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400464 size_t num_pages, loff_t pos, size_t write_bytes,
465 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400466{
Nikolay Borisov088545f2020-06-03 08:55:36 +0300467 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400468 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400469 int i;
Chris Masondb945352007-10-15 16:15:53 -0400470 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400471 u64 start_pos;
472 u64 end_of_last_block;
473 u64 end_pos = pos + write_bytes;
Nikolay Borisov088545f2020-06-03 08:55:36 +0300474 loff_t isize = i_size_read(&inode->vfs_inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000475 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400476
Goldwyn Rodrigues13f0dd82020-10-14 09:55:44 -0500477 start_pos = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400478 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400479 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400480
Chris Masondb945352007-10-15 16:15:53 -0400481 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000482
Chris Mason7703bdd2018-06-20 07:56:11 -0700483 /*
484 * The pages may have already been dirty, clear out old accounting so
485 * we can set things up properly
486 */
Nikolay Borisov088545f2020-06-03 08:55:36 +0300487 clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block,
Omar Sandovale1821632019-08-15 14:04:04 -0700488 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
489 0, 0, cached);
Chris Mason7703bdd2018-06-20 07:56:11 -0700490
Nikolay Borisov088545f2020-06-03 08:55:36 +0300491 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300492 extra_bits, cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500493 if (err)
494 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400495
Chris Masonc8b97812008-10-29 14:49:59 -0400496 for (i = 0; i < num_pages; i++) {
497 struct page *p = pages[i];
498 SetPageUptodate(p);
499 ClearPageChecked(p);
500 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400501 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500502
503 /*
504 * we've only changed i_size in ram, and we haven't updated
505 * the disk i_size. There is no need to log the inode
506 * at this time.
507 */
508 if (end_pos > isize)
Nikolay Borisov088545f2020-06-03 08:55:36 +0300509 i_size_write(&inode->vfs_inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400510 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400511}
512
Chris Masond352ac62008-09-29 15:18:18 -0400513/*
514 * this drops all the extents in the cache that intersect the range
515 * [start, end]. Existing extents are split as required.
516 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200517void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400518 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400519{
520 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400521 struct extent_map *split = NULL;
522 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200523 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500524 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400525 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400526 int ret;
527 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400528 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400529 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400530 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400531
Chris Masone6dcd2d2008-07-17 12:53:50 -0400532 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400533 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500534 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400535 testend = 0;
536 }
Chris Masond3977122009-01-05 21:25:51 -0500537 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400538 int no_splits = 0;
539
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400540 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400541 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200542 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400543 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200544 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400545 if (!split || !split2)
546 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400547
Chris Mason890871b2009-09-02 16:24:52 -0400548 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500549 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500550 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400551 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400552 break;
Chris Masond1310b22008-01-24 16:13:08 -0500553 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400554 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400555 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400556 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000557 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400558 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400559 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400560 break;
561 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000562 start = em->start + em->len;
563 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400564 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400565 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400566 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400567 continue;
568 }
Chris Masonc8b97812008-10-29 14:49:59 -0400569 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400570 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600571 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400572 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400573 if (no_splits)
574 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400575
Josef Bacikee20a982013-07-11 10:34:59 -0400576 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400577 split->start = em->start;
578 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400579
Josef Bacikee20a982013-07-11 10:34:59 -0400580 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
581 split->orig_start = em->orig_start;
582 split->block_start = em->block_start;
583
584 if (compressed)
585 split->block_len = em->block_len;
586 else
587 split->block_len = split->len;
588 split->orig_block_len = max(split->block_len,
589 em->orig_block_len);
590 split->ram_bytes = em->ram_bytes;
591 } else {
592 split->orig_start = split->start;
593 split->block_len = 0;
594 split->block_start = em->block_start;
595 split->orig_block_len = 0;
596 split->ram_bytes = split->len;
597 }
598
Josef Bacik5dc562c2012-08-17 13:14:17 -0400599 split->generation = gen;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400600 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800601 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000602 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400603 free_extent_map(split);
604 split = split2;
605 split2 = NULL;
606 }
Josef Bacikee20a982013-07-11 10:34:59 -0400607 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400608 u64 diff = start + len - em->start;
609
610 split->start = start + len;
611 split->len = em->start + em->len - (start + len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400612 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800613 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400614 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400615
Josef Bacikee20a982013-07-11 10:34:59 -0400616 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
617 split->orig_block_len = max(em->block_len,
618 em->orig_block_len);
619
620 split->ram_bytes = em->ram_bytes;
621 if (compressed) {
622 split->block_len = em->block_len;
623 split->block_start = em->block_start;
624 split->orig_start = em->orig_start;
625 } else {
626 split->block_len = split->len;
627 split->block_start = em->block_start
628 + diff;
629 split->orig_start = em->orig_start;
630 }
Chris Masonc8b97812008-10-29 14:49:59 -0400631 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400632 split->ram_bytes = split->len;
633 split->orig_start = split->start;
634 split->block_len = 0;
635 split->block_start = em->block_start;
636 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400637 }
Chris Mason3b951512008-04-17 11:29:12 -0400638
Filipe Manana176840b2014-02-25 14:15:13 +0000639 if (extent_map_in_tree(em)) {
640 replace_extent_mapping(em_tree, em, split,
641 modified);
642 } else {
643 ret = add_extent_mapping(em_tree, split,
644 modified);
645 ASSERT(ret == 0); /* Logic error */
646 }
Chris Mason3b951512008-04-17 11:29:12 -0400647 free_extent_map(split);
648 split = NULL;
649 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400650next:
Filipe Manana176840b2014-02-25 14:15:13 +0000651 if (extent_map_in_tree(em))
652 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400653 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500654
Chris Masona52d9a82007-08-27 16:49:44 -0400655 /* once for us */
656 free_extent_map(em);
657 /* once for the tree*/
658 free_extent_map(em);
659 }
Chris Mason3b951512008-04-17 11:29:12 -0400660 if (split)
661 free_extent_map(split);
662 if (split2)
663 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400664}
665
Chris Mason39279cc2007-06-12 06:35:45 -0400666/*
667 * this is very complex, but the basic idea is to drop all extents
668 * in the range start - end. hint_block is filled in with a block number
669 * that would be a good hint to the block allocator for this file.
670 *
671 * If an extent intersects the range but is not entirely inside the range
672 * it is either truncated or split. Anything entirely inside the range
673 * is deleted from the tree.
674 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400675int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
Nikolay Borisov906c4482020-06-03 08:55:08 +0300676 struct btrfs_root *root, struct btrfs_inode *inode,
Josef Bacik5dc562c2012-08-17 13:14:17 -0400677 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000678 u64 *drop_end, int drop_cache,
679 int replace_extent,
680 u32 extent_item_size,
681 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400682{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400683 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500684 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000685 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800686 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500687 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000688 struct btrfs_key new_key;
Nikolay Borisov906c4482020-06-03 08:55:08 +0300689 struct inode *vfs_inode = &inode->vfs_inode;
690 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000691 u64 search_start = start;
692 u64 disk_bytenr = 0;
693 u64 num_bytes = 0;
694 u64 extent_offset = 0;
695 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500696 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000697 int del_nr = 0;
698 int del_slot = 0;
699 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400700 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500701 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400702 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800703 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400704 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000705 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400706
Chris Masona1ed8352009-09-11 12:27:37 -0400707 if (drop_cache)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300708 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400709
Nikolay Borisov906c4482020-06-03 08:55:08 +0300710 if (start >= inode->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400711 modify_tree = 0;
712
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800713 update_refs = (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400714 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500715 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400716 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800717 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400718 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400719 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000720 break;
721 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
722 leaf = path->nodes[0];
723 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800724 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000725 key.type == BTRFS_EXTENT_DATA_KEY)
726 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400727 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400728 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000729 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000730next_slot:
731 leaf = path->nodes[0];
732 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
733 BUG_ON(del_nr > 0);
734 ret = btrfs_next_leaf(root, path);
735 if (ret < 0)
736 break;
737 if (ret > 0) {
738 ret = 0;
739 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400740 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000741 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000742 leaf = path->nodes[0];
743 recow = 1;
744 }
745
746 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000747
748 if (key.objectid > ino)
749 break;
750 if (WARN_ON_ONCE(key.objectid < ino) ||
751 key.type < BTRFS_EXTENT_DATA_KEY) {
752 ASSERT(del_nr == 0);
753 path->slots[0]++;
754 goto next_slot;
755 }
756 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000757 break;
758
759 fi = btrfs_item_ptr(leaf, path->slots[0],
760 struct btrfs_file_extent_item);
761 extent_type = btrfs_file_extent_type(leaf, fi);
762
763 if (extent_type == BTRFS_FILE_EXTENT_REG ||
764 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
765 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
766 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
767 extent_offset = btrfs_file_extent_offset(leaf, fi);
768 extent_end = key.offset +
769 btrfs_file_extent_num_bytes(leaf, fi);
770 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
771 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800772 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400773 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000774 /* can't happen */
775 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400776 }
777
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100778 /*
779 * Don't skip extent items representing 0 byte lengths. They
780 * used to be created (bug) if while punching holes we hit
781 * -ENOSPC condition. So if we find one here, just ensure we
782 * delete it, otherwise we would insert a new file extent item
783 * with the same key (offset) as that 0 bytes length file
784 * extent item in the call to setup_items_for_insert() later
785 * in this function.
786 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500787 if (extent_end == key.offset && extent_end >= search_start) {
788 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100789 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500790 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100791
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000792 if (extent_end <= search_start) {
793 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400794 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400795 }
796
Josef Bacikc3308f82012-09-14 14:51:22 -0400797 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000798 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400799 if (recow || !modify_tree) {
800 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200801 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000802 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400803 }
Chris Mason771ed682008-11-06 22:02:51 -0500804
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000805 /*
806 * | - range to drop - |
807 * | -------- extent -------- |
808 */
809 if (start > key.offset && end < extent_end) {
810 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800811 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200812 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800813 break;
814 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000815
816 memcpy(&new_key, &key, sizeof(new_key));
817 new_key.offset = start;
818 ret = btrfs_duplicate_item(trans, root, path,
819 &new_key);
820 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200821 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000822 continue;
823 }
824 if (ret < 0)
825 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400826
Chris Mason5f39d392007-10-15 16:14:19 -0400827 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000828 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
829 struct btrfs_file_extent_item);
830 btrfs_set_file_extent_num_bytes(leaf, fi,
831 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400832
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000833 fi = btrfs_item_ptr(leaf, path->slots[0],
834 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400835
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000836 extent_offset += start - key.offset;
837 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
838 btrfs_set_file_extent_num_bytes(leaf, fi,
839 extent_end - start);
840 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400841
Josef Bacik5dc562c2012-08-17 13:14:17 -0400842 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800843 btrfs_init_generic_ref(&ref,
844 BTRFS_ADD_DELAYED_REF,
845 disk_bytenr, num_bytes, 0);
846 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000847 root->root_key.objectid,
848 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100849 start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800850 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100851 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400852 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000853 key.offset = start;
854 }
855 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500856 * From here on out we will have actually dropped something, so
857 * last_end can be updated.
858 */
859 last_end = extent_end;
860
861 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000862 * | ---- range to drop ----- |
863 * | -------- extent -------- |
864 */
865 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800866 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200867 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800868 break;
869 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000870
871 memcpy(&new_key, &key, sizeof(new_key));
872 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400873 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000874
875 extent_offset += end - key.offset;
876 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
877 btrfs_set_file_extent_num_bytes(leaf, fi,
878 extent_end - end);
879 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400880 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300881 inode_sub_bytes(vfs_inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000882 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400883 }
884
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000885 search_start = extent_end;
886 /*
887 * | ---- range to drop ----- |
888 * | -------- extent -------- |
889 */
890 if (start > key.offset && end >= extent_end) {
891 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800892 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200893 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800894 break;
895 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000896
897 btrfs_set_file_extent_num_bytes(leaf, fi,
898 start - key.offset);
899 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400900 if (update_refs && disk_bytenr > 0)
Nikolay Borisov906c4482020-06-03 08:55:08 +0300901 inode_sub_bytes(vfs_inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000902 if (end == extent_end)
903 break;
904
905 path->slots[0]++;
906 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400907 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000908
909 /*
910 * | ---- range to drop ----- |
911 * | ------ extent ------ |
912 */
913 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100914delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000915 if (del_nr == 0) {
916 del_slot = path->slots[0];
917 del_nr = 1;
918 } else {
919 BUG_ON(del_slot + del_nr != path->slots[0]);
920 del_nr++;
921 }
922
Josef Bacik5dc562c2012-08-17 13:14:17 -0400923 if (update_refs &&
924 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Nikolay Borisov906c4482020-06-03 08:55:08 +0300925 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000926 extent_end - key.offset);
927 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400928 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400929 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800930 btrfs_init_generic_ref(&ref,
931 BTRFS_DROP_DELAYED_REF,
932 disk_bytenr, num_bytes, 0);
933 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000934 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +0800935 key.objectid,
936 key.offset - extent_offset);
937 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100938 BUG_ON(ret); /* -ENOMEM */
Nikolay Borisov906c4482020-06-03 08:55:08 +0300939 inode_sub_bytes(vfs_inode,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000941 }
942
943 if (end == extent_end)
944 break;
945
946 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
947 path->slots[0]++;
948 goto next_slot;
949 }
950
951 ret = btrfs_del_items(trans, root, path, del_slot,
952 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100953 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400954 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400955 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100956 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000957
958 del_nr = 0;
959 del_slot = 0;
960
David Sterbab3b4aa72011-04-21 01:20:15 +0200961 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000962 continue;
963 }
964
Arnd Bergmann290342f2019-03-25 14:02:25 +0100965 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400966 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000967
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100968 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000969 /*
970 * Set path->slots[0] to first slot, so that after the delete
971 * if items are move off from our leaf to its immediate left or
972 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000973 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000974 */
975 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000976 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100977 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400978 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000979 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000980
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000981 leaf = path->nodes[0];
982 /*
983 * If btrfs_del_items() was called, it might have deleted a leaf, in
984 * which case it unlocked our path, so check path->locks[0] matches a
985 * write lock.
986 */
987 if (!ret && replace_extent && leafs_visited == 1 &&
988 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
989 path->locks[0] == BTRFS_WRITE_LOCK) &&
David Sterbae902baa2019-03-20 14:36:46 +0100990 btrfs_leaf_free_space(leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000991 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000992
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000993 key.objectid = ino;
994 key.type = BTRFS_EXTENT_DATA_KEY;
995 key.offset = start;
996 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
997 struct btrfs_key slot_key;
998
999 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1000 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1001 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001002 }
Nikolay Borisovfc0d82e2020-09-01 17:39:59 +03001003 setup_items_for_insert(root, path, &key, &extent_item_size, 1);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001004 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001005 }
1006
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001007 if (!replace_extent || !(*key_inserted))
1008 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001009 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001010 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001011 return ret;
1012}
1013
1014int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1015 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001016 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001017{
1018 struct btrfs_path *path;
1019 int ret;
1020
1021 path = btrfs_alloc_path();
1022 if (!path)
1023 return -ENOMEM;
Nikolay Borisov906c4482020-06-03 08:55:08 +03001024 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path, start,
1025 end, NULL, drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001026 btrfs_free_path(path);
1027 return ret;
1028}
1029
Yan Zhengd899e052008-10-30 14:25:28 -04001030static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001031 u64 objectid, u64 bytenr, u64 orig_offset,
1032 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001033{
1034 struct btrfs_file_extent_item *fi;
1035 struct btrfs_key key;
1036 u64 extent_end;
1037
1038 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1039 return 0;
1040
1041 btrfs_item_key_to_cpu(leaf, &key, slot);
1042 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1043 return 0;
1044
1045 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1046 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1047 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001048 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001049 btrfs_file_extent_compression(leaf, fi) ||
1050 btrfs_file_extent_encryption(leaf, fi) ||
1051 btrfs_file_extent_other_encoding(leaf, fi))
1052 return 0;
1053
1054 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1055 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1056 return 0;
1057
1058 *start = key.offset;
1059 *end = extent_end;
1060 return 1;
1061}
1062
1063/*
1064 * Mark extent in the range start - end as written.
1065 *
1066 * This changes extent type from 'pre-allocated' to 'regular'. If only
1067 * part of extent is marked as written, the extent will be split into
1068 * two or three.
1069 */
1070int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001071 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001072{
David Sterba3ffbd682018-06-29 10:56:42 +02001073 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001074 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001075 struct extent_buffer *leaf;
1076 struct btrfs_path *path;
1077 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001078 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001079 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001080 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001081 u64 bytenr;
1082 u64 num_bytes;
1083 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001084 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001085 u64 other_start;
1086 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001087 u64 split;
1088 int del_nr = 0;
1089 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001090 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001091 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001092 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001093
Yan Zhengd899e052008-10-30 14:25:28 -04001094 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001095 if (!path)
1096 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001097again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001098 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001099 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001100 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001101 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001102 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001103
1104 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001105 if (ret < 0)
1106 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001107 if (ret > 0 && path->slots[0] > 0)
1108 path->slots[0]--;
1109
1110 leaf = path->nodes[0];
1111 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001112 if (key.objectid != ino ||
1113 key.type != BTRFS_EXTENT_DATA_KEY) {
1114 ret = -EINVAL;
1115 btrfs_abort_transaction(trans, ret);
1116 goto out;
1117 }
Yan Zhengd899e052008-10-30 14:25:28 -04001118 fi = btrfs_item_ptr(leaf, path->slots[0],
1119 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001120 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1121 ret = -EINVAL;
1122 btrfs_abort_transaction(trans, ret);
1123 goto out;
1124 }
Yan Zhengd899e052008-10-30 14:25:28 -04001125 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001126 if (key.offset > start || extent_end < end) {
1127 ret = -EINVAL;
1128 btrfs_abort_transaction(trans, ret);
1129 goto out;
1130 }
Yan Zhengd899e052008-10-30 14:25:28 -04001131
1132 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1133 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001134 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001135 memcpy(&new_key, &key, sizeof(new_key));
1136
1137 if (start == key.offset && end < extent_end) {
1138 other_start = 0;
1139 other_end = start;
1140 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001141 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001142 &other_start, &other_end)) {
1143 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001144 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001145 fi = btrfs_item_ptr(leaf, path->slots[0],
1146 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001147 btrfs_set_file_extent_generation(leaf, fi,
1148 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001149 btrfs_set_file_extent_num_bytes(leaf, fi,
1150 extent_end - end);
1151 btrfs_set_file_extent_offset(leaf, fi,
1152 end - orig_offset);
1153 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1154 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001155 btrfs_set_file_extent_generation(leaf, fi,
1156 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001157 btrfs_set_file_extent_num_bytes(leaf, fi,
1158 end - other_start);
1159 btrfs_mark_buffer_dirty(leaf);
1160 goto out;
1161 }
1162 }
1163
1164 if (start > key.offset && end == extent_end) {
1165 other_start = end;
1166 other_end = 0;
1167 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001168 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001169 &other_start, &other_end)) {
1170 fi = btrfs_item_ptr(leaf, path->slots[0],
1171 struct btrfs_file_extent_item);
1172 btrfs_set_file_extent_num_bytes(leaf, fi,
1173 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001174 btrfs_set_file_extent_generation(leaf, fi,
1175 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001176 path->slots[0]++;
1177 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001178 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001179
1180 fi = btrfs_item_ptr(leaf, path->slots[0],
1181 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001182 btrfs_set_file_extent_generation(leaf, fi,
1183 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001184 btrfs_set_file_extent_num_bytes(leaf, fi,
1185 other_end - start);
1186 btrfs_set_file_extent_offset(leaf, fi,
1187 start - orig_offset);
1188 btrfs_mark_buffer_dirty(leaf);
1189 goto out;
1190 }
1191 }
Yan Zhengd899e052008-10-30 14:25:28 -04001192
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001193 while (start > key.offset || end < extent_end) {
1194 if (key.offset == start)
1195 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001196
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001197 new_key.offset = split;
1198 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1199 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001200 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001201 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001202 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001203 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001204 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001205 goto out;
1206 }
Yan Zhengd899e052008-10-30 14:25:28 -04001207
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001208 leaf = path->nodes[0];
1209 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001210 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001211 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001212 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001213 split - key.offset);
1214
1215 fi = btrfs_item_ptr(leaf, path->slots[0],
1216 struct btrfs_file_extent_item);
1217
Josef Bacik224ecce2012-08-16 16:32:06 -04001218 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001219 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1220 btrfs_set_file_extent_num_bytes(leaf, fi,
1221 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001222 btrfs_mark_buffer_dirty(leaf);
1223
Qu Wenruo82fa1132019-04-04 14:45:35 +08001224 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1225 num_bytes, 0);
1226 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1227 orig_offset);
1228 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001229 if (ret) {
1230 btrfs_abort_transaction(trans, ret);
1231 goto out;
1232 }
Yan Zhengd899e052008-10-30 14:25:28 -04001233
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001234 if (split == start) {
1235 key.offset = start;
1236 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001237 if (start != key.offset) {
1238 ret = -EINVAL;
1239 btrfs_abort_transaction(trans, ret);
1240 goto out;
1241 }
Yan Zhengd899e052008-10-30 14:25:28 -04001242 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001243 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001244 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001245 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001246 }
1247
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001248 other_start = end;
1249 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001250 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1251 num_bytes, 0);
1252 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001253 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001254 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001255 &other_start, &other_end)) {
1256 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001257 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001258 goto again;
1259 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001260 extent_end = other_end;
1261 del_slot = path->slots[0] + 1;
1262 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001263 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001264 if (ret) {
1265 btrfs_abort_transaction(trans, ret);
1266 goto out;
1267 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001268 }
1269 other_start = 0;
1270 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001271 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001272 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001273 &other_start, &other_end)) {
1274 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001275 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001276 goto again;
1277 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001278 key.offset = other_start;
1279 del_slot = path->slots[0];
1280 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001281 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001282 if (ret) {
1283 btrfs_abort_transaction(trans, ret);
1284 goto out;
1285 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001286 }
1287 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001288 fi = btrfs_item_ptr(leaf, path->slots[0],
1289 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001290 btrfs_set_file_extent_type(leaf, fi,
1291 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001292 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001293 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001294 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001295 fi = btrfs_item_ptr(leaf, del_slot - 1,
1296 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001297 btrfs_set_file_extent_type(leaf, fi,
1298 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001299 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001300 btrfs_set_file_extent_num_bytes(leaf, fi,
1301 extent_end - key.offset);
1302 btrfs_mark_buffer_dirty(leaf);
1303
1304 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001305 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001306 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001307 goto out;
1308 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001309 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001310out:
Yan Zhengd899e052008-10-30 14:25:28 -04001311 btrfs_free_path(path);
1312 return 0;
1313}
1314
Chris Mason39279cc2007-06-12 06:35:45 -04001315/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001316 * on error we return an unlocked page and the error value
1317 * on success we return a locked page and 0
1318 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001319static int prepare_uptodate_page(struct inode *inode,
1320 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001321 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001322{
1323 int ret = 0;
1324
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001325 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001326 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001327 ret = btrfs_readpage(NULL, page);
1328 if (ret)
1329 return ret;
1330 lock_page(page);
1331 if (!PageUptodate(page)) {
1332 unlock_page(page);
1333 return -EIO;
1334 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001335 if (page->mapping != inode->i_mapping) {
1336 unlock_page(page);
1337 return -EAGAIN;
1338 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001339 }
1340 return 0;
1341}
1342
1343/*
Miao Xie376cc682013-12-10 19:25:04 +08001344 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001345 */
Miao Xieb37392e2013-12-10 19:25:03 +08001346static noinline int prepare_pages(struct inode *inode, struct page **pages,
1347 size_t num_pages, loff_t pos,
1348 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001349{
1350 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001351 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001352 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001353 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001354 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001355
Chris Mason39279cc2007-06-12 06:35:45 -04001356 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001357again:
Josef Bacika94733d2011-07-11 10:47:06 -04001358 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001359 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001360 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001361 faili = i - 1;
1362 err = -ENOMEM;
1363 goto fail;
1364 }
1365
1366 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001367 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001368 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001369 if (!err && i == num_pages - 1)
1370 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001371 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001372 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001373 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001374 if (err == -EAGAIN) {
1375 err = 0;
1376 goto again;
1377 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001378 faili = i - 1;
1379 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001380 }
Chris Masonccd467d2007-06-28 15:57:36 -04001381 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001382 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001383
Chris Mason39279cc2007-06-12 06:35:45 -04001384 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001385fail:
1386 while (faili >= 0) {
1387 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001388 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001389 faili--;
1390 }
1391 return err;
1392
Chris Mason39279cc2007-06-12 06:35:45 -04001393}
1394
Miao Xie376cc682013-12-10 19:25:04 +08001395/*
1396 * This function locks the extent and properly waits for data=ordered extents
1397 * to finish before allowing the pages to be modified if need.
1398 *
1399 * The return value:
1400 * 1 - the extent is locked
1401 * 0 - the extent is not locked, and everything is OK
1402 * -EAGAIN - need re-prepare the pages
1403 * the other < 0 number - Something wrong happens
1404 */
1405static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001406lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001407 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301408 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001409 u64 *lockstart, u64 *lockend,
1410 struct extent_state **cached_state)
1411{
David Sterba3ffbd682018-06-29 10:56:42 +02001412 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001413 u64 start_pos;
1414 u64 last_pos;
1415 int i;
1416 int ret = 0;
1417
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001418 start_pos = round_down(pos, fs_info->sectorsize);
Qu Wenruoe21139c2020-08-13 14:33:52 +08001419 last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001420
Filipe Mananae3b8a482017-11-04 00:16:59 +00001421 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001422 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001423
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001424 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1425 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001426 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1427 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001428 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08001429 ordered->file_offset + ordered->num_bytes > start_pos &&
Miao Xie376cc682013-12-10 19:25:04 +08001430 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001431 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001432 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001433 for (i = 0; i < num_pages; i++) {
1434 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001435 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001436 }
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001437 btrfs_start_ordered_extent(ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001438 btrfs_put_ordered_extent(ordered);
1439 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001440 }
1441 if (ordered)
1442 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001443
Miao Xie376cc682013-12-10 19:25:04 +08001444 *lockstart = start_pos;
1445 *lockend = last_pos;
1446 ret = 1;
1447 }
1448
Chris Mason7703bdd2018-06-20 07:56:11 -07001449 /*
1450 * It's possible the pages are dirty right now, but we don't want
1451 * to clean them yet because copy_from_user may catch a page fault
1452 * and we might have to fall back to one page at a time. If that
1453 * happens, we'll unlock these pages and we'd have a window where
1454 * reclaim could sneak in and drop the once-dirty page on the floor
1455 * without writing it.
1456 *
1457 * We have the pages locked and the extent range locked, so there's
1458 * no way someone can start IO on any dirty pages in this range.
1459 *
1460 * We'll call btrfs_dirty_pages() later on, and that will flip around
1461 * delalloc bits and dirty the pages as required.
1462 */
Miao Xie376cc682013-12-10 19:25:04 +08001463 for (i = 0; i < num_pages; i++) {
Miao Xie376cc682013-12-10 19:25:04 +08001464 set_page_extent_mapped(pages[i]);
1465 WARN_ON(!PageLocked(pages[i]));
1466 }
1467
1468 return ret;
1469}
1470
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001471static int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
1472 size_t *write_bytes, bool nowait)
Josef Bacik7ee9e442013-06-21 16:37:03 -04001473{
David Sterba3ffbd682018-06-29 10:56:42 +02001474 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001475 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001476 u64 lockstart, lockend;
1477 u64 num_bytes;
1478 int ret;
1479
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001480 if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)))
1481 return 0;
1482
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001483 if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock))
Nikolay Borisov5f791ec2019-05-07 10:23:46 +03001484 return -EAGAIN;
Miao Xie8257b2d2014-03-06 13:38:19 +08001485
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001486 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001487 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001488 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001489 num_bytes = lockend - lockstart + 1;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001490
1491 if (nowait) {
1492 struct btrfs_ordered_extent *ordered;
1493
1494 if (!try_lock_extent(&inode->io_tree, lockstart, lockend))
1495 return -EAGAIN;
1496
1497 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1498 num_bytes);
1499 if (ordered) {
1500 btrfs_put_ordered_extent(ordered);
1501 ret = -EAGAIN;
1502 goto out_unlock;
1503 }
1504 } else {
1505 btrfs_lock_and_flush_ordered_range(inode, lockstart,
1506 lockend, NULL);
1507 }
1508
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001509 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
Boris Burkova84d5d42020-08-18 11:00:05 -07001510 NULL, NULL, NULL, false);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001511 if (ret <= 0) {
1512 ret = 0;
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001513 if (!nowait)
1514 btrfs_drew_write_unlock(&root->snapshot_lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001515 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001516 *write_bytes = min_t(size_t, *write_bytes ,
1517 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001518 }
Filipe Manana5dbb75e2020-06-15 18:49:39 +01001519out_unlock:
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001520 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001521
1522 return ret;
1523}
1524
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001525static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos,
1526 size_t *write_bytes)
1527{
1528 return check_can_nocow(inode, pos, write_bytes, true);
1529}
1530
1531/*
1532 * Check if we can do nocow write into the range [@pos, @pos + @write_bytes)
1533 *
1534 * @pos: File offset
1535 * @write_bytes: The length to write, will be updated to the nocow writeable
1536 * range
1537 *
1538 * This function will flush ordered extents in the range to ensure proper
1539 * nocow checks.
1540 *
1541 * Return:
1542 * >0 and update @write_bytes if we can do nocow write
1543 * 0 if we can't do nocow write
1544 * -EAGAIN if we can't get the needed lock or there are ordered extents
1545 * for * (nowait == true) case
1546 * <0 if other error happened
1547 *
1548 * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock().
1549 */
1550int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
1551 size_t *write_bytes)
1552{
1553 return check_can_nocow(inode, pos, write_bytes, false);
1554}
1555
1556void btrfs_check_nocow_unlock(struct btrfs_inode *inode)
1557{
1558 btrfs_drew_write_unlock(&inode->root->snapshot_lock);
1559}
1560
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001561static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1562 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001563{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001564 struct file *file = iocb->ki_filp;
1565 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001566 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001567 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001568 struct page **pages = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001569 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001570 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001571 u64 lockstart;
1572 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001573 size_t num_written = 0;
1574 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001575 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001576 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001577 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001578
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001579 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1580 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001581 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1582 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001583 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001584 if (!pages)
1585 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001586
Josef Bacikd0215f32011-01-25 14:57:24 -05001587 while (iov_iter_count(i) > 0) {
Filipe Mananac67d9702019-09-30 10:20:25 +01001588 struct extent_state *cached_state = NULL;
Johannes Thumshirn70730172018-12-05 15:23:03 +01001589 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301590 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001591 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001592 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001593 offset);
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001594 size_t num_pages;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001595 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001596 size_t dirty_pages;
1597 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301598 size_t dirty_sectors;
1599 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001600 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001601
Xin Zhong914ee292010-12-09 09:30:14 +00001602 /*
1603 * Fault pages before locking them in prepare_pages
1604 * to avoid recursive lock
1605 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001606 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001607 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001608 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001609 }
1610
Filipe Mananaa0e248b2019-10-11 16:41:20 +01001611 only_release_metadata = false;
Jeff Mahoneyda170662016-06-15 09:22:56 -04001612 sector_offset = pos & (fs_info->sectorsize - 1);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001613
Qu Wenruo364ecf32017-02-27 15:10:38 +08001614 extent_changeset_release(data_reserved);
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03001615 ret = btrfs_check_data_free_space(BTRFS_I(inode),
1616 &data_reserved, pos,
Qu Wenruo364ecf32017-02-27 15:10:38 +08001617 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001618 if (ret < 0) {
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001619 /*
1620 * If we don't have to COW at the offset, reserve
1621 * metadata only. write_bytes may get smaller than
1622 * requested here.
1623 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001624 if (btrfs_check_nocow_lock(BTRFS_I(inode), pos,
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001625 &write_bytes) > 0)
Josef Bacikc6887cd2016-03-25 13:26:00 -04001626 only_release_metadata = true;
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001627 else
Josef Bacikc6887cd2016-03-25 13:26:00 -04001628 break;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001629 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001630
Goldwyn Rodrigueseefa45f52020-09-25 15:36:38 -05001631 num_pages = DIV_ROUND_UP(write_bytes + offset, PAGE_SIZE);
1632 WARN_ON(num_pages > nrptrs);
1633 reserve_bytes = round_up(write_bytes + sector_offset,
1634 fs_info->sectorsize);
Josef Bacik8b62f872017-10-19 14:15:55 -04001635 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001636 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1637 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001638 if (ret) {
1639 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03001640 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001641 data_reserved, pos,
1642 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001643 else
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001644 btrfs_check_nocow_unlock(BTRFS_I(inode));
Josef Bacik7ee9e442013-06-21 16:37:03 -04001645 break;
1646 }
1647
1648 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001649again:
Josef Bacik4a640012011-01-25 15:10:08 -05001650 /*
1651 * This is going to setup the pages array with the number of
1652 * pages we want, so we don't really need to worry about the
1653 * contents of pages from loop to loop
1654 */
Miao Xieb37392e2013-12-10 19:25:03 +08001655 ret = prepare_pages(inode, pages, num_pages,
1656 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001657 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001658 if (ret) {
1659 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001660 reserve_bytes);
Josef Bacikd0215f32011-01-25 14:57:24 -05001661 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001662 }
Chris Mason39279cc2007-06-12 06:35:45 -04001663
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001664 extents_locked = lock_and_cleanup_extent_if_need(
1665 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001666 num_pages, pos, write_bytes, &lockstart,
1667 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001668 if (extents_locked < 0) {
1669 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001670 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001671 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo8702ba92019-10-14 14:34:51 +08001672 reserve_bytes);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001673 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001674 break;
Miao Xie376cc682013-12-10 19:25:04 +08001675 }
1676
Zhao Leiee22f0c2016-01-06 18:47:31 +08001677 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001678
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001679 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001680 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001681 fs_info->sectorsize);
1682 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001683
Chris Masonb1bf8622011-02-28 09:52:08 -05001684 /*
1685 * if we have trouble faulting in the pages, fall
1686 * back to one page at a time
1687 */
1688 if (copied < write_bytes)
1689 nrptrs = 1;
1690
Josef Bacikb63164292011-09-30 15:23:54 -04001691 if (copied == 0) {
1692 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001693 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001694 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001695 } else {
1696 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001697 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001698 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001699 }
Xin Zhong914ee292010-12-09 09:30:14 +00001700
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301701 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001702 /* release everything except the sectors we dirtied */
1703 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001704 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001705 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001706 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001707 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001708 } else {
1709 u64 __pos;
1710
Jeff Mahoneyda170662016-06-15 09:22:56 -04001711 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001712 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001713 (dirty_pages << PAGE_SHIFT);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001714 btrfs_delalloc_release_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08001715 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001716 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001717 }
Xin Zhong914ee292010-12-09 09:30:14 +00001718 }
1719
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301720 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001721 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001722
1723 if (copied > 0)
Nikolay Borisov088545f2020-06-03 08:55:36 +03001724 ret = btrfs_dirty_pages(BTRFS_I(inode), pages,
1725 dirty_pages, pos, copied,
1726 &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001727
1728 /*
1729 * If we have not locked the extent range, because the range's
1730 * start offset is >= i_size, we might still have a non-NULL
1731 * cached extent state, acquired while marking the extent range
1732 * as delalloc through btrfs_dirty_pages(). Therefore free any
1733 * possible cached extent state to avoid a memory leak.
1734 */
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001735 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001736 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001737 lockstart, lockend, &cached_state);
Filipe Mananac67d9702019-09-30 10:20:25 +01001738 else
1739 free_extent_state(cached_state);
1740
Qu Wenruo8702ba92019-10-14 14:34:51 +08001741 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
Miao Xief1de9682014-01-09 10:06:10 +08001742 if (ret) {
1743 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001744 break;
Miao Xief1de9682014-01-09 10:06:10 +08001745 }
Chris Mason39279cc2007-06-12 06:35:45 -04001746
Josef Bacik7ee9e442013-06-21 16:37:03 -04001747 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001748 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001749 btrfs_check_nocow_unlock(BTRFS_I(inode));
Miao Xie8257b2d2014-03-06 13:38:19 +08001750
Josef Bacik7ee9e442013-06-21 16:37:03 -04001751 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001752 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001753 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001754 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001755 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001756
1757 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1758 lockend, EXTENT_NORESERVE, NULL,
1759 NULL, GFP_NOFS);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001760 }
1761
Miao Xief1de9682014-01-09 10:06:10 +08001762 btrfs_drop_pages(pages, num_pages);
1763
Josef Bacikd0215f32011-01-25 14:57:24 -05001764 cond_resched();
1765
Namjae Jeond0e1d662012-12-11 16:00:21 -08001766 balance_dirty_pages_ratelimited(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001767
Xin Zhong914ee292010-12-09 09:30:14 +00001768 pos += copied;
1769 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001770 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001771
Chris Mason8c2383c2007-06-18 09:57:58 -04001772 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001773
Josef Bacik7ee9e442013-06-21 16:37:03 -04001774 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001775 if (only_release_metadata) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001776 btrfs_check_nocow_unlock(BTRFS_I(inode));
Nikolay Borisov691fa052017-02-20 13:50:42 +02001777 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001778 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001779 } else {
Nikolay Borisov86d52922020-06-03 08:55:40 +03001780 btrfs_delalloc_release_space(BTRFS_I(inode),
1781 data_reserved,
Qu Wenruobc42bda2017-02-27 15:10:39 +08001782 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001783 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001784 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001785 }
1786
Qu Wenruo364ecf32017-02-27 15:10:38 +08001787 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001788 return num_written ? num_written : ret;
1789}
1790
David Sterbaf4c48b42020-06-09 19:19:27 +02001791static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001792{
1793 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001794 struct inode *inode = file_inode(file);
David Sterbaf4c48b42020-06-09 19:19:27 +02001795 loff_t pos;
1796 ssize_t written;
Josef Bacikd0215f32011-01-25 14:57:24 -05001797 ssize_t written_buffered;
1798 loff_t endbyte;
1799 int err;
1800
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05001801 written = btrfs_direct_IO(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001802
Al Viro0c949332014-03-22 06:51:37 -04001803 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001804 return written;
1805
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001806 pos = iocb->ki_pos;
1807 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001808 if (written_buffered < 0) {
1809 err = written_buffered;
1810 goto out;
1811 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001812 /*
1813 * Ensure all data is persisted. We want the next direct IO read to be
1814 * able to read what was just written.
1815 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001816 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001817 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001818 if (err)
1819 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001820 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001821 if (err)
1822 goto out;
1823 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001824 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001825 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1826 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001827out:
1828 return written ? written : err;
1829}
1830
Josef Bacik6c760c02012-11-09 10:53:21 -05001831static void update_time_for_write(struct inode *inode)
1832{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001833 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001834
1835 if (IS_NOCMTIME(inode))
1836 return;
1837
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001838 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001839 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001840 inode->i_mtime = now;
1841
Deepa Dinamani95582b02018-05-08 19:36:02 -07001842 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001843 inode->i_ctime = now;
1844
1845 if (IS_I_VERSION(inode))
1846 inode_inc_iversion(inode);
1847}
1848
Al Virob30ac0f2014-04-03 14:29:04 -04001849static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1850 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001851{
1852 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001853 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001854 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001855 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001856 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001857 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001858 ssize_t num_written = 0;
Omar Sandovalf50cb7a2019-08-15 14:04:03 -07001859 const bool sync = iocb->ki_flags & IOCB_DSYNC;
Al Viro3309dd02015-04-09 12:55:47 -04001860 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001861 loff_t pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001862 size_t count;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301863 loff_t oldsize;
1864 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001865
Christoph Hellwig91f99432017-08-29 16:13:20 +02001866 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1867 (iocb->ki_flags & IOCB_NOWAIT))
1868 return -EOPNOTSUPP;
1869
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001870 if (iocb->ki_flags & IOCB_NOWAIT) {
1871 if (!inode_trylock(inode))
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001872 return -EAGAIN;
Goldwyn Rodrigues9cf35f62019-09-11 11:45:15 -05001873 } else {
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001874 inode_lock(inode);
1875 }
1876
1877 err = generic_write_checks(iocb, from);
1878 if (err <= 0) {
1879 inode_unlock(inode);
1880 return err;
1881 }
1882
1883 pos = iocb->ki_pos;
Omar Sandovalc09767a2019-08-15 14:04:02 -07001884 count = iov_iter_count(from);
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001885 if (iocb->ki_flags & IOCB_NOWAIT) {
Filipe Manana260a6332020-06-15 18:49:13 +01001886 size_t nocow_bytes = count;
1887
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001888 /*
1889 * We will allocate space in case nodatacow is not set,
1890 * so bail
1891 */
Qu Wenruo38d37aa2020-06-24 07:23:52 +08001892 if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes)
1893 <= 0) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001894 inode_unlock(inode);
1895 return -EAGAIN;
1896 }
Filipe Manana260a6332020-06-15 18:49:13 +01001897 /*
1898 * There are holes in the range or parts of the range that must
1899 * be COWed (shared extents, RO block groups, etc), so just bail
1900 * out.
1901 */
1902 if (nocow_bytes < count) {
1903 inode_unlock(inode);
1904 return -EAGAIN;
1905 }
Al Viro3309dd02015-04-09 12:55:47 -04001906 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001907
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001908 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001909 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001910 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001911 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001912 goto out;
1913 }
1914
1915 /*
1916 * If BTRFS flips readonly due to some impossible error
1917 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1918 * although we have opened a file as writable, we have
1919 * to stop this write operation to ensure FS consistency.
1920 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001921 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001922 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001923 err = -EROFS;
1924 goto out;
1925 }
1926
Josef Bacik6c760c02012-11-09 10:53:21 -05001927 /*
1928 * We reserve space for updating the inode when we reserve space for the
1929 * extent we are going to write, so we will enospc out there. We don't
1930 * need to start yet another transaction to update the inode as we will
1931 * update the inode when we finish writing whatever data we write.
1932 */
1933 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001934
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001935 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301936 oldsize = i_size_read(inode);
1937 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001938 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001939 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001940 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301941 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001942 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001943 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001944 goto out;
1945 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001946 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301947 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001948 }
1949
Josef Bacikb812ce22012-11-16 13:56:32 -05001950 if (sync)
1951 atomic_inc(&BTRFS_I(inode)->sync_writers);
1952
Al Viro2ba48ce2015-04-09 13:52:01 -04001953 if (iocb->ki_flags & IOCB_DIRECT) {
Josef Bacik0eb79292020-09-03 11:16:51 -04001954 /*
1955 * 1. We must always clear IOCB_DSYNC in order to not deadlock
1956 * in iomap, as it calls generic_write_sync() in this case.
1957 * 2. If we are async, we can call iomap_dio_complete() either
1958 * in
1959 *
1960 * 2.1. A worker thread from the last bio completed. In this
1961 * case we need to mark the btrfs_dio_data that it is
1962 * async in order to call generic_write_sync() properly.
1963 * This is handled by setting BTRFS_DIO_SYNC_STUB in the
1964 * current->journal_info.
1965 * 2.2 The submitter context, because all IO completed
1966 * before we exited iomap_dio_rw(). In this case we can
1967 * just re-set the IOCB_DSYNC on the iocb and we'll do
1968 * the sync below. If our ->end_io() gets called and
1969 * current->journal_info is set, then we know we're in
1970 * our current context and we will clear
1971 * current->journal_info to indicate that we need to
1972 * sync below.
1973 */
1974 if (sync) {
1975 ASSERT(current->journal_info == NULL);
1976 iocb->ki_flags &= ~IOCB_DSYNC;
1977 current->journal_info = BTRFS_DIO_SYNC_STUB;
1978 }
David Sterbaf4c48b42020-06-09 19:19:27 +02001979 num_written = __btrfs_direct_write(iocb, from);
Josef Bacik0eb79292020-09-03 11:16:51 -04001980
1981 /*
1982 * As stated above, we cleared journal_info, so we need to do
1983 * the sync ourselves.
1984 */
1985 if (sync && current->journal_info == NULL)
1986 iocb->ki_flags |= IOCB_DSYNC;
1987 current->journal_info = NULL;
Josef Bacikd0215f32011-01-25 14:57:24 -05001988 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001989 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001990 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001991 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301992 if (clean_page)
1993 pagecache_isize_extended(inode, oldsize,
1994 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001995 }
1996
Al Viro59551022016-01-22 15:40:57 -05001997 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001998
Chris Mason5a3f23d2009-03-31 13:27:11 -04001999 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05002000 * We also have to set last_sub_trans to the current log transid,
2001 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08002002 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04002003 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002004 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05002005 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00002006 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07002007 if (num_written > 0)
2008 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00002009
Josef Bacikb812ce22012-11-16 13:56:32 -05002010 if (sync)
2011 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00002012out:
Chris Mason39279cc2007-06-12 06:35:45 -04002013 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002014 return num_written ? num_written : err;
2015}
2016
Chris Masond3977122009-01-05 21:25:51 -05002017int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002018{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002019 struct btrfs_file_private *private = filp->private_data;
2020
Josef Bacik23b5ec72017-07-24 15:14:25 -04002021 if (private && private->filldir_buf)
2022 kfree(private->filldir_buf);
2023 kfree(private);
2024 filp->private_data = NULL;
2025
Chris Masonf6dc45c2014-08-20 07:15:33 -07002026 /*
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002027 * Set by setattr when we are about to truncate a file from a non-zero
2028 * size to a zero size. This tries to flush down new bytes that may
2029 * have been written if the application were using truncate to replace
2030 * a file in place.
Chris Masonf6dc45c2014-08-20 07:15:33 -07002031 */
Nikolay Borisov1fd40332020-10-01 09:40:39 +03002032 if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Chris Masonf6dc45c2014-08-20 07:15:33 -07002033 &BTRFS_I(inode)->runtime_flags))
2034 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002035 return 0;
2036}
2037
Filipe Manana669249e2014-09-02 11:09:58 +01002038static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2039{
2040 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002041 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002042
Liu Bo343e4fc2017-11-15 16:10:28 -07002043 /*
2044 * This is only called in fsync, which would do synchronous writes, so
2045 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2046 * multiple disks using raid profile, a large IO can be split to
2047 * several segments of stripe length (currently 64K).
2048 */
2049 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002050 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002051 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002052 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002053 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002054
2055 return ret;
2056}
2057
Chris Masond352ac62008-09-29 15:18:18 -04002058/*
2059 * fsync call for both files and directories. This logs the inode into
2060 * the tree log instead of forcing full commits whenever possible.
2061 *
2062 * It needs to call filemap_fdatawait so that all ordered extent updates are
2063 * in the metadata btree are up to date for copying to the log.
2064 *
2065 * It drops the inode mutex before doing the tree log commit. This is an
2066 * important optimization for directories because holding the mutex prevents
2067 * new operations on the dir while we write to disk.
2068 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002069int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002070{
Filipe Mananade17e792016-03-30 19:03:13 -04002071 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002072 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002073 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002074 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002075 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002076 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002077 int ret = 0, err;
Filipe Manana48778172020-08-11 12:43:58 +01002078 u64 len;
2079 bool full_sync;
Chris Mason39279cc2007-06-12 06:35:45 -04002080
liubo1abe9b82011-03-24 11:18:59 +00002081 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002082
Liu Boebb70442017-11-21 14:35:40 -07002083 btrfs_init_log_ctx(&ctx, inode);
2084
Miao Xie90abccf2012-09-13 04:53:47 -06002085 /*
Filipe Manana48778172020-08-11 12:43:58 +01002086 * Always set the range to a full range, otherwise we can get into
2087 * several problems, from missing file extent items to represent holes
2088 * when not using the NO_HOLES feature, to log tree corruption due to
2089 * races between hole detection during logging and completion of ordered
2090 * extents outside the range, to missing checksums due to ordered extents
2091 * for which we flushed only a subset of their pages.
Filipe Manana95418ed2020-03-09 12:41:05 +00002092 */
Filipe Manana48778172020-08-11 12:43:58 +01002093 start = 0;
2094 end = LLONG_MAX;
2095 len = (u64)LLONG_MAX + 1;
Filipe Manana95418ed2020-03-09 12:41:05 +00002096
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 Manana48778172020-08-11 12:43:58 +01002119 * Always check for the full sync flag while holding the inode's lock,
2120 * to avoid races with other tasks. The flag must be either set all the
2121 * time during logging or always off all the time while logging.
Filipe Manana7af59742020-04-07 11:37:44 +01002122 */
Filipe Manana48778172020-08-11 12:43:58 +01002123 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2124 &BTRFS_I(inode)->runtime_flags);
Filipe Manana7af59742020-04-07 11:37:44 +01002125
2126 /*
Filipe Mananaaab15e82018-11-12 10:23:58 +00002127 * Before we acquired the inode's lock, someone may have dirtied more
2128 * pages in the target range. We need to make sure that writeback for
2129 * any such pages does not start while we are logging the inode, because
2130 * if it does, any of the following might happen when we are not doing a
2131 * full inode sync:
2132 *
2133 * 1) We log an extent after its writeback finishes but before its
2134 * checksums are added to the csum tree, leading to -EIO errors
2135 * when attempting to read the extent after a log replay.
2136 *
2137 * 2) We can end up logging an extent before its writeback finishes.
2138 * Therefore after the log replay we will have a file extent item
2139 * pointing to an unwritten extent (and no data checksums as well).
2140 *
2141 * So trigger writeback for any eventual new dirty pages and then we
2142 * wait for all ordered extents to complete below.
2143 */
2144 ret = start_ordered_ops(inode, start, end);
2145 if (ret) {
Robbie Ko6ff06722020-03-17 14:31:02 +08002146 up_write(&BTRFS_I(inode)->dio_sem);
Filipe Mananaaab15e82018-11-12 10:23:58 +00002147 inode_unlock(inode);
2148 goto out;
2149 }
2150
2151 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002152 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002153 * IO of a lower priority task while holding a transaction open.
Filipe Mananaba0b0842019-10-16 16:28:52 +01002154 *
Filipe Manana48778172020-08-11 12:43:58 +01002155 * For a full fsync we wait for the ordered extents to complete while
2156 * for a fast fsync we wait just for writeback to complete, and then
2157 * attach the ordered extents to the transaction so that a transaction
2158 * commit waits for their completion, to avoid data loss if we fsync,
2159 * the current transaction commits before the ordered extents complete
2160 * and a power failure happens right after that.
Filipe Manana669249e2014-09-02 11:09:58 +01002161 */
Filipe Manana48778172020-08-11 12:43:58 +01002162 if (full_sync) {
2163 ret = btrfs_wait_ordered_range(inode, start, len);
2164 } else {
2165 /*
2166 * Get our ordered extents as soon as possible to avoid doing
2167 * checksum lookups in the csum tree, and use instead the
2168 * checksums attached to the ordered extents.
2169 */
2170 btrfs_get_ordered_extents_for_logging(BTRFS_I(inode),
2171 &ctx.ordered_extents);
2172 ret = filemap_fdatawait_range(inode->i_mapping, start, end);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002173 }
Filipe Manana48778172020-08-11 12:43:58 +01002174
2175 if (ret)
2176 goto out_release_extents;
2177
Miao Xie2ecb7922012-09-06 04:04:27 -06002178 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002179
Filipe Manana48778172020-08-11 12:43:58 +01002180 /*
2181 * If we are doing a fast fsync we can not bail out if the inode's
2182 * last_trans is <= then the last committed transaction, because we only
2183 * update the last_trans of the inode during ordered extent completion,
2184 * and for a fast fsync we don't wait for that, we only wait for the
2185 * writeback to complete.
2186 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002187 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002188 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
Filipe Manana48778172020-08-11 12:43:58 +01002189 (BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed &&
2190 (full_sync || list_empty(&ctx.ordered_extents)))) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002191 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002192 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002193 * modified so clear this flag in case it was set for whatever
2194 * reason, it's no longer relevant.
2195 */
2196 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2197 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002198 /*
2199 * An ordered extent might have started before and completed
2200 * already with io errors, in which case the inode was not
2201 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002202 * for any errors that might have happened since we last
2203 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002204 */
Jeff Layton333427a2017-07-06 07:02:31 -04002205 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Filipe Manana48778172020-08-11 12:43:58 +01002206 goto out_release_extents;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002207 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002208
2209 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002210 * We use start here because we will need to wait on the IO to complete
2211 * in btrfs_sync_log, which could require joining a transaction (for
2212 * example checking cross references in the nocow path). If we use join
2213 * here we could get into a situation where we're waiting on IO to
2214 * happen that is blocked on a transaction trying to commit. With start
2215 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002216 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002217 * from thinking they are super smart and changing this to
2218 * btrfs_join_transaction *cough*Josef*cough*.
2219 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002220 trans = btrfs_start_transaction(root, 0);
2221 if (IS_ERR(trans)) {
2222 ret = PTR_ERR(trans);
Filipe Manana48778172020-08-11 12:43:58 +01002223 goto out_release_extents;
Chris Mason39279cc2007-06-12 06:35:45 -04002224 }
Chris Masone02119d2008-09-05 16:13:11 -04002225
Filipe Manana48778172020-08-11 12:43:58 +01002226 ret = btrfs_log_dentry_safe(trans, dentry, &ctx);
2227 btrfs_release_log_ctx_extents(&ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002228 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002229 /* Fallthrough and commit/free transaction. */
2230 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002231 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002232
2233 /* we've logged all the items and now have a consistent
2234 * version of the file in the log. It is possible that
2235 * someone will come in and modify the file, but that's
2236 * fine because the log is consistent on disk, and we
2237 * have references to all of the file's extents
2238 *
2239 * It is possible that someone will come in and log the
2240 * file again, but that will end up using the synchronization
2241 * inside btrfs_sync_log to keep things safe.
2242 */
Josef Bacikc4951442018-10-12 15:32:32 -04002243 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002244 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002245
Chris Mason257c62e2009-10-13 13:21:08 -04002246 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002247 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002248 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002249 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002250 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002251 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002252 }
Chris Mason257c62e2009-10-13 13:21:08 -04002253 }
Filipe Manana48778172020-08-11 12:43:58 +01002254 if (!full_sync) {
2255 ret = btrfs_wait_ordered_range(inode, start, len);
2256 if (ret) {
2257 btrfs_end_transaction(trans);
2258 goto out;
2259 }
2260 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002261 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002262 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002263 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002264 }
Chris Mason39279cc2007-06-12 06:35:45 -04002265out:
Liu Boebb70442017-11-21 14:35:40 -07002266 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002267 err = file_check_and_advance_wb_err(file);
2268 if (!ret)
2269 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002270 return ret > 0 ? -EIO : ret;
Filipe Manana48778172020-08-11 12:43:58 +01002271
2272out_release_extents:
2273 btrfs_release_log_ctx_extents(&ctx);
2274 up_write(&BTRFS_I(inode)->dio_sem);
2275 inode_unlock(inode);
2276 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002277}
2278
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002279static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002280 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002281 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002282 .page_mkwrite = btrfs_page_mkwrite,
2283};
2284
2285static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2286{
Miao Xie058a4572010-05-20 07:21:50 +00002287 struct address_space *mapping = filp->f_mapping;
2288
2289 if (!mapping->a_ops->readpage)
2290 return -ENOEXEC;
2291
Chris Mason9ebefb182007-06-15 13:50:00 -04002292 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002293 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002294
Chris Mason9ebefb182007-06-15 13:50:00 -04002295 return 0;
2296}
2297
Nikolay Borisov35339c22017-02-20 13:50:46 +02002298static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002299 int slot, u64 start, u64 end)
2300{
2301 struct btrfs_file_extent_item *fi;
2302 struct btrfs_key key;
2303
2304 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2305 return 0;
2306
2307 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002308 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002309 key.type != BTRFS_EXTENT_DATA_KEY)
2310 return 0;
2311
2312 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2313
2314 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2315 return 0;
2316
2317 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2318 return 0;
2319
2320 if (key.offset == end)
2321 return 1;
2322 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2323 return 1;
2324 return 0;
2325}
2326
Nikolay Borisova012a742017-02-20 13:50:47 +02002327static int fill_holes(struct btrfs_trans_handle *trans,
2328 struct btrfs_inode *inode,
2329 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002330{
David Sterba3ffbd682018-06-29 10:56:42 +02002331 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002332 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002333 struct extent_buffer *leaf;
2334 struct btrfs_file_extent_item *fi;
2335 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002336 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002337 struct btrfs_key key;
2338 int ret;
2339
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002340 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002341 goto out;
2342
Nikolay Borisova012a742017-02-20 13:50:47 +02002343 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002344 key.type = BTRFS_EXTENT_DATA_KEY;
2345 key.offset = offset;
2346
Josef Bacik2aaa6652012-08-29 14:27:18 -04002347 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002348 if (ret <= 0) {
2349 /*
2350 * We should have dropped this offset, so if we find it then
2351 * something has gone horribly wrong.
2352 */
2353 if (ret == 0)
2354 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002355 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002356 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002357
2358 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002359 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002360 u64 num_bytes;
2361
2362 path->slots[0]--;
2363 fi = btrfs_item_ptr(leaf, path->slots[0],
2364 struct btrfs_file_extent_item);
2365 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2366 end - offset;
2367 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2368 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2369 btrfs_set_file_extent_offset(leaf, fi, 0);
2370 btrfs_mark_buffer_dirty(leaf);
2371 goto out;
2372 }
2373
chandan1707e262014-07-01 12:04:28 +05302374 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002375 u64 num_bytes;
2376
Josef Bacik2aaa6652012-08-29 14:27:18 -04002377 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002378 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002379 fi = btrfs_item_ptr(leaf, path->slots[0],
2380 struct btrfs_file_extent_item);
2381 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2382 offset;
2383 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2384 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2385 btrfs_set_file_extent_offset(leaf, fi, 0);
2386 btrfs_mark_buffer_dirty(leaf);
2387 goto out;
2388 }
2389 btrfs_release_path(path);
2390
Nikolay Borisova012a742017-02-20 13:50:47 +02002391 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002392 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002393 if (ret)
2394 return ret;
2395
2396out:
2397 btrfs_release_path(path);
2398
2399 hole_em = alloc_extent_map();
2400 if (!hole_em) {
2401 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002402 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002403 } else {
2404 hole_em->start = offset;
2405 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002406 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002407 hole_em->orig_start = offset;
2408
2409 hole_em->block_start = EXTENT_MAP_HOLE;
2410 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002411 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002412 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2413 hole_em->generation = trans->transid;
2414
2415 do {
2416 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2417 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002418 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002419 write_unlock(&em_tree->lock);
2420 } while (ret == -EEXIST);
2421 free_extent_map(hole_em);
2422 if (ret)
2423 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002424 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002425 }
2426
2427 return 0;
2428}
2429
Qu Wenruod7781542014-05-30 15:16:10 +08002430/*
2431 * Find a hole extent on given inode and change start/len to the end of hole
2432 * extent.(hole/vacuum extent whose em->start <= start &&
2433 * em->start + em->len > start)
2434 * When a hole extent is found, return 1 and modify start/len.
2435 */
2436static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2437{
Filipe Manana609805d2017-05-30 05:29:09 +01002438 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002439 struct extent_map *em;
2440 int ret = 0;
2441
Filipe Manana609805d2017-05-30 05:29:09 +01002442 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2443 round_down(*start, fs_info->sectorsize),
Omar Sandoval39b07b52019-12-02 17:34:23 -08002444 round_up(*len, fs_info->sectorsize));
Dan Carpenter99862772017-04-11 11:57:15 +03002445 if (IS_ERR(em))
2446 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002447
2448 /* Hole or vacuum extent(only exists in no-hole mode) */
2449 if (em->block_start == EXTENT_MAP_HOLE) {
2450 ret = 1;
2451 *len = em->start + em->len > *start + *len ?
2452 0 : *start + *len - em->start - em->len;
2453 *start = em->start + em->len;
2454 }
2455 free_extent_map(em);
2456 return ret;
2457}
2458
Filipe Mananaf27451f2017-10-25 11:55:28 +01002459static int btrfs_punch_hole_lock_range(struct inode *inode,
2460 const u64 lockstart,
2461 const u64 lockend,
2462 struct extent_state **cached_state)
2463{
2464 while (1) {
2465 struct btrfs_ordered_extent *ordered;
2466 int ret;
2467
2468 truncate_pagecache_range(inode, lockstart, lockend);
2469
2470 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2471 cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03002472 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
2473 lockend);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002474
2475 /*
2476 * We need to make sure we have no ordered extents in this range
2477 * and nobody raced in and read a page in this range, if we did
2478 * we need to try again.
2479 */
2480 if ((!ordered ||
Omar Sandovalbffe6332019-12-02 17:34:19 -08002481 (ordered->file_offset + ordered->num_bytes <= lockstart ||
Filipe Mananaf27451f2017-10-25 11:55:28 +01002482 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002483 !filemap_range_has_page(inode->i_mapping,
2484 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002485 if (ordered)
2486 btrfs_put_ordered_extent(ordered);
2487 break;
2488 }
2489 if (ordered)
2490 btrfs_put_ordered_extent(ordered);
2491 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2492 lockend, cached_state);
2493 ret = btrfs_wait_ordered_range(inode, lockstart,
2494 lockend - lockstart + 1);
2495 if (ret)
2496 return ret;
2497 }
2498 return 0;
2499}
2500
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002501static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans,
Filipe Manana690a5db2019-07-05 11:09:50 +01002502 struct inode *inode,
2503 struct btrfs_path *path,
Filipe Mananabf385642020-09-08 11:27:22 +01002504 struct btrfs_replace_extent_info *extent_info,
2505 const u64 replace_len)
Filipe Manana690a5db2019-07-05 11:09:50 +01002506{
2507 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2508 struct btrfs_root *root = BTRFS_I(inode)->root;
2509 struct btrfs_file_extent_item *extent;
2510 struct extent_buffer *leaf;
2511 struct btrfs_key key;
2512 int slot;
2513 struct btrfs_ref ref = { 0 };
Filipe Manana690a5db2019-07-05 11:09:50 +01002514 int ret;
2515
Filipe Mananabf385642020-09-08 11:27:22 +01002516 if (replace_len == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002517 return 0;
2518
Filipe Mananabf385642020-09-08 11:27:22 +01002519 if (extent_info->disk_offset == 0 &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002520 btrfs_fs_incompat(fs_info, NO_HOLES))
2521 return 0;
2522
2523 key.objectid = btrfs_ino(BTRFS_I(inode));
2524 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002525 key.offset = extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002526 ret = btrfs_insert_empty_item(trans, root, path, &key,
Filipe Mananafb870f62020-09-08 11:27:21 +01002527 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002528 if (ret)
2529 return ret;
2530 leaf = path->nodes[0];
2531 slot = path->slots[0];
Filipe Mananabf385642020-09-08 11:27:22 +01002532 write_extent_buffer(leaf, extent_info->extent_buf,
Filipe Manana690a5db2019-07-05 11:09:50 +01002533 btrfs_item_ptr_offset(leaf, slot),
Filipe Mananafb870f62020-09-08 11:27:21 +01002534 sizeof(struct btrfs_file_extent_item));
Filipe Manana690a5db2019-07-05 11:09:50 +01002535 extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
Filipe Mananafb870f62020-09-08 11:27:21 +01002536 ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE);
Filipe Mananabf385642020-09-08 11:27:22 +01002537 btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset);
2538 btrfs_set_file_extent_num_bytes(leaf, extent, replace_len);
2539 if (extent_info->is_new_extent)
Filipe Manana8fccebf2020-09-08 11:27:20 +01002540 btrfs_set_file_extent_generation(leaf, extent, trans->transid);
Filipe Manana690a5db2019-07-05 11:09:50 +01002541 btrfs_mark_buffer_dirty(leaf);
2542 btrfs_release_path(path);
2543
Josef Bacik9ddc9592020-01-17 09:02:22 -05002544 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
Filipe Mananabf385642020-09-08 11:27:22 +01002545 extent_info->file_offset, replace_len);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002546 if (ret)
2547 return ret;
2548
Filipe Manana690a5db2019-07-05 11:09:50 +01002549 /* If it's a hole, nothing more needs to be done. */
Filipe Mananabf385642020-09-08 11:27:22 +01002550 if (extent_info->disk_offset == 0)
Filipe Manana690a5db2019-07-05 11:09:50 +01002551 return 0;
2552
Filipe Mananabf385642020-09-08 11:27:22 +01002553 inode_add_bytes(inode, replace_len);
Filipe Manana8fccebf2020-09-08 11:27:20 +01002554
Filipe Mananabf385642020-09-08 11:27:22 +01002555 if (extent_info->is_new_extent && extent_info->insertions == 0) {
2556 key.objectid = extent_info->disk_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002557 key.type = BTRFS_EXTENT_ITEM_KEY;
Filipe Mananabf385642020-09-08 11:27:22 +01002558 key.offset = extent_info->disk_len;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002559 ret = btrfs_alloc_reserved_file_extent(trans, root,
2560 btrfs_ino(BTRFS_I(inode)),
Filipe Mananabf385642020-09-08 11:27:22 +01002561 extent_info->file_offset,
2562 extent_info->qgroup_reserved,
Filipe Manana8fccebf2020-09-08 11:27:20 +01002563 &key);
2564 } else {
2565 u64 ref_offset;
2566
2567 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
Filipe Mananabf385642020-09-08 11:27:22 +01002568 extent_info->disk_offset,
2569 extent_info->disk_len, 0);
2570 ref_offset = extent_info->file_offset - extent_info->data_offset;
Filipe Manana8fccebf2020-09-08 11:27:20 +01002571 btrfs_init_data_ref(&ref, root->root_key.objectid,
2572 btrfs_ino(BTRFS_I(inode)), ref_offset);
2573 ret = btrfs_inc_extent_ref(trans, &ref);
2574 }
2575
Filipe Mananabf385642020-09-08 11:27:22 +01002576 extent_info->insertions++;
Filipe Manana690a5db2019-07-05 11:09:50 +01002577
2578 return ret;
2579}
2580
Filipe Manana9cba40a2019-06-28 23:11:26 +01002581/*
2582 * The respective range must have been previously locked, as well as the inode.
2583 * The end offset is inclusive (last byte of the range).
Filipe Mananabf385642020-09-08 11:27:22 +01002584 * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing
2585 * the file range with an extent.
2586 * When not punching a hole, we don't want to end up in a state where we dropped
2587 * extents without inserting a new one, so we must abort the transaction to avoid
2588 * a corruption.
Filipe Manana9cba40a2019-06-28 23:11:26 +01002589 */
Filipe Manana306bfec2020-09-08 11:27:23 +01002590int btrfs_replace_file_extents(struct inode *inode, struct btrfs_path *path,
Filipe Manana690a5db2019-07-05 11:09:50 +01002591 const u64 start, const u64 end,
Filipe Mananabf385642020-09-08 11:27:22 +01002592 struct btrfs_replace_extent_info *extent_info,
Filipe Manana690a5db2019-07-05 11:09:50 +01002593 struct btrfs_trans_handle **trans_out)
Filipe Manana9cba40a2019-06-28 23:11:26 +01002594{
2595 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2bd36e72019-08-22 15:14:33 -04002596 u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002597 u64 ino_size = round_up(inode->i_size, fs_info->sectorsize);
2598 struct btrfs_root *root = BTRFS_I(inode)->root;
2599 struct btrfs_trans_handle *trans = NULL;
2600 struct btrfs_block_rsv *rsv;
2601 unsigned int rsv_count;
2602 u64 cur_offset;
2603 u64 drop_end;
2604 u64 len = end - start;
2605 int ret = 0;
2606
2607 if (end <= start)
2608 return -EINVAL;
2609
2610 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2611 if (!rsv) {
2612 ret = -ENOMEM;
2613 goto out;
2614 }
Josef Bacik2bd36e72019-08-22 15:14:33 -04002615 rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002616 rsv->failfast = 1;
2617
2618 /*
2619 * 1 - update the inode
2620 * 1 - removing the extents in the range
Filipe Mananabf385642020-09-08 11:27:22 +01002621 * 1 - adding the hole extent if no_holes isn't set or if we are
2622 * replacing the range with a new extent
Filipe Manana9cba40a2019-06-28 23:11:26 +01002623 */
Filipe Mananabf385642020-09-08 11:27:22 +01002624 if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info)
Filipe Manana690a5db2019-07-05 11:09:50 +01002625 rsv_count = 3;
2626 else
2627 rsv_count = 2;
2628
Filipe Manana9cba40a2019-06-28 23:11:26 +01002629 trans = btrfs_start_transaction(root, rsv_count);
2630 if (IS_ERR(trans)) {
2631 ret = PTR_ERR(trans);
2632 trans = NULL;
2633 goto out_free;
2634 }
2635
2636 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
2637 min_size, false);
2638 BUG_ON(ret);
2639 trans->block_rsv = rsv;
2640
2641 cur_offset = start;
2642 while (cur_offset < end) {
Nikolay Borisov906c4482020-06-03 08:55:08 +03002643 ret = __btrfs_drop_extents(trans, root, BTRFS_I(inode), path,
Filipe Manana9cba40a2019-06-28 23:11:26 +01002644 cur_offset, end + 1, &drop_end,
2645 1, 0, 0, NULL);
Filipe Manana690a5db2019-07-05 11:09:50 +01002646 if (ret != -ENOSPC) {
2647 /*
2648 * When cloning we want to avoid transaction aborts when
2649 * nothing was done and we are attempting to clone parts
2650 * of inline extents, in such cases -EOPNOTSUPP is
2651 * returned by __btrfs_drop_extents() without having
2652 * changed anything in the file.
2653 */
Filipe Mananabf385642020-09-08 11:27:22 +01002654 if (extent_info && !extent_info->is_new_extent &&
Filipe Manana8fccebf2020-09-08 11:27:20 +01002655 ret && ret != -EOPNOTSUPP)
Filipe Manana690a5db2019-07-05 11:09:50 +01002656 btrfs_abort_transaction(trans, ret);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002657 break;
Filipe Manana690a5db2019-07-05 11:09:50 +01002658 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002659
2660 trans->block_rsv = &fs_info->trans_block_rsv;
2661
Filipe Mananabf385642020-09-08 11:27:22 +01002662 if (!extent_info && cur_offset < drop_end &&
Filipe Manana690a5db2019-07-05 11:09:50 +01002663 cur_offset < ino_size) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002664 ret = fill_holes(trans, BTRFS_I(inode), path,
2665 cur_offset, drop_end);
2666 if (ret) {
2667 /*
2668 * If we failed then we didn't insert our hole
2669 * entries for the area we dropped, so now the
2670 * fs is corrupted, so we must abort the
2671 * transaction.
2672 */
2673 btrfs_abort_transaction(trans, ret);
2674 break;
2675 }
Filipe Mananabf385642020-09-08 11:27:22 +01002676 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002677 /*
2678 * We are past the i_size here, but since we didn't
2679 * insert holes we need to clear the mapped area so we
2680 * know to not set disk_i_size in this area until a new
2681 * file extent is inserted here.
2682 */
2683 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2684 cur_offset, drop_end - cur_offset);
2685 if (ret) {
2686 /*
2687 * We couldn't clear our area, so we could
2688 * presumably adjust up and corrupt the fs, so
2689 * we need to abort.
2690 */
2691 btrfs_abort_transaction(trans, ret);
2692 break;
2693 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002694 }
2695
Filipe Mananabf385642020-09-08 11:27:22 +01002696 if (extent_info && drop_end > extent_info->file_offset) {
2697 u64 replace_len = drop_end - extent_info->file_offset;
Filipe Manana690a5db2019-07-05 11:09:50 +01002698
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002699 ret = btrfs_insert_replace_extent(trans, inode, path,
Filipe Mananabf385642020-09-08 11:27:22 +01002700 extent_info, replace_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002701 if (ret) {
2702 btrfs_abort_transaction(trans, ret);
2703 break;
2704 }
Filipe Mananabf385642020-09-08 11:27:22 +01002705 extent_info->data_len -= replace_len;
2706 extent_info->data_offset += replace_len;
2707 extent_info->file_offset += replace_len;
Filipe Manana690a5db2019-07-05 11:09:50 +01002708 }
2709
Filipe Manana9cba40a2019-06-28 23:11:26 +01002710 cur_offset = drop_end;
2711
2712 ret = btrfs_update_inode(trans, root, inode);
2713 if (ret)
2714 break;
2715
2716 btrfs_end_transaction(trans);
2717 btrfs_btree_balance_dirty(fs_info);
2718
2719 trans = btrfs_start_transaction(root, rsv_count);
2720 if (IS_ERR(trans)) {
2721 ret = PTR_ERR(trans);
2722 trans = NULL;
2723 break;
2724 }
2725
2726 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
2727 rsv, min_size, false);
2728 BUG_ON(ret); /* shouldn't happen */
2729 trans->block_rsv = rsv;
2730
Filipe Mananabf385642020-09-08 11:27:22 +01002731 if (!extent_info) {
Filipe Manana690a5db2019-07-05 11:09:50 +01002732 ret = find_first_non_hole(inode, &cur_offset, &len);
2733 if (unlikely(ret < 0))
2734 break;
2735 if (ret && !len) {
2736 ret = 0;
2737 break;
2738 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002739 }
2740 }
2741
Filipe Manana690a5db2019-07-05 11:09:50 +01002742 /*
2743 * If we were cloning, force the next fsync to be a full one since we
2744 * we replaced (or just dropped in the case of cloning holes when
2745 * NO_HOLES is enabled) extents and extent maps.
2746 * This is for the sake of simplicity, and cloning into files larger
2747 * than 16Mb would force the full fsync any way (when
2748 * try_release_extent_mapping() is invoked during page cache truncation.
2749 */
Filipe Mananabf385642020-09-08 11:27:22 +01002750 if (extent_info && !extent_info->is_new_extent)
Filipe Manana690a5db2019-07-05 11:09:50 +01002751 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2752 &BTRFS_I(inode)->runtime_flags);
2753
Filipe Manana9cba40a2019-06-28 23:11:26 +01002754 if (ret)
2755 goto out_trans;
2756
2757 trans->block_rsv = &fs_info->trans_block_rsv;
2758 /*
2759 * If we are using the NO_HOLES feature we might have had already an
2760 * hole that overlaps a part of the region [lockstart, lockend] and
2761 * ends at (or beyond) lockend. Since we have no file extent items to
2762 * represent holes, drop_end can be less than lockend and so we must
2763 * make sure we have an extent map representing the existing hole (the
2764 * call to __btrfs_drop_extents() might have dropped the existing extent
2765 * map representing the existing hole), otherwise the fast fsync path
2766 * will not record the existence of the hole region
2767 * [existing_hole_start, lockend].
2768 */
2769 if (drop_end <= end)
2770 drop_end = end + 1;
2771 /*
2772 * Don't insert file hole extent item if it's for a range beyond eof
2773 * (because it's useless) or if it represents a 0 bytes range (when
2774 * cur_offset == drop_end).
2775 */
Filipe Mananabf385642020-09-08 11:27:22 +01002776 if (!extent_info && cur_offset < ino_size && cur_offset < drop_end) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002777 ret = fill_holes(trans, BTRFS_I(inode), path,
2778 cur_offset, drop_end);
2779 if (ret) {
2780 /* Same comment as above. */
2781 btrfs_abort_transaction(trans, ret);
2782 goto out_trans;
2783 }
Filipe Mananabf385642020-09-08 11:27:22 +01002784 } else if (!extent_info && cur_offset < drop_end) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05002785 /* See the comment in the loop above for the reasoning here. */
2786 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
2787 cur_offset, drop_end - cur_offset);
2788 if (ret) {
2789 btrfs_abort_transaction(trans, ret);
2790 goto out_trans;
2791 }
2792
Filipe Manana9cba40a2019-06-28 23:11:26 +01002793 }
Filipe Mananabf385642020-09-08 11:27:22 +01002794 if (extent_info) {
Filipe Manana0cbb5bd2020-09-08 11:27:24 +01002795 ret = btrfs_insert_replace_extent(trans, inode, path, extent_info,
Filipe Mananabf385642020-09-08 11:27:22 +01002796 extent_info->data_len);
Filipe Manana690a5db2019-07-05 11:09:50 +01002797 if (ret) {
2798 btrfs_abort_transaction(trans, ret);
2799 goto out_trans;
2800 }
2801 }
Filipe Manana9cba40a2019-06-28 23:11:26 +01002802
2803out_trans:
2804 if (!trans)
2805 goto out_free;
2806
2807 trans->block_rsv = &fs_info->trans_block_rsv;
2808 if (ret)
2809 btrfs_end_transaction(trans);
2810 else
2811 *trans_out = trans;
2812out_free:
2813 btrfs_free_block_rsv(fs_info, rsv);
2814out:
2815 return ret;
2816}
2817
Josef Bacik2aaa6652012-08-29 14:27:18 -04002818static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2819{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002820 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002821 struct btrfs_root *root = BTRFS_I(inode)->root;
2822 struct extent_state *cached_state = NULL;
2823 struct btrfs_path *path;
Filipe Manana9cba40a2019-06-28 23:11:26 +01002824 struct btrfs_trans_handle *trans = NULL;
Qu Wenruod7781542014-05-30 15:16:10 +08002825 u64 lockstart;
2826 u64 lockend;
2827 u64 tail_start;
2828 u64 tail_len;
2829 u64 orig_start = offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002830 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302831 bool same_block;
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002832 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302833 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002834 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002835
Josef Bacik0ef8b722013-10-25 16:13:35 -04002836 ret = btrfs_wait_ordered_range(inode, offset, len);
2837 if (ret)
2838 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002839
Al Viro59551022016-01-22 15:40:57 -05002840 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002841 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002842 ret = find_first_non_hole(inode, &offset, &len);
2843 if (ret < 0)
2844 goto out_only_mutex;
2845 if (ret && !len) {
2846 /* Already in a large hole */
2847 ret = 0;
2848 goto out_only_mutex;
2849 }
2850
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002851 lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode)));
Qu Wenruod7781542014-05-30 15:16:10 +08002852 lockend = round_down(offset + len,
Nikolay Borisov6fee2482020-08-31 14:42:42 +03002853 btrfs_inode_sectorsize(BTRFS_I(inode))) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002854 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2855 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002856 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302857 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002858 * because we are sure there is no data there.
2859 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002860 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302861 * Only do this if we are in the same block and we aren't doing the
2862 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002863 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002864 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002865 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302866 truncated_block = true;
2867 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002868 } else {
2869 ret = 0;
2870 }
Qu Wenruod7781542014-05-30 15:16:10 +08002871 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002872 }
2873
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302874 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002875 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302876 truncated_block = true;
2877 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002878 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002879 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002880 return ret;
2881 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002882 }
2883
Qu Wenruod7781542014-05-30 15:16:10 +08002884 /* Check the aligned pages after the first unaligned page,
2885 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002886 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002887 * the extra check can be skipped */
2888 if (offset == orig_start) {
2889 /* after truncate page, check hole again */
2890 len = offset + len - lockstart;
2891 offset = lockstart;
2892 ret = find_first_non_hole(inode, &offset, &len);
2893 if (ret < 0)
2894 goto out_only_mutex;
2895 if (ret && !len) {
2896 ret = 0;
2897 goto out_only_mutex;
2898 }
2899 lockstart = offset;
2900 }
2901
2902 /* Check the tail unaligned part is in a hole */
2903 tail_start = lockend + 1;
2904 tail_len = offset + len - tail_start;
2905 if (tail_len) {
2906 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2907 if (unlikely(ret < 0))
2908 goto out_only_mutex;
2909 if (!ret) {
2910 /* zero the front end of the last page */
2911 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302912 truncated_block = true;
2913 ret = btrfs_truncate_block(inode,
2914 tail_start + tail_len,
2915 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002916 if (ret)
2917 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002918 }
Miao Xie00612802012-12-05 10:54:12 +00002919 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002920 }
2921
2922 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002923 ret = 0;
2924 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002925 }
2926
Filipe Mananaf27451f2017-10-25 11:55:28 +01002927 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2928 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002929 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002930 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002931
2932 path = btrfs_alloc_path();
2933 if (!path) {
2934 ret = -ENOMEM;
2935 goto out;
2936 }
2937
Filipe Manana306bfec2020-09-08 11:27:23 +01002938 ret = btrfs_replace_file_extents(inode, path, lockstart, lockend, NULL,
Filipe Manana690a5db2019-07-05 11:09:50 +01002939 &trans);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002940 btrfs_free_path(path);
2941 if (ret)
2942 goto out;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002943
Filipe Manana9cba40a2019-06-28 23:11:26 +01002944 ASSERT(trans != NULL);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002945 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002946 inode->i_mtime = inode->i_ctime = current_time(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002947 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002948 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002949 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002950 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002951out:
2952 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002953 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002954out_only_mutex:
Filipe Manana9cba40a2019-06-28 23:11:26 +01002955 if (!updated_inode && truncated_block && !ret) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002956 /*
2957 * If we only end up zeroing part of a page, we still need to
2958 * update the inode item, so that all the time fields are
2959 * updated as well as the necessary btrfs inode in memory fields
2960 * for detecting, at fsync time, if the inode isn't yet in the
2961 * log tree or it's there but not up to date.
2962 */
Filipe Manana17900662019-06-19 13:05:50 +01002963 struct timespec64 now = current_time(inode);
2964
2965 inode_inc_iversion(inode);
2966 inode->i_mtime = now;
2967 inode->i_ctime = now;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002968 trans = btrfs_start_transaction(root, 1);
2969 if (IS_ERR(trans)) {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002970 ret = PTR_ERR(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002971 } else {
Filipe Manana9cba40a2019-06-28 23:11:26 +01002972 int ret2;
2973
2974 ret = btrfs_update_inode(trans, root, inode);
2975 ret2 = btrfs_end_transaction(trans);
2976 if (!ret)
2977 ret = ret2;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002978 }
2979 }
Al Viro59551022016-01-22 15:40:57 -05002980 inode_unlock(inode);
Filipe Manana9cba40a2019-06-28 23:11:26 +01002981 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002982}
2983
Qu Wenruo14524a82015-09-08 17:22:44 +08002984/* Helper structure to record which range is already reserved */
2985struct falloc_range {
2986 struct list_head list;
2987 u64 start;
2988 u64 len;
2989};
2990
2991/*
2992 * Helper function to add falloc range
2993 *
2994 * Caller should have locked the larger range of extent containing
2995 * [start, len)
2996 */
2997static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2998{
2999 struct falloc_range *prev = NULL;
3000 struct falloc_range *range = NULL;
3001
3002 if (list_empty(head))
3003 goto insert;
3004
3005 /*
3006 * As fallocate iterate by bytenr order, we only need to check
3007 * the last range.
3008 */
3009 prev = list_entry(head->prev, struct falloc_range, list);
3010 if (prev->start + prev->len == start) {
3011 prev->len += len;
3012 return 0;
3013 }
3014insert:
David Sterba32fc9322016-02-11 14:25:38 +01003015 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08003016 if (!range)
3017 return -ENOMEM;
3018 range->start = start;
3019 range->len = len;
3020 list_add_tail(&range->list, head);
3021 return 0;
3022}
3023
Filipe Mananaf27451f2017-10-25 11:55:28 +01003024static int btrfs_fallocate_update_isize(struct inode *inode,
3025 const u64 end,
3026 const int mode)
3027{
3028 struct btrfs_trans_handle *trans;
3029 struct btrfs_root *root = BTRFS_I(inode)->root;
3030 int ret;
3031 int ret2;
3032
3033 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
3034 return 0;
3035
3036 trans = btrfs_start_transaction(root, 1);
3037 if (IS_ERR(trans))
3038 return PTR_ERR(trans);
3039
3040 inode->i_ctime = current_time(inode);
3041 i_size_write(inode, end);
Josef Bacikd923afe2020-01-17 09:02:23 -05003042 btrfs_inode_safe_disk_i_size_write(inode, 0);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003043 ret = btrfs_update_inode(trans, root, inode);
3044 ret2 = btrfs_end_transaction(trans);
3045
3046 return ret ? ret : ret2;
3047}
3048
Filipe Manana81fdf632018-01-18 11:34:31 +00003049enum {
David Sterbaf262fa82019-06-18 20:00:08 +02003050 RANGE_BOUNDARY_WRITTEN_EXTENT,
3051 RANGE_BOUNDARY_PREALLOC_EXTENT,
3052 RANGE_BOUNDARY_HOLE,
Filipe Manana81fdf632018-01-18 11:34:31 +00003053};
3054
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003055static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003056 u64 offset)
3057{
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003058 const u64 sectorsize = btrfs_inode_sectorsize(inode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003059 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00003060 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003061
3062 offset = round_down(offset, sectorsize);
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003063 em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003064 if (IS_ERR(em))
3065 return PTR_ERR(em);
3066
3067 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00003068 ret = RANGE_BOUNDARY_HOLE;
3069 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3070 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
3071 else
3072 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003073
3074 free_extent_map(em);
3075 return ret;
3076}
3077
3078static int btrfs_zero_range(struct inode *inode,
3079 loff_t offset,
3080 loff_t len,
3081 const int mode)
3082{
3083 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
3084 struct extent_map *em;
3085 struct extent_changeset *data_reserved = NULL;
3086 int ret;
3087 u64 alloc_hint = 0;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003088 const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode));
Filipe Mananaf27451f2017-10-25 11:55:28 +01003089 u64 alloc_start = round_down(offset, sectorsize);
3090 u64 alloc_end = round_up(offset + len, sectorsize);
3091 u64 bytes_to_reserve = 0;
3092 bool space_reserved = false;
3093
3094 inode_dio_wait(inode);
3095
Omar Sandoval39b07b52019-12-02 17:34:23 -08003096 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3097 alloc_end - alloc_start);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003098 if (IS_ERR(em)) {
3099 ret = PTR_ERR(em);
3100 goto out;
3101 }
3102
3103 /*
3104 * Avoid hole punching and extent allocation for some cases. More cases
3105 * could be considered, but these are unlikely common and we keep things
3106 * as simple as possible for now. Also, intentionally, if the target
3107 * range contains one or more prealloc extents together with regular
3108 * extents and holes, we drop all the existing extents and allocate a
3109 * new prealloc extent, so that we get a larger contiguous disk extent.
3110 */
3111 if (em->start <= alloc_start &&
3112 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3113 const u64 em_end = em->start + em->len;
3114
3115 if (em_end >= offset + len) {
3116 /*
3117 * The whole range is already a prealloc extent,
3118 * do nothing except updating the inode's i_size if
3119 * needed.
3120 */
3121 free_extent_map(em);
3122 ret = btrfs_fallocate_update_isize(inode, offset + len,
3123 mode);
3124 goto out;
3125 }
3126 /*
3127 * Part of the range is already a prealloc extent, so operate
3128 * only on the remaining part of the range.
3129 */
3130 alloc_start = em_end;
3131 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
3132 len = offset + len - alloc_start;
3133 offset = alloc_start;
3134 alloc_hint = em->block_start + em->len;
3135 }
3136 free_extent_map(em);
3137
3138 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
3139 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
Omar Sandoval39b07b52019-12-02 17:34:23 -08003140 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start,
3141 sectorsize);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003142 if (IS_ERR(em)) {
3143 ret = PTR_ERR(em);
3144 goto out;
3145 }
3146
3147 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
3148 free_extent_map(em);
3149 ret = btrfs_fallocate_update_isize(inode, offset + len,
3150 mode);
3151 goto out;
3152 }
3153 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
3154 free_extent_map(em);
3155 ret = btrfs_truncate_block(inode, offset, len, 0);
3156 if (!ret)
3157 ret = btrfs_fallocate_update_isize(inode,
3158 offset + len,
3159 mode);
3160 return ret;
3161 }
3162 free_extent_map(em);
3163 alloc_start = round_down(offset, sectorsize);
3164 alloc_end = alloc_start + sectorsize;
3165 goto reserve_space;
3166 }
3167
3168 alloc_start = round_up(offset, sectorsize);
3169 alloc_end = round_down(offset + len, sectorsize);
3170
3171 /*
3172 * For unaligned ranges, check the pages at the boundaries, they might
3173 * map to an extent, in which case we need to partially zero them, or
3174 * they might map to a hole, in which case we need our allocation range
3175 * to cover them.
3176 */
3177 if (!IS_ALIGNED(offset, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003178 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
3179 offset);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003180 if (ret < 0)
3181 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003182 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003183 alloc_start = round_down(offset, sectorsize);
3184 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003185 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003186 ret = btrfs_truncate_block(inode, offset, 0, 0);
3187 if (ret)
3188 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003189 } else {
3190 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003191 }
3192 }
3193
3194 if (!IS_ALIGNED(offset + len, sectorsize)) {
Nikolay Borisov948dfeb2020-08-31 14:42:48 +03003195 ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode),
Filipe Mananaf27451f2017-10-25 11:55:28 +01003196 offset + len);
3197 if (ret < 0)
3198 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003199 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003200 alloc_end = round_up(offset + len, sectorsize);
3201 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003202 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003203 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3204 if (ret)
3205 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003206 } else {
3207 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003208 }
3209 }
3210
3211reserve_space:
3212 if (alloc_start < alloc_end) {
3213 struct extent_state *cached_state = NULL;
3214 const u64 lockstart = alloc_start;
3215 const u64 lockend = alloc_end - 1;
3216
3217 bytes_to_reserve = alloc_end - alloc_start;
3218 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3219 bytes_to_reserve);
3220 if (ret < 0)
3221 goto out;
3222 space_reserved = true;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003223 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3224 &cached_state);
3225 if (ret)
3226 goto out;
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003227 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved,
Qu Wenruoa7f8b1c2020-06-10 09:04:42 +08003228 alloc_start, bytes_to_reserve);
3229 if (ret)
3230 goto out;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003231 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3232 alloc_end - alloc_start,
3233 i_blocksize(inode),
3234 offset + len, &alloc_hint);
3235 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3236 lockend, &cached_state);
3237 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003238 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003239 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003240 goto out;
3241 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003242 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003243 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003244 out:
3245 if (ret && space_reserved)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003246 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Filipe Mananaf27451f2017-10-25 11:55:28 +01003247 alloc_start, bytes_to_reserve);
3248 extent_changeset_free(data_reserved);
3249
3250 return ret;
3251}
3252
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003253static long btrfs_fallocate(struct file *file, int mode,
3254 loff_t offset, loff_t len)
3255{
Al Viro496ad9a2013-01-23 17:07:38 -05003256 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003257 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003258 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003259 struct falloc_range *range;
3260 struct falloc_range *tmp;
3261 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003262 u64 cur_offset;
3263 u64 last_byte;
3264 u64 alloc_start;
3265 u64 alloc_end;
3266 u64 alloc_hint = 0;
3267 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003268 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003269 struct extent_map *em;
Nikolay Borisov6fee2482020-08-31 14:42:42 +03003270 int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003271 int ret;
3272
Miao Xie797f4272012-11-28 10:28:07 +00003273 alloc_start = round_down(offset, blocksize);
3274 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003275 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003276
Josef Bacik2aaa6652012-08-29 14:27:18 -04003277 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003278 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3279 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003280 return -EOPNOTSUPP;
3281
Josef Bacik2aaa6652012-08-29 14:27:18 -04003282 if (mode & FALLOC_FL_PUNCH_HOLE)
3283 return btrfs_punch_hole(inode, offset, len);
3284
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003285 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003286 * Only trigger disk allocation, don't trigger qgroup reserve
3287 *
3288 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003289 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003290 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3291 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3292 alloc_end - alloc_start);
3293 if (ret < 0)
3294 return ret;
3295 }
Chris Masond98456f2012-01-31 20:27:41 -05003296
Al Viro59551022016-01-22 15:40:57 -05003297 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003298
3299 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3300 ret = inode_newsize_ok(inode, offset + len);
3301 if (ret)
3302 goto out;
3303 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003304
Qu Wenruo14524a82015-09-08 17:22:44 +08003305 /*
3306 * TODO: Move these two operations after we have checked
3307 * accurate reserved space, or fallocate can still fail but
3308 * with page truncated or size expanded.
3309 *
3310 * But that's a minor problem and won't do much harm BTW.
3311 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003312 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003313 ret = btrfs_cont_expand(inode, i_size_read(inode),
3314 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003315 if (ret)
3316 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003317 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003318 /*
3319 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303320 * need to zero out the end of the block if i_size lands in the
3321 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003322 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303323 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003324 if (ret)
3325 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003326 }
3327
Josef Bacika71754f2013-06-17 17:14:39 -04003328 /*
3329 * wait for ordered IO before we have any locks. We'll loop again
3330 * below with the locks held.
3331 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003332 ret = btrfs_wait_ordered_range(inode, alloc_start,
3333 alloc_end - alloc_start);
3334 if (ret)
3335 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003336
Filipe Mananaf27451f2017-10-25 11:55:28 +01003337 if (mode & FALLOC_FL_ZERO_RANGE) {
3338 ret = btrfs_zero_range(inode, offset, len, mode);
3339 inode_unlock(inode);
3340 return ret;
3341 }
3342
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003343 locked_end = alloc_end - 1;
3344 while (1) {
3345 struct btrfs_ordered_extent *ordered;
3346
3347 /* the extent lock is ordered inside the running
3348 * transaction
3349 */
3350 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003351 locked_end, &cached_state);
Nikolay Borisov6d072c82020-08-31 14:42:39 +03003352 ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode),
3353 locked_end);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003354
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003355 if (ordered &&
Omar Sandovalbffe6332019-12-02 17:34:19 -08003356 ordered->file_offset + ordered->num_bytes > alloc_start &&
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003357 ordered->file_offset < alloc_end) {
3358 btrfs_put_ordered_extent(ordered);
3359 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3360 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003361 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003362 /*
3363 * we can't wait on the range with the transaction
3364 * running or with the extent lock held
3365 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003366 ret = btrfs_wait_ordered_range(inode, alloc_start,
3367 alloc_end - alloc_start);
3368 if (ret)
3369 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003370 } else {
3371 if (ordered)
3372 btrfs_put_ordered_extent(ordered);
3373 break;
3374 }
3375 }
3376
Qu Wenruo14524a82015-09-08 17:22:44 +08003377 /* First, check if we exceed the qgroup limit */
3378 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003379 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003380 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08003381 alloc_end - cur_offset);
Dan Carpenter99862772017-04-11 11:57:15 +03003382 if (IS_ERR(em)) {
3383 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003384 break;
3385 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003386 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003387 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003388 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003389 if (em->block_start == EXTENT_MAP_HOLE ||
3390 (cur_offset >= inode->i_size &&
3391 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003392 ret = add_falloc_range(&reserve_list, cur_offset,
3393 last_byte - cur_offset);
3394 if (ret < 0) {
3395 free_extent_map(em);
3396 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003397 }
Nikolay Borisov7661a3e2020-06-03 08:55:37 +03003398 ret = btrfs_qgroup_reserve_data(BTRFS_I(inode),
3399 &data_reserved, cur_offset,
3400 last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003401 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003402 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003403 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003404 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003405 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003406 } else {
3407 /*
3408 * Do not need to reserve unwritten extent for this
3409 * range, free reserved data space first, otherwise
3410 * it'll result in false ENOSPC error.
3411 */
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003412 btrfs_free_reserved_data_space(BTRFS_I(inode),
3413 data_reserved, cur_offset,
3414 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003415 }
3416 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003417 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003418 }
3419
3420 /*
3421 * If ret is still 0, means we're OK to fallocate.
3422 * Or just cleanup the list and exit.
3423 */
3424 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3425 if (!ret)
3426 ret = btrfs_prealloc_file_range(inode, mode,
3427 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003428 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003429 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003430 else
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003431 btrfs_free_reserved_data_space(BTRFS_I(inode),
Qu Wenruobc42bda2017-02-27 15:10:39 +08003432 data_reserved, range->start,
3433 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003434 list_del(&range->list);
3435 kfree(range);
3436 }
3437 if (ret < 0)
3438 goto out_unlock;
3439
Filipe Mananaf27451f2017-10-25 11:55:28 +01003440 /*
3441 * We didn't need to allocate any more space, but we still extended the
3442 * size of the file so we need to update i_size and the inode item.
3443 */
3444 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003445out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003446 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003447 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003448out:
Al Viro59551022016-01-22 15:40:57 -05003449 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003450 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003451 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03003452 btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003453 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003454 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003455 return ret;
3456}
3457
Nikolay Borisovbc802302019-09-27 13:23:18 +03003458static loff_t find_desired_extent(struct inode *inode, loff_t offset,
3459 int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003460{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003461 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003462 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003463 struct extent_state *cached_state = NULL;
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003464 loff_t i_size = inode->i_size;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003465 u64 lockstart;
3466 u64 lockend;
3467 u64 start;
3468 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003469 int ret = 0;
3470
Nikolay Borisovbc802302019-09-27 13:23:18 +03003471 if (i_size == 0 || offset >= i_size)
Josef Bacikb2675152011-07-18 13:21:36 -04003472 return -ENXIO;
3473
Liu Bo4d1a40c2014-09-16 17:49:30 +08003474 /*
Nikolay Borisovbc802302019-09-27 13:23:18 +03003475 * offset can be negative, in this case we start finding DATA/HOLE from
Liu Bo4d1a40c2014-09-16 17:49:30 +08003476 * the very start of the file.
3477 */
Nikolay Borisovbc802302019-09-27 13:23:18 +03003478 start = max_t(loff_t, 0, offset);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003479
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003480 lockstart = round_down(start, fs_info->sectorsize);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003481 lockend = round_up(i_size, fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003482 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003483 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003484 lockend--;
3485 len = lockend - lockstart + 1;
3486
David Sterbaff13db42015-12-03 14:30:40 +01003487 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003488 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003489
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003490 while (start < i_size) {
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02003491 em = btrfs_get_extent_fiemap(BTRFS_I(inode), start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003492 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003493 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003494 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003495 break;
3496 }
3497
Josef Bacik7f4ca372013-10-18 11:44:46 -04003498 if (whence == SEEK_HOLE &&
3499 (em->block_start == EXTENT_MAP_HOLE ||
3500 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3501 break;
3502 else if (whence == SEEK_DATA &&
3503 (em->block_start != EXTENT_MAP_HOLE &&
3504 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3505 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003506
3507 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003508 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003509 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003510 cond_resched();
3511 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003512 free_extent_map(em);
Josef Bacikb2675152011-07-18 13:21:36 -04003513 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003514 &cached_state);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003515 if (ret) {
3516 offset = ret;
3517 } else {
3518 if (whence == SEEK_DATA && start >= i_size)
3519 offset = -ENXIO;
3520 else
3521 offset = min_t(loff_t, start, i_size);
3522 }
3523
3524 return offset;
Josef Bacikb2675152011-07-18 13:21:36 -04003525}
3526
Andrew Morton965c8e52012-12-17 15:59:39 -08003527static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003528{
3529 struct inode *inode = file->f_mapping->host;
Josef Bacikb2675152011-07-18 13:21:36 -04003530
Andrew Morton965c8e52012-12-17 15:59:39 -08003531 switch (whence) {
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003532 default:
3533 return generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003534 case SEEK_DATA:
3535 case SEEK_HOLE:
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003536 inode_lock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003537 offset = find_desired_extent(inode, offset, whence);
Nikolay Borisovd79b7c22019-09-27 13:23:16 +03003538 inode_unlock_shared(inode);
Nikolay Borisovbc802302019-09-27 13:23:18 +03003539 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003540 }
3541
Nikolay Borisovbc802302019-09-27 13:23:18 +03003542 if (offset < 0)
3543 return offset;
3544
Nikolay Borisov2034f3b2019-09-27 13:23:17 +03003545 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003546}
3547
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003548static int btrfs_file_open(struct inode *inode, struct file *filp)
3549{
Jens Axboe8730f122020-05-22 10:19:22 -06003550 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003551 return generic_file_open(inode, filp);
3552}
3553
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003554static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
3555{
3556 ssize_t ret = 0;
3557
3558 if (iocb->ki_flags & IOCB_DIRECT) {
3559 struct inode *inode = file_inode(iocb->ki_filp);
3560
3561 inode_lock_shared(inode);
3562 ret = btrfs_direct_IO(iocb, to);
3563 inode_unlock_shared(inode);
Johannes Thumshirn0425e7b2020-10-22 23:05:05 +09003564 if (ret < 0 || !iov_iter_count(to) ||
3565 iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp)))
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003566 return ret;
3567 }
3568
3569 return generic_file_buffered_read(iocb, to, ret);
3570}
3571
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003572const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003573 .llseek = btrfs_file_llseek,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05003574 .read_iter = btrfs_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003575 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003576 .write_iter = btrfs_file_write_iter,
Christoph Hellwigd7776592020-07-09 18:22:06 +02003577 .splice_write = iter_file_splice_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04003578 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003579 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003580 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003581 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003582 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003583 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003584#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003585 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003586#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003587 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003588};
Miao Xie9247f312012-11-26 09:24:43 +00003589
David Sterbae67c7182018-02-19 17:24:18 +01003590void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003591{
Kinglong Mee5598e902016-01-29 21:36:35 +08003592 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003593}
3594
Liu Bof5c29bd2017-11-02 17:21:50 -06003595int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003596{
3597 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3598 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003599 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003600 NULL);
3601 if (!btrfs_inode_defrag_cachep)
3602 return -ENOMEM;
3603
3604 return 0;
3605}
Filipe Manana728404d2014-10-10 09:43:11 +01003606
3607int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3608{
3609 int ret;
3610
3611 /*
3612 * So with compression we will find and lock a dirty page and clear the
3613 * first one as dirty, setup an async extent, and immediately return
3614 * with the entire range locked but with nobody actually marked with
3615 * writeback. So we can't just filemap_write_and_wait_range() and
3616 * expect it to work since it will just kick off a thread to do the
3617 * actual work. So we need to call filemap_fdatawrite_range _again_
3618 * since it will wait on the page lock, which won't be unlocked until
3619 * after the pages have been marked as writeback and so we're good to go
3620 * from there. We have to do this otherwise we'll miss the ordered
3621 * extents and that results in badness. Please Josef, do not think you
3622 * know better and pull this out at some point in the future, it is
3623 * right and you are wrong.
3624 */
3625 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3626 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3627 &BTRFS_I(inode)->runtime_flags))
3628 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3629
3630 return ret;
3631}