blob: 2be00e873e92a3183e142eebf010de3514475252 [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;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300402 int offset = pos & (PAGE_SIZE - 1);
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
534 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
535 if (start_pos >= isize &&
536 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
537 /*
538 * There can't be any extents following eof in this case
539 * so just set the delalloc new bit for the range
540 * directly.
541 */
542 extra_bits |= EXTENT_DELALLOC_NEW;
543 } else {
544 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
545 start_pos,
546 num_bytes, cached);
547 if (err)
548 return err;
549 }
550 }
551
Josef Bacik2ac55d42010-02-03 19:33:23 +0000552 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Filipe Mananae3b8a482017-11-04 00:16:59 +0000553 extra_bits, cached, 0);
Josef Bacikd0215f32011-01-25 14:57:24 -0500554 if (err)
555 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400556
Chris Masonc8b97812008-10-29 14:49:59 -0400557 for (i = 0; i < num_pages; i++) {
558 struct page *p = pages[i];
559 SetPageUptodate(p);
560 ClearPageChecked(p);
561 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400562 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500563
564 /*
565 * we've only changed i_size in ram, and we haven't updated
566 * the disk i_size. There is no need to log the inode
567 * at this time.
568 */
569 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400570 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400571 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400572}
573
Chris Masond352ac62008-09-29 15:18:18 -0400574/*
575 * this drops all the extents in the cache that intersect the range
576 * [start, end]. Existing extents are split as required.
577 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200578void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400579 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400580{
581 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400582 struct extent_map *split = NULL;
583 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200584 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500585 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400586 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400587 int ret;
588 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400589 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400590 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400591 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400592
Chris Masone6dcd2d2008-07-17 12:53:50 -0400593 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400594 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500595 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400596 testend = 0;
597 }
Chris Masond3977122009-01-05 21:25:51 -0500598 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400599 int no_splits = 0;
600
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400601 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400602 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200603 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400604 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200605 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400606 if (!split || !split2)
607 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400608
Chris Mason890871b2009-09-02 16:24:52 -0400609 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500610 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500611 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400612 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400613 break;
Chris Masond1310b22008-01-24 16:13:08 -0500614 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400615 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400616 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400617 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000618 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400619 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400620 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400621 break;
622 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000623 start = em->start + em->len;
624 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400625 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400626 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400627 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400628 continue;
629 }
Chris Masonc8b97812008-10-29 14:49:59 -0400630 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400631 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600632 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400633 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400634 if (no_splits)
635 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400636
Josef Bacikee20a982013-07-11 10:34:59 -0400637 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400638 split->start = em->start;
639 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400640
Josef Bacikee20a982013-07-11 10:34:59 -0400641 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
642 split->orig_start = em->orig_start;
643 split->block_start = em->block_start;
644
645 if (compressed)
646 split->block_len = em->block_len;
647 else
648 split->block_len = split->len;
649 split->orig_block_len = max(split->block_len,
650 em->orig_block_len);
651 split->ram_bytes = em->ram_bytes;
652 } else {
653 split->orig_start = split->start;
654 split->block_len = 0;
655 split->block_start = em->block_start;
656 split->orig_block_len = 0;
657 split->ram_bytes = split->len;
658 }
659
Josef Bacik5dc562c2012-08-17 13:14:17 -0400660 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400661 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400662 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800663 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000664 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400665 free_extent_map(split);
666 split = split2;
667 split2 = NULL;
668 }
Josef Bacikee20a982013-07-11 10:34:59 -0400669 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400670 u64 diff = start + len - em->start;
671
672 split->start = start + len;
673 split->len = em->start + em->len - (start + len);
674 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400675 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800676 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400677 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400678
Josef Bacikee20a982013-07-11 10:34:59 -0400679 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
680 split->orig_block_len = max(em->block_len,
681 em->orig_block_len);
682
683 split->ram_bytes = em->ram_bytes;
684 if (compressed) {
685 split->block_len = em->block_len;
686 split->block_start = em->block_start;
687 split->orig_start = em->orig_start;
688 } else {
689 split->block_len = split->len;
690 split->block_start = em->block_start
691 + diff;
692 split->orig_start = em->orig_start;
693 }
Chris Masonc8b97812008-10-29 14:49:59 -0400694 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400695 split->ram_bytes = split->len;
696 split->orig_start = split->start;
697 split->block_len = 0;
698 split->block_start = em->block_start;
699 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400700 }
Chris Mason3b951512008-04-17 11:29:12 -0400701
Filipe Manana176840b2014-02-25 14:15:13 +0000702 if (extent_map_in_tree(em)) {
703 replace_extent_mapping(em_tree, em, split,
704 modified);
705 } else {
706 ret = add_extent_mapping(em_tree, split,
707 modified);
708 ASSERT(ret == 0); /* Logic error */
709 }
Chris Mason3b951512008-04-17 11:29:12 -0400710 free_extent_map(split);
711 split = NULL;
712 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400713next:
Filipe Manana176840b2014-02-25 14:15:13 +0000714 if (extent_map_in_tree(em))
715 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400716 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500717
Chris Masona52d9a82007-08-27 16:49:44 -0400718 /* once for us */
719 free_extent_map(em);
720 /* once for the tree*/
721 free_extent_map(em);
722 }
Chris Mason3b951512008-04-17 11:29:12 -0400723 if (split)
724 free_extent_map(split);
725 if (split2)
726 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400727}
728
Chris Mason39279cc2007-06-12 06:35:45 -0400729/*
730 * this is very complex, but the basic idea is to drop all extents
731 * in the range start - end. hint_block is filled in with a block number
732 * that would be a good hint to the block allocator for this file.
733 *
734 * If an extent intersects the range but is not entirely inside the range
735 * it is either truncated or split. Anything entirely inside the range
736 * is deleted from the tree.
737 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400738int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
739 struct btrfs_root *root, struct inode *inode,
740 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000741 u64 *drop_end, int drop_cache,
742 int replace_extent,
743 u32 extent_item_size,
744 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400745{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400746 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500747 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000748 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500749 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000750 struct btrfs_key new_key;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200751 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000752 u64 search_start = start;
753 u64 disk_bytenr = 0;
754 u64 num_bytes = 0;
755 u64 extent_offset = 0;
756 u64 extent_end = 0;
Josef Bacik62fe51c2016-11-16 09:13:39 -0500757 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000758 int del_nr = 0;
759 int del_slot = 0;
760 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400761 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500762 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400763 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800764 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400765 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000766 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400767
Chris Masona1ed8352009-09-11 12:27:37 -0400768 if (drop_cache)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200769 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400770
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000771 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400772 modify_tree = 0;
773
Miao Xie27cdeb72014-04-02 19:51:05 +0800774 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400775 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500776 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400777 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800778 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400779 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400780 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000781 break;
782 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
783 leaf = path->nodes[0];
784 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800785 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000786 key.type == BTRFS_EXTENT_DATA_KEY)
787 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400788 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400789 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000790 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000791next_slot:
792 leaf = path->nodes[0];
793 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
794 BUG_ON(del_nr > 0);
795 ret = btrfs_next_leaf(root, path);
796 if (ret < 0)
797 break;
798 if (ret > 0) {
799 ret = 0;
800 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400801 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000802 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000803 leaf = path->nodes[0];
804 recow = 1;
805 }
806
807 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000808
809 if (key.objectid > ino)
810 break;
811 if (WARN_ON_ONCE(key.objectid < ino) ||
812 key.type < BTRFS_EXTENT_DATA_KEY) {
813 ASSERT(del_nr == 0);
814 path->slots[0]++;
815 goto next_slot;
816 }
817 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000818 break;
819
820 fi = btrfs_item_ptr(leaf, path->slots[0],
821 struct btrfs_file_extent_item);
822 extent_type = btrfs_file_extent_type(leaf, fi);
823
824 if (extent_type == BTRFS_FILE_EXTENT_REG ||
825 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
826 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
827 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
828 extent_offset = btrfs_file_extent_offset(leaf, fi);
829 extent_end = key.offset +
830 btrfs_file_extent_num_bytes(leaf, fi);
831 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
832 extent_end = key.offset +
Qu Wenruoe41ca5892018-06-06 15:41:49 +0800833 btrfs_file_extent_ram_bytes(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400834 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000835 /* can't happen */
836 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400837 }
838
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100839 /*
840 * Don't skip extent items representing 0 byte lengths. They
841 * used to be created (bug) if while punching holes we hit
842 * -ENOSPC condition. So if we find one here, just ensure we
843 * delete it, otherwise we would insert a new file extent item
844 * with the same key (offset) as that 0 bytes length file
845 * extent item in the call to setup_items_for_insert() later
846 * in this function.
847 */
Josef Bacik62fe51c2016-11-16 09:13:39 -0500848 if (extent_end == key.offset && extent_end >= search_start) {
849 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100850 goto delete_extent_item;
Josef Bacik62fe51c2016-11-16 09:13:39 -0500851 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100852
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000853 if (extent_end <= search_start) {
854 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400855 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400856 }
857
Josef Bacikc3308f82012-09-14 14:51:22 -0400858 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000859 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400860 if (recow || !modify_tree) {
861 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200862 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000863 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400864 }
Chris Mason771ed682008-11-06 22:02:51 -0500865
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000866 /*
867 * | - range to drop - |
868 * | -------- extent -------- |
869 */
870 if (start > key.offset && end < extent_end) {
871 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800872 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200873 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800874 break;
875 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000876
877 memcpy(&new_key, &key, sizeof(new_key));
878 new_key.offset = start;
879 ret = btrfs_duplicate_item(trans, root, path,
880 &new_key);
881 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200882 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000883 continue;
884 }
885 if (ret < 0)
886 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400887
Chris Mason5f39d392007-10-15 16:14:19 -0400888 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000889 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
890 struct btrfs_file_extent_item);
891 btrfs_set_file_extent_num_bytes(leaf, fi,
892 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400893
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000894 fi = btrfs_item_ptr(leaf, path->slots[0],
895 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400896
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000897 extent_offset += start - key.offset;
898 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
899 btrfs_set_file_extent_num_bytes(leaf, fi,
900 extent_end - start);
901 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400902
Josef Bacik5dc562c2012-08-17 13:14:17 -0400903 if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400904 ret = btrfs_inc_extent_ref(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000905 disk_bytenr, num_bytes, 0,
906 root->root_key.objectid,
907 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100908 start - extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100909 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400910 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000911 key.offset = start;
912 }
913 /*
Josef Bacik62fe51c2016-11-16 09:13:39 -0500914 * From here on out we will have actually dropped something, so
915 * last_end can be updated.
916 */
917 last_end = extent_end;
918
919 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000920 * | ---- range to drop ----- |
921 * | -------- extent -------- |
922 */
923 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800924 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200925 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800926 break;
927 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000928
929 memcpy(&new_key, &key, sizeof(new_key));
930 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400931 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000932
933 extent_offset += end - key.offset;
934 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
935 btrfs_set_file_extent_num_bytes(leaf, fi,
936 extent_end - end);
937 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400938 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000939 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400941 }
942
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000943 search_start = extent_end;
944 /*
945 * | ---- range to drop ----- |
946 * | -------- extent -------- |
947 */
948 if (start > key.offset && end >= extent_end) {
949 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800950 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200951 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800952 break;
953 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000954
955 btrfs_set_file_extent_num_bytes(leaf, fi,
956 start - key.offset);
957 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400958 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000959 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000960 if (end == extent_end)
961 break;
962
963 path->slots[0]++;
964 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400965 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000966
967 /*
968 * | ---- range to drop ----- |
969 * | ------ extent ------ |
970 */
971 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100972delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000973 if (del_nr == 0) {
974 del_slot = path->slots[0];
975 del_nr = 1;
976 } else {
977 BUG_ON(del_slot + del_nr != path->slots[0]);
978 del_nr++;
979 }
980
Josef Bacik5dc562c2012-08-17 13:14:17 -0400981 if (update_refs &&
982 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000983 inode_sub_bytes(inode,
984 extent_end - key.offset);
985 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400986 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400987 } else if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400988 ret = btrfs_free_extent(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000989 disk_bytenr, num_bytes, 0,
990 root->root_key.objectid,
991 key.objectid, key.offset -
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100992 extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100993 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000994 inode_sub_bytes(inode,
995 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000996 }
997
998 if (end == extent_end)
999 break;
1000
1001 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1002 path->slots[0]++;
1003 goto next_slot;
1004 }
1005
1006 ret = btrfs_del_items(trans, root, path, del_slot,
1007 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001008 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001009 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001010 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001011 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001012
1013 del_nr = 0;
1014 del_slot = 0;
1015
David Sterbab3b4aa72011-04-21 01:20:15 +02001016 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001017 continue;
1018 }
1019
1020 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04001021 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001022
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001023 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001024 /*
1025 * Set path->slots[0] to first slot, so that after the delete
1026 * if items are move off from our leaf to its immediate left or
1027 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001028 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001029 */
1030 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001031 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001032 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001033 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001034 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001035
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001036 leaf = path->nodes[0];
1037 /*
1038 * If btrfs_del_items() was called, it might have deleted a leaf, in
1039 * which case it unlocked our path, so check path->locks[0] matches a
1040 * write lock.
1041 */
1042 if (!ret && replace_extent && leafs_visited == 1 &&
1043 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1044 path->locks[0] == BTRFS_WRITE_LOCK) &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001045 btrfs_leaf_free_space(fs_info, leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001046 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001047
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001048 key.objectid = ino;
1049 key.type = BTRFS_EXTENT_DATA_KEY;
1050 key.offset = start;
1051 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1052 struct btrfs_key slot_key;
1053
1054 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1055 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1056 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001057 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001058 setup_items_for_insert(root, path, &key,
1059 &extent_item_size,
1060 extent_item_size,
1061 sizeof(struct btrfs_item) +
1062 extent_item_size, 1);
1063 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001064 }
1065
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001066 if (!replace_extent || !(*key_inserted))
1067 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001068 if (drop_end)
Josef Bacik62fe51c2016-11-16 09:13:39 -05001069 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001070 return ret;
1071}
1072
1073int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1074 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001075 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001076{
1077 struct btrfs_path *path;
1078 int ret;
1079
1080 path = btrfs_alloc_path();
1081 if (!path)
1082 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001083 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001084 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001085 btrfs_free_path(path);
1086 return ret;
1087}
1088
Yan Zhengd899e052008-10-30 14:25:28 -04001089static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001090 u64 objectid, u64 bytenr, u64 orig_offset,
1091 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001092{
1093 struct btrfs_file_extent_item *fi;
1094 struct btrfs_key key;
1095 u64 extent_end;
1096
1097 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1098 return 0;
1099
1100 btrfs_item_key_to_cpu(leaf, &key, slot);
1101 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1102 return 0;
1103
1104 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1105 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1106 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001107 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001108 btrfs_file_extent_compression(leaf, fi) ||
1109 btrfs_file_extent_encryption(leaf, fi) ||
1110 btrfs_file_extent_other_encoding(leaf, fi))
1111 return 0;
1112
1113 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1114 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1115 return 0;
1116
1117 *start = key.offset;
1118 *end = extent_end;
1119 return 1;
1120}
1121
1122/*
1123 * Mark extent in the range start - end as written.
1124 *
1125 * This changes extent type from 'pre-allocated' to 'regular'. If only
1126 * part of extent is marked as written, the extent will be split into
1127 * two or three.
1128 */
1129int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001130 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001131{
David Sterba3ffbd682018-06-29 10:56:42 +02001132 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001133 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001134 struct extent_buffer *leaf;
1135 struct btrfs_path *path;
1136 struct btrfs_file_extent_item *fi;
1137 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001138 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001139 u64 bytenr;
1140 u64 num_bytes;
1141 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001142 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001143 u64 other_start;
1144 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001145 u64 split;
1146 int del_nr = 0;
1147 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001148 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001149 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001150 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001151
Yan Zhengd899e052008-10-30 14:25:28 -04001152 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001153 if (!path)
1154 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001155again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001156 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001157 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001158 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001159 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001160 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001161
1162 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001163 if (ret < 0)
1164 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001165 if (ret > 0 && path->slots[0] > 0)
1166 path->slots[0]--;
1167
1168 leaf = path->nodes[0];
1169 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001170 if (key.objectid != ino ||
1171 key.type != BTRFS_EXTENT_DATA_KEY) {
1172 ret = -EINVAL;
1173 btrfs_abort_transaction(trans, ret);
1174 goto out;
1175 }
Yan Zhengd899e052008-10-30 14:25:28 -04001176 fi = btrfs_item_ptr(leaf, path->slots[0],
1177 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001178 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1179 ret = -EINVAL;
1180 btrfs_abort_transaction(trans, ret);
1181 goto out;
1182 }
Yan Zhengd899e052008-10-30 14:25:28 -04001183 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001184 if (key.offset > start || extent_end < end) {
1185 ret = -EINVAL;
1186 btrfs_abort_transaction(trans, ret);
1187 goto out;
1188 }
Yan Zhengd899e052008-10-30 14:25:28 -04001189
1190 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1191 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001192 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001193 memcpy(&new_key, &key, sizeof(new_key));
1194
1195 if (start == key.offset && end < extent_end) {
1196 other_start = 0;
1197 other_end = start;
1198 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001199 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001200 &other_start, &other_end)) {
1201 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001202 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001203 fi = btrfs_item_ptr(leaf, path->slots[0],
1204 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001205 btrfs_set_file_extent_generation(leaf, fi,
1206 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001207 btrfs_set_file_extent_num_bytes(leaf, fi,
1208 extent_end - end);
1209 btrfs_set_file_extent_offset(leaf, fi,
1210 end - orig_offset);
1211 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1212 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001213 btrfs_set_file_extent_generation(leaf, fi,
1214 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001215 btrfs_set_file_extent_num_bytes(leaf, fi,
1216 end - other_start);
1217 btrfs_mark_buffer_dirty(leaf);
1218 goto out;
1219 }
1220 }
1221
1222 if (start > key.offset && end == extent_end) {
1223 other_start = end;
1224 other_end = 0;
1225 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001226 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001227 &other_start, &other_end)) {
1228 fi = btrfs_item_ptr(leaf, path->slots[0],
1229 struct btrfs_file_extent_item);
1230 btrfs_set_file_extent_num_bytes(leaf, fi,
1231 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001232 btrfs_set_file_extent_generation(leaf, fi,
1233 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001234 path->slots[0]++;
1235 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001236 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001237
1238 fi = btrfs_item_ptr(leaf, path->slots[0],
1239 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001240 btrfs_set_file_extent_generation(leaf, fi,
1241 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001242 btrfs_set_file_extent_num_bytes(leaf, fi,
1243 other_end - start);
1244 btrfs_set_file_extent_offset(leaf, fi,
1245 start - orig_offset);
1246 btrfs_mark_buffer_dirty(leaf);
1247 goto out;
1248 }
1249 }
Yan Zhengd899e052008-10-30 14:25:28 -04001250
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001251 while (start > key.offset || end < extent_end) {
1252 if (key.offset == start)
1253 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001254
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001255 new_key.offset = split;
1256 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1257 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001258 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001259 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001260 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001261 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001262 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001263 goto out;
1264 }
Yan Zhengd899e052008-10-30 14:25:28 -04001265
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001266 leaf = path->nodes[0];
1267 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001268 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001269 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001270 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001271 split - key.offset);
1272
1273 fi = btrfs_item_ptr(leaf, path->slots[0],
1274 struct btrfs_file_extent_item);
1275
Josef Bacik224ecce2012-08-16 16:32:06 -04001276 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001277 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1278 btrfs_set_file_extent_num_bytes(leaf, fi,
1279 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001280 btrfs_mark_buffer_dirty(leaf);
1281
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001282 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001283 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001284 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001285 if (ret) {
1286 btrfs_abort_transaction(trans, ret);
1287 goto out;
1288 }
Yan Zhengd899e052008-10-30 14:25:28 -04001289
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001290 if (split == start) {
1291 key.offset = start;
1292 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001293 if (start != key.offset) {
1294 ret = -EINVAL;
1295 btrfs_abort_transaction(trans, ret);
1296 goto out;
1297 }
Yan Zhengd899e052008-10-30 14:25:28 -04001298 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001299 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001300 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001301 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001302 }
1303
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001304 other_start = end;
1305 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001306 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001307 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001308 &other_start, &other_end)) {
1309 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001310 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001311 goto again;
1312 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001313 extent_end = other_end;
1314 del_slot = path->slots[0] + 1;
1315 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001316 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001317 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001318 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001319 if (ret) {
1320 btrfs_abort_transaction(trans, ret);
1321 goto out;
1322 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001323 }
1324 other_start = 0;
1325 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001326 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001327 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001328 &other_start, &other_end)) {
1329 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001330 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001331 goto again;
1332 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001333 key.offset = other_start;
1334 del_slot = path->slots[0];
1335 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001336 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001337 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001338 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001339 if (ret) {
1340 btrfs_abort_transaction(trans, ret);
1341 goto out;
1342 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001343 }
1344 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001345 fi = btrfs_item_ptr(leaf, path->slots[0],
1346 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001347 btrfs_set_file_extent_type(leaf, fi,
1348 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001349 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001350 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001351 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001352 fi = btrfs_item_ptr(leaf, del_slot - 1,
1353 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001354 btrfs_set_file_extent_type(leaf, fi,
1355 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001356 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001357 btrfs_set_file_extent_num_bytes(leaf, fi,
1358 extent_end - key.offset);
1359 btrfs_mark_buffer_dirty(leaf);
1360
1361 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001362 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001363 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001364 goto out;
1365 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001366 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001367out:
Yan Zhengd899e052008-10-30 14:25:28 -04001368 btrfs_free_path(path);
1369 return 0;
1370}
1371
Chris Mason39279cc2007-06-12 06:35:45 -04001372/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001373 * on error we return an unlocked page and the error value
1374 * on success we return a locked page and 0
1375 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001376static int prepare_uptodate_page(struct inode *inode,
1377 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001378 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001379{
1380 int ret = 0;
1381
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001383 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001384 ret = btrfs_readpage(NULL, page);
1385 if (ret)
1386 return ret;
1387 lock_page(page);
1388 if (!PageUptodate(page)) {
1389 unlock_page(page);
1390 return -EIO;
1391 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001392 if (page->mapping != inode->i_mapping) {
1393 unlock_page(page);
1394 return -EAGAIN;
1395 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001396 }
1397 return 0;
1398}
1399
1400/*
Miao Xie376cc682013-12-10 19:25:04 +08001401 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001402 */
Miao Xieb37392e2013-12-10 19:25:03 +08001403static noinline int prepare_pages(struct inode *inode, struct page **pages,
1404 size_t num_pages, loff_t pos,
1405 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001406{
1407 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001408 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001409 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001410 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001411 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001412
Chris Mason39279cc2007-06-12 06:35:45 -04001413 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001414again:
Josef Bacika94733d2011-07-11 10:47:06 -04001415 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001416 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001417 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001418 faili = i - 1;
1419 err = -ENOMEM;
1420 goto fail;
1421 }
1422
1423 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001424 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001425 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001426 if (!err && i == num_pages - 1)
1427 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001428 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001429 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001430 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001431 if (err == -EAGAIN) {
1432 err = 0;
1433 goto again;
1434 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001435 faili = i - 1;
1436 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001437 }
Chris Masonccd467d2007-06-28 15:57:36 -04001438 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001439 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001440
Chris Mason39279cc2007-06-12 06:35:45 -04001441 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001442fail:
1443 while (faili >= 0) {
1444 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001445 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001446 faili--;
1447 }
1448 return err;
1449
Chris Mason39279cc2007-06-12 06:35:45 -04001450}
1451
Miao Xie376cc682013-12-10 19:25:04 +08001452/*
1453 * This function locks the extent and properly waits for data=ordered extents
1454 * to finish before allowing the pages to be modified if need.
1455 *
1456 * The return value:
1457 * 1 - the extent is locked
1458 * 0 - the extent is not locked, and everything is OK
1459 * -EAGAIN - need re-prepare the pages
1460 * the other < 0 number - Something wrong happens
1461 */
1462static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001463lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001464 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301465 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001466 u64 *lockstart, u64 *lockend,
1467 struct extent_state **cached_state)
1468{
David Sterba3ffbd682018-06-29 10:56:42 +02001469 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Miao Xie376cc682013-12-10 19:25:04 +08001470 u64 start_pos;
1471 u64 last_pos;
1472 int i;
1473 int ret = 0;
1474
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001475 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301476 last_pos = start_pos
Jeff Mahoneyda170662016-06-15 09:22:56 -04001477 + round_up(pos + write_bytes - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001478 fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001479
Filipe Mananae3b8a482017-11-04 00:16:59 +00001480 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001481 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001482
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001483 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1484 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001485 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1486 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001487 if (ordered &&
1488 ordered->file_offset + ordered->len > start_pos &&
1489 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001490 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001491 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001492 for (i = 0; i < num_pages; i++) {
1493 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001494 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001495 }
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001496 btrfs_start_ordered_extent(&inode->vfs_inode,
1497 ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001498 btrfs_put_ordered_extent(ordered);
1499 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001500 }
1501 if (ordered)
1502 btrfs_put_ordered_extent(ordered);
Filipe Mananae3b8a482017-11-04 00:16:59 +00001503 clear_extent_bit(&inode->io_tree, start_pos, last_pos,
1504 EXTENT_DIRTY | EXTENT_DELALLOC |
1505 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01001506 0, 0, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001507 *lockstart = start_pos;
1508 *lockend = last_pos;
1509 ret = 1;
1510 }
1511
1512 for (i = 0; i < num_pages; i++) {
1513 if (clear_page_dirty_for_io(pages[i]))
1514 account_page_redirty(pages[i]);
1515 set_page_extent_mapped(pages[i]);
1516 WARN_ON(!PageLocked(pages[i]));
1517 }
1518
1519 return ret;
1520}
1521
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001522static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
Josef Bacik7ee9e442013-06-21 16:37:03 -04001523 size_t *write_bytes)
1524{
David Sterba3ffbd682018-06-29 10:56:42 +02001525 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001526 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001527 struct btrfs_ordered_extent *ordered;
1528 u64 lockstart, lockend;
1529 u64 num_bytes;
1530 int ret;
1531
David Sterbaea14b57f2017-06-22 02:19:11 +02001532 ret = btrfs_start_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001533 if (!ret)
1534 return -ENOSPC;
1535
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001536 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001537 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001538 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001539
1540 while (1) {
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001541 lock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001542 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1543 lockend - lockstart + 1);
1544 if (!ordered) {
1545 break;
1546 }
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001547 unlock_extent(&inode->io_tree, lockstart, lockend);
1548 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001549 btrfs_put_ordered_extent(ordered);
1550 }
1551
Josef Bacik7ee9e442013-06-21 16:37:03 -04001552 num_bytes = lockend - lockstart + 1;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001553 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1554 NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001555 if (ret <= 0) {
1556 ret = 0;
David Sterbaea14b57f2017-06-22 02:19:11 +02001557 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001558 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001559 *write_bytes = min_t(size_t, *write_bytes ,
1560 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001561 }
1562
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001563 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001564
1565 return ret;
1566}
1567
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001568static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb,
1569 struct iov_iter *i)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001570{
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001571 struct file *file = iocb->ki_filp;
1572 loff_t pos = iocb->ki_pos;
Al Viro496ad9a2013-01-23 17:07:38 -05001573 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001574 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001575 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001576 struct page **pages = NULL;
Miao Xie376cc682013-12-10 19:25:04 +08001577 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001578 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001579 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001580 u64 lockstart;
1581 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001582 size_t num_written = 0;
1583 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001584 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001585 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001586 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001587
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001588 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1589 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001590 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1591 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001592 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001593 if (!pages)
1594 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001595
Josef Bacikd0215f32011-01-25 14:57:24 -05001596 while (iov_iter_count(i) > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001597 size_t offset = pos & (PAGE_SIZE - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301598 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001599 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001600 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001601 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001602 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001603 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001604 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001605 size_t dirty_pages;
1606 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301607 size_t dirty_sectors;
1608 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001609 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001610
Chris Mason8c2383c2007-06-18 09:57:58 -04001611 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001612
Xin Zhong914ee292010-12-09 09:30:14 +00001613 /*
1614 * Fault pages before locking them in prepare_pages
1615 * to avoid recursive lock
1616 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001617 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001618 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001619 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001620 }
1621
Jeff Mahoneyda170662016-06-15 09:22:56 -04001622 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301623 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001624 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001625
Qu Wenruo364ecf32017-02-27 15:10:38 +08001626 extent_changeset_release(data_reserved);
1627 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1628 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001629 if (ret < 0) {
1630 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1631 BTRFS_INODE_PREALLOC)) &&
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001632 check_can_nocow(BTRFS_I(inode), pos,
1633 &write_bytes) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001634 /*
1635 * For nodata cow case, no need to reserve
1636 * data space.
1637 */
1638 only_release_metadata = true;
1639 /*
1640 * our prealloc extent may be smaller than
1641 * write_bytes, so scale down.
1642 */
1643 num_pages = DIV_ROUND_UP(write_bytes + offset,
1644 PAGE_SIZE);
1645 reserve_bytes = round_up(write_bytes +
1646 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001647 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001648 } else {
1649 break;
1650 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001651 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001652
Josef Bacik8b62f872017-10-19 14:15:55 -04001653 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001654 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1655 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001656 if (ret) {
1657 if (!only_release_metadata)
Qu Wenruobc42bda2017-02-27 15:10:39 +08001658 btrfs_free_reserved_data_space(inode,
1659 data_reserved, pos,
1660 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001661 else
David Sterbaea14b57f2017-06-22 02:19:11 +02001662 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001663 break;
1664 }
1665
1666 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001667again:
Josef Bacik4a640012011-01-25 15:10:08 -05001668 /*
1669 * This is going to setup the pages array with the number of
1670 * pages we want, so we don't really need to worry about the
1671 * contents of pages from loop to loop
1672 */
Miao Xieb37392e2013-12-10 19:25:03 +08001673 ret = prepare_pages(inode, pages, num_pages,
1674 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001675 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001676 if (ret) {
1677 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001678 reserve_bytes, true);
Josef Bacikd0215f32011-01-25 14:57:24 -05001679 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001680 }
Chris Mason39279cc2007-06-12 06:35:45 -04001681
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001682 extents_locked = lock_and_cleanup_extent_if_need(
1683 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001684 num_pages, pos, write_bytes, &lockstart,
1685 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001686 if (extents_locked < 0) {
1687 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001688 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001689 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001690 reserve_bytes, true);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001691 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001692 break;
Miao Xie376cc682013-12-10 19:25:04 +08001693 }
1694
Zhao Leiee22f0c2016-01-06 18:47:31 +08001695 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001696
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001697 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001698 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001699 fs_info->sectorsize);
1700 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001701
Chris Masonb1bf8622011-02-28 09:52:08 -05001702 /*
1703 * if we have trouble faulting in the pages, fall
1704 * back to one page at a time
1705 */
1706 if (copied < write_bytes)
1707 nrptrs = 1;
1708
Josef Bacikb63164292011-09-30 15:23:54 -04001709 if (copied == 0) {
1710 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001711 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001712 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001713 } else {
1714 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001715 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001716 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001717 }
Xin Zhong914ee292010-12-09 09:30:14 +00001718
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301719 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001720 /* release everything except the sectors we dirtied */
1721 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001723 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001724 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001725 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001726 } else {
1727 u64 __pos;
1728
Jeff Mahoneyda170662016-06-15 09:22:56 -04001729 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001730 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001731 (dirty_pages << PAGE_SHIFT);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001732 btrfs_delalloc_release_space(inode,
1733 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001734 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001735 }
Xin Zhong914ee292010-12-09 09:30:14 +00001736 }
1737
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301738 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001739 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001740
1741 if (copied > 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001742 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
Filipe Manana94f45072017-10-31 17:59:54 +00001743 pos, copied, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001744 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001745 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001746 lockstart, lockend, &cached_state);
Qu Wenruo43b18592017-12-12 15:34:32 +08001747 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes,
Qu Wenruo336a8bb2018-04-17 18:43:58 +08001748 true);
Miao Xief1de9682014-01-09 10:06:10 +08001749 if (ret) {
1750 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001751 break;
Miao Xief1de9682014-01-09 10:06:10 +08001752 }
Chris Mason39279cc2007-06-12 06:35:45 -04001753
Josef Bacik7ee9e442013-06-21 16:37:03 -04001754 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001755 if (only_release_metadata)
David Sterbaea14b57f2017-06-22 02:19:11 +02001756 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001757
Josef Bacik7ee9e442013-06-21 16:37:03 -04001758 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001759 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001760 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001761 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001762 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001763
1764 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1765 lockend, EXTENT_NORESERVE, NULL,
1766 NULL, GFP_NOFS);
1767 only_release_metadata = false;
1768 }
1769
Miao Xief1de9682014-01-09 10:06:10 +08001770 btrfs_drop_pages(pages, num_pages);
1771
Josef Bacikd0215f32011-01-25 14:57:24 -05001772 cond_resched();
1773
Namjae Jeond0e1d662012-12-11 16:00:21 -08001774 balance_dirty_pages_ratelimited(inode->i_mapping);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001775 if (dirty_pages < (fs_info->nodesize >> PAGE_SHIFT) + 1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001776 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04001777
Xin Zhong914ee292010-12-09 09:30:14 +00001778 pos += copied;
1779 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001780 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001781
Chris Mason8c2383c2007-06-18 09:57:58 -04001782 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001783
Josef Bacik7ee9e442013-06-21 16:37:03 -04001784 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001785 if (only_release_metadata) {
David Sterbaea14b57f2017-06-22 02:19:11 +02001786 btrfs_end_write_no_snapshotting(root);
Nikolay Borisov691fa052017-02-20 13:50:42 +02001787 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001788 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001789 } else {
Qu Wenruobc42bda2017-02-27 15:10:39 +08001790 btrfs_delalloc_release_space(inode, data_reserved,
1791 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001792 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001793 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001794 }
1795
Qu Wenruo364ecf32017-02-27 15:10:38 +08001796 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001797 return num_written ? num_written : ret;
1798}
1799
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001800static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001801{
1802 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001803 struct inode *inode = file_inode(file);
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001804 loff_t pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001805 ssize_t written;
1806 ssize_t written_buffered;
1807 loff_t endbyte;
1808 int err;
1809
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001810 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001811
Al Viro0c949332014-03-22 06:51:37 -04001812 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001813 return written;
1814
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001815 pos = iocb->ki_pos;
1816 written_buffered = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001817 if (written_buffered < 0) {
1818 err = written_buffered;
1819 goto out;
1820 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001821 /*
1822 * Ensure all data is persisted. We want the next direct IO read to be
1823 * able to read what was just written.
1824 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001825 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001826 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001827 if (err)
1828 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001829 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001830 if (err)
1831 goto out;
1832 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001833 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001834 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1835 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001836out:
1837 return written ? written : err;
1838}
1839
Josef Bacik6c760c02012-11-09 10:53:21 -05001840static void update_time_for_write(struct inode *inode)
1841{
Deepa Dinamani95582b02018-05-08 19:36:02 -07001842 struct timespec64 now;
Josef Bacik6c760c02012-11-09 10:53:21 -05001843
1844 if (IS_NOCMTIME(inode))
1845 return;
1846
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001847 now = current_time(inode);
Deepa Dinamani95582b02018-05-08 19:36:02 -07001848 if (!timespec64_equal(&inode->i_mtime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001849 inode->i_mtime = now;
1850
Deepa Dinamani95582b02018-05-08 19:36:02 -07001851 if (!timespec64_equal(&inode->i_ctime, &now))
Josef Bacik6c760c02012-11-09 10:53:21 -05001852 inode->i_ctime = now;
1853
1854 if (IS_I_VERSION(inode))
1855 inode_inc_iversion(inode);
1856}
1857
Al Virob30ac0f2014-04-03 14:29:04 -04001858static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1859 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001860{
1861 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001862 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001863 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001864 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001865 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001866 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001867 ssize_t num_written = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001868 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
Al Viro3309dd02015-04-09 12:55:47 -04001869 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001870 loff_t pos;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001871 size_t count = iov_iter_count(from);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301872 loff_t oldsize;
1873 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001874
Christoph Hellwig91f99432017-08-29 16:13:20 +02001875 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1876 (iocb->ki_flags & IOCB_NOWAIT))
1877 return -EOPNOTSUPP;
1878
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001879 if (!inode_trylock(inode)) {
1880 if (iocb->ki_flags & IOCB_NOWAIT)
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001881 return -EAGAIN;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001882 inode_lock(inode);
1883 }
1884
1885 err = generic_write_checks(iocb, from);
1886 if (err <= 0) {
1887 inode_unlock(inode);
1888 return err;
1889 }
1890
1891 pos = iocb->ki_pos;
1892 if (iocb->ki_flags & IOCB_NOWAIT) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001893 /*
1894 * We will allocate space in case nodatacow is not set,
1895 * so bail
1896 */
1897 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1898 BTRFS_INODE_PREALLOC)) ||
1899 check_can_nocow(BTRFS_I(inode), pos, &count) <= 0) {
1900 inode_unlock(inode);
1901 return -EAGAIN;
1902 }
Al Viro3309dd02015-04-09 12:55:47 -04001903 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001904
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001905 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001906 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001907 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001908 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001909 goto out;
1910 }
1911
1912 /*
1913 * If BTRFS flips readonly due to some impossible error
1914 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1915 * although we have opened a file as writable, we have
1916 * to stop this write operation to ensure FS consistency.
1917 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001918 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001919 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001920 err = -EROFS;
1921 goto out;
1922 }
1923
Josef Bacik6c760c02012-11-09 10:53:21 -05001924 /*
1925 * We reserve space for updating the inode when we reserve space for the
1926 * extent we are going to write, so we will enospc out there. We don't
1927 * need to start yet another transaction to update the inode as we will
1928 * update the inode when we finish writing whatever data we write.
1929 */
1930 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001931
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001932 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301933 oldsize = i_size_read(inode);
1934 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001935 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001936 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001937 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301938 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001939 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001940 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001941 goto out;
1942 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001943 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301944 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001945 }
1946
Josef Bacikb812ce22012-11-16 13:56:32 -05001947 if (sync)
1948 atomic_inc(&BTRFS_I(inode)->sync_writers);
1949
Al Viro2ba48ce2015-04-09 13:52:01 -04001950 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001951 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001952 } else {
Goldwyn Rodriguese4af4002018-06-17 12:39:47 -05001953 num_written = btrfs_buffered_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001954 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001955 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301956 if (clean_page)
1957 pagecache_isize_extended(inode, oldsize,
1958 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001959 }
1960
Al Viro59551022016-01-22 15:40:57 -05001961 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001962
Chris Mason5a3f23d2009-03-31 13:27:11 -04001963 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05001964 * We also have to set last_sub_trans to the current log transid,
1965 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001966 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04001967 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001968 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05001969 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001970 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07001971 if (num_written > 0)
1972 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00001973
Josef Bacikb812ce22012-11-16 13:56:32 -05001974 if (sync)
1975 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00001976out:
Chris Mason39279cc2007-06-12 06:35:45 -04001977 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001978 return num_written ? num_written : err;
1979}
1980
Chris Masond3977122009-01-05 21:25:51 -05001981int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001982{
Josef Bacik23b5ec72017-07-24 15:14:25 -04001983 struct btrfs_file_private *private = filp->private_data;
1984
Josef Bacik23b5ec72017-07-24 15:14:25 -04001985 if (private && private->filldir_buf)
1986 kfree(private->filldir_buf);
1987 kfree(private);
1988 filp->private_data = NULL;
1989
Chris Masonf6dc45c2014-08-20 07:15:33 -07001990 /*
1991 * ordered_data_close is set by settattr when we are about to truncate
1992 * a file from a non-zero size to a zero size. This tries to
1993 * flush down new bytes that may have been written if the
1994 * application were using truncate to replace a file in place.
1995 */
1996 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1997 &BTRFS_I(inode)->runtime_flags))
1998 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04001999 return 0;
2000}
2001
Filipe Manana669249e2014-09-02 11:09:58 +01002002static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2003{
2004 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002005 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002006
Liu Bo343e4fc2017-11-15 16:10:28 -07002007 /*
2008 * This is only called in fsync, which would do synchronous writes, so
2009 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2010 * multiple disks using raid profile, a large IO can be split to
2011 * several segments of stripe length (currently 64K).
2012 */
2013 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002014 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002015 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002016 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002017 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002018
2019 return ret;
2020}
2021
Chris Masond352ac62008-09-29 15:18:18 -04002022/*
2023 * fsync call for both files and directories. This logs the inode into
2024 * the tree log instead of forcing full commits whenever possible.
2025 *
2026 * It needs to call filemap_fdatawait so that all ordered extent updates are
2027 * in the metadata btree are up to date for copying to the log.
2028 *
2029 * It drops the inode mutex before doing the tree log commit. This is an
2030 * important optimization for directories because holding the mutex prevents
2031 * new operations on the dir while we write to disk.
2032 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002033int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002034{
Filipe Mananade17e792016-03-30 19:03:13 -04002035 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002036 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002037 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002038 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002039 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002040 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002041 int ret = 0, err;
David Sterba9dcbeed2015-11-09 11:44:45 +01002042 u64 len;
Chris Mason39279cc2007-06-12 06:35:45 -04002043
David Sterba9dcbeed2015-11-09 11:44:45 +01002044 /*
2045 * The range length can be represented by u64, we have to do the typecasts
2046 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
2047 */
2048 len = (u64)end - (u64)start + 1;
liubo1abe9b82011-03-24 11:18:59 +00002049 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002050
Liu Boebb70442017-11-21 14:35:40 -07002051 btrfs_init_log_ctx(&ctx, inode);
2052
Miao Xie90abccf2012-09-13 04:53:47 -06002053 /*
2054 * We write the dirty pages in the range and wait until they complete
2055 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002056 * multi-task, and make the performance up. See
2057 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002058 */
Filipe Manana669249e2014-09-02 11:09:58 +01002059 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002060 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002061 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002062
Al Viro59551022016-01-22 15:40:57 -05002063 inode_lock(inode);
Miao Xie2ecb7922012-09-06 04:04:27 -06002064 atomic_inc(&root->log_batch);
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002065
Filipe Manana669249e2014-09-02 11:09:58 +01002066 /*
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002067 * We have to do this here to avoid the priority inversion of waiting on
2068 * IO of a lower priority task while holding a transaciton open.
Filipe Manana669249e2014-09-02 11:09:58 +01002069 */
Josef Bacikb5e6c3e2018-05-23 11:58:33 -04002070 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Manana669249e2014-09-02 11:09:58 +01002071 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002072 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002073 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002074 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002075 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002076
Josef Bacika4abeea2011-04-11 17:25:13 -04002077 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002078 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
David Sterbaca5788a2018-07-19 15:27:46 +02002079 BTRFS_I(inode)->last_trans <= fs_info->last_trans_committed) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002080 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002081 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002082 * modified so clear this flag in case it was set for whatever
2083 * reason, it's no longer relevant.
2084 */
2085 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2086 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002087 /*
2088 * An ordered extent might have started before and completed
2089 * already with io errors, in which case the inode was not
2090 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002091 * for any errors that might have happened since we last
2092 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002093 */
Jeff Layton333427a2017-07-06 07:02:31 -04002094 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Al Viro59551022016-01-22 15:40:57 -05002095 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002096 goto out;
2097 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002098
2099 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002100 * We use start here because we will need to wait on the IO to complete
2101 * in btrfs_sync_log, which could require joining a transaction (for
2102 * example checking cross references in the nocow path). If we use join
2103 * here we could get into a situation where we're waiting on IO to
2104 * happen that is blocked on a transaction trying to commit. With start
2105 * we inc the extwriter counter, so we wait for all extwriters to exit
2106 * before we start blocking join'ers. This comment is to keep somebody
2107 * from thinking they are super smart and changing this to
2108 * btrfs_join_transaction *cough*Josef*cough*.
2109 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002110 trans = btrfs_start_transaction(root, 0);
2111 if (IS_ERR(trans)) {
2112 ret = PTR_ERR(trans);
Al Viro59551022016-01-22 15:40:57 -05002113 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002114 goto out;
2115 }
Josef Bacik5039edd2014-01-15 13:34:13 -05002116 trans->sync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002117
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02002118 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002119 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002120 /* Fallthrough and commit/free transaction. */
2121 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002122 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002123
2124 /* we've logged all the items and now have a consistent
2125 * version of the file in the log. It is possible that
2126 * someone will come in and modify the file, but that's
2127 * fine because the log is consistent on disk, and we
2128 * have references to all of the file's extents
2129 *
2130 * It is possible that someone will come in and log the
2131 * file again, but that will end up using the synchronization
2132 * inside btrfs_sync_log to keep things safe.
2133 */
Al Viro59551022016-01-22 15:40:57 -05002134 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002135
Filipe Manana8407f552014-09-05 15:14:39 +01002136 /*
2137 * If any of the ordered extents had an error, just return it to user
2138 * space, so that the application knows some writes didn't succeed and
2139 * can take proper action (retry for e.g.). Blindly committing the
2140 * transaction in this case, would fool userspace that everything was
2141 * successful. And we also want to make sure our log doesn't contain
2142 * file extent items pointing to extents that weren't fully written to -
2143 * just like in the non fast fsync path, where we check for the ordered
2144 * operation's error flag before writing to the log tree and return -EIO
2145 * if any of them had this flag set (btrfs_wait_ordered_range) -
2146 * therefore we need to check for errors in the ordered operations,
2147 * which are indicated by ctx.io_err.
2148 */
2149 if (ctx.io_err) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002150 btrfs_end_transaction(trans);
Filipe Manana8407f552014-09-05 15:14:39 +01002151 ret = ctx.io_err;
2152 goto out;
2153 }
2154
Chris Mason257c62e2009-10-13 13:21:08 -04002155 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002156 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002157 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002158 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002159 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002160 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002161 }
Chris Mason257c62e2009-10-13 13:21:08 -04002162 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002163 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002164 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002165 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002166 }
Chris Mason39279cc2007-06-12 06:35:45 -04002167out:
Liu Boebb70442017-11-21 14:35:40 -07002168 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002169 err = file_check_and_advance_wb_err(file);
2170 if (!ret)
2171 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002172 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002173}
2174
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002175static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002176 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002177 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002178 .page_mkwrite = btrfs_page_mkwrite,
2179};
2180
2181static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2182{
Miao Xie058a4572010-05-20 07:21:50 +00002183 struct address_space *mapping = filp->f_mapping;
2184
2185 if (!mapping->a_ops->readpage)
2186 return -ENOEXEC;
2187
Chris Mason9ebefb182007-06-15 13:50:00 -04002188 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002189 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002190
Chris Mason9ebefb182007-06-15 13:50:00 -04002191 return 0;
2192}
2193
Nikolay Borisov35339c22017-02-20 13:50:46 +02002194static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002195 int slot, u64 start, u64 end)
2196{
2197 struct btrfs_file_extent_item *fi;
2198 struct btrfs_key key;
2199
2200 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2201 return 0;
2202
2203 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002204 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002205 key.type != BTRFS_EXTENT_DATA_KEY)
2206 return 0;
2207
2208 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2209
2210 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2211 return 0;
2212
2213 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2214 return 0;
2215
2216 if (key.offset == end)
2217 return 1;
2218 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2219 return 1;
2220 return 0;
2221}
2222
Nikolay Borisova012a742017-02-20 13:50:47 +02002223static int fill_holes(struct btrfs_trans_handle *trans,
2224 struct btrfs_inode *inode,
2225 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002226{
David Sterba3ffbd682018-06-29 10:56:42 +02002227 struct btrfs_fs_info *fs_info = trans->fs_info;
Nikolay Borisova012a742017-02-20 13:50:47 +02002228 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002229 struct extent_buffer *leaf;
2230 struct btrfs_file_extent_item *fi;
2231 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002232 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002233 struct btrfs_key key;
2234 int ret;
2235
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002236 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002237 goto out;
2238
Nikolay Borisova012a742017-02-20 13:50:47 +02002239 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002240 key.type = BTRFS_EXTENT_DATA_KEY;
2241 key.offset = offset;
2242
Josef Bacik2aaa6652012-08-29 14:27:18 -04002243 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002244 if (ret <= 0) {
2245 /*
2246 * We should have dropped this offset, so if we find it then
2247 * something has gone horribly wrong.
2248 */
2249 if (ret == 0)
2250 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002251 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002252 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002253
2254 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002255 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002256 u64 num_bytes;
2257
2258 path->slots[0]--;
2259 fi = btrfs_item_ptr(leaf, path->slots[0],
2260 struct btrfs_file_extent_item);
2261 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2262 end - offset;
2263 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2264 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2265 btrfs_set_file_extent_offset(leaf, fi, 0);
2266 btrfs_mark_buffer_dirty(leaf);
2267 goto out;
2268 }
2269
chandan1707e262014-07-01 12:04:28 +05302270 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002271 u64 num_bytes;
2272
Josef Bacik2aaa6652012-08-29 14:27:18 -04002273 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002274 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002275 fi = btrfs_item_ptr(leaf, path->slots[0],
2276 struct btrfs_file_extent_item);
2277 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2278 offset;
2279 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2280 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2281 btrfs_set_file_extent_offset(leaf, fi, 0);
2282 btrfs_mark_buffer_dirty(leaf);
2283 goto out;
2284 }
2285 btrfs_release_path(path);
2286
Nikolay Borisova012a742017-02-20 13:50:47 +02002287 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002288 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002289 if (ret)
2290 return ret;
2291
2292out:
2293 btrfs_release_path(path);
2294
2295 hole_em = alloc_extent_map();
2296 if (!hole_em) {
2297 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002298 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002299 } else {
2300 hole_em->start = offset;
2301 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002302 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002303 hole_em->orig_start = offset;
2304
2305 hole_em->block_start = EXTENT_MAP_HOLE;
2306 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002307 hole_em->orig_block_len = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002308 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002309 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2310 hole_em->generation = trans->transid;
2311
2312 do {
2313 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2314 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002315 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002316 write_unlock(&em_tree->lock);
2317 } while (ret == -EEXIST);
2318 free_extent_map(hole_em);
2319 if (ret)
2320 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002321 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002322 }
2323
2324 return 0;
2325}
2326
Qu Wenruod7781542014-05-30 15:16:10 +08002327/*
2328 * Find a hole extent on given inode and change start/len to the end of hole
2329 * extent.(hole/vacuum extent whose em->start <= start &&
2330 * em->start + em->len > start)
2331 * When a hole extent is found, return 1 and modify start/len.
2332 */
2333static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2334{
Filipe Manana609805d2017-05-30 05:29:09 +01002335 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002336 struct extent_map *em;
2337 int ret = 0;
2338
Filipe Manana609805d2017-05-30 05:29:09 +01002339 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2340 round_down(*start, fs_info->sectorsize),
2341 round_up(*len, fs_info->sectorsize), 0);
Dan Carpenter99862772017-04-11 11:57:15 +03002342 if (IS_ERR(em))
2343 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002344
2345 /* Hole or vacuum extent(only exists in no-hole mode) */
2346 if (em->block_start == EXTENT_MAP_HOLE) {
2347 ret = 1;
2348 *len = em->start + em->len > *start + *len ?
2349 0 : *start + *len - em->start - em->len;
2350 *start = em->start + em->len;
2351 }
2352 free_extent_map(em);
2353 return ret;
2354}
2355
Filipe Mananaf27451f2017-10-25 11:55:28 +01002356static int btrfs_punch_hole_lock_range(struct inode *inode,
2357 const u64 lockstart,
2358 const u64 lockend,
2359 struct extent_state **cached_state)
2360{
2361 while (1) {
2362 struct btrfs_ordered_extent *ordered;
2363 int ret;
2364
2365 truncate_pagecache_range(inode, lockstart, lockend);
2366
2367 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2368 cached_state);
2369 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2370
2371 /*
2372 * We need to make sure we have no ordered extents in this range
2373 * and nobody raced in and read a page in this range, if we did
2374 * we need to try again.
2375 */
2376 if ((!ordered ||
2377 (ordered->file_offset + ordered->len <= lockstart ||
2378 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002379 !filemap_range_has_page(inode->i_mapping,
2380 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002381 if (ordered)
2382 btrfs_put_ordered_extent(ordered);
2383 break;
2384 }
2385 if (ordered)
2386 btrfs_put_ordered_extent(ordered);
2387 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2388 lockend, cached_state);
2389 ret = btrfs_wait_ordered_range(inode, lockstart,
2390 lockend - lockstart + 1);
2391 if (ret)
2392 return ret;
2393 }
2394 return 0;
2395}
2396
Josef Bacik2aaa6652012-08-29 14:27:18 -04002397static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002399 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002400 struct btrfs_root *root = BTRFS_I(inode)->root;
2401 struct extent_state *cached_state = NULL;
2402 struct btrfs_path *path;
2403 struct btrfs_block_rsv *rsv;
2404 struct btrfs_trans_handle *trans;
Qu Wenruod7781542014-05-30 15:16:10 +08002405 u64 lockstart;
2406 u64 lockend;
2407 u64 tail_start;
2408 u64 tail_len;
2409 u64 orig_start = offset;
2410 u64 cur_offset;
Chris Mason5f52a2c2016-12-13 09:14:42 -08002411 u64 min_size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002412 u64 drop_end;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002413 int ret = 0;
2414 int err = 0;
Alexandru Moise6e4d6fa2015-09-22 21:00:07 +00002415 unsigned int rsv_count;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302416 bool same_block;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002417 bool no_holes = btrfs_fs_incompat(fs_info, NO_HOLES);
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002418 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302419 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002420 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002421
Josef Bacik0ef8b722013-10-25 16:13:35 -04002422 ret = btrfs_wait_ordered_range(inode, offset, len);
2423 if (ret)
2424 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002425
Al Viro59551022016-01-22 15:40:57 -05002426 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002427 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002428 ret = find_first_non_hole(inode, &offset, &len);
2429 if (ret < 0)
2430 goto out_only_mutex;
2431 if (ret && !len) {
2432 /* Already in a large hole */
2433 ret = 0;
2434 goto out_only_mutex;
2435 }
2436
Jeff Mahoneyda170662016-06-15 09:22:56 -04002437 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
Qu Wenruod7781542014-05-30 15:16:10 +08002438 lockend = round_down(offset + len,
Jeff Mahoneyda170662016-06-15 09:22:56 -04002439 btrfs_inode_sectorsize(inode)) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002440 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2441 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002442 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302443 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002444 * because we are sure there is no data there.
2445 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002446 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302447 * Only do this if we are in the same block and we aren't doing the
2448 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002449 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002450 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002451 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302452 truncated_block = true;
2453 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002454 } else {
2455 ret = 0;
2456 }
Qu Wenruod7781542014-05-30 15:16:10 +08002457 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002458 }
2459
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302460 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002461 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302462 truncated_block = true;
2463 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002464 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002465 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002466 return ret;
2467 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002468 }
2469
Qu Wenruod7781542014-05-30 15:16:10 +08002470 /* Check the aligned pages after the first unaligned page,
2471 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002472 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002473 * the extra check can be skipped */
2474 if (offset == orig_start) {
2475 /* after truncate page, check hole again */
2476 len = offset + len - lockstart;
2477 offset = lockstart;
2478 ret = find_first_non_hole(inode, &offset, &len);
2479 if (ret < 0)
2480 goto out_only_mutex;
2481 if (ret && !len) {
2482 ret = 0;
2483 goto out_only_mutex;
2484 }
2485 lockstart = offset;
2486 }
2487
2488 /* Check the tail unaligned part is in a hole */
2489 tail_start = lockend + 1;
2490 tail_len = offset + len - tail_start;
2491 if (tail_len) {
2492 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2493 if (unlikely(ret < 0))
2494 goto out_only_mutex;
2495 if (!ret) {
2496 /* zero the front end of the last page */
2497 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302498 truncated_block = true;
2499 ret = btrfs_truncate_block(inode,
2500 tail_start + tail_len,
2501 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002502 if (ret)
2503 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002504 }
Miao Xie00612802012-12-05 10:54:12 +00002505 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002506 }
2507
2508 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002509 ret = 0;
2510 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002511 }
2512
Filipe Mananaf27451f2017-10-25 11:55:28 +01002513 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2514 &cached_state);
2515 if (ret) {
2516 inode_unlock(inode);
2517 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002518 }
2519
2520 path = btrfs_alloc_path();
2521 if (!path) {
2522 ret = -ENOMEM;
2523 goto out;
2524 }
2525
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002526 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002527 if (!rsv) {
2528 ret = -ENOMEM;
2529 goto out_free;
2530 }
Chris Mason5f52a2c2016-12-13 09:14:42 -08002531 rsv->size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002532 rsv->failfast = 1;
2533
2534 /*
2535 * 1 - update the inode
2536 * 1 - removing the extents in the range
Josef Bacik16e75492013-10-22 12:18:51 -04002537 * 1 - adding the hole extent if no_holes isn't set
Josef Bacik2aaa6652012-08-29 14:27:18 -04002538 */
Josef Bacik16e75492013-10-22 12:18:51 -04002539 rsv_count = no_holes ? 2 : 3;
2540 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002541 if (IS_ERR(trans)) {
2542 err = PTR_ERR(trans);
2543 goto out_free;
2544 }
2545
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002546 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002547 min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002548 BUG_ON(ret);
2549 trans->block_rsv = rsv;
2550
Qu Wenruod7781542014-05-30 15:16:10 +08002551 cur_offset = lockstart;
2552 len = lockend - cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002553 while (cur_offset < lockend) {
2554 ret = __btrfs_drop_extents(trans, root, inode, path,
2555 cur_offset, lockend + 1,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002556 &drop_end, 1, 0, 0, NULL);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002557 if (ret != -ENOSPC)
2558 break;
2559
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002560 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002561
Josef Bacik62fe51c2016-11-16 09:13:39 -05002562 if (cur_offset < drop_end && cur_offset < ino_size) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002563 ret = fill_holes(trans, BTRFS_I(inode), path,
2564 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002565 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002566 /*
2567 * If we failed then we didn't insert our hole
2568 * entries for the area we dropped, so now the
2569 * fs is corrupted, so we must abort the
2570 * transaction.
2571 */
2572 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002573 err = ret;
2574 break;
2575 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002576 }
2577
2578 cur_offset = drop_end;
2579
2580 ret = btrfs_update_inode(trans, root, inode);
2581 if (ret) {
2582 err = ret;
2583 break;
2584 }
2585
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002586 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002587 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002588
Josef Bacik16e75492013-10-22 12:18:51 -04002589 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002590 if (IS_ERR(trans)) {
2591 ret = PTR_ERR(trans);
2592 trans = NULL;
2593 break;
2594 }
2595
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002596 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002597 rsv, min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002598 BUG_ON(ret); /* shouldn't happen */
2599 trans->block_rsv = rsv;
Qu Wenruod7781542014-05-30 15:16:10 +08002600
2601 ret = find_first_non_hole(inode, &cur_offset, &len);
2602 if (unlikely(ret < 0))
2603 break;
2604 if (ret && !len) {
2605 ret = 0;
2606 break;
2607 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002608 }
2609
2610 if (ret) {
2611 err = ret;
2612 goto out_trans;
2613 }
2614
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002615 trans->block_rsv = &fs_info->trans_block_rsv;
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002616 /*
Filipe Manana2959a322015-11-02 12:32:44 +00002617 * If we are using the NO_HOLES feature we might have had already an
2618 * hole that overlaps a part of the region [lockstart, lockend] and
2619 * ends at (or beyond) lockend. Since we have no file extent items to
2620 * represent holes, drop_end can be less than lockend and so we must
2621 * make sure we have an extent map representing the existing hole (the
2622 * call to __btrfs_drop_extents() might have dropped the existing extent
2623 * map representing the existing hole), otherwise the fast fsync path
2624 * will not record the existence of the hole region
2625 * [existing_hole_start, lockend].
2626 */
2627 if (drop_end <= lockend)
2628 drop_end = lockend + 1;
2629 /*
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002630 * Don't insert file hole extent item if it's for a range beyond eof
2631 * (because it's useless) or if it represents a 0 bytes range (when
2632 * cur_offset == drop_end).
2633 */
2634 if (cur_offset < ino_size && cur_offset < drop_end) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002635 ret = fill_holes(trans, BTRFS_I(inode), path,
2636 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002637 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002638 /* Same comment as above. */
2639 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002640 err = ret;
2641 goto out_trans;
2642 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002643 }
2644
2645out_trans:
2646 if (!trans)
2647 goto out_free;
2648
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002649 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002650 inode->i_mtime = inode->i_ctime = current_time(inode);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002651
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002652 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002653 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002654 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002655 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002656 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002657out_free:
2658 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002659 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002660out:
2661 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002662 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002663out_only_mutex:
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302664 if (!updated_inode && truncated_block && !ret && !err) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002665 /*
2666 * If we only end up zeroing part of a page, we still need to
2667 * update the inode item, so that all the time fields are
2668 * updated as well as the necessary btrfs inode in memory fields
2669 * for detecting, at fsync time, if the inode isn't yet in the
2670 * log tree or it's there but not up to date.
2671 */
2672 trans = btrfs_start_transaction(root, 1);
2673 if (IS_ERR(trans)) {
2674 err = PTR_ERR(trans);
2675 } else {
2676 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002677 ret = btrfs_end_transaction(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002678 }
2679 }
Al Viro59551022016-01-22 15:40:57 -05002680 inode_unlock(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002681 if (ret && !err)
2682 err = ret;
2683 return err;
2684}
2685
Qu Wenruo14524a82015-09-08 17:22:44 +08002686/* Helper structure to record which range is already reserved */
2687struct falloc_range {
2688 struct list_head list;
2689 u64 start;
2690 u64 len;
2691};
2692
2693/*
2694 * Helper function to add falloc range
2695 *
2696 * Caller should have locked the larger range of extent containing
2697 * [start, len)
2698 */
2699static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2700{
2701 struct falloc_range *prev = NULL;
2702 struct falloc_range *range = NULL;
2703
2704 if (list_empty(head))
2705 goto insert;
2706
2707 /*
2708 * As fallocate iterate by bytenr order, we only need to check
2709 * the last range.
2710 */
2711 prev = list_entry(head->prev, struct falloc_range, list);
2712 if (prev->start + prev->len == start) {
2713 prev->len += len;
2714 return 0;
2715 }
2716insert:
David Sterba32fc9322016-02-11 14:25:38 +01002717 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002718 if (!range)
2719 return -ENOMEM;
2720 range->start = start;
2721 range->len = len;
2722 list_add_tail(&range->list, head);
2723 return 0;
2724}
2725
Filipe Mananaf27451f2017-10-25 11:55:28 +01002726static int btrfs_fallocate_update_isize(struct inode *inode,
2727 const u64 end,
2728 const int mode)
2729{
2730 struct btrfs_trans_handle *trans;
2731 struct btrfs_root *root = BTRFS_I(inode)->root;
2732 int ret;
2733 int ret2;
2734
2735 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2736 return 0;
2737
2738 trans = btrfs_start_transaction(root, 1);
2739 if (IS_ERR(trans))
2740 return PTR_ERR(trans);
2741
2742 inode->i_ctime = current_time(inode);
2743 i_size_write(inode, end);
2744 btrfs_ordered_update_i_size(inode, end, NULL);
2745 ret = btrfs_update_inode(trans, root, inode);
2746 ret2 = btrfs_end_transaction(trans);
2747
2748 return ret ? ret : ret2;
2749}
2750
Filipe Manana81fdf632018-01-18 11:34:31 +00002751enum {
2752 RANGE_BOUNDARY_WRITTEN_EXTENT = 0,
2753 RANGE_BOUNDARY_PREALLOC_EXTENT = 1,
2754 RANGE_BOUNDARY_HOLE = 2,
2755};
2756
Filipe Mananaf27451f2017-10-25 11:55:28 +01002757static int btrfs_zero_range_check_range_boundary(struct inode *inode,
2758 u64 offset)
2759{
2760 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2761 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00002762 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002763
2764 offset = round_down(offset, sectorsize);
2765 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize, 0);
2766 if (IS_ERR(em))
2767 return PTR_ERR(em);
2768
2769 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00002770 ret = RANGE_BOUNDARY_HOLE;
2771 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2772 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
2773 else
2774 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002775
2776 free_extent_map(em);
2777 return ret;
2778}
2779
2780static int btrfs_zero_range(struct inode *inode,
2781 loff_t offset,
2782 loff_t len,
2783 const int mode)
2784{
2785 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2786 struct extent_map *em;
2787 struct extent_changeset *data_reserved = NULL;
2788 int ret;
2789 u64 alloc_hint = 0;
2790 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2791 u64 alloc_start = round_down(offset, sectorsize);
2792 u64 alloc_end = round_up(offset + len, sectorsize);
2793 u64 bytes_to_reserve = 0;
2794 bool space_reserved = false;
2795
2796 inode_dio_wait(inode);
2797
2798 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2799 alloc_start, alloc_end - alloc_start, 0);
2800 if (IS_ERR(em)) {
2801 ret = PTR_ERR(em);
2802 goto out;
2803 }
2804
2805 /*
2806 * Avoid hole punching and extent allocation for some cases. More cases
2807 * could be considered, but these are unlikely common and we keep things
2808 * as simple as possible for now. Also, intentionally, if the target
2809 * range contains one or more prealloc extents together with regular
2810 * extents and holes, we drop all the existing extents and allocate a
2811 * new prealloc extent, so that we get a larger contiguous disk extent.
2812 */
2813 if (em->start <= alloc_start &&
2814 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2815 const u64 em_end = em->start + em->len;
2816
2817 if (em_end >= offset + len) {
2818 /*
2819 * The whole range is already a prealloc extent,
2820 * do nothing except updating the inode's i_size if
2821 * needed.
2822 */
2823 free_extent_map(em);
2824 ret = btrfs_fallocate_update_isize(inode, offset + len,
2825 mode);
2826 goto out;
2827 }
2828 /*
2829 * Part of the range is already a prealloc extent, so operate
2830 * only on the remaining part of the range.
2831 */
2832 alloc_start = em_end;
2833 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
2834 len = offset + len - alloc_start;
2835 offset = alloc_start;
2836 alloc_hint = em->block_start + em->len;
2837 }
2838 free_extent_map(em);
2839
2840 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
2841 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
2842 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2843 alloc_start, sectorsize, 0);
2844 if (IS_ERR(em)) {
2845 ret = PTR_ERR(em);
2846 goto out;
2847 }
2848
2849 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2850 free_extent_map(em);
2851 ret = btrfs_fallocate_update_isize(inode, offset + len,
2852 mode);
2853 goto out;
2854 }
2855 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
2856 free_extent_map(em);
2857 ret = btrfs_truncate_block(inode, offset, len, 0);
2858 if (!ret)
2859 ret = btrfs_fallocate_update_isize(inode,
2860 offset + len,
2861 mode);
2862 return ret;
2863 }
2864 free_extent_map(em);
2865 alloc_start = round_down(offset, sectorsize);
2866 alloc_end = alloc_start + sectorsize;
2867 goto reserve_space;
2868 }
2869
2870 alloc_start = round_up(offset, sectorsize);
2871 alloc_end = round_down(offset + len, sectorsize);
2872
2873 /*
2874 * For unaligned ranges, check the pages at the boundaries, they might
2875 * map to an extent, in which case we need to partially zero them, or
2876 * they might map to a hole, in which case we need our allocation range
2877 * to cover them.
2878 */
2879 if (!IS_ALIGNED(offset, sectorsize)) {
2880 ret = btrfs_zero_range_check_range_boundary(inode, offset);
2881 if (ret < 0)
2882 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002883 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002884 alloc_start = round_down(offset, sectorsize);
2885 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002886 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002887 ret = btrfs_truncate_block(inode, offset, 0, 0);
2888 if (ret)
2889 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002890 } else {
2891 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002892 }
2893 }
2894
2895 if (!IS_ALIGNED(offset + len, sectorsize)) {
2896 ret = btrfs_zero_range_check_range_boundary(inode,
2897 offset + len);
2898 if (ret < 0)
2899 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002900 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002901 alloc_end = round_up(offset + len, sectorsize);
2902 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002903 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002904 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
2905 if (ret)
2906 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002907 } else {
2908 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002909 }
2910 }
2911
2912reserve_space:
2913 if (alloc_start < alloc_end) {
2914 struct extent_state *cached_state = NULL;
2915 const u64 lockstart = alloc_start;
2916 const u64 lockend = alloc_end - 1;
2917
2918 bytes_to_reserve = alloc_end - alloc_start;
2919 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
2920 bytes_to_reserve);
2921 if (ret < 0)
2922 goto out;
2923 space_reserved = true;
2924 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
2925 alloc_start, bytes_to_reserve);
2926 if (ret)
2927 goto out;
2928 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2929 &cached_state);
2930 if (ret)
2931 goto out;
2932 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
2933 alloc_end - alloc_start,
2934 i_blocksize(inode),
2935 offset + len, &alloc_hint);
2936 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2937 lockend, &cached_state);
2938 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00002939 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002940 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00002941 goto out;
2942 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01002943 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00002944 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01002945 out:
2946 if (ret && space_reserved)
2947 btrfs_free_reserved_data_space(inode, data_reserved,
2948 alloc_start, bytes_to_reserve);
2949 extent_changeset_free(data_reserved);
2950
2951 return ret;
2952}
2953
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002954static long btrfs_fallocate(struct file *file, int mode,
2955 loff_t offset, loff_t len)
2956{
Al Viro496ad9a2013-01-23 17:07:38 -05002957 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002958 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002959 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08002960 struct falloc_range *range;
2961 struct falloc_range *tmp;
2962 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002963 u64 cur_offset;
2964 u64 last_byte;
2965 u64 alloc_start;
2966 u64 alloc_end;
2967 u64 alloc_hint = 0;
2968 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08002969 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002970 struct extent_map *em;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002971 int blocksize = btrfs_inode_sectorsize(inode);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002972 int ret;
2973
Miao Xie797f4272012-11-28 10:28:07 +00002974 alloc_start = round_down(offset, blocksize);
2975 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08002976 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002977
Josef Bacik2aaa6652012-08-29 14:27:18 -04002978 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01002979 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
2980 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002981 return -EOPNOTSUPP;
2982
Josef Bacik2aaa6652012-08-29 14:27:18 -04002983 if (mode & FALLOC_FL_PUNCH_HOLE)
2984 return btrfs_punch_hole(inode, offset, len);
2985
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002986 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08002987 * Only trigger disk allocation, don't trigger qgroup reserve
2988 *
2989 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05002990 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01002991 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
2992 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
2993 alloc_end - alloc_start);
2994 if (ret < 0)
2995 return ret;
2996 }
Chris Masond98456f2012-01-31 20:27:41 -05002997
Al Viro59551022016-01-22 15:40:57 -05002998 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07002999
3000 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3001 ret = inode_newsize_ok(inode, offset + len);
3002 if (ret)
3003 goto out;
3004 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003005
Qu Wenruo14524a82015-09-08 17:22:44 +08003006 /*
3007 * TODO: Move these two operations after we have checked
3008 * accurate reserved space, or fallocate can still fail but
3009 * with page truncated or size expanded.
3010 *
3011 * But that's a minor problem and won't do much harm BTW.
3012 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003013 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003014 ret = btrfs_cont_expand(inode, i_size_read(inode),
3015 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003016 if (ret)
3017 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003018 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003019 /*
3020 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303021 * need to zero out the end of the block if i_size lands in the
3022 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003023 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303024 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003025 if (ret)
3026 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003027 }
3028
Josef Bacika71754f2013-06-17 17:14:39 -04003029 /*
3030 * wait for ordered IO before we have any locks. We'll loop again
3031 * below with the locks held.
3032 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003033 ret = btrfs_wait_ordered_range(inode, alloc_start,
3034 alloc_end - alloc_start);
3035 if (ret)
3036 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003037
Filipe Mananaf27451f2017-10-25 11:55:28 +01003038 if (mode & FALLOC_FL_ZERO_RANGE) {
3039 ret = btrfs_zero_range(inode, offset, len, mode);
3040 inode_unlock(inode);
3041 return ret;
3042 }
3043
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003044 locked_end = alloc_end - 1;
3045 while (1) {
3046 struct btrfs_ordered_extent *ordered;
3047
3048 /* the extent lock is ordered inside the running
3049 * transaction
3050 */
3051 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003052 locked_end, &cached_state);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003053 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3054
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003055 if (ordered &&
3056 ordered->file_offset + ordered->len > alloc_start &&
3057 ordered->file_offset < alloc_end) {
3058 btrfs_put_ordered_extent(ordered);
3059 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3060 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003061 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003062 /*
3063 * we can't wait on the range with the transaction
3064 * running or with the extent lock held
3065 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003066 ret = btrfs_wait_ordered_range(inode, alloc_start,
3067 alloc_end - alloc_start);
3068 if (ret)
3069 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003070 } else {
3071 if (ordered)
3072 btrfs_put_ordered_extent(ordered);
3073 break;
3074 }
3075 }
3076
Qu Wenruo14524a82015-09-08 17:22:44 +08003077 /* First, check if we exceed the qgroup limit */
3078 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003079 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02003080 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003081 alloc_end - cur_offset, 0);
Dan Carpenter99862772017-04-11 11:57:15 +03003082 if (IS_ERR(em)) {
3083 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003084 break;
3085 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003086 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003087 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003088 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003089 if (em->block_start == EXTENT_MAP_HOLE ||
3090 (cur_offset >= inode->i_size &&
3091 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003092 ret = add_falloc_range(&reserve_list, cur_offset,
3093 last_byte - cur_offset);
3094 if (ret < 0) {
3095 free_extent_map(em);
3096 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003097 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003098 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3099 cur_offset, last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003100 if (ret < 0) {
3101 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003102 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003103 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003104 } else {
3105 /*
3106 * Do not need to reserve unwritten extent for this
3107 * range, free reserved data space first, otherwise
3108 * it'll result in false ENOSPC error.
3109 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003110 btrfs_free_reserved_data_space(inode, data_reserved,
3111 cur_offset, last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003112 }
3113 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003114 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003115 }
3116
3117 /*
3118 * If ret is still 0, means we're OK to fallocate.
3119 * Or just cleanup the list and exit.
3120 */
3121 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3122 if (!ret)
3123 ret = btrfs_prealloc_file_range(inode, mode,
3124 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003125 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003126 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003127 else
Qu Wenruobc42bda2017-02-27 15:10:39 +08003128 btrfs_free_reserved_data_space(inode,
3129 data_reserved, range->start,
3130 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003131 list_del(&range->list);
3132 kfree(range);
3133 }
3134 if (ret < 0)
3135 goto out_unlock;
3136
Filipe Mananaf27451f2017-10-25 11:55:28 +01003137 /*
3138 * We didn't need to allocate any more space, but we still extended the
3139 * size of the file so we need to update i_size and the inode item.
3140 */
3141 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003142out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003143 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003144 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003145out:
Al Viro59551022016-01-22 15:40:57 -05003146 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003147 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003148 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Qu Wenruobc42bda2017-02-27 15:10:39 +08003149 btrfs_free_reserved_data_space(inode, data_reserved,
3150 alloc_start, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003151 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003152 return ret;
3153}
3154
Andrew Morton965c8e52012-12-17 15:59:39 -08003155static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003156{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003157 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003158 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003159 struct extent_state *cached_state = NULL;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003160 u64 lockstart;
3161 u64 lockend;
3162 u64 start;
3163 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003164 int ret = 0;
3165
Josef Bacikb2675152011-07-18 13:21:36 -04003166 if (inode->i_size == 0)
3167 return -ENXIO;
3168
Liu Bo4d1a40c2014-09-16 17:49:30 +08003169 /*
3170 * *offset can be negative, in this case we start finding DATA/HOLE from
3171 * the very start of the file.
3172 */
3173 start = max_t(loff_t, 0, *offset);
3174
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003175 lockstart = round_down(start, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003176 lockend = round_up(i_size_read(inode),
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003177 fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003178 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003179 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003180 lockend--;
3181 len = lockend - lockstart + 1;
3182
David Sterbaff13db42015-12-03 14:30:40 +01003183 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003184 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003185
Josef Bacik7f4ca372013-10-18 11:44:46 -04003186 while (start < inode->i_size) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02003187 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0,
3188 start, len, 0);
Josef Bacikb2675152011-07-18 13:21:36 -04003189 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003190 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003191 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003192 break;
3193 }
3194
Josef Bacik7f4ca372013-10-18 11:44:46 -04003195 if (whence == SEEK_HOLE &&
3196 (em->block_start == EXTENT_MAP_HOLE ||
3197 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3198 break;
3199 else if (whence == SEEK_DATA &&
3200 (em->block_start != EXTENT_MAP_HOLE &&
3201 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3202 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003203
3204 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003205 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003206 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003207 cond_resched();
3208 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003209 free_extent_map(em);
3210 if (!ret) {
3211 if (whence == SEEK_DATA && start >= inode->i_size)
3212 ret = -ENXIO;
3213 else
3214 *offset = min_t(loff_t, start, inode->i_size);
3215 }
Josef Bacikb2675152011-07-18 13:21:36 -04003216 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003217 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003218 return ret;
3219}
3220
Andrew Morton965c8e52012-12-17 15:59:39 -08003221static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003222{
3223 struct inode *inode = file->f_mapping->host;
3224 int ret;
3225
Al Viro59551022016-01-22 15:40:57 -05003226 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08003227 switch (whence) {
Josef Bacikb2675152011-07-18 13:21:36 -04003228 case SEEK_END:
3229 case SEEK_CUR:
Andrew Morton965c8e52012-12-17 15:59:39 -08003230 offset = generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003231 goto out;
3232 case SEEK_DATA:
3233 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04003234 if (offset >= i_size_read(inode)) {
Al Viro59551022016-01-22 15:40:57 -05003235 inode_unlock(inode);
Jeff Liu48802c82011-09-18 10:34:02 -04003236 return -ENXIO;
3237 }
3238
Andrew Morton965c8e52012-12-17 15:59:39 -08003239 ret = find_desired_extent(inode, &offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003240 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05003241 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003242 return ret;
3243 }
3244 }
3245
Jie Liu46a1c2c2013-06-25 12:02:13 +08003246 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003247out:
Al Viro59551022016-01-22 15:40:57 -05003248 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003249 return offset;
3250}
3251
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003252static int btrfs_file_open(struct inode *inode, struct file *filp)
3253{
Christoph Hellwig91f99432017-08-29 16:13:20 +02003254 filp->f_mode |= FMODE_NOWAIT;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003255 return generic_file_open(inode, filp);
3256}
3257
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003258const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003259 .llseek = btrfs_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -04003260 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003261 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003262 .write_iter = btrfs_file_write_iter,
Chris Mason9ebefb182007-06-15 13:50:00 -04003263 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003264 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003265 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003266 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003267 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003268 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003269#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003270 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003271#endif
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003272 .clone_file_range = btrfs_clone_file_range,
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003273 .dedupe_file_range = btrfs_dedupe_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003274};
Miao Xie9247f312012-11-26 09:24:43 +00003275
David Sterbae67c7182018-02-19 17:24:18 +01003276void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003277{
Kinglong Mee5598e902016-01-29 21:36:35 +08003278 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003279}
3280
Liu Bof5c29bd2017-11-02 17:21:50 -06003281int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003282{
3283 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3284 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003285 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003286 NULL);
3287 if (!btrfs_inode_defrag_cachep)
3288 return -ENOMEM;
3289
3290 return 0;
3291}
Filipe Manana728404d2014-10-10 09:43:11 +01003292
3293int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3294{
3295 int ret;
3296
3297 /*
3298 * So with compression we will find and lock a dirty page and clear the
3299 * first one as dirty, setup an async extent, and immediately return
3300 * with the entire range locked but with nobody actually marked with
3301 * writeback. So we can't just filemap_write_and_wait_range() and
3302 * expect it to work since it will just kick off a thread to do the
3303 * actual work. So we need to call filemap_fdatawrite_range _again_
3304 * since it will wait on the page lock, which won't be unlocked until
3305 * after the pages have been marked as writeback and so we're good to go
3306 * from there. We have to do this otherwise we'll miss the ordered
3307 * extents and that results in badness. Please Josef, do not think you
3308 * know better and pull this out at some point in the future, it is
3309 * right and you are wrong.
3310 */
3311 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3312 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3313 &BTRFS_I(inode)->runtime_flags))
3314 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3315
3316 return ret;
3317}