blob: 89f5be2bfb432c64f50aefea1cefec60277de58e [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"
Chris Mason39279cc2007-06-12 06:35:45 -040029
Miao Xie9247f312012-11-26 09:24:43 +000030static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040031/*
32 * when auto defrag is enabled we
33 * queue up these defrag structs to remember which
34 * inodes need defragging passes
35 */
36struct inode_defrag {
37 struct rb_node rb_node;
38 /* objectid */
39 u64 ino;
40 /*
41 * transid where the defrag was added, we search for
42 * extents newer than this
43 */
44 u64 transid;
45
46 /* root objectid */
47 u64 root;
48
49 /* last offset we were able to defrag */
50 u64 last_offset;
51
52 /* if we've wrapped around back to zero once already */
53 int cycled;
54};
55
Miao Xie762f2262012-05-24 18:58:27 +080056static int __compare_inode_defrag(struct inode_defrag *defrag1,
57 struct inode_defrag *defrag2)
58{
59 if (defrag1->root > defrag2->root)
60 return 1;
61 else if (defrag1->root < defrag2->root)
62 return -1;
63 else if (defrag1->ino > defrag2->ino)
64 return 1;
65 else if (defrag1->ino < defrag2->ino)
66 return -1;
67 else
68 return 0;
69}
70
Chris Mason4cb53002011-05-24 15:35:30 -040071/* pop a record for an inode into the defrag tree. The lock
72 * must be held already
73 *
74 * If you're inserting a record for an older transid than an
75 * existing record, the transid already in the tree is lowered
76 *
77 * If an existing record is found the defrag item you
78 * pass in is freed
79 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020080static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040081 struct inode_defrag *defrag)
82{
David Sterba3ffbd682018-06-29 10:56:42 +020083 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -040084 struct inode_defrag *entry;
85 struct rb_node **p;
86 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080087 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040088
Jeff Mahoney0b246af2016-06-22 18:54:23 -040089 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040090 while (*p) {
91 parent = *p;
92 entry = rb_entry(parent, struct inode_defrag, rb_node);
93
Miao Xie762f2262012-05-24 18:58:27 +080094 ret = __compare_inode_defrag(defrag, entry);
95 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040096 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +080097 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -040098 p = &parent->rb_right;
99 else {
100 /* if we're reinserting an entry for
101 * an old defrag run, make sure to
102 * lower the transid of our existing record
103 */
104 if (defrag->transid < entry->transid)
105 entry->transid = defrag->transid;
106 if (defrag->last_offset > entry->last_offset)
107 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000108 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400109 }
110 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200111 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400112 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400113 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000114 return 0;
115}
Chris Mason4cb53002011-05-24 15:35:30 -0400116
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400117static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000118{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400119 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000120 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400121
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400122 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000123 return 0;
124
125 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400126}
127
128/*
129 * insert a defrag record for this inode if auto defrag is
130 * enabled
131 */
132int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200133 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400134{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200135 struct btrfs_root *root = inode->root;
David Sterba3ffbd682018-06-29 10:56:42 +0200136 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason4cb53002011-05-24 15:35:30 -0400137 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400138 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000139 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400140
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400141 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400142 return 0;
143
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200144 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400145 return 0;
146
147 if (trans)
148 transid = trans->transid;
149 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200150 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400151
Miao Xie9247f312012-11-26 09:24:43 +0000152 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400153 if (!defrag)
154 return -ENOMEM;
155
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200156 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400157 defrag->transid = transid;
158 defrag->root = root->root_key.objectid;
159
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400160 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200161 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000162 /*
163 * If we set IN_DEFRAG flag and evict the inode from memory,
164 * and then re-read this inode, this new inode doesn't have
165 * IN_DEFRAG flag. At the case, we may find the existed defrag.
166 */
167 ret = __btrfs_add_inode_defrag(inode, defrag);
168 if (ret)
169 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
170 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000171 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000172 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400173 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000174 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400175}
176
177/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000178 * Requeue the defrag object. If there is a defrag object that points to
179 * the same inode in the tree, we will merge them together (by
180 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400181 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200182static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000183 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000184{
David Sterba3ffbd682018-06-29 10:56:42 +0200185 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie8ddc4732012-11-26 09:25:38 +0000186 int ret;
187
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400188 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000189 goto out;
190
191 /*
192 * Here we don't check the IN_DEFRAG flag, because we need merge
193 * them together.
194 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400195 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000196 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400197 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000198 if (ret)
199 goto out;
200 return;
201out:
202 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
203}
204
205/*
Miao Xie26176e72012-11-26 09:26:20 +0000206 * pick the defragable inode that we want, if it doesn't exist, we will get
207 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400208 */
Miao Xie26176e72012-11-26 09:26:20 +0000209static struct inode_defrag *
210btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400211{
212 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800213 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400214 struct rb_node *p;
215 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800216 int ret;
217
218 tmp.ino = ino;
219 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400220
Miao Xie26176e72012-11-26 09:26:20 +0000221 spin_lock(&fs_info->defrag_inodes_lock);
222 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400223 while (p) {
224 parent = p;
225 entry = rb_entry(parent, struct inode_defrag, rb_node);
226
Miao Xie762f2262012-05-24 18:58:27 +0800227 ret = __compare_inode_defrag(&tmp, entry);
228 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400229 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800230 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400231 p = parent->rb_right;
232 else
Miao Xie26176e72012-11-26 09:26:20 +0000233 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400234 }
235
Miao Xie26176e72012-11-26 09:26:20 +0000236 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
237 parent = rb_next(parent);
238 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400239 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000240 else
241 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400242 }
Miao Xie26176e72012-11-26 09:26:20 +0000243out:
244 if (entry)
245 rb_erase(parent, &fs_info->defrag_inodes);
246 spin_unlock(&fs_info->defrag_inodes_lock);
247 return entry;
248}
249
250void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
251{
252 struct inode_defrag *defrag;
253 struct rb_node *node;
254
255 spin_lock(&fs_info->defrag_inodes_lock);
256 node = rb_first(&fs_info->defrag_inodes);
257 while (node) {
258 rb_erase(node, &fs_info->defrag_inodes);
259 defrag = rb_entry(node, struct inode_defrag, rb_node);
260 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
261
David Sterba351810c2015-01-08 15:20:54 +0100262 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000263
264 node = rb_first(&fs_info->defrag_inodes);
265 }
266 spin_unlock(&fs_info->defrag_inodes_lock);
267}
268
269#define BTRFS_DEFRAG_BATCH 1024
270
271static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
272 struct inode_defrag *defrag)
273{
274 struct btrfs_root *inode_root;
275 struct inode *inode;
276 struct btrfs_key key;
277 struct btrfs_ioctl_defrag_range_args range;
278 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000279 int index;
280 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000281
282 /* get the inode */
283 key.objectid = defrag->root;
David Sterba962a2982014-06-04 18:41:45 +0200284 key.type = BTRFS_ROOT_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000285 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +0000286
287 index = srcu_read_lock(&fs_info->subvol_srcu);
288
Miao Xie26176e72012-11-26 09:26:20 +0000289 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
290 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000291 ret = PTR_ERR(inode_root);
292 goto cleanup;
293 }
Miao Xie26176e72012-11-26 09:26:20 +0000294
295 key.objectid = defrag->ino;
David Sterba962a2982014-06-04 18:41:45 +0200296 key.type = BTRFS_INODE_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000297 key.offset = 0;
298 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
299 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000300 ret = PTR_ERR(inode);
301 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000302 }
Liu Bo6f1c3602013-01-29 03:22:10 +0000303 srcu_read_unlock(&fs_info->subvol_srcu, index);
Miao Xie26176e72012-11-26 09:26:20 +0000304
305 /* do a chunk of defrag */
306 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
307 memset(&range, 0, sizeof(range));
308 range.len = (u64)-1;
309 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000310
311 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000312 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
313 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000314 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000315 /*
316 * if we filled the whole defrag batch, there
317 * must be more work to do. Queue this defrag
318 * again
319 */
320 if (num_defrag == BTRFS_DEFRAG_BATCH) {
321 defrag->last_offset = range.start;
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 if (defrag->last_offset && !defrag->cycled) {
324 /*
325 * we didn't fill our defrag batch, but
326 * we didn't start at zero. Make sure we loop
327 * around to the start of the file.
328 */
329 defrag->last_offset = 0;
330 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200331 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000332 } else {
333 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
334 }
335
336 iput(inode);
337 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000338cleanup:
339 srcu_read_unlock(&fs_info->subvol_srcu, index);
340 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
341 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400342}
343
344/*
345 * run through the list of inodes in the FS that need
346 * defragging
347 */
348int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
349{
350 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400351 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800352 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400353
354 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530355 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700356 /* Pause the auto defragger. */
357 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
358 &fs_info->fs_state))
359 break;
360
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400361 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000362 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400363
364 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000365 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
366 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400367 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000368 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800369 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400370 first_ino = 0;
371 continue;
372 } else {
373 break;
374 }
375 }
376
Chris Mason4cb53002011-05-24 15:35:30 -0400377 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800378 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400379
Miao Xie26176e72012-11-26 09:26:20 +0000380 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400381 }
Chris Mason4cb53002011-05-24 15:35:30 -0400382 atomic_dec(&fs_info->defrag_running);
383
384 /*
385 * during unmount, we use the transaction_wait queue to
386 * wait for the defragger to stop
387 */
388 wake_up(&fs_info->transaction_wait);
389 return 0;
390}
Chris Mason39279cc2007-06-12 06:35:45 -0400391
Chris Masond352ac62008-09-29 15:18:18 -0400392/* simple helper to fault in pages and copy. This should go away
393 * and be replaced with calls into generic code.
394 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800395static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400396 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400397 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400398{
Xin Zhong914ee292010-12-09 09:30:14 +0000399 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500400 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400401 int pg = 0;
Johannes Thumshirn70730172018-12-05 15:23:03 +0100402 int offset = offset_in_page(pos);
Chris Mason39279cc2007-06-12 06:35:45 -0400403
Josef Bacik11c65dc2010-05-23 11:07:21 -0400404 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400405 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300406 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400407 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000408 /*
409 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000410 */
Xin Zhong914ee292010-12-09 09:30:14 +0000411 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400412
Chris Mason39279cc2007-06-12 06:35:45 -0400413 /* Flush processor's dcache for this page */
414 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500415
416 /*
417 * if we get a partial write, we can end up with
418 * partially up to date pages. These add
419 * a lot of complexity, so make sure they don't
420 * happen by forcing this copy to be retried.
421 *
422 * The rest of the btrfs_file_write code will fall
423 * back to page at a time copies after we return 0.
424 */
425 if (!PageUptodate(page) && copied < count)
426 copied = 0;
427
Josef Bacik11c65dc2010-05-23 11:07:21 -0400428 iov_iter_advance(i, copied);
429 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000430 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400431
Al Virob30ac0f2014-04-03 14:29:04 -0400432 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500433 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000434 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400435
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300436 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400437 offset += copied;
438 } else {
439 pg++;
440 offset = 0;
441 }
Chris Mason39279cc2007-06-12 06:35:45 -0400442 }
Xin Zhong914ee292010-12-09 09:30:14 +0000443 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400444}
445
Chris Masond352ac62008-09-29 15:18:18 -0400446/*
447 * unlocks pages after btrfs_file_write is done with them
448 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000449static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400450{
451 size_t i;
452 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400453 /* page checked is some magic around finding pages that
454 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700455 * clear it here. There should be no need to mark the pages
456 * accessed as prepare_pages should have marked them accessed
457 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400458 */
Chris Mason4a096752008-07-21 10:29:44 -0400459 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400460 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300461 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400462 }
463}
464
Filipe Mananaf48bf662017-11-03 22:26:44 +0000465static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
466 const u64 start,
467 const u64 len,
468 struct extent_state **cached_state)
469{
470 u64 search_start = start;
471 const u64 end = start + len - 1;
472
473 while (search_start < end) {
474 const u64 search_len = end - search_start + 1;
475 struct extent_map *em;
476 u64 em_len;
477 int ret = 0;
478
479 em = btrfs_get_extent(inode, NULL, 0, search_start,
480 search_len, 0);
481 if (IS_ERR(em))
482 return PTR_ERR(em);
483
484 if (em->block_start != EXTENT_MAP_HOLE)
485 goto next;
486
487 em_len = em->len;
488 if (em->start < search_start)
489 em_len -= search_start - em->start;
490 if (em_len > search_len)
491 em_len = search_len;
492
493 ret = set_extent_bit(&inode->io_tree, search_start,
494 search_start + em_len - 1,
495 EXTENT_DELALLOC_NEW,
496 NULL, cached_state, GFP_NOFS);
497next:
498 search_start = extent_map_end(em);
499 free_extent_map(em);
500 if (ret)
501 return ret;
502 }
503 return 0;
504}
505
Chris Masond352ac62008-09-29 15:18:18 -0400506/*
507 * after copy_from_user, pages need to be dirtied and we need to make
508 * sure holes are created between the current EOF and the start of
509 * any next extents (if required).
510 *
511 * this also makes the decision about creating an inline extent vs
512 * doing real data extents, marking pages dirty and delalloc as required.
513 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400514int btrfs_dirty_pages(struct inode *inode, struct page **pages,
515 size_t num_pages, loff_t pos, size_t write_bytes,
516 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400517{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400518 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -0400519 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400520 int i;
Chris Masondb945352007-10-15 16:15:53 -0400521 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400522 u64 start_pos;
523 u64 end_of_last_block;
524 u64 end_pos = pos + write_bytes;
525 loff_t isize = i_size_read(inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000526 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400527
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400528 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400529 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400530 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400531
Chris Masondb945352007-10-15 16:15:53 -0400532 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000533
Chris Mason7703bdd2018-06-20 07:56:11 -0700534 /*
535 * The pages may have already been dirty, clear out old accounting so
536 * we can set things up properly
537 */
538 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos, end_of_last_block,
539 EXTENT_DIRTY | EXTENT_DELALLOC |
540 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0, cached);
541
Filipe Mananae3b8a482017-11-04 00:16:59 +0000542 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
543 if (start_pos >= isize &&
544 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
545 /*
546 * There can't be any extents following eof in this case
547 * so just set the delalloc new bit for the range
548 * directly.
549 */
550 extra_bits |= EXTENT_DELALLOC_NEW;
551 } else {
552 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
553 start_pos,
554 num_bytes, cached);
555 if (err)
556 return err;
557 }
558 }
559
Josef Bacik2ac55d42010-02-03 19:33:23 +0000560 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Filipe Mananae3b8a482017-11-04 00:16:59 +0000561 extra_bits, cached, 0);
Josef Bacikd0215f32011-01-25 14:57:24 -0500562 if (err)
563 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400564
Chris Masonc8b97812008-10-29 14:49:59 -0400565 for (i = 0; i < num_pages; i++) {
566 struct page *p = pages[i];
567 SetPageUptodate(p);
568 ClearPageChecked(p);
569 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400570 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500571
572 /*
573 * we've only changed i_size in ram, and we haven't updated
574 * the disk i_size. There is no need to log the inode
575 * at this time.
576 */
577 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400578 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400579 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400580}
581
Chris Masond352ac62008-09-29 15:18:18 -0400582/*
583 * this drops all the extents in the cache that intersect the range
584 * [start, end]. Existing extents are split as required.
585 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200586void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400587 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400588{
589 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400590 struct extent_map *split = NULL;
591 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200592 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500593 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400594 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400595 int ret;
596 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400597 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400598 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400599 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400600
Chris Masone6dcd2d2008-07-17 12:53:50 -0400601 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400602 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500603 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400604 testend = 0;
605 }
Chris Masond3977122009-01-05 21:25:51 -0500606 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400607 int no_splits = 0;
608
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400609 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400610 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200611 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400612 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200613 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400614 if (!split || !split2)
615 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400616
Chris Mason890871b2009-09-02 16:24:52 -0400617 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500618 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500619 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400620 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400621 break;
Chris Masond1310b22008-01-24 16:13:08 -0500622 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400623 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400624 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400625 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000626 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400627 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400628 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400629 break;
630 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000631 start = em->start + em->len;
632 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400633 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400634 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400635 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400636 continue;
637 }
Chris Masonc8b97812008-10-29 14:49:59 -0400638 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400639 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600640 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400641 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400642 if (no_splits)
643 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400644
Josef Bacikee20a982013-07-11 10:34:59 -0400645 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400646 split->start = em->start;
647 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400648
Josef Bacikee20a982013-07-11 10:34:59 -0400649 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
650 split->orig_start = em->orig_start;
651 split->block_start = em->block_start;
652
653 if (compressed)
654 split->block_len = em->block_len;
655 else
656 split->block_len = split->len;
657 split->orig_block_len = max(split->block_len,
658 em->orig_block_len);
659 split->ram_bytes = em->ram_bytes;
660 } else {
661 split->orig_start = split->start;
662 split->block_len = 0;
663 split->block_start = em->block_start;
664 split->orig_block_len = 0;
665 split->ram_bytes = split->len;
666 }
667
Josef Bacik5dc562c2012-08-17 13:14:17 -0400668 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400669 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400670 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800671 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000672 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400673 free_extent_map(split);
674 split = split2;
675 split2 = NULL;
676 }
Josef Bacikee20a982013-07-11 10:34:59 -0400677 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400678 u64 diff = start + len - em->start;
679
680 split->start = start + len;
681 split->len = em->start + em->len - (start + len);
682 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400683 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800684 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400685 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400686
Josef Bacikee20a982013-07-11 10:34:59 -0400687 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
688 split->orig_block_len = max(em->block_len,
689 em->orig_block_len);
690
691 split->ram_bytes = em->ram_bytes;
692 if (compressed) {
693 split->block_len = em->block_len;
694 split->block_start = em->block_start;
695 split->orig_start = em->orig_start;
696 } else {
697 split->block_len = split->len;
698 split->block_start = em->block_start
699 + diff;
700 split->orig_start = em->orig_start;
701 }
Chris Masonc8b97812008-10-29 14:49:59 -0400702 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400703 split->ram_bytes = split->len;
704 split->orig_start = split->start;
705 split->block_len = 0;
706 split->block_start = em->block_start;
707 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400708 }
Chris Mason3b951512008-04-17 11:29:12 -0400709
Filipe Manana176840b2014-02-25 14:15:13 +0000710 if (extent_map_in_tree(em)) {
711 replace_extent_mapping(em_tree, em, split,
712 modified);
713 } else {
714 ret = add_extent_mapping(em_tree, split,
715 modified);
716 ASSERT(ret == 0); /* Logic error */
717 }
Chris Mason3b951512008-04-17 11:29:12 -0400718 free_extent_map(split);
719 split = NULL;
720 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400721next:
Filipe Manana176840b2014-02-25 14:15:13 +0000722 if (extent_map_in_tree(em))
723 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400724 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500725
Chris Masona52d9a82007-08-27 16:49:44 -0400726 /* once for us */
727 free_extent_map(em);
728 /* once for the tree*/
729 free_extent_map(em);
730 }
Chris Mason3b951512008-04-17 11:29:12 -0400731 if (split)
732 free_extent_map(split);
733 if (split2)
734 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400735}
736
Chris Mason39279cc2007-06-12 06:35:45 -0400737/*
738 * this is very complex, but the basic idea is to drop all extents
739 * in the range start - end. hint_block is filled in with a block number
740 * that would be a good hint to the block allocator for this file.
741 *
742 * If an extent intersects the range but is not entirely inside the range
743 * it is either truncated or split. Anything entirely inside the range
744 * is deleted from the tree.
745 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400746int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
747 struct btrfs_root *root, struct inode *inode,
748 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000749 u64 *drop_end, int drop_cache,
750 int replace_extent,
751 u32 extent_item_size,
752 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400753{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400754 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500755 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000756 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +0800757 struct btrfs_ref ref = { 0 };
Chris Mason00f5c792007-11-30 10:09:33 -0500758 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000759 struct btrfs_key new_key;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200760 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000761 u64 search_start = start;
762 u64 disk_bytenr = 0;
763 u64 num_bytes = 0;
764 u64 extent_offset = 0;
765 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500766 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000767 int del_nr = 0;
768 int del_slot = 0;
769 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400770 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500771 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400772 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800773 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400774 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000775 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400776
Chris Masona1ed8352009-09-11 12:27:37 -0400777 if (drop_cache)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200778 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400779
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000780 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400781 modify_tree = 0;
782
Miao Xie27cdeb72014-04-02 19:51:05 +0800783 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400784 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500785 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400786 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800787 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400788 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400789 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000790 break;
791 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
792 leaf = path->nodes[0];
793 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800794 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000795 key.type == BTRFS_EXTENT_DATA_KEY)
796 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400797 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400798 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000799 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000800next_slot:
801 leaf = path->nodes[0];
802 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
803 BUG_ON(del_nr > 0);
804 ret = btrfs_next_leaf(root, path);
805 if (ret < 0)
806 break;
807 if (ret > 0) {
808 ret = 0;
809 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400810 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000811 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000812 leaf = path->nodes[0];
813 recow = 1;
814 }
815
816 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000817
818 if (key.objectid > ino)
819 break;
820 if (WARN_ON_ONCE(key.objectid < ino) ||
821 key.type < BTRFS_EXTENT_DATA_KEY) {
822 ASSERT(del_nr == 0);
823 path->slots[0]++;
824 goto next_slot;
825 }
826 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000827 break;
828
829 fi = btrfs_item_ptr(leaf, path->slots[0],
830 struct btrfs_file_extent_item);
831 extent_type = btrfs_file_extent_type(leaf, fi);
832
833 if (extent_type == BTRFS_FILE_EXTENT_REG ||
834 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
835 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
836 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
837 extent_offset = btrfs_file_extent_offset(leaf, fi);
838 extent_end = key.offset +
839 btrfs_file_extent_num_bytes(leaf, fi);
840 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
841 extent_end = key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +0800842 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400843 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000844 /* can't happen */
845 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400846 }
847
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100848 /*
849 * Don't skip extent items representing 0 byte lengths. They
850 * used to be created (bug) if while punching holes we hit
851 * -ENOSPC condition. So if we find one here, just ensure we
852 * delete it, otherwise we would insert a new file extent item
853 * with the same key (offset) as that 0 bytes length file
854 * extent item in the call to setup_items_for_insert() later
855 * in this function.
856 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500857 if (extent_end == key.offset && extent_end >= search_start) {
858 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100859 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500860 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100861
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000862 if (extent_end <= search_start) {
863 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400864 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400865 }
866
Josef Bacikc3308f82012-09-14 14:51:22 -0400867 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000868 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400869 if (recow || !modify_tree) {
870 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200871 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000872 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400873 }
Chris Mason771ed682008-11-06 22:02:51 -0500874
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000875 /*
876 * | - range to drop - |
877 * | -------- extent -------- |
878 */
879 if (start > key.offset && end < extent_end) {
880 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800881 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200882 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800883 break;
884 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000885
886 memcpy(&new_key, &key, sizeof(new_key));
887 new_key.offset = start;
888 ret = btrfs_duplicate_item(trans, root, path,
889 &new_key);
890 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200891 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000892 continue;
893 }
894 if (ret < 0)
895 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400896
Chris Mason5f39d392007-10-15 16:14:19 -0400897 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000898 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
899 struct btrfs_file_extent_item);
900 btrfs_set_file_extent_num_bytes(leaf, fi,
901 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400902
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000903 fi = btrfs_item_ptr(leaf, path->slots[0],
904 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400905
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000906 extent_offset += start - key.offset;
907 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
908 btrfs_set_file_extent_num_bytes(leaf, fi,
909 extent_end - start);
910 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400911
Josef Bacik5dc562c2012-08-17 13:14:17 -0400912 if (update_refs && disk_bytenr > 0) {
Qu Wenruo82fa1132019-04-04 14:45:35 +0800913 btrfs_init_generic_ref(&ref,
914 BTRFS_ADD_DELAYED_REF,
915 disk_bytenr, num_bytes, 0);
916 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000917 root->root_key.objectid,
918 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100919 start - extent_offset);
Qu Wenruo82fa1132019-04-04 14:45:35 +0800920 ret = btrfs_inc_extent_ref(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100921 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400922 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000923 key.offset = start;
924 }
925 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500926 * From here on out we will have actually dropped something, so
927 * last_end can be updated.
928 */
929 last_end = extent_end;
930
931 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000932 * | ---- range to drop ----- |
933 * | -------- extent -------- |
934 */
935 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800936 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200937 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800938 break;
939 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940
941 memcpy(&new_key, &key, sizeof(new_key));
942 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400943 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000944
945 extent_offset += end - key.offset;
946 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
947 btrfs_set_file_extent_num_bytes(leaf, fi,
948 extent_end - end);
949 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400950 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000951 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000952 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400953 }
954
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000955 search_start = extent_end;
956 /*
957 * | ---- range to drop ----- |
958 * | -------- extent -------- |
959 */
960 if (start > key.offset && end >= extent_end) {
961 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800962 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200963 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800964 break;
965 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000966
967 btrfs_set_file_extent_num_bytes(leaf, fi,
968 start - key.offset);
969 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400970 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000971 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000972 if (end == extent_end)
973 break;
974
975 path->slots[0]++;
976 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400977 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000978
979 /*
980 * | ---- range to drop ----- |
981 * | ------ extent ------ |
982 */
983 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100984delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000985 if (del_nr == 0) {
986 del_slot = path->slots[0];
987 del_nr = 1;
988 } else {
989 BUG_ON(del_slot + del_nr != path->slots[0]);
990 del_nr++;
991 }
992
Josef Bacik5dc562c2012-08-17 13:14:17 -0400993 if (update_refs &&
994 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000995 inode_sub_bytes(inode,
996 extent_end - key.offset);
997 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400998 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400999 } else if (update_refs && disk_bytenr > 0) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001000 btrfs_init_generic_ref(&ref,
1001 BTRFS_DROP_DELAYED_REF,
1002 disk_bytenr, num_bytes, 0);
1003 btrfs_init_data_ref(&ref,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001004 root->root_key.objectid,
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001005 key.objectid,
1006 key.offset - extent_offset);
1007 ret = btrfs_free_extent(trans, &ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001008 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001009 inode_sub_bytes(inode,
1010 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001011 }
1012
1013 if (end == extent_end)
1014 break;
1015
1016 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1017 path->slots[0]++;
1018 goto next_slot;
1019 }
1020
1021 ret = btrfs_del_items(trans, root, path, del_slot,
1022 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001023 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001024 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001025 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001026 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001027
1028 del_nr = 0;
1029 del_slot = 0;
1030
David Sterbab3b4aa72011-04-21 01:20:15 +02001031 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001032 continue;
1033 }
1034
Arnd Bergmann290342f2019-03-25 14:02:25 +01001035 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -04001036 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001037
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001038 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001039 /*
1040 * Set path->slots[0] to first slot, so that after the delete
1041 * if items are move off from our leaf to its immediate left or
1042 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001043 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001044 */
1045 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001046 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001047 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001048 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001049 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001050
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001051 leaf = path->nodes[0];
1052 /*
1053 * If btrfs_del_items() was called, it might have deleted a leaf, in
1054 * which case it unlocked our path, so check path->locks[0] matches a
1055 * write lock.
1056 */
1057 if (!ret && replace_extent && leafs_visited == 1 &&
1058 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1059 path->locks[0] == BTRFS_WRITE_LOCK) &&
David Sterbae902baa2019-03-20 14:36:46 +01001060 btrfs_leaf_free_space(leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001061 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001062
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001063 key.objectid = ino;
1064 key.type = BTRFS_EXTENT_DATA_KEY;
1065 key.offset = start;
1066 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1067 struct btrfs_key slot_key;
1068
1069 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1070 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1071 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001072 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001073 setup_items_for_insert(root, path, &key,
1074 &extent_item_size,
1075 extent_item_size,
1076 sizeof(struct btrfs_item) +
1077 extent_item_size, 1);
1078 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001079 }
1080
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001081 if (!replace_extent || !(*key_inserted))
1082 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001083 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001084 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001085 return ret;
1086}
1087
1088int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1089 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001090 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001091{
1092 struct btrfs_path *path;
1093 int ret;
1094
1095 path = btrfs_alloc_path();
1096 if (!path)
1097 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001098 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001099 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001100 btrfs_free_path(path);
1101 return ret;
1102}
1103
Yan Zhengd899e052008-10-30 14:25:28 -04001104static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001105 u64 objectid, u64 bytenr, u64 orig_offset,
1106 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001107{
1108 struct btrfs_file_extent_item *fi;
1109 struct btrfs_key key;
1110 u64 extent_end;
1111
1112 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1113 return 0;
1114
1115 btrfs_item_key_to_cpu(leaf, &key, slot);
1116 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1117 return 0;
1118
1119 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1120 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1121 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001122 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001123 btrfs_file_extent_compression(leaf, fi) ||
1124 btrfs_file_extent_encryption(leaf, fi) ||
1125 btrfs_file_extent_other_encoding(leaf, fi))
1126 return 0;
1127
1128 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1129 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1130 return 0;
1131
1132 *start = key.offset;
1133 *end = extent_end;
1134 return 1;
1135}
1136
1137/*
1138 * Mark extent in the range start - end as written.
1139 *
1140 * This changes extent type from 'pre-allocated' to 'regular'. If only
1141 * part of extent is marked as written, the extent will be split into
1142 * two or three.
1143 */
1144int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001145 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001146{
David Sterba3ffbd682018-06-29 10:56:42 +02001147 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001148 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001149 struct extent_buffer *leaf;
1150 struct btrfs_path *path;
1151 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001152 struct btrfs_ref ref = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04001153 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001154 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001155 u64 bytenr;
1156 u64 num_bytes;
1157 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001158 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001159 u64 other_start;
1160 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001161 u64 split;
1162 int del_nr = 0;
1163 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001164 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001165 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001166 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001167
Yan Zhengd899e052008-10-30 14:25:28 -04001168 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001169 if (!path)
1170 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001171again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001172 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001173 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001174 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001175 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001176 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001177
1178 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001179 if (ret < 0)
1180 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001181 if (ret > 0 && path->slots[0] > 0)
1182 path->slots[0]--;
1183
1184 leaf = path->nodes[0];
1185 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001186 if (key.objectid != ino ||
1187 key.type != BTRFS_EXTENT_DATA_KEY) {
1188 ret = -EINVAL;
1189 btrfs_abort_transaction(trans, ret);
1190 goto out;
1191 }
Yan Zhengd899e052008-10-30 14:25:28 -04001192 fi = btrfs_item_ptr(leaf, path->slots[0],
1193 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001194 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1195 ret = -EINVAL;
1196 btrfs_abort_transaction(trans, ret);
1197 goto out;
1198 }
Yan Zhengd899e052008-10-30 14:25:28 -04001199 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001200 if (key.offset > start || extent_end < end) {
1201 ret = -EINVAL;
1202 btrfs_abort_transaction(trans, ret);
1203 goto out;
1204 }
Yan Zhengd899e052008-10-30 14:25:28 -04001205
1206 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1207 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001208 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001209 memcpy(&new_key, &key, sizeof(new_key));
1210
1211 if (start == key.offset && end < extent_end) {
1212 other_start = 0;
1213 other_end = start;
1214 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001215 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001216 &other_start, &other_end)) {
1217 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001218 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001219 fi = btrfs_item_ptr(leaf, path->slots[0],
1220 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001221 btrfs_set_file_extent_generation(leaf, fi,
1222 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001223 btrfs_set_file_extent_num_bytes(leaf, fi,
1224 extent_end - end);
1225 btrfs_set_file_extent_offset(leaf, fi,
1226 end - orig_offset);
1227 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1228 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001229 btrfs_set_file_extent_generation(leaf, fi,
1230 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001231 btrfs_set_file_extent_num_bytes(leaf, fi,
1232 end - other_start);
1233 btrfs_mark_buffer_dirty(leaf);
1234 goto out;
1235 }
1236 }
1237
1238 if (start > key.offset && end == extent_end) {
1239 other_start = end;
1240 other_end = 0;
1241 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001242 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001243 &other_start, &other_end)) {
1244 fi = btrfs_item_ptr(leaf, path->slots[0],
1245 struct btrfs_file_extent_item);
1246 btrfs_set_file_extent_num_bytes(leaf, fi,
1247 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001248 btrfs_set_file_extent_generation(leaf, fi,
1249 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001250 path->slots[0]++;
1251 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001252 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001253
1254 fi = btrfs_item_ptr(leaf, path->slots[0],
1255 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001256 btrfs_set_file_extent_generation(leaf, fi,
1257 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001258 btrfs_set_file_extent_num_bytes(leaf, fi,
1259 other_end - start);
1260 btrfs_set_file_extent_offset(leaf, fi,
1261 start - orig_offset);
1262 btrfs_mark_buffer_dirty(leaf);
1263 goto out;
1264 }
1265 }
Yan Zhengd899e052008-10-30 14:25:28 -04001266
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001267 while (start > key.offset || end < extent_end) {
1268 if (key.offset == start)
1269 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001270
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001271 new_key.offset = split;
1272 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1273 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001275 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001276 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001277 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001278 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001279 goto out;
1280 }
Yan Zhengd899e052008-10-30 14:25:28 -04001281
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001282 leaf = path->nodes[0];
1283 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001284 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001285 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001286 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001287 split - key.offset);
1288
1289 fi = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_file_extent_item);
1291
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_set_file_extent_offset(leaf, fi, split - orig_offset);
1294 btrfs_set_file_extent_num_bytes(leaf, fi,
1295 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001296 btrfs_mark_buffer_dirty(leaf);
1297
Qu Wenruo82fa1132019-04-04 14:45:35 +08001298 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr,
1299 num_bytes, 0);
1300 btrfs_init_data_ref(&ref, root->root_key.objectid, ino,
1301 orig_offset);
1302 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001303 if (ret) {
1304 btrfs_abort_transaction(trans, ret);
1305 goto out;
1306 }
Yan Zhengd899e052008-10-30 14:25:28 -04001307
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001308 if (split == start) {
1309 key.offset = start;
1310 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001311 if (start != key.offset) {
1312 ret = -EINVAL;
1313 btrfs_abort_transaction(trans, ret);
1314 goto out;
1315 }
Yan Zhengd899e052008-10-30 14:25:28 -04001316 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001317 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001318 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001319 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001320 }
1321
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001322 other_start = end;
1323 other_end = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001324 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1325 num_bytes, 0);
1326 btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001327 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001328 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001329 &other_start, &other_end)) {
1330 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001331 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001332 goto again;
1333 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001334 extent_end = other_end;
1335 del_slot = path->slots[0] + 1;
1336 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001337 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001338 if (ret) {
1339 btrfs_abort_transaction(trans, ret);
1340 goto out;
1341 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001342 }
1343 other_start = 0;
1344 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001345 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001346 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001347 &other_start, &other_end)) {
1348 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001349 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001350 goto again;
1351 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001352 key.offset = other_start;
1353 del_slot = path->slots[0];
1354 del_nr++;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001355 ret = btrfs_free_extent(trans, &ref);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001356 if (ret) {
1357 btrfs_abort_transaction(trans, ret);
1358 goto out;
1359 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001360 }
1361 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001362 fi = btrfs_item_ptr(leaf, path->slots[0],
1363 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001364 btrfs_set_file_extent_type(leaf, fi,
1365 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001366 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001367 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001368 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001369 fi = btrfs_item_ptr(leaf, del_slot - 1,
1370 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001371 btrfs_set_file_extent_type(leaf, fi,
1372 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001373 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001374 btrfs_set_file_extent_num_bytes(leaf, fi,
1375 extent_end - key.offset);
1376 btrfs_mark_buffer_dirty(leaf);
1377
1378 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001379 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001380 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001381 goto out;
1382 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001383 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001384out:
Yan Zhengd899e052008-10-30 14:25:28 -04001385 btrfs_free_path(path);
1386 return 0;
1387}
1388
Chris Mason39279cc2007-06-12 06:35:45 -04001389/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001390 * on error we return an unlocked page and the error value
1391 * on success we return a locked page and 0
1392 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001393static int prepare_uptodate_page(struct inode *inode,
1394 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001395 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001396{
1397 int ret = 0;
1398
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001399 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001400 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001401 ret = btrfs_readpage(NULL, page);
1402 if (ret)
1403 return ret;
1404 lock_page(page);
1405 if (!PageUptodate(page)) {
1406 unlock_page(page);
1407 return -EIO;
1408 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001409 if (page->mapping != inode->i_mapping) {
1410 unlock_page(page);
1411 return -EAGAIN;
1412 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001413 }
1414 return 0;
1415}
1416
1417/*
Miao Xie376cc682013-12-10 19:25:04 +08001418 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001419 */
Miao Xieb37392e2013-12-10 19:25:03 +08001420static noinline int prepare_pages(struct inode *inode, struct page **pages,
1421 size_t num_pages, loff_t pos,
1422 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001423{
1424 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001425 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001426 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001427 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001428 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001429
Chris Mason39279cc2007-06-12 06:35:45 -04001430 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001431again:
Josef Bacika94733d2011-07-11 10:47:06 -04001432 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001433 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001434 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001435 faili = i - 1;
1436 err = -ENOMEM;
1437 goto fail;
1438 }
1439
1440 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001441 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001442 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001443 if (!err && i == num_pages - 1)
1444 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001445 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001446 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001447 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001448 if (err == -EAGAIN) {
1449 err = 0;
1450 goto again;
1451 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001452 faili = i - 1;
1453 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001454 }
Chris Masonccd467d2007-06-28 15:57:36 -04001455 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001456 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001457
Chris Mason39279cc2007-06-12 06:35:45 -04001458 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001459fail:
1460 while (faili >= 0) {
1461 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001462 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001463 faili--;
1464 }
1465 return err;
1466
Chris Mason39279cc2007-06-12 06:35:45 -04001467}
1468
Miao Xie376cc682013-12-10 19:25:04 +08001469/*
1470 * This function locks the extent and properly waits for data=ordered extents
1471 * to finish before allowing the pages to be modified if need.
1472 *
1473 * The return value:
1474 * 1 - the extent is locked
1475 * 0 - the extent is not locked, and everything is OK
1476 * -EAGAIN - need re-prepare the pages
1477 * the other < 0 number - Something wrong happens
1478 */
1479static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001480lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001481 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301482 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001483 u64 *lockstart, u64 *lockend,
1484 struct extent_state **cached_state)
1485{
David Sterba3ffbd682018-06-29 10:56:42 +02001486 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001487 u64 start_pos;
1488 u64 last_pos;
1489 int i;
1490 int ret = 0;
1491
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001492 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301493 last_pos = start_pos
Jeff Mahoneyda170662016-06-15 09:22:56 -04001494 + round_up(pos + write_bytes - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001495 fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001496
Filipe Mananae3b8a482017-11-04 00:16:59 +00001497 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001498 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001499
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001500 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1501 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001502 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1503 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001504 if (ordered &&
1505 ordered->file_offset + ordered->len > start_pos &&
1506 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001507 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001508 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001509 for (i = 0; i < num_pages; i++) {
1510 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001511 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001512 }
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001513 btrfs_start_ordered_extent(&inode->vfs_inode,
1514 ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001515 btrfs_put_ordered_extent(ordered);
1516 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001517 }
1518 if (ordered)
1519 btrfs_put_ordered_extent(ordered);
Chris Mason7703bdd2018-06-20 07:56:11 -07001520
Miao Xie376cc682013-12-10 19:25:04 +08001521 *lockstart = start_pos;
1522 *lockend = last_pos;
1523 ret = 1;
1524 }
1525
Chris Mason7703bdd2018-06-20 07:56:11 -07001526 /*
1527 * It's possible the pages are dirty right now, but we don't want
1528 * to clean them yet because copy_from_user may catch a page fault
1529 * and we might have to fall back to one page at a time. If that
1530 * happens, we'll unlock these pages and we'd have a window where
1531 * reclaim could sneak in and drop the once-dirty page on the floor
1532 * without writing it.
1533 *
1534 * We have the pages locked and the extent range locked, so there's
1535 * no way someone can start IO on any dirty pages in this range.
1536 *
1537 * We'll call btrfs_dirty_pages() later on, and that will flip around
1538 * delalloc bits and dirty the pages as required.
1539 */
Miao Xie376cc682013-12-10 19:25:04 +08001540 for (i = 0; i < num_pages; i++) {
Miao Xie376cc682013-12-10 19:25:04 +08001541 set_page_extent_mapped(pages[i]);
1542 WARN_ON(!PageLocked(pages[i]));
1543 }
1544
1545 return ret;
1546}
1547
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001548static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
Josef Bacik7ee9e442013-06-21 16:37:03 -04001549 size_t *write_bytes)
1550{
David Sterba3ffbd682018-06-29 10:56:42 +02001551 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001552 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001553 struct btrfs_ordered_extent *ordered;
1554 u64 lockstart, lockend;
1555 u64 num_bytes;
1556 int ret;
1557
David Sterbaea14b57f2017-06-22 02:19:11 +02001558 ret = btrfs_start_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001559 if (!ret)
1560 return -ENOSPC;
1561
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001562 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001563 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001564 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001565
1566 while (1) {
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001567 lock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001568 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1569 lockend - lockstart + 1);
1570 if (!ordered) {
1571 break;
1572 }
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001573 unlock_extent(&inode->io_tree, lockstart, lockend);
1574 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001575 btrfs_put_ordered_extent(ordered);
1576 }
1577
Josef Bacik7ee9e442013-06-21 16:37:03 -04001578 num_bytes = lockend - lockstart + 1;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001579 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1580 NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001581 if (ret <= 0) {
1582 ret = 0;
David Sterbaea14b57f2017-06-22 02:19:11 +02001583 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001584 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001585 *write_bytes = min_t(size_t, *write_bytes ,
1586 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001587 }
1588
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001589 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001590
1591 return ret;
1592}
1593
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001594static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1595 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001596{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001597 struct file *file = iocb->ki_filp;
1598 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001599 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001600 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001601 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001602 struct page **pages = NULL;
Miao Xie376cc682013-12-10 19:25:04 +08001603 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001604 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001605 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001606 u64 lockstart;
1607 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001608 size_t num_written = 0;
1609 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001610 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001611 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001612 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001613
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001614 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1615 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001616 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1617 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001618 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001619 if (!pages)
1620 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001621
Josef Bacikd0215f32011-01-25 14:57:24 -05001622 while (iov_iter_count(i) > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01001623 size_t offset = offset_in_page(pos);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301624 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001625 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001626 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001627 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001628 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001629 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001630 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001631 size_t dirty_pages;
1632 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301633 size_t dirty_sectors;
1634 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001635 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001636
Chris Mason8c2383c2007-06-18 09:57:58 -04001637 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001638
Xin Zhong914ee292010-12-09 09:30:14 +00001639 /*
1640 * Fault pages before locking them in prepare_pages
1641 * to avoid recursive lock
1642 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001643 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001644 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001645 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001646 }
1647
Jeff Mahoneyda170662016-06-15 09:22:56 -04001648 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301649 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001650 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001651
Qu Wenruo364ecf32017-02-27 15:10:38 +08001652 extent_changeset_release(data_reserved);
1653 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1654 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001655 if (ret < 0) {
1656 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1657 BTRFS_INODE_PREALLOC)) &&
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001658 check_can_nocow(BTRFS_I(inode), pos,
1659 &write_bytes) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001660 /*
1661 * For nodata cow case, no need to reserve
1662 * data space.
1663 */
1664 only_release_metadata = true;
1665 /*
1666 * our prealloc extent may be smaller than
1667 * write_bytes, so scale down.
1668 */
1669 num_pages = DIV_ROUND_UP(write_bytes + offset,
1670 PAGE_SIZE);
1671 reserve_bytes = round_up(write_bytes +
1672 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001673 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001674 } else {
1675 break;
1676 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001677 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001678
Josef Bacik8b62f872017-10-19 14:15:55 -04001679 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001680 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1681 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001682 if (ret) {
1683 if (!only_release_metadata)
Qu Wenruobc42bda2017-02-27 15:10:39 +08001684 btrfs_free_reserved_data_space(inode,
1685 data_reserved, pos,
1686 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001687 else
David Sterbaea14b57f2017-06-22 02:19:11 +02001688 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001689 break;
1690 }
1691
1692 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001693again:
Josef Bacik4a640012011-01-25 15:10:08 -05001694 /*
1695 * This is going to setup the pages array with the number of
1696 * pages we want, so we don't really need to worry about the
1697 * contents of pages from loop to loop
1698 */
Miao Xieb37392e2013-12-10 19:25:03 +08001699 ret = prepare_pages(inode, pages, num_pages,
1700 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001701 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001702 if (ret) {
1703 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001704 reserve_bytes, true);
Josef Bacikd0215f32011-01-25 14:57:24 -05001705 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001706 }
Chris Mason39279cc2007-06-12 06:35:45 -04001707
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001708 extents_locked = lock_and_cleanup_extent_if_need(
1709 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001710 num_pages, pos, write_bytes, &lockstart,
1711 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001712 if (extents_locked < 0) {
1713 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001714 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001715 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001716 reserve_bytes, true);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001717 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001718 break;
Miao Xie376cc682013-12-10 19:25:04 +08001719 }
1720
Zhao Leiee22f0c2016-01-06 18:47:31 +08001721 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001722
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001723 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001724 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001725 fs_info->sectorsize);
1726 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001727
Chris Masonb1bf8622011-02-28 09:52:08 -05001728 /*
1729 * if we have trouble faulting in the pages, fall
1730 * back to one page at a time
1731 */
1732 if (copied < write_bytes)
1733 nrptrs = 1;
1734
Josef Bacikb63164292011-09-30 15:23:54 -04001735 if (copied == 0) {
1736 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001737 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001738 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001739 } else {
1740 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001741 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001742 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001743 }
Xin Zhong914ee292010-12-09 09:30:14 +00001744
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301745 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001746 /* release everything except the sectors we dirtied */
1747 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001748 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001749 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001750 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001751 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001752 } else {
1753 u64 __pos;
1754
Jeff Mahoneyda170662016-06-15 09:22:56 -04001755 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001756 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001757 (dirty_pages << PAGE_SHIFT);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001758 btrfs_delalloc_release_space(inode,
1759 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001760 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001761 }
Xin Zhong914ee292010-12-09 09:30:14 +00001762 }
1763
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301764 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001765 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001766
1767 if (copied > 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001768 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
Filipe Manana94f45072017-10-31 17:59:54 +00001769 pos, copied, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001770 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001771 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001772 lockstart, lockend, &cached_state);
Qu Wenruo43b18592017-12-12 15:34:32 +08001773 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes,
Qu Wenruo336a8bb2018-04-17 18:43:58 +08001774 true);
Miao Xief1de9682014-01-09 10:06:10 +08001775 if (ret) {
1776 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001777 break;
Miao Xief1de9682014-01-09 10:06:10 +08001778 }
Chris Mason39279cc2007-06-12 06:35:45 -04001779
Josef Bacik7ee9e442013-06-21 16:37:03 -04001780 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001781 if (only_release_metadata)
David Sterbaea14b57f2017-06-22 02:19:11 +02001782 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001783
Josef Bacik7ee9e442013-06-21 16:37:03 -04001784 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001785 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001786 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001787 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001788 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001789
1790 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1791 lockend, EXTENT_NORESERVE, NULL,
1792 NULL, GFP_NOFS);
1793 only_release_metadata = false;
1794 }
1795
Miao Xief1de9682014-01-09 10:06:10 +08001796 btrfs_drop_pages(pages, num_pages);
1797
Josef Bacikd0215f32011-01-25 14:57:24 -05001798 cond_resched();
1799
Namjae Jeond0e1d662012-12-11 16:00:21 -08001800 balance_dirty_pages_ratelimited(inode->i_mapping);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001801 if (dirty_pages < (fs_info->nodesize >> PAGE_SHIFT) + 1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001802 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04001803
Xin Zhong914ee292010-12-09 09:30:14 +00001804 pos += copied;
1805 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001806 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001807
Chris Mason8c2383c2007-06-18 09:57:58 -04001808 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001809
Josef Bacik7ee9e442013-06-21 16:37:03 -04001810 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001811 if (only_release_metadata) {
David Sterbaea14b57f2017-06-22 02:19:11 +02001812 btrfs_end_write_no_snapshotting(root);
Nikolay Borisov691fa052017-02-20 13:50:42 +02001813 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001814 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001815 } else {
Qu Wenruobc42bda2017-02-27 15:10:39 +08001816 btrfs_delalloc_release_space(inode, data_reserved,
1817 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001818 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001819 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001820 }
1821
Qu Wenruo364ecf32017-02-27 15:10:38 +08001822 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001823 return num_written ? num_written : ret;
1824}
1825
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001826static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001827{
1828 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001829 struct inode *inode = file_inode(file);
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001830 loff_t pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001831 ssize_t written;
1832 ssize_t written_buffered;
1833 loff_t endbyte;
1834 int err;
1835
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001836 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001837
Al Viro0c949332014-03-22 06:51:37 -04001838 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001839 return written;
1840
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001841 pos = iocb->ki_pos;
1842 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001843 if (written_buffered < 0) {
1844 err = written_buffered;
1845 goto out;
1846 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001847 /*
1848 * Ensure all data is persisted. We want the next direct IO read to be
1849 * able to read what was just written.
1850 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001851 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001852 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001853 if (err)
1854 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001855 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001856 if (err)
1857 goto out;
1858 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001859 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001860 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1861 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001862out:
1863 return written ? written : err;
1864}
1865
Josef Bacik6c760c02012-11-09 10:53:21 -05001866static void update_time_for_write(struct inode *inode)
1867{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001868 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001869
1870 if (IS_NOCMTIME(inode))
1871 return;
1872
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001873 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001874 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001875 inode->i_mtime = now;
1876
Deepa Dinamani95582b02018-05-08 19:36:02 -07001877 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001878 inode->i_ctime = now;
1879
1880 if (IS_I_VERSION(inode))
1881 inode_inc_iversion(inode);
1882}
1883
Al Virob30ac0f2014-04-03 14:29:04 -04001884static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1885 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001886{
1887 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001888 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001889 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001890 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001891 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001892 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001893 ssize_t num_written = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001894 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
Al Viro3309dd02015-04-09 12:55:47 -04001895 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001896 loff_t pos;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001897 size_t count = iov_iter_count(from);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301898 loff_t oldsize;
1899 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001900
Christoph Hellwig91f99432017-08-29 16:13:20 +02001901 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1902 (iocb->ki_flags & IOCB_NOWAIT))
1903 return -EOPNOTSUPP;
1904
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001905 if (!inode_trylock(inode)) {
1906 if (iocb->ki_flags & IOCB_NOWAIT)
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001907 return -EAGAIN;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001908 inode_lock(inode);
1909 }
1910
1911 err = generic_write_checks(iocb, from);
1912 if (err <= 0) {
1913 inode_unlock(inode);
1914 return err;
1915 }
1916
1917 pos = iocb->ki_pos;
1918 if (iocb->ki_flags & IOCB_NOWAIT) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001919 /*
1920 * We will allocate space in case nodatacow is not set,
1921 * so bail
1922 */
1923 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1924 BTRFS_INODE_PREALLOC)) ||
1925 check_can_nocow(BTRFS_I(inode), pos, &count) <= 0) {
1926 inode_unlock(inode);
1927 return -EAGAIN;
1928 }
Al Viro3309dd02015-04-09 12:55:47 -04001929 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001930
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001931 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001932 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001933 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001934 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001935 goto out;
1936 }
1937
1938 /*
1939 * If BTRFS flips readonly due to some impossible error
1940 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1941 * although we have opened a file as writable, we have
1942 * to stop this write operation to ensure FS consistency.
1943 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001944 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001945 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001946 err = -EROFS;
1947 goto out;
1948 }
1949
Josef Bacik6c760c02012-11-09 10:53:21 -05001950 /*
1951 * We reserve space for updating the inode when we reserve space for the
1952 * extent we are going to write, so we will enospc out there. We don't
1953 * need to start yet another transaction to update the inode as we will
1954 * update the inode when we finish writing whatever data we write.
1955 */
1956 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001957
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001958 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301959 oldsize = i_size_read(inode);
1960 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001961 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001962 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001963 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301964 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001965 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001966 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001967 goto out;
1968 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001969 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301970 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001971 }
1972
Josef Bacikb812ce22012-11-16 13:56:32 -05001973 if (sync)
1974 atomic_inc(&BTRFS_I(inode)->sync_writers);
1975
Al Viro2ba48ce2015-04-09 13:52:01 -04001976 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001977 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001978 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001979 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001980 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001981 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301982 if (clean_page)
1983 pagecache_isize_extended(inode, oldsize,
1984 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001985 }
1986
Al Viro59551022016-01-22 15:40:57 -05001987 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001988
Chris Mason5a3f23d2009-03-31 13:27:11 -04001989 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05001990 * We also have to set last_sub_trans to the current log transid,
1991 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001992 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04001993 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001994 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05001995 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001996 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07001997 if (num_written > 0)
1998 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00001999
Josef Bacikb812ce22012-11-16 13:56:32 -05002000 if (sync)
2001 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00002002out:
Chris Mason39279cc2007-06-12 06:35:45 -04002003 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002004 return num_written ? num_written : err;
2005}
2006
Chris Masond3977122009-01-05 21:25:51 -05002007int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04002008{
Josef Bacik23b5ec72017-07-24 15:14:25 -04002009 struct btrfs_file_private *private = filp->private_data;
2010
Josef Bacik23b5ec72017-07-24 15:14:25 -04002011 if (private && private->filldir_buf)
2012 kfree(private->filldir_buf);
2013 kfree(private);
2014 filp->private_data = NULL;
2015
Chris Masonf6dc45c2014-08-20 07:15:33 -07002016 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +01002017 * ordered_data_close is set by setattr when we are about to truncate
Chris Masonf6dc45c2014-08-20 07:15:33 -07002018 * a file from a non-zero size to a zero size. This tries to
2019 * flush down new bytes that may have been written if the
2020 * application were using truncate to replace a file in place.
2021 */
2022 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
2023 &BTRFS_I(inode)->runtime_flags))
2024 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002025 return 0;
2026}
2027
Filipe Manana669249e2014-09-02 11:09:58 +01002028static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2029{
2030 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002031 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002032
Liu Bo343e4fc2017-11-15 16:10:28 -07002033 /*
2034 * This is only called in fsync, which would do synchronous writes, so
2035 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2036 * multiple disks using raid profile, a large IO can be split to
2037 * several segments of stripe length (currently 64K).
2038 */
2039 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002040 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002041 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002042 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002043 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002044
2045 return ret;
2046}
2047
Chris Masond352ac62008-09-29 15:18:18 -04002048/*
2049 * fsync call for both files and directories. This logs the inode into
2050 * the tree log instead of forcing full commits whenever possible.
2051 *
2052 * It needs to call filemap_fdatawait so that all ordered extent updates are
2053 * in the metadata btree are up to date for copying to the log.
2054 *
2055 * It drops the inode mutex before doing the tree log commit. This is an
2056 * important optimization for directories because holding the mutex prevents
2057 * new operations on the dir while we write to disk.
2058 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002059int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002060{
Filipe Mananade17e792016-03-30 19:03:13 -04002061 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002062 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002063 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002064 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002065 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002066 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002067 int ret = 0, err;
David Sterba9dcbeed2015-11-09 11:44:45 +01002068 u64 len;
Chris Mason39279cc2007-06-12 06:35:45 -04002069
David Sterba9dcbeed2015-11-09 11:44:45 +01002070 /*
Filipe Manana0c713cb2019-05-06 16:44:02 +01002071 * If the inode needs a full sync, make sure we use a full range to
2072 * avoid log tree corruption, due to hole detection racing with ordered
2073 * extent completion for adjacent ranges, and assertion failures during
2074 * hole detection.
2075 */
2076 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2077 &BTRFS_I(inode)->runtime_flags)) {
2078 start = 0;
2079 end = LLONG_MAX;
2080 }
2081
2082 /*
David Sterba9dcbeed2015-11-09 11:44:45 +01002083 * The range length can be represented by u64, we have to do the typecasts
2084 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
2085 */
2086 len = (u64)end - (u64)start + 1;
liubo1abe9b82011-03-24 11:18:59 +00002087 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002088
Liu Boebb70442017-11-21 14:35:40 -07002089 btrfs_init_log_ctx(&ctx, inode);
2090
Miao Xie90abccf2012-09-13 04:53:47 -06002091 /*
2092 * We write the dirty pages in the range and wait until they complete
2093 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002094 * multi-task, and make the performance up. See
2095 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002096 */
Filipe Manana669249e2014-09-02 11:09:58 +01002097 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002098 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002099 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002100
Al Viro59551022016-01-22 15:40:57 -05002101 inode_lock(inode);
Josef Bacikc4951442018-10-12 15:32:32 -04002102
2103 /*
2104 * We take the dio_sem here because the tree log stuff can race with
2105 * lockless dio writes and get an extent map logged for an extent we
2106 * never waited on. We need it this high up for lockdep reasons.
2107 */
2108 down_write(&BTRFS_I(inode)->dio_sem);
2109
Miao Xie2ecb7922012-09-06 04:04:27 -06002110 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002111
Filipe Manana669249e2014-09-02 11:09:58 +01002112 /*
Filipe Mananaaab15e82018-11-12 10:23:58 +00002113 * Before we acquired the inode's lock, someone may have dirtied more
2114 * pages in the target range. We need to make sure that writeback for
2115 * any such pages does not start while we are logging the inode, because
2116 * if it does, any of the following might happen when we are not doing a
2117 * full inode sync:
2118 *
2119 * 1) We log an extent after its writeback finishes but before its
2120 * checksums are added to the csum tree, leading to -EIO errors
2121 * when attempting to read the extent after a log replay.
2122 *
2123 * 2) We can end up logging an extent before its writeback finishes.
2124 * Therefore after the log replay we will have a file extent item
2125 * pointing to an unwritten extent (and no data checksums as well).
2126 *
2127 * So trigger writeback for any eventual new dirty pages and then we
2128 * wait for all ordered extents to complete below.
2129 */
2130 ret = start_ordered_ops(inode, start, end);
2131 if (ret) {
2132 inode_unlock(inode);
2133 goto out;
2134 }
2135
2136 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002137 * We have to do this here to avoid the priority inversion of waiting on
Andrea Gelmini52042d82018-11-28 12:05:13 +01002138 * IO of a lower priority task while holding a transaction open.
Filipe Manana669249e2014-09-02 11:09:58 +01002139 */
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002140 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Manana669249e2014-09-02 11:09:58 +01002141 if (ret) {
Josef Bacikc4951442018-10-12 15:32:32 -04002142 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002143 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002144 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002145 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002146 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002147
Josef Bacika4abeea2011-04-11 17:25:13 -04002148 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002149 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
David Sterbaca5788a2018-07-19 15:27:46 +02002150 BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002151 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002152 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002153 * modified so clear this flag in case it was set for whatever
2154 * reason, it's no longer relevant.
2155 */
2156 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2157 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002158 /*
2159 * An ordered extent might have started before and completed
2160 * already with io errors, in which case the inode was not
2161 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002162 * for any errors that might have happened since we last
2163 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002164 */
Jeff Layton333427a2017-07-06 07:02:31 -04002165 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Josef Bacikc4951442018-10-12 15:32:32 -04002166 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002167 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002168 goto out;
2169 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002170
2171 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002172 * We use start here because we will need to wait on the IO to complete
2173 * in btrfs_sync_log, which could require joining a transaction (for
2174 * example checking cross references in the nocow path). If we use join
2175 * here we could get into a situation where we're waiting on IO to
2176 * happen that is blocked on a transaction trying to commit. With start
2177 * we inc the extwriter counter, so we wait for all extwriters to exit
Andrea Gelmini52042d82018-11-28 12:05:13 +01002178 * before we start blocking joiners. This comment is to keep somebody
Josef Bacik5039edd2014-01-15 13:34:13 -05002179 * from thinking they are super smart and changing this to
2180 * btrfs_join_transaction *cough*Josef*cough*.
2181 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002182 trans = btrfs_start_transaction(root, 0);
2183 if (IS_ERR(trans)) {
2184 ret = PTR_ERR(trans);
Josef Bacikc4951442018-10-12 15:32:32 -04002185 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002186 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002187 goto out;
2188 }
Chris Masone02119d2008-09-05 16:13:11 -04002189
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02002190 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002191 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002192 /* Fallthrough and commit/free transaction. */
2193 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002194 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002195
2196 /* we've logged all the items and now have a consistent
2197 * version of the file in the log. It is possible that
2198 * someone will come in and modify the file, but that's
2199 * fine because the log is consistent on disk, and we
2200 * have references to all of the file's extents
2201 *
2202 * It is possible that someone will come in and log the
2203 * file again, but that will end up using the synchronization
2204 * inside btrfs_sync_log to keep things safe.
2205 */
Josef Bacikc4951442018-10-12 15:32:32 -04002206 up_write(&BTRFS_I(inode)->dio_sem);
Al Viro59551022016-01-22 15:40:57 -05002207 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002208
Chris Mason257c62e2009-10-13 13:21:08 -04002209 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002210 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002211 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002212 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002213 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002214 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002215 }
Chris Mason257c62e2009-10-13 13:21:08 -04002216 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002217 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002218 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002219 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002220 }
Chris Mason39279cc2007-06-12 06:35:45 -04002221out:
Liu Boebb70442017-11-21 14:35:40 -07002222 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002223 err = file_check_and_advance_wb_err(file);
2224 if (!ret)
2225 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002226 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002227}
2228
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002229static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002230 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002231 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002232 .page_mkwrite = btrfs_page_mkwrite,
2233};
2234
2235static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2236{
Miao Xie058a4572010-05-20 07:21:50 +00002237 struct address_space *mapping = filp->f_mapping;
2238
2239 if (!mapping->a_ops->readpage)
2240 return -ENOEXEC;
2241
Chris Mason9ebefb182007-06-15 13:50:00 -04002242 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002243 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002244
Chris Mason9ebefb182007-06-15 13:50:00 -04002245 return 0;
2246}
2247
Nikolay Borisov35339c22017-02-20 13:50:46 +02002248static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002249 int slot, u64 start, u64 end)
2250{
2251 struct btrfs_file_extent_item *fi;
2252 struct btrfs_key key;
2253
2254 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2255 return 0;
2256
2257 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002258 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002259 key.type != BTRFS_EXTENT_DATA_KEY)
2260 return 0;
2261
2262 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2263
2264 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2265 return 0;
2266
2267 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2268 return 0;
2269
2270 if (key.offset == end)
2271 return 1;
2272 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2273 return 1;
2274 return 0;
2275}
2276
Nikolay Borisova012a742017-02-20 13:50:47 +02002277static int fill_holes(struct btrfs_trans_handle *trans,
2278 struct btrfs_inode *inode,
2279 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002280{
David Sterba3ffbd682018-06-29 10:56:42 +02002281 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002282 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002283 struct extent_buffer *leaf;
2284 struct btrfs_file_extent_item *fi;
2285 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002286 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002287 struct btrfs_key key;
2288 int ret;
2289
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002290 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002291 goto out;
2292
Nikolay Borisova012a742017-02-20 13:50:47 +02002293 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002294 key.type = BTRFS_EXTENT_DATA_KEY;
2295 key.offset = offset;
2296
Josef Bacik2aaa6652012-08-29 14:27:18 -04002297 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002298 if (ret <= 0) {
2299 /*
2300 * We should have dropped this offset, so if we find it then
2301 * something has gone horribly wrong.
2302 */
2303 if (ret == 0)
2304 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002305 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002306 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002307
2308 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002309 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002310 u64 num_bytes;
2311
2312 path->slots[0]--;
2313 fi = btrfs_item_ptr(leaf, path->slots[0],
2314 struct btrfs_file_extent_item);
2315 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2316 end - offset;
2317 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2318 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2319 btrfs_set_file_extent_offset(leaf, fi, 0);
2320 btrfs_mark_buffer_dirty(leaf);
2321 goto out;
2322 }
2323
chandan1707e262014-07-01 12:04:28 +05302324 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002325 u64 num_bytes;
2326
Josef Bacik2aaa6652012-08-29 14:27:18 -04002327 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002328 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002329 fi = btrfs_item_ptr(leaf, path->slots[0],
2330 struct btrfs_file_extent_item);
2331 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2332 offset;
2333 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2334 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2335 btrfs_set_file_extent_offset(leaf, fi, 0);
2336 btrfs_mark_buffer_dirty(leaf);
2337 goto out;
2338 }
2339 btrfs_release_path(path);
2340
Nikolay Borisova012a742017-02-20 13:50:47 +02002341 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002342 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002343 if (ret)
2344 return ret;
2345
2346out:
2347 btrfs_release_path(path);
2348
2349 hole_em = alloc_extent_map();
2350 if (!hole_em) {
2351 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002352 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002353 } else {
2354 hole_em->start = offset;
2355 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002356 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002357 hole_em->orig_start = offset;
2358
2359 hole_em->block_start = EXTENT_MAP_HOLE;
2360 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002361 hole_em->orig_block_len = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002362 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002363 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2364 hole_em->generation = trans->transid;
2365
2366 do {
2367 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2368 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002369 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002370 write_unlock(&em_tree->lock);
2371 } while (ret == -EEXIST);
2372 free_extent_map(hole_em);
2373 if (ret)
2374 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002375 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002376 }
2377
2378 return 0;
2379}
2380
Qu Wenruod7781542014-05-30 15:16:10 +08002381/*
2382 * Find a hole extent on given inode and change start/len to the end of hole
2383 * extent.(hole/vacuum extent whose em->start <= start &&
2384 * em->start + em->len > start)
2385 * When a hole extent is found, return 1 and modify start/len.
2386 */
2387static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2388{
Filipe Manana609805d2017-05-30 05:29:09 +01002389 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002390 struct extent_map *em;
2391 int ret = 0;
2392
Filipe Manana609805d2017-05-30 05:29:09 +01002393 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2394 round_down(*start, fs_info->sectorsize),
2395 round_up(*len, fs_info->sectorsize), 0);
Dan Carpenter99862772017-04-11 11:57:15 +03002396 if (IS_ERR(em))
2397 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002398
2399 /* Hole or vacuum extent(only exists in no-hole mode) */
2400 if (em->block_start == EXTENT_MAP_HOLE) {
2401 ret = 1;
2402 *len = em->start + em->len > *start + *len ?
2403 0 : *start + *len - em->start - em->len;
2404 *start = em->start + em->len;
2405 }
2406 free_extent_map(em);
2407 return ret;
2408}
2409
Filipe Mananaf27451f2017-10-25 11:55:28 +01002410static int btrfs_punch_hole_lock_range(struct inode *inode,
2411 const u64 lockstart,
2412 const u64 lockend,
2413 struct extent_state **cached_state)
2414{
2415 while (1) {
2416 struct btrfs_ordered_extent *ordered;
2417 int ret;
2418
2419 truncate_pagecache_range(inode, lockstart, lockend);
2420
2421 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2422 cached_state);
2423 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2424
2425 /*
2426 * We need to make sure we have no ordered extents in this range
2427 * and nobody raced in and read a page in this range, if we did
2428 * we need to try again.
2429 */
2430 if ((!ordered ||
2431 (ordered->file_offset + ordered->len <= lockstart ||
2432 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002433 !filemap_range_has_page(inode->i_mapping,
2434 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002435 if (ordered)
2436 btrfs_put_ordered_extent(ordered);
2437 break;
2438 }
2439 if (ordered)
2440 btrfs_put_ordered_extent(ordered);
2441 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2442 lockend, cached_state);
2443 ret = btrfs_wait_ordered_range(inode, lockstart,
2444 lockend - lockstart + 1);
2445 if (ret)
2446 return ret;
2447 }
2448 return 0;
2449}
2450
Josef Bacik2aaa6652012-08-29 14:27:18 -04002451static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2452{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002453 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002454 struct btrfs_root *root = BTRFS_I(inode)->root;
2455 struct extent_state *cached_state = NULL;
2456 struct btrfs_path *path;
2457 struct btrfs_block_rsv *rsv;
2458 struct btrfs_trans_handle *trans;
Qu Wenruod7781542014-05-30 15:16:10 +08002459 u64 lockstart;
2460 u64 lockend;
2461 u64 tail_start;
2462 u64 tail_len;
2463 u64 orig_start = offset;
2464 u64 cur_offset;
Chris Mason5f52a2c2016-12-13 09:14:42 -08002465 u64 min_size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002466 u64 drop_end;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002467 int ret = 0;
2468 int err = 0;
Alexandru Moise6e4d6fa2015-09-22 21:00:07 +00002469 unsigned int rsv_count;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302470 bool same_block;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 bool no_holes = btrfs_fs_incompat(fs_info, NO_HOLES);
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002472 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302473 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002474 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002475
Josef Bacik0ef8b722013-10-25 16:13:35 -04002476 ret = btrfs_wait_ordered_range(inode, offset, len);
2477 if (ret)
2478 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002479
Al Viro59551022016-01-22 15:40:57 -05002480 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002481 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002482 ret = find_first_non_hole(inode, &offset, &len);
2483 if (ret < 0)
2484 goto out_only_mutex;
2485 if (ret && !len) {
2486 /* Already in a large hole */
2487 ret = 0;
2488 goto out_only_mutex;
2489 }
2490
Jeff Mahoneyda170662016-06-15 09:22:56 -04002491 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
Qu Wenruod7781542014-05-30 15:16:10 +08002492 lockend = round_down(offset + len,
Jeff Mahoneyda170662016-06-15 09:22:56 -04002493 btrfs_inode_sectorsize(inode)) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2495 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002496 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302497 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002498 * because we are sure there is no data there.
2499 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002500 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302501 * Only do this if we are in the same block and we aren't doing the
2502 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002503 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002504 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002505 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302506 truncated_block = true;
2507 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002508 } else {
2509 ret = 0;
2510 }
Qu Wenruod7781542014-05-30 15:16:10 +08002511 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002512 }
2513
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302514 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002515 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302516 truncated_block = true;
2517 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002518 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002519 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002520 return ret;
2521 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002522 }
2523
Qu Wenruod7781542014-05-30 15:16:10 +08002524 /* Check the aligned pages after the first unaligned page,
2525 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002526 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002527 * the extra check can be skipped */
2528 if (offset == orig_start) {
2529 /* after truncate page, check hole again */
2530 len = offset + len - lockstart;
2531 offset = lockstart;
2532 ret = find_first_non_hole(inode, &offset, &len);
2533 if (ret < 0)
2534 goto out_only_mutex;
2535 if (ret && !len) {
2536 ret = 0;
2537 goto out_only_mutex;
2538 }
2539 lockstart = offset;
2540 }
2541
2542 /* Check the tail unaligned part is in a hole */
2543 tail_start = lockend + 1;
2544 tail_len = offset + len - tail_start;
2545 if (tail_len) {
2546 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2547 if (unlikely(ret < 0))
2548 goto out_only_mutex;
2549 if (!ret) {
2550 /* zero the front end of the last page */
2551 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302552 truncated_block = true;
2553 ret = btrfs_truncate_block(inode,
2554 tail_start + tail_len,
2555 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002556 if (ret)
2557 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002558 }
Miao Xie00612802012-12-05 10:54:12 +00002559 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002560 }
2561
2562 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002563 ret = 0;
2564 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002565 }
2566
Filipe Mananaf27451f2017-10-25 11:55:28 +01002567 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2568 &cached_state);
Josef Bacik8fca9552019-05-03 11:10:06 -04002569 if (ret)
Filipe Mananaf27451f2017-10-25 11:55:28 +01002570 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002571
2572 path = btrfs_alloc_path();
2573 if (!path) {
2574 ret = -ENOMEM;
2575 goto out;
2576 }
2577
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002578 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002579 if (!rsv) {
2580 ret = -ENOMEM;
2581 goto out_free;
2582 }
Chris Mason5f52a2c2016-12-13 09:14:42 -08002583 rsv->size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002584 rsv->failfast = 1;
2585
2586 /*
2587 * 1 - update the inode
2588 * 1 - removing the extents in the range
Josef Bacik16e75492013-10-22 12:18:51 -04002589 * 1 - adding the hole extent if no_holes isn't set
Josef Bacik2aaa6652012-08-29 14:27:18 -04002590 */
Josef Bacik16e75492013-10-22 12:18:51 -04002591 rsv_count = no_holes ? 2 : 3;
2592 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002593 if (IS_ERR(trans)) {
2594 err = PTR_ERR(trans);
2595 goto out_free;
2596 }
2597
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002598 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08002599 min_size, false);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002600 BUG_ON(ret);
2601 trans->block_rsv = rsv;
2602
Qu Wenruod7781542014-05-30 15:16:10 +08002603 cur_offset = lockstart;
2604 len = lockend - cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002605 while (cur_offset < lockend) {
2606 ret = __btrfs_drop_extents(trans, root, inode, path,
2607 cur_offset, lockend + 1,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002608 &drop_end, 1, 0, 0, NULL);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002609 if (ret != -ENOSPC)
2610 break;
2611
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002612 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002613
Josef Bacik62fe51c12016-11-16 09:13:39 -05002614 if (cur_offset < drop_end && cur_offset < ino_size) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002615 ret = fill_holes(trans, BTRFS_I(inode), path,
2616 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002617 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002618 /*
2619 * If we failed then we didn't insert our hole
2620 * entries for the area we dropped, so now the
2621 * fs is corrupted, so we must abort the
2622 * transaction.
2623 */
2624 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002625 err = ret;
2626 break;
2627 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002628 }
2629
2630 cur_offset = drop_end;
2631
2632 ret = btrfs_update_inode(trans, root, inode);
2633 if (ret) {
2634 err = ret;
2635 break;
2636 }
2637
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002638 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002639 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002640
Josef Bacik16e75492013-10-22 12:18:51 -04002641 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002642 if (IS_ERR(trans)) {
2643 ret = PTR_ERR(trans);
2644 trans = NULL;
2645 break;
2646 }
2647
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002648 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08002649 rsv, min_size, false);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002650 BUG_ON(ret); /* shouldn't happen */
2651 trans->block_rsv = rsv;
Qu Wenruod7781542014-05-30 15:16:10 +08002652
2653 ret = find_first_non_hole(inode, &cur_offset, &len);
2654 if (unlikely(ret < 0))
2655 break;
2656 if (ret && !len) {
2657 ret = 0;
2658 break;
2659 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002660 }
2661
2662 if (ret) {
2663 err = ret;
2664 goto out_trans;
2665 }
2666
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002667 trans->block_rsv = &fs_info->trans_block_rsv;
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002668 /*
Filipe Manana2959a322015-11-02 12:32:44 +00002669 * If we are using the NO_HOLES feature we might have had already an
2670 * hole that overlaps a part of the region [lockstart, lockend] and
2671 * ends at (or beyond) lockend. Since we have no file extent items to
2672 * represent holes, drop_end can be less than lockend and so we must
2673 * make sure we have an extent map representing the existing hole (the
2674 * call to __btrfs_drop_extents() might have dropped the existing extent
2675 * map representing the existing hole), otherwise the fast fsync path
2676 * will not record the existence of the hole region
2677 * [existing_hole_start, lockend].
2678 */
2679 if (drop_end <= lockend)
2680 drop_end = lockend + 1;
2681 /*
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002682 * Don't insert file hole extent item if it's for a range beyond eof
2683 * (because it's useless) or if it represents a 0 bytes range (when
2684 * cur_offset == drop_end).
2685 */
2686 if (cur_offset < ino_size && cur_offset < drop_end) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002687 ret = fill_holes(trans, BTRFS_I(inode), path,
2688 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002689 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002690 /* Same comment as above. */
2691 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002692 err = ret;
2693 goto out_trans;
2694 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002695 }
2696
2697out_trans:
2698 if (!trans)
2699 goto out_free;
2700
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002701 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002702 inode->i_mtime = inode->i_ctime = current_time(inode);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002703
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002704 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002705 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002706 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002707 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002708 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002709out_free:
2710 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002711 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002712out:
2713 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002714 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002715out_only_mutex:
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302716 if (!updated_inode && truncated_block && !ret && !err) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002717 /*
2718 * If we only end up zeroing part of a page, we still need to
2719 * update the inode item, so that all the time fields are
2720 * updated as well as the necessary btrfs inode in memory fields
2721 * for detecting, at fsync time, if the inode isn't yet in the
2722 * log tree or it's there but not up to date.
2723 */
2724 trans = btrfs_start_transaction(root, 1);
2725 if (IS_ERR(trans)) {
2726 err = PTR_ERR(trans);
2727 } else {
2728 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002729 ret = btrfs_end_transaction(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002730 }
2731 }
Al Viro59551022016-01-22 15:40:57 -05002732 inode_unlock(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002733 if (ret && !err)
2734 err = ret;
2735 return err;
2736}
2737
Qu Wenruo14524a82015-09-08 17:22:44 +08002738/* Helper structure to record which range is already reserved */
2739struct falloc_range {
2740 struct list_head list;
2741 u64 start;
2742 u64 len;
2743};
2744
2745/*
2746 * Helper function to add falloc range
2747 *
2748 * Caller should have locked the larger range of extent containing
2749 * [start, len)
2750 */
2751static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2752{
2753 struct falloc_range *prev = NULL;
2754 struct falloc_range *range = NULL;
2755
2756 if (list_empty(head))
2757 goto insert;
2758
2759 /*
2760 * As fallocate iterate by bytenr order, we only need to check
2761 * the last range.
2762 */
2763 prev = list_entry(head->prev, struct falloc_range, list);
2764 if (prev->start + prev->len == start) {
2765 prev->len += len;
2766 return 0;
2767 }
2768insert:
David Sterba32fc9322016-02-11 14:25:38 +01002769 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002770 if (!range)
2771 return -ENOMEM;
2772 range->start = start;
2773 range->len = len;
2774 list_add_tail(&range->list, head);
2775 return 0;
2776}
2777
Filipe Mananaf27451f2017-10-25 11:55:28 +01002778static int btrfs_fallocate_update_isize(struct inode *inode,
2779 const u64 end,
2780 const int mode)
2781{
2782 struct btrfs_trans_handle *trans;
2783 struct btrfs_root *root = BTRFS_I(inode)->root;
2784 int ret;
2785 int ret2;
2786
2787 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2788 return 0;
2789
2790 trans = btrfs_start_transaction(root, 1);
2791 if (IS_ERR(trans))
2792 return PTR_ERR(trans);
2793
2794 inode->i_ctime = current_time(inode);
2795 i_size_write(inode, end);
2796 btrfs_ordered_update_i_size(inode, end, NULL);
2797 ret = btrfs_update_inode(trans, root, inode);
2798 ret2 = btrfs_end_transaction(trans);
2799
2800 return ret ? ret : ret2;
2801}
2802
Filipe Manana81fdf632018-01-18 11:34:31 +00002803enum {
2804 RANGE_BOUNDARY_WRITTEN_EXTENT = 0,
2805 RANGE_BOUNDARY_PREALLOC_EXTENT = 1,
2806 RANGE_BOUNDARY_HOLE = 2,
2807};
2808
Filipe Mananaf27451f2017-10-25 11:55:28 +01002809static int btrfs_zero_range_check_range_boundary(struct inode *inode,
2810 u64 offset)
2811{
2812 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2813 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00002814 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002815
2816 offset = round_down(offset, sectorsize);
2817 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize, 0);
2818 if (IS_ERR(em))
2819 return PTR_ERR(em);
2820
2821 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00002822 ret = RANGE_BOUNDARY_HOLE;
2823 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2824 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
2825 else
2826 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002827
2828 free_extent_map(em);
2829 return ret;
2830}
2831
2832static int btrfs_zero_range(struct inode *inode,
2833 loff_t offset,
2834 loff_t len,
2835 const int mode)
2836{
2837 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2838 struct extent_map *em;
2839 struct extent_changeset *data_reserved = NULL;
2840 int ret;
2841 u64 alloc_hint = 0;
2842 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2843 u64 alloc_start = round_down(offset, sectorsize);
2844 u64 alloc_end = round_up(offset + len, sectorsize);
2845 u64 bytes_to_reserve = 0;
2846 bool space_reserved = false;
2847
2848 inode_dio_wait(inode);
2849
2850 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2851 alloc_start, alloc_end - alloc_start, 0);
2852 if (IS_ERR(em)) {
2853 ret = PTR_ERR(em);
2854 goto out;
2855 }
2856
2857 /*
2858 * Avoid hole punching and extent allocation for some cases. More cases
2859 * could be considered, but these are unlikely common and we keep things
2860 * as simple as possible for now. Also, intentionally, if the target
2861 * range contains one or more prealloc extents together with regular
2862 * extents and holes, we drop all the existing extents and allocate a
2863 * new prealloc extent, so that we get a larger contiguous disk extent.
2864 */
2865 if (em->start <= alloc_start &&
2866 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2867 const u64 em_end = em->start + em->len;
2868
2869 if (em_end >= offset + len) {
2870 /*
2871 * The whole range is already a prealloc extent,
2872 * do nothing except updating the inode's i_size if
2873 * needed.
2874 */
2875 free_extent_map(em);
2876 ret = btrfs_fallocate_update_isize(inode, offset + len,
2877 mode);
2878 goto out;
2879 }
2880 /*
2881 * Part of the range is already a prealloc extent, so operate
2882 * only on the remaining part of the range.
2883 */
2884 alloc_start = em_end;
2885 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
2886 len = offset + len - alloc_start;
2887 offset = alloc_start;
2888 alloc_hint = em->block_start + em->len;
2889 }
2890 free_extent_map(em);
2891
2892 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
2893 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
2894 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2895 alloc_start, sectorsize, 0);
2896 if (IS_ERR(em)) {
2897 ret = PTR_ERR(em);
2898 goto out;
2899 }
2900
2901 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2902 free_extent_map(em);
2903 ret = btrfs_fallocate_update_isize(inode, offset + len,
2904 mode);
2905 goto out;
2906 }
2907 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
2908 free_extent_map(em);
2909 ret = btrfs_truncate_block(inode, offset, len, 0);
2910 if (!ret)
2911 ret = btrfs_fallocate_update_isize(inode,
2912 offset + len,
2913 mode);
2914 return ret;
2915 }
2916 free_extent_map(em);
2917 alloc_start = round_down(offset, sectorsize);
2918 alloc_end = alloc_start + sectorsize;
2919 goto reserve_space;
2920 }
2921
2922 alloc_start = round_up(offset, sectorsize);
2923 alloc_end = round_down(offset + len, sectorsize);
2924
2925 /*
2926 * For unaligned ranges, check the pages at the boundaries, they might
2927 * map to an extent, in which case we need to partially zero them, or
2928 * they might map to a hole, in which case we need our allocation range
2929 * to cover them.
2930 */
2931 if (!IS_ALIGNED(offset, sectorsize)) {
2932 ret = btrfs_zero_range_check_range_boundary(inode, offset);
2933 if (ret < 0)
2934 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002935 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002936 alloc_start = round_down(offset, sectorsize);
2937 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002938 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002939 ret = btrfs_truncate_block(inode, offset, 0, 0);
2940 if (ret)
2941 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002942 } else {
2943 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002944 }
2945 }
2946
2947 if (!IS_ALIGNED(offset + len, sectorsize)) {
2948 ret = btrfs_zero_range_check_range_boundary(inode,
2949 offset + len);
2950 if (ret < 0)
2951 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002952 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002953 alloc_end = round_up(offset + len, sectorsize);
2954 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002955 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002956 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
2957 if (ret)
2958 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002959 } else {
2960 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002961 }
2962 }
2963
2964reserve_space:
2965 if (alloc_start < alloc_end) {
2966 struct extent_state *cached_state = NULL;
2967 const u64 lockstart = alloc_start;
2968 const u64 lockend = alloc_end - 1;
2969
2970 bytes_to_reserve = alloc_end - alloc_start;
2971 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
2972 bytes_to_reserve);
2973 if (ret < 0)
2974 goto out;
2975 space_reserved = true;
2976 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
2977 alloc_start, bytes_to_reserve);
2978 if (ret)
2979 goto out;
2980 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2981 &cached_state);
2982 if (ret)
2983 goto out;
2984 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
2985 alloc_end - alloc_start,
2986 i_blocksize(inode),
2987 offset + len, &alloc_hint);
2988 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2989 lockend, &cached_state);
2990 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00002991 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002992 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00002993 goto out;
2994 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01002995 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00002996 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002997 out:
2998 if (ret && space_reserved)
2999 btrfs_free_reserved_data_space(inode, data_reserved,
3000 alloc_start, bytes_to_reserve);
3001 extent_changeset_free(data_reserved);
3002
3003 return ret;
3004}
3005
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003006static long btrfs_fallocate(struct file *file, int mode,
3007 loff_t offset, loff_t len)
3008{
Al Viro496ad9a2013-01-23 17:07:38 -05003009 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003010 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003011 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003012 struct falloc_range *range;
3013 struct falloc_range *tmp;
3014 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003015 u64 cur_offset;
3016 u64 last_byte;
3017 u64 alloc_start;
3018 u64 alloc_end;
3019 u64 alloc_hint = 0;
3020 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003021 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003022 struct extent_map *em;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003023 int blocksize = btrfs_inode_sectorsize(inode);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003024 int ret;
3025
Miao Xie797f4272012-11-28 10:28:07 +00003026 alloc_start = round_down(offset, blocksize);
3027 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003028 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003029
Josef Bacik2aaa6652012-08-29 14:27:18 -04003030 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003031 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3032 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003033 return -EOPNOTSUPP;
3034
Josef Bacik2aaa6652012-08-29 14:27:18 -04003035 if (mode & FALLOC_FL_PUNCH_HOLE)
3036 return btrfs_punch_hole(inode, offset, len);
3037
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003038 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003039 * Only trigger disk allocation, don't trigger qgroup reserve
3040 *
3041 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003042 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003043 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3044 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3045 alloc_end - alloc_start);
3046 if (ret < 0)
3047 return ret;
3048 }
Chris Masond98456f2012-01-31 20:27:41 -05003049
Al Viro59551022016-01-22 15:40:57 -05003050 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003051
3052 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3053 ret = inode_newsize_ok(inode, offset + len);
3054 if (ret)
3055 goto out;
3056 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003057
Qu Wenruo14524a82015-09-08 17:22:44 +08003058 /*
3059 * TODO: Move these two operations after we have checked
3060 * accurate reserved space, or fallocate can still fail but
3061 * with page truncated or size expanded.
3062 *
3063 * But that's a minor problem and won't do much harm BTW.
3064 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003065 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003066 ret = btrfs_cont_expand(inode, i_size_read(inode),
3067 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003068 if (ret)
3069 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003070 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003071 /*
3072 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303073 * need to zero out the end of the block if i_size lands in the
3074 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003075 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303076 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003077 if (ret)
3078 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003079 }
3080
Josef Bacika71754f2013-06-17 17:14:39 -04003081 /*
3082 * wait for ordered IO before we have any locks. We'll loop again
3083 * below with the locks held.
3084 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003085 ret = btrfs_wait_ordered_range(inode, alloc_start,
3086 alloc_end - alloc_start);
3087 if (ret)
3088 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003089
Filipe Mananaf27451f2017-10-25 11:55:28 +01003090 if (mode & FALLOC_FL_ZERO_RANGE) {
3091 ret = btrfs_zero_range(inode, offset, len, mode);
3092 inode_unlock(inode);
3093 return ret;
3094 }
3095
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003096 locked_end = alloc_end - 1;
3097 while (1) {
3098 struct btrfs_ordered_extent *ordered;
3099
3100 /* the extent lock is ordered inside the running
3101 * transaction
3102 */
3103 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003104 locked_end, &cached_state);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003105 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3106
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003107 if (ordered &&
3108 ordered->file_offset + ordered->len > alloc_start &&
3109 ordered->file_offset < alloc_end) {
3110 btrfs_put_ordered_extent(ordered);
3111 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3112 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003113 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003114 /*
3115 * we can't wait on the range with the transaction
3116 * running or with the extent lock held
3117 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003118 ret = btrfs_wait_ordered_range(inode, alloc_start,
3119 alloc_end - alloc_start);
3120 if (ret)
3121 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003122 } else {
3123 if (ordered)
3124 btrfs_put_ordered_extent(ordered);
3125 break;
3126 }
3127 }
3128
Qu Wenruo14524a82015-09-08 17:22:44 +08003129 /* First, check if we exceed the qgroup limit */
3130 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003131 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003132 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003133 alloc_end - cur_offset, 0);
Dan Carpenter99862772017-04-11 11:57:15 +03003134 if (IS_ERR(em)) {
3135 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003136 break;
3137 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003138 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003139 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003140 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003141 if (em->block_start == EXTENT_MAP_HOLE ||
3142 (cur_offset >= inode->i_size &&
3143 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003144 ret = add_falloc_range(&reserve_list, cur_offset,
3145 last_byte - cur_offset);
3146 if (ret < 0) {
3147 free_extent_map(em);
3148 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003149 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003150 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3151 cur_offset, last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003152 if (ret < 0) {
Robbie Ko39ad3172019-03-26 11:56:11 +08003153 cur_offset = last_byte;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003154 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003155 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003156 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003157 } else {
3158 /*
3159 * Do not need to reserve unwritten extent for this
3160 * range, free reserved data space first, otherwise
3161 * it'll result in false ENOSPC error.
3162 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003163 btrfs_free_reserved_data_space(inode, data_reserved,
3164 cur_offset, last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003165 }
3166 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003167 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003168 }
3169
3170 /*
3171 * If ret is still 0, means we're OK to fallocate.
3172 * Or just cleanup the list and exit.
3173 */
3174 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3175 if (!ret)
3176 ret = btrfs_prealloc_file_range(inode, mode,
3177 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003178 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003179 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003180 else
Qu Wenruobc42bda2017-02-27 15:10:39 +08003181 btrfs_free_reserved_data_space(inode,
3182 data_reserved, range->start,
3183 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003184 list_del(&range->list);
3185 kfree(range);
3186 }
3187 if (ret < 0)
3188 goto out_unlock;
3189
Filipe Mananaf27451f2017-10-25 11:55:28 +01003190 /*
3191 * We didn't need to allocate any more space, but we still extended the
3192 * size of the file so we need to update i_size and the inode item.
3193 */
3194 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003195out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003196 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003197 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003198out:
Al Viro59551022016-01-22 15:40:57 -05003199 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003200 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003201 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Qu Wenruobc42bda2017-02-27 15:10:39 +08003202 btrfs_free_reserved_data_space(inode, data_reserved,
Robbie Ko39ad3172019-03-26 11:56:11 +08003203 cur_offset, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003204 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003205 return ret;
3206}
3207
Andrew Morton965c8e52012-12-17 15:59:39 -08003208static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003209{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003210 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003211 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003212 struct extent_state *cached_state = NULL;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003213 u64 lockstart;
3214 u64 lockend;
3215 u64 start;
3216 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003217 int ret = 0;
3218
Josef Bacikb2675152011-07-18 13:21:36 -04003219 if (inode->i_size == 0)
3220 return -ENXIO;
3221
Liu Bo4d1a40c2014-09-16 17:49:30 +08003222 /*
3223 * *offset can be negative, in this case we start finding DATA/HOLE from
3224 * the very start of the file.
3225 */
3226 start = max_t(loff_t, 0, *offset);
3227
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003228 lockstart = round_down(start, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003229 lockend = round_up(i_size_read(inode),
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003230 fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003231 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003232 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003233 lockend--;
3234 len = lockend - lockstart + 1;
3235
David Sterbaff13db42015-12-03 14:30:40 +01003236 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003237 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003238
Josef Bacik7f4ca372013-10-18 11:44:46 -04003239 while (start < inode->i_size) {
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02003240 em = btrfs_get_extent_fiemap(BTRFS_I(inode), start, len);
Josef Bacikb2675152011-07-18 13:21:36 -04003241 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003242 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003243 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003244 break;
3245 }
3246
Josef Bacik7f4ca372013-10-18 11:44:46 -04003247 if (whence == SEEK_HOLE &&
3248 (em->block_start == EXTENT_MAP_HOLE ||
3249 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3250 break;
3251 else if (whence == SEEK_DATA &&
3252 (em->block_start != EXTENT_MAP_HOLE &&
3253 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3254 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003255
3256 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003257 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003258 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003259 cond_resched();
3260 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003261 free_extent_map(em);
3262 if (!ret) {
3263 if (whence == SEEK_DATA && start >= inode->i_size)
3264 ret = -ENXIO;
3265 else
3266 *offset = min_t(loff_t, start, inode->i_size);
3267 }
Josef Bacikb2675152011-07-18 13:21:36 -04003268 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003269 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003270 return ret;
3271}
3272
Andrew Morton965c8e52012-12-17 15:59:39 -08003273static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003274{
3275 struct inode *inode = file->f_mapping->host;
3276 int ret;
3277
Al Viro59551022016-01-22 15:40:57 -05003278 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08003279 switch (whence) {
Josef Bacikb2675152011-07-18 13:21:36 -04003280 case SEEK_END:
3281 case SEEK_CUR:
Andrew Morton965c8e52012-12-17 15:59:39 -08003282 offset = generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003283 goto out;
3284 case SEEK_DATA:
3285 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04003286 if (offset >= i_size_read(inode)) {
Al Viro59551022016-01-22 15:40:57 -05003287 inode_unlock(inode);
Jeff Liu48802c82011-09-18 10:34:02 -04003288 return -ENXIO;
3289 }
3290
Andrew Morton965c8e52012-12-17 15:59:39 -08003291 ret = find_desired_extent(inode, &offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003292 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05003293 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003294 return ret;
3295 }
3296 }
3297
Jie Liu46a1c2c2013-06-25 12:02:13 +08003298 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003299out:
Al Viro59551022016-01-22 15:40:57 -05003300 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003301 return offset;
3302}
3303
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003304static int btrfs_file_open(struct inode *inode, struct file *filp)
3305{
Christoph Hellwig91f99432017-08-29 16:13:20 +02003306 filp->f_mode |= FMODE_NOWAIT;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003307 return generic_file_open(inode, filp);
3308}
3309
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003310const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003311 .llseek = btrfs_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -04003312 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003313 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003314 .write_iter = btrfs_file_write_iter,
Chris Mason9ebefb182007-06-15 13:50:00 -04003315 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003316 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003317 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003318 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003319 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003320 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003321#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003322 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003323#endif
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003324 .remap_file_range = btrfs_remap_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003325};
Miao Xie9247f312012-11-26 09:24:43 +00003326
David Sterbae67c7182018-02-19 17:24:18 +01003327void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003328{
Kinglong Mee5598e902016-01-29 21:36:35 +08003329 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003330}
3331
Liu Bof5c29bd2017-11-02 17:21:50 -06003332int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003333{
3334 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3335 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003336 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003337 NULL);
3338 if (!btrfs_inode_defrag_cachep)
3339 return -ENOMEM;
3340
3341 return 0;
3342}
Filipe Manana728404d2014-10-10 09:43:11 +01003343
3344int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3345{
3346 int ret;
3347
3348 /*
3349 * So with compression we will find and lock a dirty page and clear the
3350 * first one as dirty, setup an async extent, and immediately return
3351 * with the entire range locked but with nobody actually marked with
3352 * writeback. So we can't just filemap_write_and_wait_range() and
3353 * expect it to work since it will just kick off a thread to do the
3354 * actual work. So we need to call filemap_fdatawrite_range _again_
3355 * since it will wait on the page lock, which won't be unlocked until
3356 * after the pages have been marked as writeback and so we're good to go
3357 * from there. We have to do this otherwise we'll miss the ordered
3358 * extents and that results in badness. Please Josef, do not think you
3359 * know better and pull this out at some point in the future, it is
3360 * right and you are wrong.
3361 */
3362 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3363 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3364 &BTRFS_I(inode)->runtime_flags))
3365 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3366
3367 return ret;
3368}