blob: f247300170e59cad9783a7a2dbaf1a6ca8068cf9 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010027#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040028#include <linux/swap.h>
29#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040030#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000032#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080033#include <linux/uio.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050034#include <linux/iversion.h>
Chris Mason39279cc2007-06-12 06:35:45 -040035#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040040#include "tree-log.h"
41#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040042#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070043#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080044#include "compression.h"
Chris Mason39279cc2007-06-12 06:35:45 -040045
Miao Xie9247f312012-11-26 09:24:43 +000046static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040047/*
48 * when auto defrag is enabled we
49 * queue up these defrag structs to remember which
50 * inodes need defragging passes
51 */
52struct inode_defrag {
53 struct rb_node rb_node;
54 /* objectid */
55 u64 ino;
56 /*
57 * transid where the defrag was added, we search for
58 * extents newer than this
59 */
60 u64 transid;
61
62 /* root objectid */
63 u64 root;
64
65 /* last offset we were able to defrag */
66 u64 last_offset;
67
68 /* if we've wrapped around back to zero once already */
69 int cycled;
70};
71
Miao Xie762f2262012-05-24 18:58:27 +080072static int __compare_inode_defrag(struct inode_defrag *defrag1,
73 struct inode_defrag *defrag2)
74{
75 if (defrag1->root > defrag2->root)
76 return 1;
77 else if (defrag1->root < defrag2->root)
78 return -1;
79 else if (defrag1->ino > defrag2->ino)
80 return 1;
81 else if (defrag1->ino < defrag2->ino)
82 return -1;
83 else
84 return 0;
85}
86
Chris Mason4cb53002011-05-24 15:35:30 -040087/* pop a record for an inode into the defrag tree. The lock
88 * must be held already
89 *
90 * If you're inserting a record for an older transid than an
91 * existing record, the transid already in the tree is lowered
92 *
93 * If an existing record is found the defrag item you
94 * pass in is freed
95 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020096static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040097 struct inode_defrag *defrag)
98{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020099 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -0400100 struct inode_defrag *entry;
101 struct rb_node **p;
102 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800103 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400104
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400105 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400106 while (*p) {
107 parent = *p;
108 entry = rb_entry(parent, struct inode_defrag, rb_node);
109
Miao Xie762f2262012-05-24 18:58:27 +0800110 ret = __compare_inode_defrag(defrag, entry);
111 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400112 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800113 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400114 p = &parent->rb_right;
115 else {
116 /* if we're reinserting an entry for
117 * an old defrag run, make sure to
118 * lower the transid of our existing record
119 */
120 if (defrag->transid < entry->transid)
121 entry->transid = defrag->transid;
122 if (defrag->last_offset > entry->last_offset)
123 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000124 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400125 }
126 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200127 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400128 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400129 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000130 return 0;
131}
Chris Mason4cb53002011-05-24 15:35:30 -0400132
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400133static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000134{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400135 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000136 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400137
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400138 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000139 return 0;
140
141 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400142}
143
144/*
145 * insert a defrag record for this inode if auto defrag is
146 * enabled
147 */
148int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200149 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400150{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200151 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
152 struct btrfs_root *root = inode->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400153 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400154 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000155 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400156
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400157 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400158 return 0;
159
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200160 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400161 return 0;
162
163 if (trans)
164 transid = trans->transid;
165 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200166 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400167
Miao Xie9247f312012-11-26 09:24:43 +0000168 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400169 if (!defrag)
170 return -ENOMEM;
171
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200172 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400173 defrag->transid = transid;
174 defrag->root = root->root_key.objectid;
175
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400176 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200177 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000178 /*
179 * If we set IN_DEFRAG flag and evict the inode from memory,
180 * and then re-read this inode, this new inode doesn't have
181 * IN_DEFRAG flag. At the case, we may find the existed defrag.
182 */
183 ret = __btrfs_add_inode_defrag(inode, defrag);
184 if (ret)
185 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
186 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000187 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000188 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400189 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000190 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400191}
192
193/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000194 * Requeue the defrag object. If there is a defrag object that points to
195 * the same inode in the tree, we will merge them together (by
196 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400197 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200198static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000199 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000200{
Nikolay Borisov46e59792017-02-20 13:50:44 +0200201 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Miao Xie8ddc4732012-11-26 09:25:38 +0000202 int ret;
203
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400204 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000205 goto out;
206
207 /*
208 * Here we don't check the IN_DEFRAG flag, because we need merge
209 * them together.
210 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400211 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000212 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400213 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000214 if (ret)
215 goto out;
216 return;
217out:
218 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
219}
220
221/*
Miao Xie26176e72012-11-26 09:26:20 +0000222 * pick the defragable inode that we want, if it doesn't exist, we will get
223 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400224 */
Miao Xie26176e72012-11-26 09:26:20 +0000225static struct inode_defrag *
226btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400227{
228 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800229 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400230 struct rb_node *p;
231 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800232 int ret;
233
234 tmp.ino = ino;
235 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400236
Miao Xie26176e72012-11-26 09:26:20 +0000237 spin_lock(&fs_info->defrag_inodes_lock);
238 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400239 while (p) {
240 parent = p;
241 entry = rb_entry(parent, struct inode_defrag, rb_node);
242
Miao Xie762f2262012-05-24 18:58:27 +0800243 ret = __compare_inode_defrag(&tmp, entry);
244 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400245 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800246 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400247 p = parent->rb_right;
248 else
Miao Xie26176e72012-11-26 09:26:20 +0000249 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400250 }
251
Miao Xie26176e72012-11-26 09:26:20 +0000252 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
253 parent = rb_next(parent);
254 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400255 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000256 else
257 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400258 }
Miao Xie26176e72012-11-26 09:26:20 +0000259out:
260 if (entry)
261 rb_erase(parent, &fs_info->defrag_inodes);
262 spin_unlock(&fs_info->defrag_inodes_lock);
263 return entry;
264}
265
266void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
267{
268 struct inode_defrag *defrag;
269 struct rb_node *node;
270
271 spin_lock(&fs_info->defrag_inodes_lock);
272 node = rb_first(&fs_info->defrag_inodes);
273 while (node) {
274 rb_erase(node, &fs_info->defrag_inodes);
275 defrag = rb_entry(node, struct inode_defrag, rb_node);
276 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
277
David Sterba351810c2015-01-08 15:20:54 +0100278 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000279
280 node = rb_first(&fs_info->defrag_inodes);
281 }
282 spin_unlock(&fs_info->defrag_inodes_lock);
283}
284
285#define BTRFS_DEFRAG_BATCH 1024
286
287static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
288 struct inode_defrag *defrag)
289{
290 struct btrfs_root *inode_root;
291 struct inode *inode;
292 struct btrfs_key key;
293 struct btrfs_ioctl_defrag_range_args range;
294 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000295 int index;
296 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000297
298 /* get the inode */
299 key.objectid = defrag->root;
David Sterba962a2982014-06-04 18:41:45 +0200300 key.type = BTRFS_ROOT_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000301 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +0000302
303 index = srcu_read_lock(&fs_info->subvol_srcu);
304
Miao Xie26176e72012-11-26 09:26:20 +0000305 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
306 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000307 ret = PTR_ERR(inode_root);
308 goto cleanup;
309 }
Miao Xie26176e72012-11-26 09:26:20 +0000310
311 key.objectid = defrag->ino;
David Sterba962a2982014-06-04 18:41:45 +0200312 key.type = BTRFS_INODE_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000313 key.offset = 0;
314 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
315 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000316 ret = PTR_ERR(inode);
317 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000318 }
Liu Bo6f1c3602013-01-29 03:22:10 +0000319 srcu_read_unlock(&fs_info->subvol_srcu, index);
Miao Xie26176e72012-11-26 09:26:20 +0000320
321 /* do a chunk of defrag */
322 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
323 memset(&range, 0, sizeof(range));
324 range.len = (u64)-1;
325 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000326
327 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000328 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
329 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000330 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000331 /*
332 * if we filled the whole defrag batch, there
333 * must be more work to do. Queue this defrag
334 * again
335 */
336 if (num_defrag == BTRFS_DEFRAG_BATCH) {
337 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200338 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000339 } else if (defrag->last_offset && !defrag->cycled) {
340 /*
341 * we didn't fill our defrag batch, but
342 * we didn't start at zero. Make sure we loop
343 * around to the start of the file.
344 */
345 defrag->last_offset = 0;
346 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200347 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000348 } else {
349 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
350 }
351
352 iput(inode);
353 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000354cleanup:
355 srcu_read_unlock(&fs_info->subvol_srcu, index);
356 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
357 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400358}
359
360/*
361 * run through the list of inodes in the FS that need
362 * defragging
363 */
364int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
365{
366 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400367 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800368 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400369
370 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530371 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700372 /* Pause the auto defragger. */
373 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
374 &fs_info->fs_state))
375 break;
376
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400377 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000378 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400379
380 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000381 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
382 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400383 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000384 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800385 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400386 first_ino = 0;
387 continue;
388 } else {
389 break;
390 }
391 }
392
Chris Mason4cb53002011-05-24 15:35:30 -0400393 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800394 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400395
Miao Xie26176e72012-11-26 09:26:20 +0000396 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400397 }
Chris Mason4cb53002011-05-24 15:35:30 -0400398 atomic_dec(&fs_info->defrag_running);
399
400 /*
401 * during unmount, we use the transaction_wait queue to
402 * wait for the defragger to stop
403 */
404 wake_up(&fs_info->transaction_wait);
405 return 0;
406}
Chris Mason39279cc2007-06-12 06:35:45 -0400407
Chris Masond352ac62008-09-29 15:18:18 -0400408/* simple helper to fault in pages and copy. This should go away
409 * and be replaced with calls into generic code.
410 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800411static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400412 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400413 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400414{
Xin Zhong914ee292010-12-09 09:30:14 +0000415 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500416 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400417 int pg = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300418 int offset = pos & (PAGE_SIZE - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400419
Josef Bacik11c65dc2010-05-23 11:07:21 -0400420 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400421 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300422 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400423 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000424 /*
425 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000426 */
Xin Zhong914ee292010-12-09 09:30:14 +0000427 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400428
Chris Mason39279cc2007-06-12 06:35:45 -0400429 /* Flush processor's dcache for this page */
430 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500431
432 /*
433 * if we get a partial write, we can end up with
434 * partially up to date pages. These add
435 * a lot of complexity, so make sure they don't
436 * happen by forcing this copy to be retried.
437 *
438 * The rest of the btrfs_file_write code will fall
439 * back to page at a time copies after we return 0.
440 */
441 if (!PageUptodate(page) && copied < count)
442 copied = 0;
443
Josef Bacik11c65dc2010-05-23 11:07:21 -0400444 iov_iter_advance(i, copied);
445 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000446 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400447
Al Virob30ac0f2014-04-03 14:29:04 -0400448 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500449 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000450 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400451
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300452 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400453 offset += copied;
454 } else {
455 pg++;
456 offset = 0;
457 }
Chris Mason39279cc2007-06-12 06:35:45 -0400458 }
Xin Zhong914ee292010-12-09 09:30:14 +0000459 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400460}
461
Chris Masond352ac62008-09-29 15:18:18 -0400462/*
463 * unlocks pages after btrfs_file_write is done with them
464 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000465static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400466{
467 size_t i;
468 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400469 /* page checked is some magic around finding pages that
470 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700471 * clear it here. There should be no need to mark the pages
472 * accessed as prepare_pages should have marked them accessed
473 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400474 */
Chris Mason4a096752008-07-21 10:29:44 -0400475 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400476 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300477 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400478 }
479}
480
Filipe Mananaf48bf662017-11-03 22:26:44 +0000481static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
482 const u64 start,
483 const u64 len,
484 struct extent_state **cached_state)
485{
486 u64 search_start = start;
487 const u64 end = start + len - 1;
488
489 while (search_start < end) {
490 const u64 search_len = end - search_start + 1;
491 struct extent_map *em;
492 u64 em_len;
493 int ret = 0;
494
495 em = btrfs_get_extent(inode, NULL, 0, search_start,
496 search_len, 0);
497 if (IS_ERR(em))
498 return PTR_ERR(em);
499
500 if (em->block_start != EXTENT_MAP_HOLE)
501 goto next;
502
503 em_len = em->len;
504 if (em->start < search_start)
505 em_len -= search_start - em->start;
506 if (em_len > search_len)
507 em_len = search_len;
508
509 ret = set_extent_bit(&inode->io_tree, search_start,
510 search_start + em_len - 1,
511 EXTENT_DELALLOC_NEW,
512 NULL, cached_state, GFP_NOFS);
513next:
514 search_start = extent_map_end(em);
515 free_extent_map(em);
516 if (ret)
517 return ret;
518 }
519 return 0;
520}
521
Chris Masond352ac62008-09-29 15:18:18 -0400522/*
523 * after copy_from_user, pages need to be dirtied and we need to make
524 * sure holes are created between the current EOF and the start of
525 * any next extents (if required).
526 *
527 * this also makes the decision about creating an inline extent vs
528 * doing real data extents, marking pages dirty and delalloc as required.
529 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400530int btrfs_dirty_pages(struct inode *inode, struct page **pages,
531 size_t num_pages, loff_t pos, size_t write_bytes,
532 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400533{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400534 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -0400535 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400536 int i;
Chris Masondb945352007-10-15 16:15:53 -0400537 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400538 u64 start_pos;
539 u64 end_of_last_block;
540 u64 end_pos = pos + write_bytes;
541 loff_t isize = i_size_read(inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000542 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400543
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400544 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400545 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400546 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400547
Chris Masondb945352007-10-15 16:15:53 -0400548 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000549
550 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
551 if (start_pos >= isize &&
552 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
553 /*
554 * There can't be any extents following eof in this case
555 * so just set the delalloc new bit for the range
556 * directly.
557 */
558 extra_bits |= EXTENT_DELALLOC_NEW;
559 } else {
560 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
561 start_pos,
562 num_bytes, cached);
563 if (err)
564 return err;
565 }
566 }
567
Josef Bacik2ac55d42010-02-03 19:33:23 +0000568 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Filipe Mananae3b8a482017-11-04 00:16:59 +0000569 extra_bits, cached, 0);
Josef Bacikd0215f32011-01-25 14:57:24 -0500570 if (err)
571 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400572
Chris Masonc8b97812008-10-29 14:49:59 -0400573 for (i = 0; i < num_pages; i++) {
574 struct page *p = pages[i];
575 SetPageUptodate(p);
576 ClearPageChecked(p);
577 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400578 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500579
580 /*
581 * we've only changed i_size in ram, and we haven't updated
582 * the disk i_size. There is no need to log the inode
583 * at this time.
584 */
585 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400586 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400587 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400588}
589
Chris Masond352ac62008-09-29 15:18:18 -0400590/*
591 * this drops all the extents in the cache that intersect the range
592 * [start, end]. Existing extents are split as required.
593 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200594void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400595 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400596{
597 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400598 struct extent_map *split = NULL;
599 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200600 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500601 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400602 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400603 int ret;
604 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400605 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400606 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400607 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400608
Chris Masone6dcd2d2008-07-17 12:53:50 -0400609 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400610 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500611 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400612 testend = 0;
613 }
Chris Masond3977122009-01-05 21:25:51 -0500614 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400615 int no_splits = 0;
616
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400617 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400618 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200619 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400620 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200621 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400622 if (!split || !split2)
623 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400624
Chris Mason890871b2009-09-02 16:24:52 -0400625 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500626 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500627 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400628 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400629 break;
Chris Masond1310b22008-01-24 16:13:08 -0500630 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400631 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400632 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400633 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000634 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400635 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400636 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400637 break;
638 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000639 start = em->start + em->len;
640 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400641 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400642 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400643 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400644 continue;
645 }
Chris Masonc8b97812008-10-29 14:49:59 -0400646 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400647 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600648 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400649 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400650 if (no_splits)
651 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400652
Josef Bacikee20a982013-07-11 10:34:59 -0400653 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400654 split->start = em->start;
655 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400656
Josef Bacikee20a982013-07-11 10:34:59 -0400657 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
658 split->orig_start = em->orig_start;
659 split->block_start = em->block_start;
660
661 if (compressed)
662 split->block_len = em->block_len;
663 else
664 split->block_len = split->len;
665 split->orig_block_len = max(split->block_len,
666 em->orig_block_len);
667 split->ram_bytes = em->ram_bytes;
668 } else {
669 split->orig_start = split->start;
670 split->block_len = 0;
671 split->block_start = em->block_start;
672 split->orig_block_len = 0;
673 split->ram_bytes = split->len;
674 }
675
Josef Bacik5dc562c2012-08-17 13:14:17 -0400676 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400677 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400678 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800679 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000680 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400681 free_extent_map(split);
682 split = split2;
683 split2 = NULL;
684 }
Josef Bacikee20a982013-07-11 10:34:59 -0400685 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400686 u64 diff = start + len - em->start;
687
688 split->start = start + len;
689 split->len = em->start + em->len - (start + len);
690 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400691 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800692 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400693 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400694
Josef Bacikee20a982013-07-11 10:34:59 -0400695 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
696 split->orig_block_len = max(em->block_len,
697 em->orig_block_len);
698
699 split->ram_bytes = em->ram_bytes;
700 if (compressed) {
701 split->block_len = em->block_len;
702 split->block_start = em->block_start;
703 split->orig_start = em->orig_start;
704 } else {
705 split->block_len = split->len;
706 split->block_start = em->block_start
707 + diff;
708 split->orig_start = em->orig_start;
709 }
Chris Masonc8b97812008-10-29 14:49:59 -0400710 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400711 split->ram_bytes = split->len;
712 split->orig_start = split->start;
713 split->block_len = 0;
714 split->block_start = em->block_start;
715 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400716 }
Chris Mason3b951512008-04-17 11:29:12 -0400717
Filipe Manana176840b2014-02-25 14:15:13 +0000718 if (extent_map_in_tree(em)) {
719 replace_extent_mapping(em_tree, em, split,
720 modified);
721 } else {
722 ret = add_extent_mapping(em_tree, split,
723 modified);
724 ASSERT(ret == 0); /* Logic error */
725 }
Chris Mason3b951512008-04-17 11:29:12 -0400726 free_extent_map(split);
727 split = NULL;
728 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400729next:
Filipe Manana176840b2014-02-25 14:15:13 +0000730 if (extent_map_in_tree(em))
731 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400732 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500733
Chris Masona52d9a82007-08-27 16:49:44 -0400734 /* once for us */
735 free_extent_map(em);
736 /* once for the tree*/
737 free_extent_map(em);
738 }
Chris Mason3b951512008-04-17 11:29:12 -0400739 if (split)
740 free_extent_map(split);
741 if (split2)
742 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400743}
744
Chris Mason39279cc2007-06-12 06:35:45 -0400745/*
746 * this is very complex, but the basic idea is to drop all extents
747 * in the range start - end. hint_block is filled in with a block number
748 * that would be a good hint to the block allocator for this file.
749 *
750 * If an extent intersects the range but is not entirely inside the range
751 * it is either truncated or split. Anything entirely inside the range
752 * is deleted from the tree.
753 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400754int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
755 struct btrfs_root *root, struct inode *inode,
756 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000757 u64 *drop_end, int drop_cache,
758 int replace_extent,
759 u32 extent_item_size,
760 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400761{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400762 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500763 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000764 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500765 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000766 struct btrfs_key new_key;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200767 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000768 u64 search_start = start;
769 u64 disk_bytenr = 0;
770 u64 num_bytes = 0;
771 u64 extent_offset = 0;
772 u64 extent_end = 0;
Josef Bacik62fe51c2016-11-16 09:13:39 -0500773 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000774 int del_nr = 0;
775 int del_slot = 0;
776 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400777 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500778 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400779 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800780 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400781 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000782 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400783
Chris Masona1ed8352009-09-11 12:27:37 -0400784 if (drop_cache)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200785 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400786
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000787 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400788 modify_tree = 0;
789
Miao Xie27cdeb72014-04-02 19:51:05 +0800790 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400791 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500792 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400793 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800794 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400795 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400796 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000797 break;
798 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
799 leaf = path->nodes[0];
800 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800801 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000802 key.type == BTRFS_EXTENT_DATA_KEY)
803 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400804 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400805 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000806 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000807next_slot:
808 leaf = path->nodes[0];
809 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
810 BUG_ON(del_nr > 0);
811 ret = btrfs_next_leaf(root, path);
812 if (ret < 0)
813 break;
814 if (ret > 0) {
815 ret = 0;
816 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400817 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000818 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000819 leaf = path->nodes[0];
820 recow = 1;
821 }
822
823 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000824
825 if (key.objectid > ino)
826 break;
827 if (WARN_ON_ONCE(key.objectid < ino) ||
828 key.type < BTRFS_EXTENT_DATA_KEY) {
829 ASSERT(del_nr == 0);
830 path->slots[0]++;
831 goto next_slot;
832 }
833 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000834 break;
835
836 fi = btrfs_item_ptr(leaf, path->slots[0],
837 struct btrfs_file_extent_item);
838 extent_type = btrfs_file_extent_type(leaf, fi);
839
840 if (extent_type == BTRFS_FILE_EXTENT_REG ||
841 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
842 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
843 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
844 extent_offset = btrfs_file_extent_offset(leaf, fi);
845 extent_end = key.offset +
846 btrfs_file_extent_num_bytes(leaf, fi);
847 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
848 extent_end = key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -0800849 btrfs_file_extent_inline_len(leaf,
850 path->slots[0], fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400851 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000852 /* can't happen */
853 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400854 }
855
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100856 /*
857 * Don't skip extent items representing 0 byte lengths. They
858 * used to be created (bug) if while punching holes we hit
859 * -ENOSPC condition. So if we find one here, just ensure we
860 * delete it, otherwise we would insert a new file extent item
861 * with the same key (offset) as that 0 bytes length file
862 * extent item in the call to setup_items_for_insert() later
863 * in this function.
864 */
Josef Bacik62fe51c2016-11-16 09:13:39 -0500865 if (extent_end == key.offset && extent_end >= search_start) {
866 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100867 goto delete_extent_item;
Josef Bacik62fe51c2016-11-16 09:13:39 -0500868 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100869
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000870 if (extent_end <= search_start) {
871 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400872 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400873 }
874
Josef Bacikc3308f82012-09-14 14:51:22 -0400875 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000876 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400877 if (recow || !modify_tree) {
878 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200879 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000880 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400881 }
Chris Mason771ed682008-11-06 22:02:51 -0500882
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000883 /*
884 * | - range to drop - |
885 * | -------- extent -------- |
886 */
887 if (start > key.offset && end < extent_end) {
888 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800889 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200890 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800891 break;
892 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893
894 memcpy(&new_key, &key, sizeof(new_key));
895 new_key.offset = start;
896 ret = btrfs_duplicate_item(trans, root, path,
897 &new_key);
898 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200899 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000900 continue;
901 }
902 if (ret < 0)
903 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400904
Chris Mason5f39d392007-10-15 16:14:19 -0400905 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000906 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
907 struct btrfs_file_extent_item);
908 btrfs_set_file_extent_num_bytes(leaf, fi,
909 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400910
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000911 fi = btrfs_item_ptr(leaf, path->slots[0],
912 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400913
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000914 extent_offset += start - key.offset;
915 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
916 btrfs_set_file_extent_num_bytes(leaf, fi,
917 extent_end - start);
918 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400919
Josef Bacik5dc562c2012-08-17 13:14:17 -0400920 if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400921 ret = btrfs_inc_extent_ref(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000922 disk_bytenr, num_bytes, 0,
923 root->root_key.objectid,
924 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100925 start - extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100926 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400927 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000928 key.offset = start;
929 }
930 /*
Josef Bacik62fe51c2016-11-16 09:13:39 -0500931 * From here on out we will have actually dropped something, so
932 * last_end can be updated.
933 */
934 last_end = extent_end;
935
936 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000937 * | ---- range to drop ----- |
938 * | -------- extent -------- |
939 */
940 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800941 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200942 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800943 break;
944 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000945
946 memcpy(&new_key, &key, sizeof(new_key));
947 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400948 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000949
950 extent_offset += end - key.offset;
951 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
952 btrfs_set_file_extent_num_bytes(leaf, fi,
953 extent_end - end);
954 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400955 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000956 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000957 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400958 }
959
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000960 search_start = extent_end;
961 /*
962 * | ---- range to drop ----- |
963 * | -------- extent -------- |
964 */
965 if (start > key.offset && end >= extent_end) {
966 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800967 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200968 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800969 break;
970 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000971
972 btrfs_set_file_extent_num_bytes(leaf, fi,
973 start - key.offset);
974 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400975 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000976 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000977 if (end == extent_end)
978 break;
979
980 path->slots[0]++;
981 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400982 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000983
984 /*
985 * | ---- range to drop ----- |
986 * | ------ extent ------ |
987 */
988 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100989delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000990 if (del_nr == 0) {
991 del_slot = path->slots[0];
992 del_nr = 1;
993 } else {
994 BUG_ON(del_slot + del_nr != path->slots[0]);
995 del_nr++;
996 }
997
Josef Bacik5dc562c2012-08-17 13:14:17 -0400998 if (update_refs &&
999 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001000 inode_sub_bytes(inode,
1001 extent_end - key.offset);
1002 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001003 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001004 } else if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001005 ret = btrfs_free_extent(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001006 disk_bytenr, num_bytes, 0,
1007 root->root_key.objectid,
1008 key.objectid, key.offset -
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001009 extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001010 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001011 inode_sub_bytes(inode,
1012 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001013 }
1014
1015 if (end == extent_end)
1016 break;
1017
1018 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1019 path->slots[0]++;
1020 goto next_slot;
1021 }
1022
1023 ret = btrfs_del_items(trans, root, path, del_slot,
1024 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001025 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001026 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001027 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001028 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001029
1030 del_nr = 0;
1031 del_slot = 0;
1032
David Sterbab3b4aa72011-04-21 01:20:15 +02001033 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001034 continue;
1035 }
1036
1037 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04001038 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001039
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001040 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001041 /*
1042 * Set path->slots[0] to first slot, so that after the delete
1043 * if items are move off from our leaf to its immediate left or
1044 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001045 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001046 */
1047 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001048 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001049 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001050 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001051 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001052
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001053 leaf = path->nodes[0];
1054 /*
1055 * If btrfs_del_items() was called, it might have deleted a leaf, in
1056 * which case it unlocked our path, so check path->locks[0] matches a
1057 * write lock.
1058 */
1059 if (!ret && replace_extent && leafs_visited == 1 &&
1060 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1061 path->locks[0] == BTRFS_WRITE_LOCK) &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001062 btrfs_leaf_free_space(fs_info, leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001063 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001064
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001065 key.objectid = ino;
1066 key.type = BTRFS_EXTENT_DATA_KEY;
1067 key.offset = start;
1068 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1069 struct btrfs_key slot_key;
1070
1071 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1072 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1073 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001074 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001075 setup_items_for_insert(root, path, &key,
1076 &extent_item_size,
1077 extent_item_size,
1078 sizeof(struct btrfs_item) +
1079 extent_item_size, 1);
1080 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001081 }
1082
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001083 if (!replace_extent || !(*key_inserted))
1084 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001085 if (drop_end)
Josef Bacik62fe51c2016-11-16 09:13:39 -05001086 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001087 return ret;
1088}
1089
1090int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1091 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001092 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001093{
1094 struct btrfs_path *path;
1095 int ret;
1096
1097 path = btrfs_alloc_path();
1098 if (!path)
1099 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001100 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001101 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001102 btrfs_free_path(path);
1103 return ret;
1104}
1105
Yan Zhengd899e052008-10-30 14:25:28 -04001106static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001107 u64 objectid, u64 bytenr, u64 orig_offset,
1108 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001109{
1110 struct btrfs_file_extent_item *fi;
1111 struct btrfs_key key;
1112 u64 extent_end;
1113
1114 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1115 return 0;
1116
1117 btrfs_item_key_to_cpu(leaf, &key, slot);
1118 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1119 return 0;
1120
1121 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1122 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1123 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001124 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001125 btrfs_file_extent_compression(leaf, fi) ||
1126 btrfs_file_extent_encryption(leaf, fi) ||
1127 btrfs_file_extent_other_encoding(leaf, fi))
1128 return 0;
1129
1130 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1131 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1132 return 0;
1133
1134 *start = key.offset;
1135 *end = extent_end;
1136 return 1;
1137}
1138
1139/*
1140 * Mark extent in the range start - end as written.
1141 *
1142 * This changes extent type from 'pre-allocated' to 'regular'. If only
1143 * part of extent is marked as written, the extent will be split into
1144 * two or three.
1145 */
1146int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001147 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001148{
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001149 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1150 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001151 struct extent_buffer *leaf;
1152 struct btrfs_path *path;
1153 struct btrfs_file_extent_item *fi;
1154 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001155 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001156 u64 bytenr;
1157 u64 num_bytes;
1158 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001159 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001160 u64 other_start;
1161 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001162 u64 split;
1163 int del_nr = 0;
1164 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001165 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001166 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001167 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001168
Yan Zhengd899e052008-10-30 14:25:28 -04001169 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001170 if (!path)
1171 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001172again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001173 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001174 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001175 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001176 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001177 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001178
1179 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001180 if (ret < 0)
1181 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001182 if (ret > 0 && path->slots[0] > 0)
1183 path->slots[0]--;
1184
1185 leaf = path->nodes[0];
1186 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001187 if (key.objectid != ino ||
1188 key.type != BTRFS_EXTENT_DATA_KEY) {
1189 ret = -EINVAL;
1190 btrfs_abort_transaction(trans, ret);
1191 goto out;
1192 }
Yan Zhengd899e052008-10-30 14:25:28 -04001193 fi = btrfs_item_ptr(leaf, path->slots[0],
1194 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001195 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1196 ret = -EINVAL;
1197 btrfs_abort_transaction(trans, ret);
1198 goto out;
1199 }
Yan Zhengd899e052008-10-30 14:25:28 -04001200 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001201 if (key.offset > start || extent_end < end) {
1202 ret = -EINVAL;
1203 btrfs_abort_transaction(trans, ret);
1204 goto out;
1205 }
Yan Zhengd899e052008-10-30 14:25:28 -04001206
1207 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1208 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001209 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001210 memcpy(&new_key, &key, sizeof(new_key));
1211
1212 if (start == key.offset && end < extent_end) {
1213 other_start = 0;
1214 other_end = start;
1215 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001216 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001217 &other_start, &other_end)) {
1218 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001219 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001220 fi = btrfs_item_ptr(leaf, path->slots[0],
1221 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001222 btrfs_set_file_extent_generation(leaf, fi,
1223 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001224 btrfs_set_file_extent_num_bytes(leaf, fi,
1225 extent_end - end);
1226 btrfs_set_file_extent_offset(leaf, fi,
1227 end - orig_offset);
1228 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1229 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001230 btrfs_set_file_extent_generation(leaf, fi,
1231 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001232 btrfs_set_file_extent_num_bytes(leaf, fi,
1233 end - other_start);
1234 btrfs_mark_buffer_dirty(leaf);
1235 goto out;
1236 }
1237 }
1238
1239 if (start > key.offset && end == extent_end) {
1240 other_start = end;
1241 other_end = 0;
1242 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001243 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001244 &other_start, &other_end)) {
1245 fi = btrfs_item_ptr(leaf, path->slots[0],
1246 struct btrfs_file_extent_item);
1247 btrfs_set_file_extent_num_bytes(leaf, fi,
1248 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001249 btrfs_set_file_extent_generation(leaf, fi,
1250 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001251 path->slots[0]++;
1252 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001253 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001254
1255 fi = btrfs_item_ptr(leaf, path->slots[0],
1256 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001257 btrfs_set_file_extent_generation(leaf, fi,
1258 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001259 btrfs_set_file_extent_num_bytes(leaf, fi,
1260 other_end - start);
1261 btrfs_set_file_extent_offset(leaf, fi,
1262 start - orig_offset);
1263 btrfs_mark_buffer_dirty(leaf);
1264 goto out;
1265 }
1266 }
Yan Zhengd899e052008-10-30 14:25:28 -04001267
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001268 while (start > key.offset || end < extent_end) {
1269 if (key.offset == start)
1270 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001271
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001272 new_key.offset = split;
1273 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1274 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001275 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001276 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001277 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001278 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001279 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001280 goto out;
1281 }
Yan Zhengd899e052008-10-30 14:25:28 -04001282
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001283 leaf = path->nodes[0];
1284 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001285 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001286 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001287 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001288 split - key.offset);
1289
1290 fi = btrfs_item_ptr(leaf, path->slots[0],
1291 struct btrfs_file_extent_item);
1292
Josef Bacik224ecce2012-08-16 16:32:06 -04001293 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001294 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1295 btrfs_set_file_extent_num_bytes(leaf, fi,
1296 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001297 btrfs_mark_buffer_dirty(leaf);
1298
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001299 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001300 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001301 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001302 if (ret) {
1303 btrfs_abort_transaction(trans, ret);
1304 goto out;
1305 }
Yan Zhengd899e052008-10-30 14:25:28 -04001306
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001307 if (split == start) {
1308 key.offset = start;
1309 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001310 if (start != key.offset) {
1311 ret = -EINVAL;
1312 btrfs_abort_transaction(trans, ret);
1313 goto out;
1314 }
Yan Zhengd899e052008-10-30 14:25:28 -04001315 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001316 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001317 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001318 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001319 }
1320
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001321 other_start = end;
1322 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001323 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001324 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001325 &other_start, &other_end)) {
1326 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001327 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001328 goto again;
1329 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001330 extent_end = other_end;
1331 del_slot = path->slots[0] + 1;
1332 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001333 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001334 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001335 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001336 if (ret) {
1337 btrfs_abort_transaction(trans, ret);
1338 goto out;
1339 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001340 }
1341 other_start = 0;
1342 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001343 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001344 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001345 &other_start, &other_end)) {
1346 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001347 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001348 goto again;
1349 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001350 key.offset = other_start;
1351 del_slot = path->slots[0];
1352 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001353 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001354 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001355 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001356 if (ret) {
1357 btrfs_abort_transaction(trans, ret);
1358 goto out;
1359 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001360 }
1361 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001362 fi = btrfs_item_ptr(leaf, path->slots[0],
1363 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001364 btrfs_set_file_extent_type(leaf, fi,
1365 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001366 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001367 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001368 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001369 fi = btrfs_item_ptr(leaf, del_slot - 1,
1370 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001371 btrfs_set_file_extent_type(leaf, fi,
1372 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001373 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001374 btrfs_set_file_extent_num_bytes(leaf, fi,
1375 extent_end - key.offset);
1376 btrfs_mark_buffer_dirty(leaf);
1377
1378 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001379 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001380 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001381 goto out;
1382 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001383 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001384out:
Yan Zhengd899e052008-10-30 14:25:28 -04001385 btrfs_free_path(path);
1386 return 0;
1387}
1388
Chris Mason39279cc2007-06-12 06:35:45 -04001389/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001390 * on error we return an unlocked page and the error value
1391 * on success we return a locked page and 0
1392 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001393static int prepare_uptodate_page(struct inode *inode,
1394 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001395 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001396{
1397 int ret = 0;
1398
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001399 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001400 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001401 ret = btrfs_readpage(NULL, page);
1402 if (ret)
1403 return ret;
1404 lock_page(page);
1405 if (!PageUptodate(page)) {
1406 unlock_page(page);
1407 return -EIO;
1408 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001409 if (page->mapping != inode->i_mapping) {
1410 unlock_page(page);
1411 return -EAGAIN;
1412 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001413 }
1414 return 0;
1415}
1416
1417/*
Miao Xie376cc682013-12-10 19:25:04 +08001418 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001419 */
Miao Xieb37392e2013-12-10 19:25:03 +08001420static noinline int prepare_pages(struct inode *inode, struct page **pages,
1421 size_t num_pages, loff_t pos,
1422 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001423{
1424 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001425 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001426 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001427 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001428 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001429
Chris Mason39279cc2007-06-12 06:35:45 -04001430 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001431again:
Josef Bacika94733d2011-07-11 10:47:06 -04001432 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001433 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001434 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001435 faili = i - 1;
1436 err = -ENOMEM;
1437 goto fail;
1438 }
1439
1440 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001441 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001442 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001443 if (!err && i == num_pages - 1)
1444 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001445 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001446 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001447 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001448 if (err == -EAGAIN) {
1449 err = 0;
1450 goto again;
1451 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001452 faili = i - 1;
1453 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001454 }
Chris Masonccd467d2007-06-28 15:57:36 -04001455 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001456 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001457
Chris Mason39279cc2007-06-12 06:35:45 -04001458 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001459fail:
1460 while (faili >= 0) {
1461 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001462 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001463 faili--;
1464 }
1465 return err;
1466
Chris Mason39279cc2007-06-12 06:35:45 -04001467}
1468
Miao Xie376cc682013-12-10 19:25:04 +08001469/*
1470 * This function locks the extent and properly waits for data=ordered extents
1471 * to finish before allowing the pages to be modified if need.
1472 *
1473 * The return value:
1474 * 1 - the extent is locked
1475 * 0 - the extent is not locked, and everything is OK
1476 * -EAGAIN - need re-prepare the pages
1477 * the other < 0 number - Something wrong happens
1478 */
1479static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001480lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001481 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301482 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001483 u64 *lockstart, u64 *lockend,
1484 struct extent_state **cached_state)
1485{
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001486 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Miao Xie376cc682013-12-10 19:25:04 +08001487 u64 start_pos;
1488 u64 last_pos;
1489 int i;
1490 int ret = 0;
1491
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001492 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301493 last_pos = start_pos
Jeff Mahoneyda170662016-06-15 09:22:56 -04001494 + round_up(pos + write_bytes - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001495 fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001496
Filipe Mananae3b8a482017-11-04 00:16:59 +00001497 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001498 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001499
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001500 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1501 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001502 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1503 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001504 if (ordered &&
1505 ordered->file_offset + ordered->len > start_pos &&
1506 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001507 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001508 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001509 for (i = 0; i < num_pages; i++) {
1510 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001511 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001512 }
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001513 btrfs_start_ordered_extent(&inode->vfs_inode,
1514 ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001515 btrfs_put_ordered_extent(ordered);
1516 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001517 }
1518 if (ordered)
1519 btrfs_put_ordered_extent(ordered);
Filipe Mananae3b8a482017-11-04 00:16:59 +00001520 clear_extent_bit(&inode->io_tree, start_pos, last_pos,
1521 EXTENT_DIRTY | EXTENT_DELALLOC |
1522 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01001523 0, 0, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001524 *lockstart = start_pos;
1525 *lockend = last_pos;
1526 ret = 1;
1527 }
1528
1529 for (i = 0; i < num_pages; i++) {
1530 if (clear_page_dirty_for_io(pages[i]))
1531 account_page_redirty(pages[i]);
1532 set_page_extent_mapped(pages[i]);
1533 WARN_ON(!PageLocked(pages[i]));
1534 }
1535
1536 return ret;
1537}
1538
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001539static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
Josef Bacik7ee9e442013-06-21 16:37:03 -04001540 size_t *write_bytes)
1541{
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001542 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1543 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001544 struct btrfs_ordered_extent *ordered;
1545 u64 lockstart, lockend;
1546 u64 num_bytes;
1547 int ret;
1548
David Sterbaea14b57f2017-06-22 02:19:11 +02001549 ret = btrfs_start_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001550 if (!ret)
1551 return -ENOSPC;
1552
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001553 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001554 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001555 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001556
1557 while (1) {
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001558 lock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001559 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1560 lockend - lockstart + 1);
1561 if (!ordered) {
1562 break;
1563 }
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001564 unlock_extent(&inode->io_tree, lockstart, lockend);
1565 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001566 btrfs_put_ordered_extent(ordered);
1567 }
1568
Josef Bacik7ee9e442013-06-21 16:37:03 -04001569 num_bytes = lockend - lockstart + 1;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001570 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1571 NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001572 if (ret <= 0) {
1573 ret = 0;
David Sterbaea14b57f2017-06-22 02:19:11 +02001574 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001575 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001576 *write_bytes = min_t(size_t, *write_bytes ,
1577 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001578 }
1579
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001580 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001581
1582 return ret;
1583}
1584
Josef Bacikd0215f32011-01-25 14:57:24 -05001585static noinline ssize_t __btrfs_buffered_write(struct file *file,
1586 struct iov_iter *i,
1587 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001588{
Al Viro496ad9a2013-01-23 17:07:38 -05001589 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001590 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001591 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001592 struct page **pages = NULL;
Miao Xie376cc682013-12-10 19:25:04 +08001593 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001594 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001595 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001596 u64 lockstart;
1597 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001598 size_t num_written = 0;
1599 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001600 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001601 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001602 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001603
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001604 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1605 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001606 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1607 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001608 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001609 if (!pages)
1610 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001611
Josef Bacikd0215f32011-01-25 14:57:24 -05001612 while (iov_iter_count(i) > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001613 size_t offset = pos & (PAGE_SIZE - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301614 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001615 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001616 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001617 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001618 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001619 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001620 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001621 size_t dirty_pages;
1622 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301623 size_t dirty_sectors;
1624 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001625 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001626
Chris Mason8c2383c2007-06-18 09:57:58 -04001627 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001628
Xin Zhong914ee292010-12-09 09:30:14 +00001629 /*
1630 * Fault pages before locking them in prepare_pages
1631 * to avoid recursive lock
1632 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001633 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001634 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001635 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001636 }
1637
Jeff Mahoneyda170662016-06-15 09:22:56 -04001638 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301639 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001640 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001641
Qu Wenruo364ecf32017-02-27 15:10:38 +08001642 extent_changeset_release(data_reserved);
1643 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1644 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001645 if (ret < 0) {
1646 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1647 BTRFS_INODE_PREALLOC)) &&
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001648 check_can_nocow(BTRFS_I(inode), pos,
1649 &write_bytes) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001650 /*
1651 * For nodata cow case, no need to reserve
1652 * data space.
1653 */
1654 only_release_metadata = true;
1655 /*
1656 * our prealloc extent may be smaller than
1657 * write_bytes, so scale down.
1658 */
1659 num_pages = DIV_ROUND_UP(write_bytes + offset,
1660 PAGE_SIZE);
1661 reserve_bytes = round_up(write_bytes +
1662 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001663 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001664 } else {
1665 break;
1666 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001667 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001668
Josef Bacik8b62f872017-10-19 14:15:55 -04001669 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001670 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1671 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001672 if (ret) {
1673 if (!only_release_metadata)
Qu Wenruobc42bda2017-02-27 15:10:39 +08001674 btrfs_free_reserved_data_space(inode,
1675 data_reserved, pos,
1676 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001677 else
David Sterbaea14b57f2017-06-22 02:19:11 +02001678 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001679 break;
1680 }
1681
1682 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001683again:
Josef Bacik4a640012011-01-25 15:10:08 -05001684 /*
1685 * This is going to setup the pages array with the number of
1686 * pages we want, so we don't really need to worry about the
1687 * contents of pages from loop to loop
1688 */
Miao Xieb37392e2013-12-10 19:25:03 +08001689 ret = prepare_pages(inode, pages, num_pages,
1690 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001691 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001692 if (ret) {
1693 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001694 reserve_bytes, true);
Josef Bacikd0215f32011-01-25 14:57:24 -05001695 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001696 }
Chris Mason39279cc2007-06-12 06:35:45 -04001697
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001698 extents_locked = lock_and_cleanup_extent_if_need(
1699 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001700 num_pages, pos, write_bytes, &lockstart,
1701 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001702 if (extents_locked < 0) {
1703 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001704 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001705 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001706 reserve_bytes, true);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001707 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001708 break;
Miao Xie376cc682013-12-10 19:25:04 +08001709 }
1710
Zhao Leiee22f0c2016-01-06 18:47:31 +08001711 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001712
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001713 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001714 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001715 fs_info->sectorsize);
1716 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001717
Chris Masonb1bf8622011-02-28 09:52:08 -05001718 /*
1719 * if we have trouble faulting in the pages, fall
1720 * back to one page at a time
1721 */
1722 if (copied < write_bytes)
1723 nrptrs = 1;
1724
Josef Bacikb63164292011-09-30 15:23:54 -04001725 if (copied == 0) {
1726 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001727 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001728 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001729 } else {
1730 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001731 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001732 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001733 }
Xin Zhong914ee292010-12-09 09:30:14 +00001734
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301735 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001736 /* release everything except the sectors we dirtied */
1737 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001738 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001739 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001740 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001741 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001742 } else {
1743 u64 __pos;
1744
Jeff Mahoneyda170662016-06-15 09:22:56 -04001745 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001746 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001747 (dirty_pages << PAGE_SHIFT);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001748 btrfs_delalloc_release_space(inode,
1749 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001750 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001751 }
Xin Zhong914ee292010-12-09 09:30:14 +00001752 }
1753
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301754 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001755 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001756
1757 if (copied > 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001758 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
Filipe Manana94f45072017-10-31 17:59:54 +00001759 pos, copied, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001760 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001761 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001762 lockstart, lockend, &cached_state);
Qu Wenruo43b18592017-12-12 15:34:32 +08001763 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes,
1764 (ret != 0));
Miao Xief1de9682014-01-09 10:06:10 +08001765 if (ret) {
1766 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001767 break;
Miao Xief1de9682014-01-09 10:06:10 +08001768 }
Chris Mason39279cc2007-06-12 06:35:45 -04001769
Josef Bacik7ee9e442013-06-21 16:37:03 -04001770 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001771 if (only_release_metadata)
David Sterbaea14b57f2017-06-22 02:19:11 +02001772 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001773
Josef Bacik7ee9e442013-06-21 16:37:03 -04001774 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001775 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001776 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001777 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001778 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001779
1780 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1781 lockend, EXTENT_NORESERVE, NULL,
1782 NULL, GFP_NOFS);
1783 only_release_metadata = false;
1784 }
1785
Miao Xief1de9682014-01-09 10:06:10 +08001786 btrfs_drop_pages(pages, num_pages);
1787
Josef Bacikd0215f32011-01-25 14:57:24 -05001788 cond_resched();
1789
Namjae Jeond0e1d662012-12-11 16:00:21 -08001790 balance_dirty_pages_ratelimited(inode->i_mapping);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001791 if (dirty_pages < (fs_info->nodesize >> PAGE_SHIFT) + 1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001792 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04001793
Xin Zhong914ee292010-12-09 09:30:14 +00001794 pos += copied;
1795 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001796 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001797
Chris Mason8c2383c2007-06-18 09:57:58 -04001798 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001799
Josef Bacik7ee9e442013-06-21 16:37:03 -04001800 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001801 if (only_release_metadata) {
David Sterbaea14b57f2017-06-22 02:19:11 +02001802 btrfs_end_write_no_snapshotting(root);
Nikolay Borisov691fa052017-02-20 13:50:42 +02001803 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001804 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001805 } else {
Qu Wenruobc42bda2017-02-27 15:10:39 +08001806 btrfs_delalloc_release_space(inode, data_reserved,
1807 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001808 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001809 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001810 }
1811
Qu Wenruo364ecf32017-02-27 15:10:38 +08001812 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001813 return num_written ? num_written : ret;
1814}
1815
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001816static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001817{
1818 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001819 struct inode *inode = file_inode(file);
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001820 loff_t pos = iocb->ki_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001821 ssize_t written;
1822 ssize_t written_buffered;
1823 loff_t endbyte;
1824 int err;
1825
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001826 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001827
Al Viro0c949332014-03-22 06:51:37 -04001828 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001829 return written;
1830
1831 pos += written;
Al Viro0ae5e4d2014-03-03 22:09:39 -05001832 written_buffered = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001833 if (written_buffered < 0) {
1834 err = written_buffered;
1835 goto out;
1836 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001837 /*
1838 * Ensure all data is persisted. We want the next direct IO read to be
1839 * able to read what was just written.
1840 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001841 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001842 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001843 if (err)
1844 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001845 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001846 if (err)
1847 goto out;
1848 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001849 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001850 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1851 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001852out:
1853 return written ? written : err;
1854}
1855
Josef Bacik6c760c02012-11-09 10:53:21 -05001856static void update_time_for_write(struct inode *inode)
1857{
1858 struct timespec now;
1859
1860 if (IS_NOCMTIME(inode))
1861 return;
1862
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001863 now = current_time(inode);
Josef Bacik6c760c02012-11-09 10:53:21 -05001864 if (!timespec_equal(&inode->i_mtime, &now))
1865 inode->i_mtime = now;
1866
1867 if (!timespec_equal(&inode->i_ctime, &now))
1868 inode->i_ctime = now;
1869
1870 if (IS_I_VERSION(inode))
1871 inode_inc_iversion(inode);
1872}
1873
Al Virob30ac0f2014-04-03 14:29:04 -04001874static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1875 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001876{
1877 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001878 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001879 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001880 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001881 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001882 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001883 ssize_t num_written = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001884 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
Al Viro3309dd02015-04-09 12:55:47 -04001885 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001886 loff_t pos;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001887 size_t count = iov_iter_count(from);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301888 loff_t oldsize;
1889 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001890
Christoph Hellwig91f99432017-08-29 16:13:20 +02001891 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1892 (iocb->ki_flags & IOCB_NOWAIT))
1893 return -EOPNOTSUPP;
1894
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001895 if (!inode_trylock(inode)) {
1896 if (iocb->ki_flags & IOCB_NOWAIT)
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001897 return -EAGAIN;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001898 inode_lock(inode);
1899 }
1900
1901 err = generic_write_checks(iocb, from);
1902 if (err <= 0) {
1903 inode_unlock(inode);
1904 return err;
1905 }
1906
1907 pos = iocb->ki_pos;
1908 if (iocb->ki_flags & IOCB_NOWAIT) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001909 /*
1910 * We will allocate space in case nodatacow is not set,
1911 * so bail
1912 */
1913 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1914 BTRFS_INODE_PREALLOC)) ||
1915 check_can_nocow(BTRFS_I(inode), pos, &count) <= 0) {
1916 inode_unlock(inode);
1917 return -EAGAIN;
1918 }
Al Viro3309dd02015-04-09 12:55:47 -04001919 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001920
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001921 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001922 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001923 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001924 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001925 goto out;
1926 }
1927
1928 /*
1929 * If BTRFS flips readonly due to some impossible error
1930 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1931 * although we have opened a file as writable, we have
1932 * to stop this write operation to ensure FS consistency.
1933 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001934 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001935 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001936 err = -EROFS;
1937 goto out;
1938 }
1939
Josef Bacik6c760c02012-11-09 10:53:21 -05001940 /*
1941 * We reserve space for updating the inode when we reserve space for the
1942 * extent we are going to write, so we will enospc out there. We don't
1943 * need to start yet another transaction to update the inode as we will
1944 * update the inode when we finish writing whatever data we write.
1945 */
1946 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001947
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001948 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301949 oldsize = i_size_read(inode);
1950 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001951 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001952 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001953 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301954 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001955 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001956 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001957 goto out;
1958 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001959 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301960 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001961 }
1962
Josef Bacikb812ce22012-11-16 13:56:32 -05001963 if (sync)
1964 atomic_inc(&BTRFS_I(inode)->sync_writers);
1965
Al Viro2ba48ce2015-04-09 13:52:01 -04001966 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001967 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001968 } else {
Al Virob30ac0f2014-04-03 14:29:04 -04001969 num_written = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001970 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001971 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301972 if (clean_page)
1973 pagecache_isize_extended(inode, oldsize,
1974 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001975 }
1976
Al Viro59551022016-01-22 15:40:57 -05001977 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001978
Chris Mason5a3f23d2009-03-31 13:27:11 -04001979 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05001980 * We also have to set last_sub_trans to the current log transid,
1981 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001982 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04001983 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001984 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05001985 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001986 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07001987 if (num_written > 0)
1988 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00001989
Josef Bacikb812ce22012-11-16 13:56:32 -05001990 if (sync)
1991 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00001992out:
Chris Mason39279cc2007-06-12 06:35:45 -04001993 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001994 return num_written ? num_written : err;
1995}
1996
Chris Masond3977122009-01-05 21:25:51 -05001997int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001998{
Josef Bacik23b5ec72017-07-24 15:14:25 -04001999 struct btrfs_file_private *private = filp->private_data;
2000
Josef Bacik23b5ec72017-07-24 15:14:25 -04002001 if (private && private->filldir_buf)
2002 kfree(private->filldir_buf);
2003 kfree(private);
2004 filp->private_data = NULL;
2005
Chris Masonf6dc45c2014-08-20 07:15:33 -07002006 /*
2007 * ordered_data_close is set by settattr when we are about to truncate
2008 * a file from a non-zero size to a zero size. This tries to
2009 * flush down new bytes that may have been written if the
2010 * application were using truncate to replace a file in place.
2011 */
2012 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
2013 &BTRFS_I(inode)->runtime_flags))
2014 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002015 return 0;
2016}
2017
Filipe Manana669249e2014-09-02 11:09:58 +01002018static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2019{
2020 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002021 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002022
Liu Bo343e4fc2017-11-15 16:10:28 -07002023 /*
2024 * This is only called in fsync, which would do synchronous writes, so
2025 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2026 * multiple disks using raid profile, a large IO can be split to
2027 * several segments of stripe length (currently 64K).
2028 */
2029 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002030 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002031 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002032 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002033 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002034
2035 return ret;
2036}
2037
Chris Masond352ac62008-09-29 15:18:18 -04002038/*
2039 * fsync call for both files and directories. This logs the inode into
2040 * the tree log instead of forcing full commits whenever possible.
2041 *
2042 * It needs to call filemap_fdatawait so that all ordered extent updates are
2043 * in the metadata btree are up to date for copying to the log.
2044 *
2045 * It drops the inode mutex before doing the tree log commit. This is an
2046 * important optimization for directories because holding the mutex prevents
2047 * new operations on the dir while we write to disk.
2048 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002049int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002050{
Filipe Mananade17e792016-03-30 19:03:13 -04002051 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002052 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002053 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002054 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002055 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002056 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002057 int ret = 0, err;
Thomas Meyer897ca812017-10-07 16:02:21 +02002058 bool full_sync = false;
David Sterba9dcbeed2015-11-09 11:44:45 +01002059 u64 len;
Chris Mason39279cc2007-06-12 06:35:45 -04002060
David Sterba9dcbeed2015-11-09 11:44:45 +01002061 /*
2062 * The range length can be represented by u64, we have to do the typecasts
2063 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
2064 */
2065 len = (u64)end - (u64)start + 1;
liubo1abe9b82011-03-24 11:18:59 +00002066 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002067
Liu Boebb70442017-11-21 14:35:40 -07002068 btrfs_init_log_ctx(&ctx, inode);
2069
Miao Xie90abccf2012-09-13 04:53:47 -06002070 /*
2071 * We write the dirty pages in the range and wait until they complete
2072 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002073 * multi-task, and make the performance up. See
2074 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002075 */
Filipe Manana669249e2014-09-02 11:09:58 +01002076 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002077 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002078 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002079
Al Viro59551022016-01-22 15:40:57 -05002080 inode_lock(inode);
Miao Xie2ecb7922012-09-06 04:04:27 -06002081 atomic_inc(&root->log_batch);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002082 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2083 &BTRFS_I(inode)->runtime_flags);
Filipe Manana669249e2014-09-02 11:09:58 +01002084 /*
2085 * We might have have had more pages made dirty after calling
2086 * start_ordered_ops and before acquiring the inode's i_mutex.
2087 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04002088 if (full_sync) {
Filipe Manana669249e2014-09-02 11:09:58 +01002089 /*
2090 * For a full sync, we need to make sure any ordered operations
2091 * start and finish before we start logging the inode, so that
2092 * all extents are persisted and the respective file extent
2093 * items are in the fs/subvol btree.
2094 */
Filipe Mananab659ef02015-03-31 14:16:52 +01002095 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Manana669249e2014-09-02 11:09:58 +01002096 } else {
2097 /*
2098 * Start any new ordered operations before starting to log the
2099 * inode. We will wait for them to finish in btrfs_sync_log().
2100 *
2101 * Right before acquiring the inode's mutex, we might have new
2102 * writes dirtying pages, which won't immediately start the
2103 * respective ordered operations - that is done through the
2104 * fill_delalloc callbacks invoked from the writepage and
2105 * writepages address space operations. So make sure we start
2106 * all ordered operations before starting to log our inode. Not
2107 * doing this means that while logging the inode, writeback
2108 * could start and invoke writepage/writepages, which would call
2109 * the fill_delalloc callbacks (cow_file_range,
2110 * submit_compressed_extents). These callbacks add first an
2111 * extent map to the modified list of extents and then create
2112 * the respective ordered operation, which means in
2113 * tree-log.c:btrfs_log_inode() we might capture all existing
2114 * ordered operations (with btrfs_get_logged_extents()) before
2115 * the fill_delalloc callback adds its ordered operation, and by
2116 * the time we visit the modified list of extent maps (with
2117 * btrfs_log_changed_extents()), we see and process the extent
2118 * map they created. We then use the extent map to construct a
2119 * file extent item for logging without waiting for the
2120 * respective ordered operation to finish - this file extent
2121 * item points to a disk location that might not have yet been
2122 * written to, containing random data - so after a crash a log
2123 * replay will make our inode have file extent items that point
2124 * to disk locations containing invalid data, as we returned
2125 * success to userspace without waiting for the respective
2126 * ordered operation to finish, because it wasn't captured by
2127 * btrfs_get_logged_extents().
2128 */
2129 ret = start_ordered_ops(inode, start, end);
2130 }
2131 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002132 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002133 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002134 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002135 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002136
Chris Mason39279cc2007-06-12 06:35:45 -04002137 /*
Filipe Manana3a8b36f2015-03-01 20:36:00 +00002138 * If the last transaction that changed this file was before the current
2139 * transaction and we have the full sync flag set in our inode, we can
2140 * bail out now without any syncing.
2141 *
2142 * Note that we can't bail out if the full sync flag isn't set. This is
2143 * because when the full sync flag is set we start all ordered extents
2144 * and wait for them to fully complete - when they complete they update
2145 * the inode's last_trans field through:
2146 *
2147 * btrfs_finish_ordered_io() ->
2148 * btrfs_update_inode_fallback() ->
2149 * btrfs_update_inode() ->
2150 * btrfs_set_inode_last_trans()
2151 *
2152 * So we are sure that last_trans is up to date and can do this check to
2153 * bail out safely. For the fast path, when the full sync flag is not
2154 * set in our inode, we can not do it because we start only our ordered
2155 * extents and don't wait for them to complete (that is when
2156 * btrfs_finish_ordered_io runs), so here at this point their last_trans
2157 * value might be less than or equals to fs_info->last_trans_committed,
2158 * and setting a speculative last_trans for an inode when a buffered
2159 * write is made (such as fs_info->generation + 1 for example) would not
2160 * be reliable since after setting the value and before fsync is called
2161 * any number of transactions can start and commit (transaction kthread
2162 * commits the current transaction periodically), and a transaction
2163 * commit does not start nor waits for ordered extents to complete.
Chris Mason257c62e2009-10-13 13:21:08 -04002164 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002165 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002166 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
Filipe Mananaaffc0ff2016-02-24 07:35:05 +00002167 (full_sync && BTRFS_I(inode)->last_trans <=
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002168 fs_info->last_trans_committed) ||
Filipe Mananaaffc0ff2016-02-24 07:35:05 +00002169 (!btrfs_have_ordered_extents_in_range(inode, start, len) &&
2170 BTRFS_I(inode)->last_trans
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002171 <= fs_info->last_trans_committed)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002172 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002173 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002174 * modified so clear this flag in case it was set for whatever
2175 * reason, it's no longer relevant.
2176 */
2177 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2178 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002179 /*
2180 * An ordered extent might have started before and completed
2181 * already with io errors, in which case the inode was not
2182 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002183 * for any errors that might have happened since we last
2184 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002185 */
Jeff Layton333427a2017-07-06 07:02:31 -04002186 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Al Viro59551022016-01-22 15:40:57 -05002187 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002188 goto out;
2189 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002190
2191 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002192 * We use start here because we will need to wait on the IO to complete
2193 * in btrfs_sync_log, which could require joining a transaction (for
2194 * example checking cross references in the nocow path). If we use join
2195 * here we could get into a situation where we're waiting on IO to
2196 * happen that is blocked on a transaction trying to commit. With start
2197 * we inc the extwriter counter, so we wait for all extwriters to exit
2198 * before we start blocking join'ers. This comment is to keep somebody
2199 * from thinking they are super smart and changing this to
2200 * btrfs_join_transaction *cough*Josef*cough*.
2201 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002202 trans = btrfs_start_transaction(root, 0);
2203 if (IS_ERR(trans)) {
2204 ret = PTR_ERR(trans);
Al Viro59551022016-01-22 15:40:57 -05002205 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002206 goto out;
2207 }
Josef Bacik5039edd2014-01-15 13:34:13 -05002208 trans->sync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002209
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02002210 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002211 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002212 /* Fallthrough and commit/free transaction. */
2213 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002214 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002215
2216 /* we've logged all the items and now have a consistent
2217 * version of the file in the log. It is possible that
2218 * someone will come in and modify the file, but that's
2219 * fine because the log is consistent on disk, and we
2220 * have references to all of the file's extents
2221 *
2222 * It is possible that someone will come in and log the
2223 * file again, but that will end up using the synchronization
2224 * inside btrfs_sync_log to keep things safe.
2225 */
Al Viro59551022016-01-22 15:40:57 -05002226 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002227
Filipe Manana8407f552014-09-05 15:14:39 +01002228 /*
2229 * If any of the ordered extents had an error, just return it to user
2230 * space, so that the application knows some writes didn't succeed and
2231 * can take proper action (retry for e.g.). Blindly committing the
2232 * transaction in this case, would fool userspace that everything was
2233 * successful. And we also want to make sure our log doesn't contain
2234 * file extent items pointing to extents that weren't fully written to -
2235 * just like in the non fast fsync path, where we check for the ordered
2236 * operation's error flag before writing to the log tree and return -EIO
2237 * if any of them had this flag set (btrfs_wait_ordered_range) -
2238 * therefore we need to check for errors in the ordered operations,
2239 * which are indicated by ctx.io_err.
2240 */
2241 if (ctx.io_err) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002242 btrfs_end_transaction(trans);
Filipe Manana8407f552014-09-05 15:14:39 +01002243 ret = ctx.io_err;
2244 goto out;
2245 }
2246
Chris Mason257c62e2009-10-13 13:21:08 -04002247 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002248 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002249 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002250 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002251 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002252 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002253 }
Chris Mason257c62e2009-10-13 13:21:08 -04002254 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002255 if (!full_sync) {
David Sterba9dcbeed2015-11-09 11:44:45 +01002256 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Mananab05fd872014-05-29 23:31:39 +01002257 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002258 btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002259 goto out;
Filipe Mananab05fd872014-05-29 23:31:39 +01002260 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002261 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002262 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002263 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002264 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002265 }
Chris Mason39279cc2007-06-12 06:35:45 -04002266out:
Liu Boebb70442017-11-21 14:35:40 -07002267 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002268 err = file_check_and_advance_wb_err(file);
2269 if (!ret)
2270 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002271 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002272}
2273
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002274static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002275 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002276 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002277 .page_mkwrite = btrfs_page_mkwrite,
2278};
2279
2280static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2281{
Miao Xie058a4572010-05-20 07:21:50 +00002282 struct address_space *mapping = filp->f_mapping;
2283
2284 if (!mapping->a_ops->readpage)
2285 return -ENOEXEC;
2286
Chris Mason9ebefb182007-06-15 13:50:00 -04002287 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002288 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002289
Chris Mason9ebefb182007-06-15 13:50:00 -04002290 return 0;
2291}
2292
Nikolay Borisov35339c22017-02-20 13:50:46 +02002293static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002294 int slot, u64 start, u64 end)
2295{
2296 struct btrfs_file_extent_item *fi;
2297 struct btrfs_key key;
2298
2299 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2300 return 0;
2301
2302 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002303 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002304 key.type != BTRFS_EXTENT_DATA_KEY)
2305 return 0;
2306
2307 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2308
2309 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2310 return 0;
2311
2312 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2313 return 0;
2314
2315 if (key.offset == end)
2316 return 1;
2317 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2318 return 1;
2319 return 0;
2320}
2321
Nikolay Borisova012a742017-02-20 13:50:47 +02002322static int fill_holes(struct btrfs_trans_handle *trans,
2323 struct btrfs_inode *inode,
2324 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002325{
Nikolay Borisova012a742017-02-20 13:50:47 +02002326 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
2327 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002328 struct extent_buffer *leaf;
2329 struct btrfs_file_extent_item *fi;
2330 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002331 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002332 struct btrfs_key key;
2333 int ret;
2334
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002335 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002336 goto out;
2337
Nikolay Borisova012a742017-02-20 13:50:47 +02002338 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002339 key.type = BTRFS_EXTENT_DATA_KEY;
2340 key.offset = offset;
2341
Josef Bacik2aaa6652012-08-29 14:27:18 -04002342 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002343 if (ret <= 0) {
2344 /*
2345 * We should have dropped this offset, so if we find it then
2346 * something has gone horribly wrong.
2347 */
2348 if (ret == 0)
2349 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002350 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002351 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002352
2353 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002354 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002355 u64 num_bytes;
2356
2357 path->slots[0]--;
2358 fi = btrfs_item_ptr(leaf, path->slots[0],
2359 struct btrfs_file_extent_item);
2360 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2361 end - offset;
2362 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2363 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2364 btrfs_set_file_extent_offset(leaf, fi, 0);
2365 btrfs_mark_buffer_dirty(leaf);
2366 goto out;
2367 }
2368
chandan1707e262014-07-01 12:04:28 +05302369 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002370 u64 num_bytes;
2371
Josef Bacik2aaa6652012-08-29 14:27:18 -04002372 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002373 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002374 fi = btrfs_item_ptr(leaf, path->slots[0],
2375 struct btrfs_file_extent_item);
2376 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2377 offset;
2378 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2379 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2380 btrfs_set_file_extent_offset(leaf, fi, 0);
2381 btrfs_mark_buffer_dirty(leaf);
2382 goto out;
2383 }
2384 btrfs_release_path(path);
2385
Nikolay Borisova012a742017-02-20 13:50:47 +02002386 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002387 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002388 if (ret)
2389 return ret;
2390
2391out:
2392 btrfs_release_path(path);
2393
2394 hole_em = alloc_extent_map();
2395 if (!hole_em) {
2396 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002397 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002398 } else {
2399 hole_em->start = offset;
2400 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002401 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002402 hole_em->orig_start = offset;
2403
2404 hole_em->block_start = EXTENT_MAP_HOLE;
2405 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002406 hole_em->orig_block_len = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002408 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2409 hole_em->generation = trans->transid;
2410
2411 do {
2412 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2413 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002414 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002415 write_unlock(&em_tree->lock);
2416 } while (ret == -EEXIST);
2417 free_extent_map(hole_em);
2418 if (ret)
2419 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002420 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002421 }
2422
2423 return 0;
2424}
2425
Qu Wenruod7781542014-05-30 15:16:10 +08002426/*
2427 * Find a hole extent on given inode and change start/len to the end of hole
2428 * extent.(hole/vacuum extent whose em->start <= start &&
2429 * em->start + em->len > start)
2430 * When a hole extent is found, return 1 and modify start/len.
2431 */
2432static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2433{
Filipe Manana609805d2017-05-30 05:29:09 +01002434 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002435 struct extent_map *em;
2436 int ret = 0;
2437
Filipe Manana609805d2017-05-30 05:29:09 +01002438 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2439 round_down(*start, fs_info->sectorsize),
2440 round_up(*len, fs_info->sectorsize), 0);
Dan Carpenter99862772017-04-11 11:57:15 +03002441 if (IS_ERR(em))
2442 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002443
2444 /* Hole or vacuum extent(only exists in no-hole mode) */
2445 if (em->block_start == EXTENT_MAP_HOLE) {
2446 ret = 1;
2447 *len = em->start + em->len > *start + *len ?
2448 0 : *start + *len - em->start - em->len;
2449 *start = em->start + em->len;
2450 }
2451 free_extent_map(em);
2452 return ret;
2453}
2454
Filipe Mananaf27451f2017-10-25 11:55:28 +01002455static int btrfs_punch_hole_lock_range(struct inode *inode,
2456 const u64 lockstart,
2457 const u64 lockend,
2458 struct extent_state **cached_state)
2459{
2460 while (1) {
2461 struct btrfs_ordered_extent *ordered;
2462 int ret;
2463
2464 truncate_pagecache_range(inode, lockstart, lockend);
2465
2466 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2467 cached_state);
2468 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2469
2470 /*
2471 * We need to make sure we have no ordered extents in this range
2472 * and nobody raced in and read a page in this range, if we did
2473 * we need to try again.
2474 */
2475 if ((!ordered ||
2476 (ordered->file_offset + ordered->len <= lockstart ||
2477 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002478 !filemap_range_has_page(inode->i_mapping,
2479 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002480 if (ordered)
2481 btrfs_put_ordered_extent(ordered);
2482 break;
2483 }
2484 if (ordered)
2485 btrfs_put_ordered_extent(ordered);
2486 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2487 lockend, cached_state);
2488 ret = btrfs_wait_ordered_range(inode, lockstart,
2489 lockend - lockstart + 1);
2490 if (ret)
2491 return ret;
2492 }
2493 return 0;
2494}
2495
Josef Bacik2aaa6652012-08-29 14:27:18 -04002496static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2497{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002498 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002499 struct btrfs_root *root = BTRFS_I(inode)->root;
2500 struct extent_state *cached_state = NULL;
2501 struct btrfs_path *path;
2502 struct btrfs_block_rsv *rsv;
2503 struct btrfs_trans_handle *trans;
Qu Wenruod7781542014-05-30 15:16:10 +08002504 u64 lockstart;
2505 u64 lockend;
2506 u64 tail_start;
2507 u64 tail_len;
2508 u64 orig_start = offset;
2509 u64 cur_offset;
Chris Mason5f52a2c2016-12-13 09:14:42 -08002510 u64 min_size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002511 u64 drop_end;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002512 int ret = 0;
2513 int err = 0;
Alexandru Moise6e4d6fa2015-09-22 21:00:07 +00002514 unsigned int rsv_count;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302515 bool same_block;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002516 bool no_holes = btrfs_fs_incompat(fs_info, NO_HOLES);
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002517 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302518 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002519 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002520
Josef Bacik0ef8b722013-10-25 16:13:35 -04002521 ret = btrfs_wait_ordered_range(inode, offset, len);
2522 if (ret)
2523 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002524
Al Viro59551022016-01-22 15:40:57 -05002525 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002526 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002527 ret = find_first_non_hole(inode, &offset, &len);
2528 if (ret < 0)
2529 goto out_only_mutex;
2530 if (ret && !len) {
2531 /* Already in a large hole */
2532 ret = 0;
2533 goto out_only_mutex;
2534 }
2535
Jeff Mahoneyda170662016-06-15 09:22:56 -04002536 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
Qu Wenruod7781542014-05-30 15:16:10 +08002537 lockend = round_down(offset + len,
Jeff Mahoneyda170662016-06-15 09:22:56 -04002538 btrfs_inode_sectorsize(inode)) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002539 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2540 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002541 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302542 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002543 * because we are sure there is no data there.
2544 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002545 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302546 * Only do this if we are in the same block and we aren't doing the
2547 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002548 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002549 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002550 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302551 truncated_block = true;
2552 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002553 } else {
2554 ret = 0;
2555 }
Qu Wenruod7781542014-05-30 15:16:10 +08002556 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002557 }
2558
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302559 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002560 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302561 truncated_block = true;
2562 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002563 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002564 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002565 return ret;
2566 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002567 }
2568
Qu Wenruod7781542014-05-30 15:16:10 +08002569 /* Check the aligned pages after the first unaligned page,
2570 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002571 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002572 * the extra check can be skipped */
2573 if (offset == orig_start) {
2574 /* after truncate page, check hole again */
2575 len = offset + len - lockstart;
2576 offset = lockstart;
2577 ret = find_first_non_hole(inode, &offset, &len);
2578 if (ret < 0)
2579 goto out_only_mutex;
2580 if (ret && !len) {
2581 ret = 0;
2582 goto out_only_mutex;
2583 }
2584 lockstart = offset;
2585 }
2586
2587 /* Check the tail unaligned part is in a hole */
2588 tail_start = lockend + 1;
2589 tail_len = offset + len - tail_start;
2590 if (tail_len) {
2591 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2592 if (unlikely(ret < 0))
2593 goto out_only_mutex;
2594 if (!ret) {
2595 /* zero the front end of the last page */
2596 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302597 truncated_block = true;
2598 ret = btrfs_truncate_block(inode,
2599 tail_start + tail_len,
2600 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002601 if (ret)
2602 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002603 }
Miao Xie00612802012-12-05 10:54:12 +00002604 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002605 }
2606
2607 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002608 ret = 0;
2609 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002610 }
2611
Filipe Mananaf27451f2017-10-25 11:55:28 +01002612 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2613 &cached_state);
2614 if (ret) {
2615 inode_unlock(inode);
2616 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002617 }
2618
2619 path = btrfs_alloc_path();
2620 if (!path) {
2621 ret = -ENOMEM;
2622 goto out;
2623 }
2624
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002625 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002626 if (!rsv) {
2627 ret = -ENOMEM;
2628 goto out_free;
2629 }
Chris Mason5f52a2c2016-12-13 09:14:42 -08002630 rsv->size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002631 rsv->failfast = 1;
2632
2633 /*
2634 * 1 - update the inode
2635 * 1 - removing the extents in the range
Josef Bacik16e75492013-10-22 12:18:51 -04002636 * 1 - adding the hole extent if no_holes isn't set
Josef Bacik2aaa6652012-08-29 14:27:18 -04002637 */
Josef Bacik16e75492013-10-22 12:18:51 -04002638 rsv_count = no_holes ? 2 : 3;
2639 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002640 if (IS_ERR(trans)) {
2641 err = PTR_ERR(trans);
2642 goto out_free;
2643 }
2644
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002645 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002646 min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002647 BUG_ON(ret);
2648 trans->block_rsv = rsv;
2649
Qu Wenruod7781542014-05-30 15:16:10 +08002650 cur_offset = lockstart;
2651 len = lockend - cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002652 while (cur_offset < lockend) {
2653 ret = __btrfs_drop_extents(trans, root, inode, path,
2654 cur_offset, lockend + 1,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002655 &drop_end, 1, 0, 0, NULL);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002656 if (ret != -ENOSPC)
2657 break;
2658
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002659 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002660
Josef Bacik62fe51c2016-11-16 09:13:39 -05002661 if (cur_offset < drop_end && cur_offset < ino_size) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002662 ret = fill_holes(trans, BTRFS_I(inode), path,
2663 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002664 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002665 /*
2666 * If we failed then we didn't insert our hole
2667 * entries for the area we dropped, so now the
2668 * fs is corrupted, so we must abort the
2669 * transaction.
2670 */
2671 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002672 err = ret;
2673 break;
2674 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002675 }
2676
2677 cur_offset = drop_end;
2678
2679 ret = btrfs_update_inode(trans, root, inode);
2680 if (ret) {
2681 err = ret;
2682 break;
2683 }
2684
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002685 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002686 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002687
Josef Bacik16e75492013-10-22 12:18:51 -04002688 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002689 if (IS_ERR(trans)) {
2690 ret = PTR_ERR(trans);
2691 trans = NULL;
2692 break;
2693 }
2694
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002695 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002696 rsv, min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002697 BUG_ON(ret); /* shouldn't happen */
2698 trans->block_rsv = rsv;
Qu Wenruod7781542014-05-30 15:16:10 +08002699
2700 ret = find_first_non_hole(inode, &cur_offset, &len);
2701 if (unlikely(ret < 0))
2702 break;
2703 if (ret && !len) {
2704 ret = 0;
2705 break;
2706 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002707 }
2708
2709 if (ret) {
2710 err = ret;
2711 goto out_trans;
2712 }
2713
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002714 trans->block_rsv = &fs_info->trans_block_rsv;
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002715 /*
Filipe Manana2959a322015-11-02 12:32:44 +00002716 * If we are using the NO_HOLES feature we might have had already an
2717 * hole that overlaps a part of the region [lockstart, lockend] and
2718 * ends at (or beyond) lockend. Since we have no file extent items to
2719 * represent holes, drop_end can be less than lockend and so we must
2720 * make sure we have an extent map representing the existing hole (the
2721 * call to __btrfs_drop_extents() might have dropped the existing extent
2722 * map representing the existing hole), otherwise the fast fsync path
2723 * will not record the existence of the hole region
2724 * [existing_hole_start, lockend].
2725 */
2726 if (drop_end <= lockend)
2727 drop_end = lockend + 1;
2728 /*
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002729 * Don't insert file hole extent item if it's for a range beyond eof
2730 * (because it's useless) or if it represents a 0 bytes range (when
2731 * cur_offset == drop_end).
2732 */
2733 if (cur_offset < ino_size && cur_offset < drop_end) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002734 ret = fill_holes(trans, BTRFS_I(inode), path,
2735 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002736 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002737 /* Same comment as above. */
2738 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002739 err = ret;
2740 goto out_trans;
2741 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002742 }
2743
2744out_trans:
2745 if (!trans)
2746 goto out_free;
2747
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002748 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002749 inode->i_mtime = inode->i_ctime = current_time(inode);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002750
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002751 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002752 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002753 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002754 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002755 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002756out_free:
2757 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002758 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002759out:
2760 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002761 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002762out_only_mutex:
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302763 if (!updated_inode && truncated_block && !ret && !err) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002764 /*
2765 * If we only end up zeroing part of a page, we still need to
2766 * update the inode item, so that all the time fields are
2767 * updated as well as the necessary btrfs inode in memory fields
2768 * for detecting, at fsync time, if the inode isn't yet in the
2769 * log tree or it's there but not up to date.
2770 */
2771 trans = btrfs_start_transaction(root, 1);
2772 if (IS_ERR(trans)) {
2773 err = PTR_ERR(trans);
2774 } else {
2775 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002776 ret = btrfs_end_transaction(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002777 }
2778 }
Al Viro59551022016-01-22 15:40:57 -05002779 inode_unlock(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002780 if (ret && !err)
2781 err = ret;
2782 return err;
2783}
2784
Qu Wenruo14524a82015-09-08 17:22:44 +08002785/* Helper structure to record which range is already reserved */
2786struct falloc_range {
2787 struct list_head list;
2788 u64 start;
2789 u64 len;
2790};
2791
2792/*
2793 * Helper function to add falloc range
2794 *
2795 * Caller should have locked the larger range of extent containing
2796 * [start, len)
2797 */
2798static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2799{
2800 struct falloc_range *prev = NULL;
2801 struct falloc_range *range = NULL;
2802
2803 if (list_empty(head))
2804 goto insert;
2805
2806 /*
2807 * As fallocate iterate by bytenr order, we only need to check
2808 * the last range.
2809 */
2810 prev = list_entry(head->prev, struct falloc_range, list);
2811 if (prev->start + prev->len == start) {
2812 prev->len += len;
2813 return 0;
2814 }
2815insert:
David Sterba32fc9322016-02-11 14:25:38 +01002816 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002817 if (!range)
2818 return -ENOMEM;
2819 range->start = start;
2820 range->len = len;
2821 list_add_tail(&range->list, head);
2822 return 0;
2823}
2824
Filipe Mananaf27451f2017-10-25 11:55:28 +01002825static int btrfs_fallocate_update_isize(struct inode *inode,
2826 const u64 end,
2827 const int mode)
2828{
2829 struct btrfs_trans_handle *trans;
2830 struct btrfs_root *root = BTRFS_I(inode)->root;
2831 int ret;
2832 int ret2;
2833
2834 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2835 return 0;
2836
2837 trans = btrfs_start_transaction(root, 1);
2838 if (IS_ERR(trans))
2839 return PTR_ERR(trans);
2840
2841 inode->i_ctime = current_time(inode);
2842 i_size_write(inode, end);
2843 btrfs_ordered_update_i_size(inode, end, NULL);
2844 ret = btrfs_update_inode(trans, root, inode);
2845 ret2 = btrfs_end_transaction(trans);
2846
2847 return ret ? ret : ret2;
2848}
2849
Filipe Manana81fdf632018-01-18 11:34:31 +00002850enum {
2851 RANGE_BOUNDARY_WRITTEN_EXTENT = 0,
2852 RANGE_BOUNDARY_PREALLOC_EXTENT = 1,
2853 RANGE_BOUNDARY_HOLE = 2,
2854};
2855
Filipe Mananaf27451f2017-10-25 11:55:28 +01002856static int btrfs_zero_range_check_range_boundary(struct inode *inode,
2857 u64 offset)
2858{
2859 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2860 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00002861 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002862
2863 offset = round_down(offset, sectorsize);
2864 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize, 0);
2865 if (IS_ERR(em))
2866 return PTR_ERR(em);
2867
2868 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00002869 ret = RANGE_BOUNDARY_HOLE;
2870 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2871 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
2872 else
2873 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002874
2875 free_extent_map(em);
2876 return ret;
2877}
2878
2879static int btrfs_zero_range(struct inode *inode,
2880 loff_t offset,
2881 loff_t len,
2882 const int mode)
2883{
2884 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2885 struct extent_map *em;
2886 struct extent_changeset *data_reserved = NULL;
2887 int ret;
2888 u64 alloc_hint = 0;
2889 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2890 u64 alloc_start = round_down(offset, sectorsize);
2891 u64 alloc_end = round_up(offset + len, sectorsize);
2892 u64 bytes_to_reserve = 0;
2893 bool space_reserved = false;
2894
2895 inode_dio_wait(inode);
2896
2897 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2898 alloc_start, alloc_end - alloc_start, 0);
2899 if (IS_ERR(em)) {
2900 ret = PTR_ERR(em);
2901 goto out;
2902 }
2903
2904 /*
2905 * Avoid hole punching and extent allocation for some cases. More cases
2906 * could be considered, but these are unlikely common and we keep things
2907 * as simple as possible for now. Also, intentionally, if the target
2908 * range contains one or more prealloc extents together with regular
2909 * extents and holes, we drop all the existing extents and allocate a
2910 * new prealloc extent, so that we get a larger contiguous disk extent.
2911 */
2912 if (em->start <= alloc_start &&
2913 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2914 const u64 em_end = em->start + em->len;
2915
2916 if (em_end >= offset + len) {
2917 /*
2918 * The whole range is already a prealloc extent,
2919 * do nothing except updating the inode's i_size if
2920 * needed.
2921 */
2922 free_extent_map(em);
2923 ret = btrfs_fallocate_update_isize(inode, offset + len,
2924 mode);
2925 goto out;
2926 }
2927 /*
2928 * Part of the range is already a prealloc extent, so operate
2929 * only on the remaining part of the range.
2930 */
2931 alloc_start = em_end;
2932 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
2933 len = offset + len - alloc_start;
2934 offset = alloc_start;
2935 alloc_hint = em->block_start + em->len;
2936 }
2937 free_extent_map(em);
2938
2939 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
2940 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
2941 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2942 alloc_start, sectorsize, 0);
2943 if (IS_ERR(em)) {
2944 ret = PTR_ERR(em);
2945 goto out;
2946 }
2947
2948 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2949 free_extent_map(em);
2950 ret = btrfs_fallocate_update_isize(inode, offset + len,
2951 mode);
2952 goto out;
2953 }
2954 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
2955 free_extent_map(em);
2956 ret = btrfs_truncate_block(inode, offset, len, 0);
2957 if (!ret)
2958 ret = btrfs_fallocate_update_isize(inode,
2959 offset + len,
2960 mode);
2961 return ret;
2962 }
2963 free_extent_map(em);
2964 alloc_start = round_down(offset, sectorsize);
2965 alloc_end = alloc_start + sectorsize;
2966 goto reserve_space;
2967 }
2968
2969 alloc_start = round_up(offset, sectorsize);
2970 alloc_end = round_down(offset + len, sectorsize);
2971
2972 /*
2973 * For unaligned ranges, check the pages at the boundaries, they might
2974 * map to an extent, in which case we need to partially zero them, or
2975 * they might map to a hole, in which case we need our allocation range
2976 * to cover them.
2977 */
2978 if (!IS_ALIGNED(offset, sectorsize)) {
2979 ret = btrfs_zero_range_check_range_boundary(inode, offset);
2980 if (ret < 0)
2981 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002982 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002983 alloc_start = round_down(offset, sectorsize);
2984 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002985 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002986 ret = btrfs_truncate_block(inode, offset, 0, 0);
2987 if (ret)
2988 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002989 } else {
2990 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002991 }
2992 }
2993
2994 if (!IS_ALIGNED(offset + len, sectorsize)) {
2995 ret = btrfs_zero_range_check_range_boundary(inode,
2996 offset + len);
2997 if (ret < 0)
2998 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002999 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003000 alloc_end = round_up(offset + len, sectorsize);
3001 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00003002 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003003 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3004 if (ret)
3005 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00003006 } else {
3007 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01003008 }
3009 }
3010
3011reserve_space:
3012 if (alloc_start < alloc_end) {
3013 struct extent_state *cached_state = NULL;
3014 const u64 lockstart = alloc_start;
3015 const u64 lockend = alloc_end - 1;
3016
3017 bytes_to_reserve = alloc_end - alloc_start;
3018 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3019 bytes_to_reserve);
3020 if (ret < 0)
3021 goto out;
3022 space_reserved = true;
3023 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3024 alloc_start, bytes_to_reserve);
3025 if (ret)
3026 goto out;
3027 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3028 &cached_state);
3029 if (ret)
3030 goto out;
3031 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3032 alloc_end - alloc_start,
3033 i_blocksize(inode),
3034 offset + len, &alloc_hint);
3035 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3036 lockend, &cached_state);
3037 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003038 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003039 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003040 goto out;
3041 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003042 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003043 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003044 out:
3045 if (ret && space_reserved)
3046 btrfs_free_reserved_data_space(inode, data_reserved,
3047 alloc_start, bytes_to_reserve);
3048 extent_changeset_free(data_reserved);
3049
3050 return ret;
3051}
3052
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003053static long btrfs_fallocate(struct file *file, int mode,
3054 loff_t offset, loff_t len)
3055{
Al Viro496ad9a2013-01-23 17:07:38 -05003056 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003057 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003058 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003059 struct falloc_range *range;
3060 struct falloc_range *tmp;
3061 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003062 u64 cur_offset;
3063 u64 last_byte;
3064 u64 alloc_start;
3065 u64 alloc_end;
3066 u64 alloc_hint = 0;
3067 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003068 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003069 struct extent_map *em;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003070 int blocksize = btrfs_inode_sectorsize(inode);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003071 int ret;
3072
Miao Xie797f4272012-11-28 10:28:07 +00003073 alloc_start = round_down(offset, blocksize);
3074 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003075 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003076
Josef Bacik2aaa6652012-08-29 14:27:18 -04003077 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003078 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3079 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003080 return -EOPNOTSUPP;
3081
Josef Bacik2aaa6652012-08-29 14:27:18 -04003082 if (mode & FALLOC_FL_PUNCH_HOLE)
3083 return btrfs_punch_hole(inode, offset, len);
3084
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003085 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003086 * Only trigger disk allocation, don't trigger qgroup reserve
3087 *
3088 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003089 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003090 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3091 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3092 alloc_end - alloc_start);
3093 if (ret < 0)
3094 return ret;
3095 }
Chris Masond98456f2012-01-31 20:27:41 -05003096
Al Viro59551022016-01-22 15:40:57 -05003097 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003098
3099 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3100 ret = inode_newsize_ok(inode, offset + len);
3101 if (ret)
3102 goto out;
3103 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003104
Qu Wenruo14524a82015-09-08 17:22:44 +08003105 /*
3106 * TODO: Move these two operations after we have checked
3107 * accurate reserved space, or fallocate can still fail but
3108 * with page truncated or size expanded.
3109 *
3110 * But that's a minor problem and won't do much harm BTW.
3111 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003112 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003113 ret = btrfs_cont_expand(inode, i_size_read(inode),
3114 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003115 if (ret)
3116 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003117 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003118 /*
3119 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303120 * need to zero out the end of the block if i_size lands in the
3121 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003122 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303123 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003124 if (ret)
3125 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003126 }
3127
Josef Bacika71754f2013-06-17 17:14:39 -04003128 /*
3129 * wait for ordered IO before we have any locks. We'll loop again
3130 * below with the locks held.
3131 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003132 ret = btrfs_wait_ordered_range(inode, alloc_start,
3133 alloc_end - alloc_start);
3134 if (ret)
3135 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003136
Filipe Mananaf27451f2017-10-25 11:55:28 +01003137 if (mode & FALLOC_FL_ZERO_RANGE) {
3138 ret = btrfs_zero_range(inode, offset, len, mode);
3139 inode_unlock(inode);
3140 return ret;
3141 }
3142
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003143 locked_end = alloc_end - 1;
3144 while (1) {
3145 struct btrfs_ordered_extent *ordered;
3146
3147 /* the extent lock is ordered inside the running
3148 * transaction
3149 */
3150 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003151 locked_end, &cached_state);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003152 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3153
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003154 if (ordered &&
3155 ordered->file_offset + ordered->len > alloc_start &&
3156 ordered->file_offset < alloc_end) {
3157 btrfs_put_ordered_extent(ordered);
3158 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3159 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003160 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003161 /*
3162 * we can't wait on the range with the transaction
3163 * running or with the extent lock held
3164 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003165 ret = btrfs_wait_ordered_range(inode, alloc_start,
3166 alloc_end - alloc_start);
3167 if (ret)
3168 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003169 } else {
3170 if (ordered)
3171 btrfs_put_ordered_extent(ordered);
3172 break;
3173 }
3174 }
3175
Qu Wenruo14524a82015-09-08 17:22:44 +08003176 /* First, check if we exceed the qgroup limit */
3177 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003178 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02003179 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003180 alloc_end - cur_offset, 0);
Dan Carpenter99862772017-04-11 11:57:15 +03003181 if (IS_ERR(em)) {
3182 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003183 break;
3184 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003185 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003186 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003187 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003188 if (em->block_start == EXTENT_MAP_HOLE ||
3189 (cur_offset >= inode->i_size &&
3190 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003191 ret = add_falloc_range(&reserve_list, cur_offset,
3192 last_byte - cur_offset);
3193 if (ret < 0) {
3194 free_extent_map(em);
3195 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003196 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003197 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3198 cur_offset, last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003199 if (ret < 0) {
3200 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003201 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003202 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003203 } else {
3204 /*
3205 * Do not need to reserve unwritten extent for this
3206 * range, free reserved data space first, otherwise
3207 * it'll result in false ENOSPC error.
3208 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003209 btrfs_free_reserved_data_space(inode, data_reserved,
3210 cur_offset, last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003211 }
3212 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003213 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003214 }
3215
3216 /*
3217 * If ret is still 0, means we're OK to fallocate.
3218 * Or just cleanup the list and exit.
3219 */
3220 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3221 if (!ret)
3222 ret = btrfs_prealloc_file_range(inode, mode,
3223 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003224 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003225 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003226 else
Qu Wenruobc42bda2017-02-27 15:10:39 +08003227 btrfs_free_reserved_data_space(inode,
3228 data_reserved, range->start,
3229 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003230 list_del(&range->list);
3231 kfree(range);
3232 }
3233 if (ret < 0)
3234 goto out_unlock;
3235
Filipe Mananaf27451f2017-10-25 11:55:28 +01003236 /*
3237 * We didn't need to allocate any more space, but we still extended the
3238 * size of the file so we need to update i_size and the inode item.
3239 */
3240 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003241out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003242 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003243 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003244out:
Al Viro59551022016-01-22 15:40:57 -05003245 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003246 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003247 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Qu Wenruobc42bda2017-02-27 15:10:39 +08003248 btrfs_free_reserved_data_space(inode, data_reserved,
3249 alloc_start, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003250 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003251 return ret;
3252}
3253
Andrew Morton965c8e52012-12-17 15:59:39 -08003254static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003255{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003256 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003257 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003258 struct extent_state *cached_state = NULL;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003259 u64 lockstart;
3260 u64 lockend;
3261 u64 start;
3262 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003263 int ret = 0;
3264
Josef Bacikb2675152011-07-18 13:21:36 -04003265 if (inode->i_size == 0)
3266 return -ENXIO;
3267
Liu Bo4d1a40c2014-09-16 17:49:30 +08003268 /*
3269 * *offset can be negative, in this case we start finding DATA/HOLE from
3270 * the very start of the file.
3271 */
3272 start = max_t(loff_t, 0, *offset);
3273
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003274 lockstart = round_down(start, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003275 lockend = round_up(i_size_read(inode),
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003276 fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003277 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003278 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003279 lockend--;
3280 len = lockend - lockstart + 1;
3281
David Sterbaff13db42015-12-03 14:30:40 +01003282 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003283 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003284
Josef Bacik7f4ca372013-10-18 11:44:46 -04003285 while (start < inode->i_size) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02003286 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0,
3287 start, len, 0);
Josef Bacikb2675152011-07-18 13:21:36 -04003288 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003289 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003290 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003291 break;
3292 }
3293
Josef Bacik7f4ca372013-10-18 11:44:46 -04003294 if (whence == SEEK_HOLE &&
3295 (em->block_start == EXTENT_MAP_HOLE ||
3296 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3297 break;
3298 else if (whence == SEEK_DATA &&
3299 (em->block_start != EXTENT_MAP_HOLE &&
3300 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3301 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003302
3303 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003304 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003305 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003306 cond_resched();
3307 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003308 free_extent_map(em);
3309 if (!ret) {
3310 if (whence == SEEK_DATA && start >= inode->i_size)
3311 ret = -ENXIO;
3312 else
3313 *offset = min_t(loff_t, start, inode->i_size);
3314 }
Josef Bacikb2675152011-07-18 13:21:36 -04003315 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003316 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003317 return ret;
3318}
3319
Andrew Morton965c8e52012-12-17 15:59:39 -08003320static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003321{
3322 struct inode *inode = file->f_mapping->host;
3323 int ret;
3324
Al Viro59551022016-01-22 15:40:57 -05003325 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08003326 switch (whence) {
Josef Bacikb2675152011-07-18 13:21:36 -04003327 case SEEK_END:
3328 case SEEK_CUR:
Andrew Morton965c8e52012-12-17 15:59:39 -08003329 offset = generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003330 goto out;
3331 case SEEK_DATA:
3332 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04003333 if (offset >= i_size_read(inode)) {
Al Viro59551022016-01-22 15:40:57 -05003334 inode_unlock(inode);
Jeff Liu48802c82011-09-18 10:34:02 -04003335 return -ENXIO;
3336 }
3337
Andrew Morton965c8e52012-12-17 15:59:39 -08003338 ret = find_desired_extent(inode, &offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003339 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05003340 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003341 return ret;
3342 }
3343 }
3344
Jie Liu46a1c2c2013-06-25 12:02:13 +08003345 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003346out:
Al Viro59551022016-01-22 15:40:57 -05003347 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003348 return offset;
3349}
3350
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003351static int btrfs_file_open(struct inode *inode, struct file *filp)
3352{
Christoph Hellwig91f99432017-08-29 16:13:20 +02003353 filp->f_mode |= FMODE_NOWAIT;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003354 return generic_file_open(inode, filp);
3355}
3356
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003357const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003358 .llseek = btrfs_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -04003359 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003360 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003361 .write_iter = btrfs_file_write_iter,
Chris Mason9ebefb182007-06-15 13:50:00 -04003362 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003363 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003364 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003365 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003366 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003367 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003368#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003369 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003370#endif
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003371 .clone_file_range = btrfs_clone_file_range,
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003372 .dedupe_file_range = btrfs_dedupe_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003373};
Miao Xie9247f312012-11-26 09:24:43 +00003374
David Sterbae67c7182018-02-19 17:24:18 +01003375void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003376{
Kinglong Mee5598e902016-01-29 21:36:35 +08003377 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003378}
3379
Liu Bof5c29bd2017-11-02 17:21:50 -06003380int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003381{
3382 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3383 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003384 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003385 NULL);
3386 if (!btrfs_inode_defrag_cachep)
3387 return -ENOMEM;
3388
3389 return 0;
3390}
Filipe Manana728404d2014-10-10 09:43:11 +01003391
3392int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3393{
3394 int ret;
3395
3396 /*
3397 * So with compression we will find and lock a dirty page and clear the
3398 * first one as dirty, setup an async extent, and immediately return
3399 * with the entire range locked but with nobody actually marked with
3400 * writeback. So we can't just filemap_write_and_wait_range() and
3401 * expect it to work since it will just kick off a thread to do the
3402 * actual work. So we need to call filemap_fdatawrite_range _again_
3403 * since it will wait on the page lock, which won't be unlocked until
3404 * after the pages have been marked as writeback and so we're good to go
3405 * from there. We have to do this otherwise we'll miss the ordered
3406 * extents and that results in badness. Please Josef, do not think you
3407 * know better and pull this out at some point in the future, it is
3408 * right and you are wrong.
3409 */
3410 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3411 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3412 &BTRFS_I(inode)->runtime_flags))
3413 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3414
3415 return ret;
3416}