blob: f660ba1e5e58ef30f5c72555d7408b686e507e0e [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason39279cc2007-06-12 06:35:45 -04006#include <linux/fs.h>
7#include <linux/pagemap.h>
8#include <linux/highmem.h>
9#include <linux/time.h>
10#include <linux/init.h>
11#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040012#include <linux/backing-dev.h>
13#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010014#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040015#include <linux/swap.h>
16#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040017#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000019#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080020#include <linux/uio.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050021#include <linux/iversion.h>
Chris Mason39279cc2007-06-12 06:35:45 -040022#include "ctree.h"
23#include "disk-io.h"
24#include "transaction.h"
25#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040026#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040027#include "tree-log.h"
28#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040029#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070030#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080031#include "compression.h"
Chris Mason39279cc2007-06-12 06:35:45 -040032
Miao Xie9247f312012-11-26 09:24:43 +000033static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040034/*
35 * when auto defrag is enabled we
36 * queue up these defrag structs to remember which
37 * inodes need defragging passes
38 */
39struct inode_defrag {
40 struct rb_node rb_node;
41 /* objectid */
42 u64 ino;
43 /*
44 * transid where the defrag was added, we search for
45 * extents newer than this
46 */
47 u64 transid;
48
49 /* root objectid */
50 u64 root;
51
52 /* last offset we were able to defrag */
53 u64 last_offset;
54
55 /* if we've wrapped around back to zero once already */
56 int cycled;
57};
58
Miao Xie762f2262012-05-24 18:58:27 +080059static int __compare_inode_defrag(struct inode_defrag *defrag1,
60 struct inode_defrag *defrag2)
61{
62 if (defrag1->root > defrag2->root)
63 return 1;
64 else if (defrag1->root < defrag2->root)
65 return -1;
66 else if (defrag1->ino > defrag2->ino)
67 return 1;
68 else if (defrag1->ino < defrag2->ino)
69 return -1;
70 else
71 return 0;
72}
73
Chris Mason4cb53002011-05-24 15:35:30 -040074/* pop a record for an inode into the defrag tree. The lock
75 * must be held already
76 *
77 * If you're inserting a record for an older transid than an
78 * existing record, the transid already in the tree is lowered
79 *
80 * If an existing record is found the defrag item you
81 * pass in is freed
82 */
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020083static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040084 struct inode_defrag *defrag)
85{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +020086 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -040087 struct inode_defrag *entry;
88 struct rb_node **p;
89 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080090 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -040091
Jeff Mahoney0b246af2016-06-22 18:54:23 -040092 p = &fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -040093 while (*p) {
94 parent = *p;
95 entry = rb_entry(parent, struct inode_defrag, rb_node);
96
Miao Xie762f2262012-05-24 18:58:27 +080097 ret = __compare_inode_defrag(defrag, entry);
98 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -040099 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800100 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400101 p = &parent->rb_right;
102 else {
103 /* if we're reinserting an entry for
104 * an old defrag run, make sure to
105 * lower the transid of our existing record
106 */
107 if (defrag->transid < entry->transid)
108 entry->transid = defrag->transid;
109 if (defrag->last_offset > entry->last_offset)
110 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000111 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400112 }
113 }
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200114 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400115 rb_link_node(&defrag->rb_node, parent, p);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400116 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000117 return 0;
118}
Chris Mason4cb53002011-05-24 15:35:30 -0400119
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400120static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
Miao Xie8ddc4732012-11-26 09:25:38 +0000121{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400122 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000123 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400124
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400125 if (btrfs_fs_closing(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000126 return 0;
127
128 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400129}
130
131/*
132 * insert a defrag record for this inode if auto defrag is
133 * enabled
134 */
135int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200136 struct btrfs_inode *inode)
Chris Mason4cb53002011-05-24 15:35:30 -0400137{
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200138 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
139 struct btrfs_root *root = inode->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400140 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400141 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000142 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400143
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400144 if (!__need_auto_defrag(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400145 return 0;
146
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200147 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400148 return 0;
149
150 if (trans)
151 transid = trans->transid;
152 else
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200153 transid = inode->root->last_trans;
Chris Mason4cb53002011-05-24 15:35:30 -0400154
Miao Xie9247f312012-11-26 09:24:43 +0000155 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400156 if (!defrag)
157 return -ENOMEM;
158
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200159 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400160 defrag->transid = transid;
161 defrag->root = root->root_key.objectid;
162
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400163 spin_lock(&fs_info->defrag_inodes_lock);
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200164 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
Miao Xie8ddc4732012-11-26 09:25:38 +0000165 /*
166 * If we set IN_DEFRAG flag and evict the inode from memory,
167 * and then re-read this inode, this new inode doesn't have
168 * IN_DEFRAG flag. At the case, we may find the existed defrag.
169 */
170 ret = __btrfs_add_inode_defrag(inode, defrag);
171 if (ret)
172 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
173 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000174 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000175 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400176 spin_unlock(&fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000177 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400178}
179
180/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000181 * Requeue the defrag object. If there is a defrag object that points to
182 * the same inode in the tree, we will merge them together (by
183 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400184 */
Nikolay Borisov46e59792017-02-20 13:50:44 +0200185static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000186 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000187{
Nikolay Borisov46e59792017-02-20 13:50:44 +0200188 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Miao Xie8ddc4732012-11-26 09:25:38 +0000189 int ret;
190
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400191 if (!__need_auto_defrag(fs_info))
Miao Xie8ddc4732012-11-26 09:25:38 +0000192 goto out;
193
194 /*
195 * Here we don't check the IN_DEFRAG flag, because we need merge
196 * them together.
197 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400198 spin_lock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000199 ret = __btrfs_add_inode_defrag(inode, defrag);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400200 spin_unlock(&fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000201 if (ret)
202 goto out;
203 return;
204out:
205 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
206}
207
208/*
Miao Xie26176e72012-11-26 09:26:20 +0000209 * pick the defragable inode that we want, if it doesn't exist, we will get
210 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400211 */
Miao Xie26176e72012-11-26 09:26:20 +0000212static struct inode_defrag *
213btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400214{
215 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800216 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400217 struct rb_node *p;
218 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800219 int ret;
220
221 tmp.ino = ino;
222 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400223
Miao Xie26176e72012-11-26 09:26:20 +0000224 spin_lock(&fs_info->defrag_inodes_lock);
225 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400226 while (p) {
227 parent = p;
228 entry = rb_entry(parent, struct inode_defrag, rb_node);
229
Miao Xie762f2262012-05-24 18:58:27 +0800230 ret = __compare_inode_defrag(&tmp, entry);
231 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400232 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800233 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400234 p = parent->rb_right;
235 else
Miao Xie26176e72012-11-26 09:26:20 +0000236 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400237 }
238
Miao Xie26176e72012-11-26 09:26:20 +0000239 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
240 parent = rb_next(parent);
241 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400242 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000243 else
244 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400245 }
Miao Xie26176e72012-11-26 09:26:20 +0000246out:
247 if (entry)
248 rb_erase(parent, &fs_info->defrag_inodes);
249 spin_unlock(&fs_info->defrag_inodes_lock);
250 return entry;
251}
252
253void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
254{
255 struct inode_defrag *defrag;
256 struct rb_node *node;
257
258 spin_lock(&fs_info->defrag_inodes_lock);
259 node = rb_first(&fs_info->defrag_inodes);
260 while (node) {
261 rb_erase(node, &fs_info->defrag_inodes);
262 defrag = rb_entry(node, struct inode_defrag, rb_node);
263 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
264
David Sterba351810c2015-01-08 15:20:54 +0100265 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000266
267 node = rb_first(&fs_info->defrag_inodes);
268 }
269 spin_unlock(&fs_info->defrag_inodes_lock);
270}
271
272#define BTRFS_DEFRAG_BATCH 1024
273
274static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
275 struct inode_defrag *defrag)
276{
277 struct btrfs_root *inode_root;
278 struct inode *inode;
279 struct btrfs_key key;
280 struct btrfs_ioctl_defrag_range_args range;
281 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000282 int index;
283 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000284
285 /* get the inode */
286 key.objectid = defrag->root;
David Sterba962a2982014-06-04 18:41:45 +0200287 key.type = BTRFS_ROOT_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000288 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +0000289
290 index = srcu_read_lock(&fs_info->subvol_srcu);
291
Miao Xie26176e72012-11-26 09:26:20 +0000292 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
293 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000294 ret = PTR_ERR(inode_root);
295 goto cleanup;
296 }
Miao Xie26176e72012-11-26 09:26:20 +0000297
298 key.objectid = defrag->ino;
David Sterba962a2982014-06-04 18:41:45 +0200299 key.type = BTRFS_INODE_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000300 key.offset = 0;
301 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
302 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000303 ret = PTR_ERR(inode);
304 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000305 }
Liu Bo6f1c3602013-01-29 03:22:10 +0000306 srcu_read_unlock(&fs_info->subvol_srcu, index);
Miao Xie26176e72012-11-26 09:26:20 +0000307
308 /* do a chunk of defrag */
309 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
310 memset(&range, 0, sizeof(range));
311 range.len = (u64)-1;
312 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000313
314 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000315 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
316 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000317 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000318 /*
319 * if we filled the whole defrag batch, there
320 * must be more work to do. Queue this defrag
321 * again
322 */
323 if (num_defrag == BTRFS_DEFRAG_BATCH) {
324 defrag->last_offset = range.start;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200325 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000326 } else if (defrag->last_offset && !defrag->cycled) {
327 /*
328 * we didn't fill our defrag batch, but
329 * we didn't start at zero. Make sure we loop
330 * around to the start of the file.
331 */
332 defrag->last_offset = 0;
333 defrag->cycled = 1;
Nikolay Borisov46e59792017-02-20 13:50:44 +0200334 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
Miao Xie26176e72012-11-26 09:26:20 +0000335 } else {
336 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
337 }
338
339 iput(inode);
340 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000341cleanup:
342 srcu_read_unlock(&fs_info->subvol_srcu, index);
343 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
344 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400345}
346
347/*
348 * run through the list of inodes in the FS that need
349 * defragging
350 */
351int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
352{
353 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400354 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800355 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400356
357 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530358 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700359 /* Pause the auto defragger. */
360 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
361 &fs_info->fs_state))
362 break;
363
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400364 if (!__need_auto_defrag(fs_info))
Miao Xie26176e72012-11-26 09:26:20 +0000365 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400366
367 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000368 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
369 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400370 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000371 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800372 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400373 first_ino = 0;
374 continue;
375 } else {
376 break;
377 }
378 }
379
Chris Mason4cb53002011-05-24 15:35:30 -0400380 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800381 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400382
Miao Xie26176e72012-11-26 09:26:20 +0000383 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400384 }
Chris Mason4cb53002011-05-24 15:35:30 -0400385 atomic_dec(&fs_info->defrag_running);
386
387 /*
388 * during unmount, we use the transaction_wait queue to
389 * wait for the defragger to stop
390 */
391 wake_up(&fs_info->transaction_wait);
392 return 0;
393}
Chris Mason39279cc2007-06-12 06:35:45 -0400394
Chris Masond352ac62008-09-29 15:18:18 -0400395/* simple helper to fault in pages and copy. This should go away
396 * and be replaced with calls into generic code.
397 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800398static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400399 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400400 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400401{
Xin Zhong914ee292010-12-09 09:30:14 +0000402 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500403 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400404 int pg = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300405 int offset = pos & (PAGE_SIZE - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400406
Josef Bacik11c65dc2010-05-23 11:07:21 -0400407 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400408 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300409 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400410 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000411 /*
412 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000413 */
Xin Zhong914ee292010-12-09 09:30:14 +0000414 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400415
Chris Mason39279cc2007-06-12 06:35:45 -0400416 /* Flush processor's dcache for this page */
417 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500418
419 /*
420 * if we get a partial write, we can end up with
421 * partially up to date pages. These add
422 * a lot of complexity, so make sure they don't
423 * happen by forcing this copy to be retried.
424 *
425 * The rest of the btrfs_file_write code will fall
426 * back to page at a time copies after we return 0.
427 */
428 if (!PageUptodate(page) && copied < count)
429 copied = 0;
430
Josef Bacik11c65dc2010-05-23 11:07:21 -0400431 iov_iter_advance(i, copied);
432 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000433 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400434
Al Virob30ac0f2014-04-03 14:29:04 -0400435 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500436 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000437 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400438
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300439 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400440 offset += copied;
441 } else {
442 pg++;
443 offset = 0;
444 }
Chris Mason39279cc2007-06-12 06:35:45 -0400445 }
Xin Zhong914ee292010-12-09 09:30:14 +0000446 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400447}
448
Chris Masond352ac62008-09-29 15:18:18 -0400449/*
450 * unlocks pages after btrfs_file_write is done with them
451 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000452static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400453{
454 size_t i;
455 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400456 /* page checked is some magic around finding pages that
457 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700458 * clear it here. There should be no need to mark the pages
459 * accessed as prepare_pages should have marked them accessed
460 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400461 */
Chris Mason4a096752008-07-21 10:29:44 -0400462 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400463 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300464 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400465 }
466}
467
Filipe Mananaf48bf662017-11-03 22:26:44 +0000468static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
469 const u64 start,
470 const u64 len,
471 struct extent_state **cached_state)
472{
473 u64 search_start = start;
474 const u64 end = start + len - 1;
475
476 while (search_start < end) {
477 const u64 search_len = end - search_start + 1;
478 struct extent_map *em;
479 u64 em_len;
480 int ret = 0;
481
482 em = btrfs_get_extent(inode, NULL, 0, search_start,
483 search_len, 0);
484 if (IS_ERR(em))
485 return PTR_ERR(em);
486
487 if (em->block_start != EXTENT_MAP_HOLE)
488 goto next;
489
490 em_len = em->len;
491 if (em->start < search_start)
492 em_len -= search_start - em->start;
493 if (em_len > search_len)
494 em_len = search_len;
495
496 ret = set_extent_bit(&inode->io_tree, search_start,
497 search_start + em_len - 1,
498 EXTENT_DELALLOC_NEW,
499 NULL, cached_state, GFP_NOFS);
500next:
501 search_start = extent_map_end(em);
502 free_extent_map(em);
503 if (ret)
504 return ret;
505 }
506 return 0;
507}
508
Chris Masond352ac62008-09-29 15:18:18 -0400509/*
510 * after copy_from_user, pages need to be dirtied and we need to make
511 * sure holes are created between the current EOF and the start of
512 * any next extents (if required).
513 *
514 * this also makes the decision about creating an inline extent vs
515 * doing real data extents, marking pages dirty and delalloc as required.
516 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400517int btrfs_dirty_pages(struct inode *inode, struct page **pages,
518 size_t num_pages, loff_t pos, size_t write_bytes,
519 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400520{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400521 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -0400522 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400523 int i;
Chris Masondb945352007-10-15 16:15:53 -0400524 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400525 u64 start_pos;
526 u64 end_of_last_block;
527 u64 end_pos = pos + write_bytes;
528 loff_t isize = i_size_read(inode);
Filipe Mananae3b8a482017-11-04 00:16:59 +0000529 unsigned int extra_bits = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400530
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400531 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400532 num_bytes = round_up(write_bytes + pos - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400533 fs_info->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400534
Chris Masondb945352007-10-15 16:15:53 -0400535 end_of_last_block = start_pos + num_bytes - 1;
Filipe Mananae3b8a482017-11-04 00:16:59 +0000536
537 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
538 if (start_pos >= isize &&
539 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
540 /*
541 * There can't be any extents following eof in this case
542 * so just set the delalloc new bit for the range
543 * directly.
544 */
545 extra_bits |= EXTENT_DELALLOC_NEW;
546 } else {
547 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
548 start_pos,
549 num_bytes, cached);
550 if (err)
551 return err;
552 }
553 }
554
Josef Bacik2ac55d42010-02-03 19:33:23 +0000555 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Filipe Mananae3b8a482017-11-04 00:16:59 +0000556 extra_bits, cached, 0);
Josef Bacikd0215f32011-01-25 14:57:24 -0500557 if (err)
558 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400559
Chris Masonc8b97812008-10-29 14:49:59 -0400560 for (i = 0; i < num_pages; i++) {
561 struct page *p = pages[i];
562 SetPageUptodate(p);
563 ClearPageChecked(p);
564 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400565 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500566
567 /*
568 * we've only changed i_size in ram, and we haven't updated
569 * the disk i_size. There is no need to log the inode
570 * at this time.
571 */
572 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400573 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400574 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400575}
576
Chris Masond352ac62008-09-29 15:18:18 -0400577/*
578 * this drops all the extents in the cache that intersect the range
579 * [start, end]. Existing extents are split as required.
580 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200581void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
Josef Bacik7014cdb2012-08-30 20:06:49 -0400582 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400583{
584 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400585 struct extent_map *split = NULL;
586 struct extent_map *split2 = NULL;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200587 struct extent_map_tree *em_tree = &inode->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500588 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400589 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400590 int ret;
591 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400592 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400593 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400594 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400595
Chris Masone6dcd2d2008-07-17 12:53:50 -0400596 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400597 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500598 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400599 testend = 0;
600 }
Chris Masond3977122009-01-05 21:25:51 -0500601 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400602 int no_splits = 0;
603
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400604 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400605 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200606 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400607 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200608 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400609 if (!split || !split2)
610 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400611
Chris Mason890871b2009-09-02 16:24:52 -0400612 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500613 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500614 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400615 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400616 break;
Chris Masond1310b22008-01-24 16:13:08 -0500617 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400618 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400619 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400620 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000621 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400622 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400623 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400624 break;
625 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000626 start = em->start + em->len;
627 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400628 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400629 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400630 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400631 continue;
632 }
Chris Masonc8b97812008-10-29 14:49:59 -0400633 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400634 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600635 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400636 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400637 if (no_splits)
638 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400639
Josef Bacikee20a982013-07-11 10:34:59 -0400640 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400641 split->start = em->start;
642 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400643
Josef Bacikee20a982013-07-11 10:34:59 -0400644 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
645 split->orig_start = em->orig_start;
646 split->block_start = em->block_start;
647
648 if (compressed)
649 split->block_len = em->block_len;
650 else
651 split->block_len = split->len;
652 split->orig_block_len = max(split->block_len,
653 em->orig_block_len);
654 split->ram_bytes = em->ram_bytes;
655 } else {
656 split->orig_start = split->start;
657 split->block_len = 0;
658 split->block_start = em->block_start;
659 split->orig_block_len = 0;
660 split->ram_bytes = split->len;
661 }
662
Josef Bacik5dc562c2012-08-17 13:14:17 -0400663 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400664 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400665 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800666 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000667 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400668 free_extent_map(split);
669 split = split2;
670 split2 = NULL;
671 }
Josef Bacikee20a982013-07-11 10:34:59 -0400672 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400673 u64 diff = start + len - em->start;
674
675 split->start = start + len;
676 split->len = em->start + em->len - (start + len);
677 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;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400680 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400681
Josef Bacikee20a982013-07-11 10:34:59 -0400682 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
683 split->orig_block_len = max(em->block_len,
684 em->orig_block_len);
685
686 split->ram_bytes = em->ram_bytes;
687 if (compressed) {
688 split->block_len = em->block_len;
689 split->block_start = em->block_start;
690 split->orig_start = em->orig_start;
691 } else {
692 split->block_len = split->len;
693 split->block_start = em->block_start
694 + diff;
695 split->orig_start = em->orig_start;
696 }
Chris Masonc8b97812008-10-29 14:49:59 -0400697 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400698 split->ram_bytes = split->len;
699 split->orig_start = split->start;
700 split->block_len = 0;
701 split->block_start = em->block_start;
702 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400703 }
Chris Mason3b951512008-04-17 11:29:12 -0400704
Filipe Manana176840b2014-02-25 14:15:13 +0000705 if (extent_map_in_tree(em)) {
706 replace_extent_mapping(em_tree, em, split,
707 modified);
708 } else {
709 ret = add_extent_mapping(em_tree, split,
710 modified);
711 ASSERT(ret == 0); /* Logic error */
712 }
Chris Mason3b951512008-04-17 11:29:12 -0400713 free_extent_map(split);
714 split = NULL;
715 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400716next:
Filipe Manana176840b2014-02-25 14:15:13 +0000717 if (extent_map_in_tree(em))
718 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400719 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500720
Chris Masona52d9a82007-08-27 16:49:44 -0400721 /* once for us */
722 free_extent_map(em);
723 /* once for the tree*/
724 free_extent_map(em);
725 }
Chris Mason3b951512008-04-17 11:29:12 -0400726 if (split)
727 free_extent_map(split);
728 if (split2)
729 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400730}
731
Chris Mason39279cc2007-06-12 06:35:45 -0400732/*
733 * this is very complex, but the basic idea is to drop all extents
734 * in the range start - end. hint_block is filled in with a block number
735 * that would be a good hint to the block allocator for this file.
736 *
737 * If an extent intersects the range but is not entirely inside the range
738 * it is either truncated or split. Anything entirely inside the range
739 * is deleted from the tree.
740 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400741int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
742 struct btrfs_root *root, struct inode *inode,
743 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000744 u64 *drop_end, int drop_cache,
745 int replace_extent,
746 u32 extent_item_size,
747 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400748{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400749 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason00f5c792007-11-30 10:09:33 -0500750 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000751 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500752 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000753 struct btrfs_key new_key;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200754 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000755 u64 search_start = start;
756 u64 disk_bytenr = 0;
757 u64 num_bytes = 0;
758 u64 extent_offset = 0;
759 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500760 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000761 int del_nr = 0;
762 int del_slot = 0;
763 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400764 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500765 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400766 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800767 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400768 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000769 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400770
Chris Masona1ed8352009-09-11 12:27:37 -0400771 if (drop_cache)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200772 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400773
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000774 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400775 modify_tree = 0;
776
Miao Xie27cdeb72014-04-02 19:51:05 +0800777 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400778 root == fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500779 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400780 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800781 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400782 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400783 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000784 break;
785 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
786 leaf = path->nodes[0];
787 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800788 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000789 key.type == BTRFS_EXTENT_DATA_KEY)
790 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400791 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400792 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000793 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000794next_slot:
795 leaf = path->nodes[0];
796 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
797 BUG_ON(del_nr > 0);
798 ret = btrfs_next_leaf(root, path);
799 if (ret < 0)
800 break;
801 if (ret > 0) {
802 ret = 0;
803 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400804 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000805 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000806 leaf = path->nodes[0];
807 recow = 1;
808 }
809
810 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000811
812 if (key.objectid > ino)
813 break;
814 if (WARN_ON_ONCE(key.objectid < ino) ||
815 key.type < BTRFS_EXTENT_DATA_KEY) {
816 ASSERT(del_nr == 0);
817 path->slots[0]++;
818 goto next_slot;
819 }
820 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000821 break;
822
823 fi = btrfs_item_ptr(leaf, path->slots[0],
824 struct btrfs_file_extent_item);
825 extent_type = btrfs_file_extent_type(leaf, fi);
826
827 if (extent_type == BTRFS_FILE_EXTENT_REG ||
828 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
829 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
830 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
831 extent_offset = btrfs_file_extent_offset(leaf, fi);
832 extent_end = key.offset +
833 btrfs_file_extent_num_bytes(leaf, fi);
834 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
835 extent_end = key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -0800836 btrfs_file_extent_inline_len(leaf,
837 path->slots[0], fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400838 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000839 /* can't happen */
840 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400841 }
842
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100843 /*
844 * Don't skip extent items representing 0 byte lengths. They
845 * used to be created (bug) if while punching holes we hit
846 * -ENOSPC condition. So if we find one here, just ensure we
847 * delete it, otherwise we would insert a new file extent item
848 * with the same key (offset) as that 0 bytes length file
849 * extent item in the call to setup_items_for_insert() later
850 * in this function.
851 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500852 if (extent_end == key.offset && extent_end >= search_start) {
853 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100854 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500855 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100856
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000857 if (extent_end <= search_start) {
858 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400859 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400860 }
861
Josef Bacikc3308f82012-09-14 14:51:22 -0400862 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000863 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400864 if (recow || !modify_tree) {
865 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200866 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000867 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400868 }
Chris Mason771ed682008-11-06 22:02:51 -0500869
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000870 /*
871 * | - range to drop - |
872 * | -------- extent -------- |
873 */
874 if (start > key.offset && end < extent_end) {
875 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800876 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200877 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800878 break;
879 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000880
881 memcpy(&new_key, &key, sizeof(new_key));
882 new_key.offset = start;
883 ret = btrfs_duplicate_item(trans, root, path,
884 &new_key);
885 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200886 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000887 continue;
888 }
889 if (ret < 0)
890 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400891
Chris Mason5f39d392007-10-15 16:14:19 -0400892 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
894 struct btrfs_file_extent_item);
895 btrfs_set_file_extent_num_bytes(leaf, fi,
896 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400897
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000898 fi = btrfs_item_ptr(leaf, path->slots[0],
899 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400900
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000901 extent_offset += start - key.offset;
902 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
903 btrfs_set_file_extent_num_bytes(leaf, fi,
904 extent_end - start);
905 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400906
Josef Bacik5dc562c2012-08-17 13:14:17 -0400907 if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400908 ret = btrfs_inc_extent_ref(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000909 disk_bytenr, num_bytes, 0,
910 root->root_key.objectid,
911 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100912 start - extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100913 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400914 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000915 key.offset = start;
916 }
917 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500918 * From here on out we will have actually dropped something, so
919 * last_end can be updated.
920 */
921 last_end = extent_end;
922
923 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000924 * | ---- range to drop ----- |
925 * | -------- extent -------- |
926 */
927 if (start <= key.offset && end < extent_end) {
Liu Bo00fdf132014-03-10 18:56:07 +0800928 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200929 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800930 break;
931 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000932
933 memcpy(&new_key, &key, sizeof(new_key));
934 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400935 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000936
937 extent_offset += end - key.offset;
938 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
939 btrfs_set_file_extent_num_bytes(leaf, fi,
940 extent_end - end);
941 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400942 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000943 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000944 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400945 }
946
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000947 search_start = extent_end;
948 /*
949 * | ---- range to drop ----- |
950 * | -------- extent -------- |
951 */
952 if (start > key.offset && end >= extent_end) {
953 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800954 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200955 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800956 break;
957 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000958
959 btrfs_set_file_extent_num_bytes(leaf, fi,
960 start - key.offset);
961 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400962 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000963 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000964 if (end == extent_end)
965 break;
966
967 path->slots[0]++;
968 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400969 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000970
971 /*
972 * | ---- range to drop ----- |
973 * | ------ extent ------ |
974 */
975 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100976delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000977 if (del_nr == 0) {
978 del_slot = path->slots[0];
979 del_nr = 1;
980 } else {
981 BUG_ON(del_slot + del_nr != path->slots[0]);
982 del_nr++;
983 }
984
Josef Bacik5dc562c2012-08-17 13:14:17 -0400985 if (update_refs &&
986 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000987 inode_sub_bytes(inode,
988 extent_end - key.offset);
989 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400990 fs_info->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400991 } else if (update_refs && disk_bytenr > 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400992 ret = btrfs_free_extent(trans, root,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000993 disk_bytenr, num_bytes, 0,
994 root->root_key.objectid,
995 key.objectid, key.offset -
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100996 extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100997 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000998 inode_sub_bytes(inode,
999 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001000 }
1001
1002 if (end == extent_end)
1003 break;
1004
1005 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1006 path->slots[0]++;
1007 goto next_slot;
1008 }
1009
1010 ret = btrfs_del_items(trans, root, path, del_slot,
1011 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001012 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001013 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -04001014 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001015 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001016
1017 del_nr = 0;
1018 del_slot = 0;
1019
David Sterbab3b4aa72011-04-21 01:20:15 +02001020 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001021 continue;
1022 }
1023
1024 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04001025 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001026
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001027 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001028 /*
1029 * Set path->slots[0] to first slot, so that after the delete
1030 * if items are move off from our leaf to its immediate left or
1031 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001032 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001033 */
1034 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001035 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001036 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04001037 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001038 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001039
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001040 leaf = path->nodes[0];
1041 /*
1042 * If btrfs_del_items() was called, it might have deleted a leaf, in
1043 * which case it unlocked our path, so check path->locks[0] matches a
1044 * write lock.
1045 */
1046 if (!ret && replace_extent && leafs_visited == 1 &&
1047 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1048 path->locks[0] == BTRFS_WRITE_LOCK) &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001049 btrfs_leaf_free_space(fs_info, leaf) >=
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001050 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001051
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001052 key.objectid = ino;
1053 key.type = BTRFS_EXTENT_DATA_KEY;
1054 key.offset = start;
1055 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1056 struct btrfs_key slot_key;
1057
1058 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1059 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1060 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001061 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001062 setup_items_for_insert(root, path, &key,
1063 &extent_item_size,
1064 extent_item_size,
1065 sizeof(struct btrfs_item) +
1066 extent_item_size, 1);
1067 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001068 }
1069
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001070 if (!replace_extent || !(*key_inserted))
1071 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001072 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001073 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001074 return ret;
1075}
1076
1077int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1078 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001079 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001080{
1081 struct btrfs_path *path;
1082 int ret;
1083
1084 path = btrfs_alloc_path();
1085 if (!path)
1086 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001087 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001088 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001089 btrfs_free_path(path);
1090 return ret;
1091}
1092
Yan Zhengd899e052008-10-30 14:25:28 -04001093static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001094 u64 objectid, u64 bytenr, u64 orig_offset,
1095 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001096{
1097 struct btrfs_file_extent_item *fi;
1098 struct btrfs_key key;
1099 u64 extent_end;
1100
1101 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1102 return 0;
1103
1104 btrfs_item_key_to_cpu(leaf, &key, slot);
1105 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1106 return 0;
1107
1108 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1109 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1110 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001111 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001112 btrfs_file_extent_compression(leaf, fi) ||
1113 btrfs_file_extent_encryption(leaf, fi) ||
1114 btrfs_file_extent_other_encoding(leaf, fi))
1115 return 0;
1116
1117 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1118 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1119 return 0;
1120
1121 *start = key.offset;
1122 *end = extent_end;
1123 return 1;
1124}
1125
1126/*
1127 * Mark extent in the range start - end as written.
1128 *
1129 * This changes extent type from 'pre-allocated' to 'regular'. If only
1130 * part of extent is marked as written, the extent will be split into
1131 * two or three.
1132 */
1133int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001134 struct btrfs_inode *inode, u64 start, u64 end)
Yan Zhengd899e052008-10-30 14:25:28 -04001135{
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001136 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1137 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001138 struct extent_buffer *leaf;
1139 struct btrfs_path *path;
1140 struct btrfs_file_extent_item *fi;
1141 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001142 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001143 u64 bytenr;
1144 u64 num_bytes;
1145 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001146 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001147 u64 other_start;
1148 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001149 u64 split;
1150 int del_nr = 0;
1151 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001152 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001153 int ret;
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02001154 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001155
Yan Zhengd899e052008-10-30 14:25:28 -04001156 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001157 if (!path)
1158 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001159again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001160 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001161 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001162 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001163 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001164 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001165
1166 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001167 if (ret < 0)
1168 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001169 if (ret > 0 && path->slots[0] > 0)
1170 path->slots[0]--;
1171
1172 leaf = path->nodes[0];
1173 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001174 if (key.objectid != ino ||
1175 key.type != BTRFS_EXTENT_DATA_KEY) {
1176 ret = -EINVAL;
1177 btrfs_abort_transaction(trans, ret);
1178 goto out;
1179 }
Yan Zhengd899e052008-10-30 14:25:28 -04001180 fi = btrfs_item_ptr(leaf, path->slots[0],
1181 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001182 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1183 ret = -EINVAL;
1184 btrfs_abort_transaction(trans, ret);
1185 goto out;
1186 }
Yan Zhengd899e052008-10-30 14:25:28 -04001187 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001188 if (key.offset > start || extent_end < end) {
1189 ret = -EINVAL;
1190 btrfs_abort_transaction(trans, ret);
1191 goto out;
1192 }
Yan Zhengd899e052008-10-30 14:25:28 -04001193
1194 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1195 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001197 memcpy(&new_key, &key, sizeof(new_key));
1198
1199 if (start == key.offset && end < extent_end) {
1200 other_start = 0;
1201 other_end = start;
1202 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001203 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001204 &other_start, &other_end)) {
1205 new_key.offset = end;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001206 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001207 fi = btrfs_item_ptr(leaf, path->slots[0],
1208 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001209 btrfs_set_file_extent_generation(leaf, fi,
1210 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001211 btrfs_set_file_extent_num_bytes(leaf, fi,
1212 extent_end - end);
1213 btrfs_set_file_extent_offset(leaf, fi,
1214 end - orig_offset);
1215 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1216 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001217 btrfs_set_file_extent_generation(leaf, fi,
1218 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001219 btrfs_set_file_extent_num_bytes(leaf, fi,
1220 end - other_start);
1221 btrfs_mark_buffer_dirty(leaf);
1222 goto out;
1223 }
1224 }
1225
1226 if (start > key.offset && end == extent_end) {
1227 other_start = end;
1228 other_end = 0;
1229 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001230 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001231 &other_start, &other_end)) {
1232 fi = btrfs_item_ptr(leaf, path->slots[0],
1233 struct btrfs_file_extent_item);
1234 btrfs_set_file_extent_num_bytes(leaf, fi,
1235 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001236 btrfs_set_file_extent_generation(leaf, fi,
1237 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001238 path->slots[0]++;
1239 new_key.offset = start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001240 btrfs_set_item_key_safe(fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001241
1242 fi = btrfs_item_ptr(leaf, path->slots[0],
1243 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001244 btrfs_set_file_extent_generation(leaf, fi,
1245 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001246 btrfs_set_file_extent_num_bytes(leaf, fi,
1247 other_end - start);
1248 btrfs_set_file_extent_offset(leaf, fi,
1249 start - orig_offset);
1250 btrfs_mark_buffer_dirty(leaf);
1251 goto out;
1252 }
1253 }
Yan Zhengd899e052008-10-30 14:25:28 -04001254
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001255 while (start > key.offset || end < extent_end) {
1256 if (key.offset == start)
1257 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001258
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001259 new_key.offset = split;
1260 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1261 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001262 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001263 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001264 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001265 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001266 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001267 goto out;
1268 }
Yan Zhengd899e052008-10-30 14:25:28 -04001269
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001270 leaf = path->nodes[0];
1271 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001272 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001273 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001274 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001275 split - key.offset);
1276
1277 fi = btrfs_item_ptr(leaf, path->slots[0],
1278 struct btrfs_file_extent_item);
1279
Josef Bacik224ecce2012-08-16 16:32:06 -04001280 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001281 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1282 btrfs_set_file_extent_num_bytes(leaf, fi,
1283 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001284 btrfs_mark_buffer_dirty(leaf);
1285
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001286 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001287 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001288 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001289 if (ret) {
1290 btrfs_abort_transaction(trans, ret);
1291 goto out;
1292 }
Yan Zhengd899e052008-10-30 14:25:28 -04001293
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001294 if (split == start) {
1295 key.offset = start;
1296 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001297 if (start != key.offset) {
1298 ret = -EINVAL;
1299 btrfs_abort_transaction(trans, ret);
1300 goto out;
1301 }
Yan Zhengd899e052008-10-30 14:25:28 -04001302 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001303 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001304 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001305 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001306 }
1307
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001308 other_start = end;
1309 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001310 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001311 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001312 &other_start, &other_end)) {
1313 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001314 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001315 goto again;
1316 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001317 extent_end = other_end;
1318 del_slot = path->slots[0] + 1;
1319 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001320 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001321 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001322 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001323 if (ret) {
1324 btrfs_abort_transaction(trans, ret);
1325 goto out;
1326 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001327 }
1328 other_start = 0;
1329 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001330 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001331 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001332 &other_start, &other_end)) {
1333 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001334 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001335 goto again;
1336 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001337 key.offset = other_start;
1338 del_slot = path->slots[0];
1339 del_nr++;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04001340 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001341 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001342 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001343 if (ret) {
1344 btrfs_abort_transaction(trans, ret);
1345 goto out;
1346 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001347 }
1348 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001349 fi = btrfs_item_ptr(leaf, path->slots[0],
1350 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001351 btrfs_set_file_extent_type(leaf, fi,
1352 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001353 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001354 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001355 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001356 fi = btrfs_item_ptr(leaf, del_slot - 1,
1357 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001358 btrfs_set_file_extent_type(leaf, fi,
1359 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001360 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001361 btrfs_set_file_extent_num_bytes(leaf, fi,
1362 extent_end - key.offset);
1363 btrfs_mark_buffer_dirty(leaf);
1364
1365 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001366 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001367 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001368 goto out;
1369 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001370 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001371out:
Yan Zhengd899e052008-10-30 14:25:28 -04001372 btrfs_free_path(path);
1373 return 0;
1374}
1375
Chris Mason39279cc2007-06-12 06:35:45 -04001376/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001377 * on error we return an unlocked page and the error value
1378 * on success we return a locked page and 0
1379 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001380static int prepare_uptodate_page(struct inode *inode,
1381 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001382 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001383{
1384 int ret = 0;
1385
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001386 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001387 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001388 ret = btrfs_readpage(NULL, page);
1389 if (ret)
1390 return ret;
1391 lock_page(page);
1392 if (!PageUptodate(page)) {
1393 unlock_page(page);
1394 return -EIO;
1395 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001396 if (page->mapping != inode->i_mapping) {
1397 unlock_page(page);
1398 return -EAGAIN;
1399 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001400 }
1401 return 0;
1402}
1403
1404/*
Miao Xie376cc682013-12-10 19:25:04 +08001405 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001406 */
Miao Xieb37392e2013-12-10 19:25:03 +08001407static noinline int prepare_pages(struct inode *inode, struct page **pages,
1408 size_t num_pages, loff_t pos,
1409 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001410{
1411 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001412 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001413 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001414 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001415 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001416
Chris Mason39279cc2007-06-12 06:35:45 -04001417 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001418again:
Josef Bacika94733d2011-07-11 10:47:06 -04001419 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001420 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001421 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001422 faili = i - 1;
1423 err = -ENOMEM;
1424 goto fail;
1425 }
1426
1427 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001428 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001429 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001430 if (!err && i == num_pages - 1)
1431 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001432 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001433 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001434 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001435 if (err == -EAGAIN) {
1436 err = 0;
1437 goto again;
1438 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001439 faili = i - 1;
1440 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001441 }
Chris Masonccd467d2007-06-28 15:57:36 -04001442 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001443 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001444
Chris Mason39279cc2007-06-12 06:35:45 -04001445 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001446fail:
1447 while (faili >= 0) {
1448 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001449 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001450 faili--;
1451 }
1452 return err;
1453
Chris Mason39279cc2007-06-12 06:35:45 -04001454}
1455
Miao Xie376cc682013-12-10 19:25:04 +08001456/*
1457 * This function locks the extent and properly waits for data=ordered extents
1458 * to finish before allowing the pages to be modified if need.
1459 *
1460 * The return value:
1461 * 1 - the extent is locked
1462 * 0 - the extent is not locked, and everything is OK
1463 * -EAGAIN - need re-prepare the pages
1464 * the other < 0 number - Something wrong happens
1465 */
1466static noinline int
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001467lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
Miao Xie376cc682013-12-10 19:25:04 +08001468 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301469 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001470 u64 *lockstart, u64 *lockend,
1471 struct extent_state **cached_state)
1472{
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001473 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Miao Xie376cc682013-12-10 19:25:04 +08001474 u64 start_pos;
1475 u64 last_pos;
1476 int i;
1477 int ret = 0;
1478
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001479 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301480 last_pos = start_pos
Jeff Mahoneyda170662016-06-15 09:22:56 -04001481 + round_up(pos + write_bytes - start_pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001482 fs_info->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001483
Filipe Mananae3b8a482017-11-04 00:16:59 +00001484 if (start_pos < inode->vfs_inode.i_size) {
Miao Xie376cc682013-12-10 19:25:04 +08001485 struct btrfs_ordered_extent *ordered;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001486
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001487 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1488 cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001489 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1490 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001491 if (ordered &&
1492 ordered->file_offset + ordered->len > start_pos &&
1493 ordered->file_offset <= last_pos) {
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001494 unlock_extent_cached(&inode->io_tree, start_pos,
David Sterbae43bbe52017-12-12 21:43:52 +01001495 last_pos, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001496 for (i = 0; i < num_pages; i++) {
1497 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001498 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001499 }
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001500 btrfs_start_ordered_extent(&inode->vfs_inode,
1501 ordered, 1);
Miao Xieb88935b2014-03-06 13:54:58 +08001502 btrfs_put_ordered_extent(ordered);
1503 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001504 }
1505 if (ordered)
1506 btrfs_put_ordered_extent(ordered);
Filipe Mananae3b8a482017-11-04 00:16:59 +00001507 clear_extent_bit(&inode->io_tree, start_pos, last_pos,
1508 EXTENT_DIRTY | EXTENT_DELALLOC |
1509 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01001510 0, 0, cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001511 *lockstart = start_pos;
1512 *lockend = last_pos;
1513 ret = 1;
1514 }
1515
1516 for (i = 0; i < num_pages; i++) {
1517 if (clear_page_dirty_for_io(pages[i]))
1518 account_page_redirty(pages[i]);
1519 set_page_extent_mapped(pages[i]);
1520 WARN_ON(!PageLocked(pages[i]));
1521 }
1522
1523 return ret;
1524}
1525
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001526static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
Josef Bacik7ee9e442013-06-21 16:37:03 -04001527 size_t *write_bytes)
1528{
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001529 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1530 struct btrfs_root *root = inode->root;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001531 struct btrfs_ordered_extent *ordered;
1532 u64 lockstart, lockend;
1533 u64 num_bytes;
1534 int ret;
1535
David Sterbaea14b57f2017-06-22 02:19:11 +02001536 ret = btrfs_start_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001537 if (!ret)
1538 return -ENOSPC;
1539
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001540 lockstart = round_down(pos, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001541 lockend = round_up(pos + *write_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001542 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001543
1544 while (1) {
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001545 lock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001546 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1547 lockend - lockstart + 1);
1548 if (!ordered) {
1549 break;
1550 }
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001551 unlock_extent(&inode->io_tree, lockstart, lockend);
1552 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001553 btrfs_put_ordered_extent(ordered);
1554 }
1555
Josef Bacik7ee9e442013-06-21 16:37:03 -04001556 num_bytes = lockend - lockstart + 1;
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001557 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1558 NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001559 if (ret <= 0) {
1560 ret = 0;
David Sterbaea14b57f2017-06-22 02:19:11 +02001561 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001562 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001563 *write_bytes = min_t(size_t, *write_bytes ,
1564 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001565 }
1566
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001567 unlock_extent(&inode->io_tree, lockstart, lockend);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001568
1569 return ret;
1570}
1571
Josef Bacikd0215f32011-01-25 14:57:24 -05001572static noinline ssize_t __btrfs_buffered_write(struct file *file,
1573 struct iov_iter *i,
1574 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001575{
Al Viro496ad9a2013-01-23 17:07:38 -05001576 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001577 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001578 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001579 struct page **pages = NULL;
Miao Xie376cc682013-12-10 19:25:04 +08001580 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001581 struct extent_changeset *data_reserved = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001582 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001583 u64 lockstart;
1584 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001585 size_t num_written = 0;
1586 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001587 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001588 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001589 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001590
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001591 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1592 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001593 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1594 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001595 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001596 if (!pages)
1597 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001598
Josef Bacikd0215f32011-01-25 14:57:24 -05001599 while (iov_iter_count(i) > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001600 size_t offset = pos & (PAGE_SIZE - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301601 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001602 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001603 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001604 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001605 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001606 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001607 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001608 size_t dirty_pages;
1609 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301610 size_t dirty_sectors;
1611 size_t num_sectors;
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001612 int extents_locked;
Chris Mason39279cc2007-06-12 06:35:45 -04001613
Chris Mason8c2383c2007-06-18 09:57:58 -04001614 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001615
Xin Zhong914ee292010-12-09 09:30:14 +00001616 /*
1617 * Fault pages before locking them in prepare_pages
1618 * to avoid recursive lock
1619 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001620 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001621 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001622 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001623 }
1624
Jeff Mahoneyda170662016-06-15 09:22:56 -04001625 sector_offset = pos & (fs_info->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301626 reserve_bytes = round_up(write_bytes + sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001627 fs_info->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001628
Qu Wenruo364ecf32017-02-27 15:10:38 +08001629 extent_changeset_release(data_reserved);
1630 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1631 write_bytes);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001632 if (ret < 0) {
1633 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1634 BTRFS_INODE_PREALLOC)) &&
Nikolay Borisov85b7ab62017-02-20 13:50:50 +02001635 check_can_nocow(BTRFS_I(inode), pos,
1636 &write_bytes) > 0) {
Josef Bacikc6887cd2016-03-25 13:26:00 -04001637 /*
1638 * For nodata cow case, no need to reserve
1639 * data space.
1640 */
1641 only_release_metadata = true;
1642 /*
1643 * our prealloc extent may be smaller than
1644 * write_bytes, so scale down.
1645 */
1646 num_pages = DIV_ROUND_UP(write_bytes + offset,
1647 PAGE_SIZE);
1648 reserve_bytes = round_up(write_bytes +
1649 sector_offset,
Jeff Mahoneyda170662016-06-15 09:22:56 -04001650 fs_info->sectorsize);
Josef Bacikc6887cd2016-03-25 13:26:00 -04001651 } else {
1652 break;
1653 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001654 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001655
Josef Bacik8b62f872017-10-19 14:15:55 -04001656 WARN_ON(reserve_bytes == 0);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02001657 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1658 reserve_bytes);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001659 if (ret) {
1660 if (!only_release_metadata)
Qu Wenruobc42bda2017-02-27 15:10:39 +08001661 btrfs_free_reserved_data_space(inode,
1662 data_reserved, pos,
1663 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001664 else
David Sterbaea14b57f2017-06-22 02:19:11 +02001665 btrfs_end_write_no_snapshotting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001666 break;
1667 }
1668
1669 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001670again:
Josef Bacik4a640012011-01-25 15:10:08 -05001671 /*
1672 * This is going to setup the pages array with the number of
1673 * pages we want, so we don't really need to worry about the
1674 * contents of pages from loop to loop
1675 */
Miao Xieb37392e2013-12-10 19:25:03 +08001676 ret = prepare_pages(inode, pages, num_pages,
1677 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001678 force_page_uptodate);
Josef Bacik8b62f872017-10-19 14:15:55 -04001679 if (ret) {
1680 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001681 reserve_bytes, true);
Josef Bacikd0215f32011-01-25 14:57:24 -05001682 break;
Josef Bacik8b62f872017-10-19 14:15:55 -04001683 }
Chris Mason39279cc2007-06-12 06:35:45 -04001684
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001685 extents_locked = lock_and_cleanup_extent_if_need(
1686 BTRFS_I(inode), pages,
Nikolay Borisov2cff578c2017-02-20 13:50:51 +02001687 num_pages, pos, write_bytes, &lockstart,
1688 &lockend, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001689 if (extents_locked < 0) {
1690 if (extents_locked == -EAGAIN)
Miao Xie376cc682013-12-10 19:25:04 +08001691 goto again;
Josef Bacik8b62f872017-10-19 14:15:55 -04001692 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001693 reserve_bytes, true);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001694 ret = extents_locked;
Miao Xie376cc682013-12-10 19:25:04 +08001695 break;
Miao Xie376cc682013-12-10 19:25:04 +08001696 }
1697
Zhao Leiee22f0c2016-01-06 18:47:31 +08001698 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001699
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001700 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
Chris Mason56244ef2016-05-16 09:21:01 -07001701 dirty_sectors = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001702 fs_info->sectorsize);
1703 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
Chris Mason56244ef2016-05-16 09:21:01 -07001704
Chris Masonb1bf8622011-02-28 09:52:08 -05001705 /*
1706 * if we have trouble faulting in the pages, fall
1707 * back to one page at a time
1708 */
1709 if (copied < write_bytes)
1710 nrptrs = 1;
1711
Josef Bacikb63164292011-09-30 15:23:54 -04001712 if (copied == 0) {
1713 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001714 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001715 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001716 } else {
1717 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001718 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001719 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001720 }
Xin Zhong914ee292010-12-09 09:30:14 +00001721
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301722 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001723 /* release everything except the sectors we dirtied */
1724 release_bytes -= dirty_sectors <<
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001725 fs_info->sb->s_blocksize_bits;
Qu Wenruo485290a2015-10-29 17:28:46 +08001726 if (only_release_metadata) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02001727 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001728 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001729 } else {
1730 u64 __pos;
1731
Jeff Mahoneyda170662016-06-15 09:22:56 -04001732 __pos = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001733 fs_info->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001734 (dirty_pages << PAGE_SHIFT);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001735 btrfs_delalloc_release_space(inode,
1736 data_reserved, __pos,
Qu Wenruo43b18592017-12-12 15:34:32 +08001737 release_bytes, true);
Qu Wenruo485290a2015-10-29 17:28:46 +08001738 }
Xin Zhong914ee292010-12-09 09:30:14 +00001739 }
1740
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301741 release_bytes = round_up(copied + sector_offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001742 fs_info->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001743
1744 if (copied > 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001745 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
Filipe Manana94f45072017-10-31 17:59:54 +00001746 pos, copied, &cached_state);
Goldwyn Rodrigues79f015f2017-10-16 05:43:21 -05001747 if (extents_locked)
Miao Xie376cc682013-12-10 19:25:04 +08001748 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001749 lockstart, lockend, &cached_state);
Qu Wenruo43b18592017-12-12 15:34:32 +08001750 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes,
Qu Wenruo336a8bb2018-04-17 18:43:58 +08001751 true);
Miao Xief1de9682014-01-09 10:06:10 +08001752 if (ret) {
1753 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001754 break;
Miao Xief1de9682014-01-09 10:06:10 +08001755 }
Chris Mason39279cc2007-06-12 06:35:45 -04001756
Josef Bacik7ee9e442013-06-21 16:37:03 -04001757 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001758 if (only_release_metadata)
David Sterbaea14b57f2017-06-22 02:19:11 +02001759 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001760
Josef Bacik7ee9e442013-06-21 16:37:03 -04001761 if (only_release_metadata && copied > 0) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04001762 lockstart = round_down(pos,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001763 fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001764 lockend = round_up(pos + copied,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001765 fs_info->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001766
1767 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1768 lockend, EXTENT_NORESERVE, NULL,
1769 NULL, GFP_NOFS);
1770 only_release_metadata = false;
1771 }
1772
Miao Xief1de9682014-01-09 10:06:10 +08001773 btrfs_drop_pages(pages, num_pages);
1774
Josef Bacikd0215f32011-01-25 14:57:24 -05001775 cond_resched();
1776
Namjae Jeond0e1d662012-12-11 16:00:21 -08001777 balance_dirty_pages_ratelimited(inode->i_mapping);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001778 if (dirty_pages < (fs_info->nodesize >> PAGE_SHIFT) + 1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001779 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04001780
Xin Zhong914ee292010-12-09 09:30:14 +00001781 pos += copied;
1782 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001783 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001784
Chris Mason8c2383c2007-06-18 09:57:58 -04001785 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001786
Josef Bacik7ee9e442013-06-21 16:37:03 -04001787 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001788 if (only_release_metadata) {
David Sterbaea14b57f2017-06-22 02:19:11 +02001789 btrfs_end_write_no_snapshotting(root);
Nikolay Borisov691fa052017-02-20 13:50:42 +02001790 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08001791 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001792 } else {
Qu Wenruobc42bda2017-02-27 15:10:39 +08001793 btrfs_delalloc_release_space(inode, data_reserved,
1794 round_down(pos, fs_info->sectorsize),
Qu Wenruo43b18592017-12-12 15:34:32 +08001795 release_bytes, true);
Miao Xie8257b2d2014-03-06 13:38:19 +08001796 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001797 }
1798
Qu Wenruo364ecf32017-02-27 15:10:38 +08001799 extent_changeset_free(data_reserved);
Josef Bacikd0215f32011-01-25 14:57:24 -05001800 return num_written ? num_written : ret;
1801}
1802
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001803static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001804{
1805 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001806 struct inode *inode = file_inode(file);
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001807 loff_t pos = iocb->ki_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001808 ssize_t written;
1809 ssize_t written_buffered;
1810 loff_t endbyte;
1811 int err;
1812
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001813 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001814
Al Viro0c949332014-03-22 06:51:37 -04001815 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001816 return written;
1817
1818 pos += written;
Al Viro0ae5e4d2014-03-03 22:09:39 -05001819 written_buffered = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001820 if (written_buffered < 0) {
1821 err = written_buffered;
1822 goto out;
1823 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001824 /*
1825 * Ensure all data is persisted. We want the next direct IO read to be
1826 * able to read what was just written.
1827 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001828 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001829 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001830 if (err)
1831 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001832 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001833 if (err)
1834 goto out;
1835 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001836 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001837 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1838 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001839out:
1840 return written ? written : err;
1841}
1842
Josef Bacik6c760c02012-11-09 10:53:21 -05001843static void update_time_for_write(struct inode *inode)
1844{
1845 struct timespec now;
1846
1847 if (IS_NOCMTIME(inode))
1848 return;
1849
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001850 now = current_time(inode);
Josef Bacik6c760c02012-11-09 10:53:21 -05001851 if (!timespec_equal(&inode->i_mtime, &now))
1852 inode->i_mtime = now;
1853
1854 if (!timespec_equal(&inode->i_ctime, &now))
1855 inode->i_ctime = now;
1856
1857 if (IS_I_VERSION(inode))
1858 inode_inc_iversion(inode);
1859}
1860
Al Virob30ac0f2014-04-03 14:29:04 -04001861static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1862 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001863{
1864 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001865 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001866 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001867 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001868 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001869 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001870 ssize_t num_written = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001871 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
Al Viro3309dd02015-04-09 12:55:47 -04001872 ssize_t err;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001873 loff_t pos;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001874 size_t count = iov_iter_count(from);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301875 loff_t oldsize;
1876 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001877
Christoph Hellwig91f99432017-08-29 16:13:20 +02001878 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1879 (iocb->ki_flags & IOCB_NOWAIT))
1880 return -EOPNOTSUPP;
1881
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001882 if (!inode_trylock(inode)) {
1883 if (iocb->ki_flags & IOCB_NOWAIT)
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001884 return -EAGAIN;
Goldwyn Rodriguesff0fa732017-07-04 22:33:07 -05001885 inode_lock(inode);
1886 }
1887
1888 err = generic_write_checks(iocb, from);
1889 if (err <= 0) {
1890 inode_unlock(inode);
1891 return err;
1892 }
1893
1894 pos = iocb->ki_pos;
1895 if (iocb->ki_flags & IOCB_NOWAIT) {
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05001896 /*
1897 * We will allocate space in case nodatacow is not set,
1898 * so bail
1899 */
1900 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1901 BTRFS_INODE_PREALLOC)) ||
1902 check_can_nocow(BTRFS_I(inode), pos, &count) <= 0) {
1903 inode_unlock(inode);
1904 return -EAGAIN;
1905 }
Al Viro3309dd02015-04-09 12:55:47 -04001906 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001907
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001908 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001909 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001910 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001911 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001912 goto out;
1913 }
1914
1915 /*
1916 * If BTRFS flips readonly due to some impossible error
1917 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1918 * although we have opened a file as writable, we have
1919 * to stop this write operation to ensure FS consistency.
1920 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001921 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001922 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001923 err = -EROFS;
1924 goto out;
1925 }
1926
Josef Bacik6c760c02012-11-09 10:53:21 -05001927 /*
1928 * We reserve space for updating the inode when we reserve space for the
1929 * extent we are going to write, so we will enospc out there. We don't
1930 * need to start yet another transaction to update the inode as we will
1931 * update the inode when we finish writing whatever data we write.
1932 */
1933 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001934
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001935 start_pos = round_down(pos, fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301936 oldsize = i_size_read(inode);
1937 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001938 /* Expand hole size to cover write data, preventing empty gap */
Jeff Mahoneyda170662016-06-15 09:22:56 -04001939 end_pos = round_up(pos + count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001940 fs_info->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301941 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001942 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001943 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001944 goto out;
1945 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001946 if (start_pos > round_up(oldsize, fs_info->sectorsize))
Chandan Rajendra27772b62016-01-21 15:56:03 +05301947 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001948 }
1949
Josef Bacikb812ce22012-11-16 13:56:32 -05001950 if (sync)
1951 atomic_inc(&BTRFS_I(inode)->sync_writers);
1952
Al Viro2ba48ce2015-04-09 13:52:01 -04001953 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001954 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001955 } else {
Al Virob30ac0f2014-04-03 14:29:04 -04001956 num_written = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001957 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001958 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301959 if (clean_page)
1960 pagecache_isize_extended(inode, oldsize,
1961 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001962 }
1963
Al Viro59551022016-01-22 15:40:57 -05001964 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001965
Chris Mason5a3f23d2009-03-31 13:27:11 -04001966 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05001967 * We also have to set last_sub_trans to the current log transid,
1968 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001969 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04001970 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001971 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05001972 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001973 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07001974 if (num_written > 0)
1975 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00001976
Josef Bacikb812ce22012-11-16 13:56:32 -05001977 if (sync)
1978 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00001979out:
Chris Mason39279cc2007-06-12 06:35:45 -04001980 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001981 return num_written ? num_written : err;
1982}
1983
Chris Masond3977122009-01-05 21:25:51 -05001984int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001985{
Josef Bacik23b5ec72017-07-24 15:14:25 -04001986 struct btrfs_file_private *private = filp->private_data;
1987
Josef Bacik23b5ec72017-07-24 15:14:25 -04001988 if (private && private->filldir_buf)
1989 kfree(private->filldir_buf);
1990 kfree(private);
1991 filp->private_data = NULL;
1992
Chris Masonf6dc45c2014-08-20 07:15:33 -07001993 /*
1994 * ordered_data_close is set by settattr when we are about to truncate
1995 * a file from a non-zero size to a zero size. This tries to
1996 * flush down new bytes that may have been written if the
1997 * application were using truncate to replace a file in place.
1998 */
1999 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
2000 &BTRFS_I(inode)->runtime_flags))
2001 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04002002 return 0;
2003}
2004
Filipe Manana669249e2014-09-02 11:09:58 +01002005static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2006{
2007 int ret;
Liu Bo343e4fc2017-11-15 16:10:28 -07002008 struct blk_plug plug;
Filipe Manana669249e2014-09-02 11:09:58 +01002009
Liu Bo343e4fc2017-11-15 16:10:28 -07002010 /*
2011 * This is only called in fsync, which would do synchronous writes, so
2012 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2013 * multiple disks using raid profile, a large IO can be split to
2014 * several segments of stripe length (currently 64K).
2015 */
2016 blk_start_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002017 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01002018 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01002019 atomic_dec(&BTRFS_I(inode)->sync_writers);
Liu Bo343e4fc2017-11-15 16:10:28 -07002020 blk_finish_plug(&plug);
Filipe Manana669249e2014-09-02 11:09:58 +01002021
2022 return ret;
2023}
2024
Chris Masond352ac62008-09-29 15:18:18 -04002025/*
2026 * fsync call for both files and directories. This logs the inode into
2027 * the tree log instead of forcing full commits whenever possible.
2028 *
2029 * It needs to call filemap_fdatawait so that all ordered extent updates are
2030 * in the metadata btree are up to date for copying to the log.
2031 *
2032 * It drops the inode mutex before doing the tree log commit. This is an
2033 * important optimization for directories because holding the mutex prevents
2034 * new operations on the dir while we write to disk.
2035 */
Josef Bacik02c24a82011-07-16 20:44:56 -04002036int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04002037{
Filipe Mananade17e792016-03-30 19:03:13 -04002038 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00002039 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002040 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04002041 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002042 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08002043 struct btrfs_log_ctx ctx;
Jeff Layton333427a2017-07-06 07:02:31 -04002044 int ret = 0, err;
Thomas Meyer897ca812017-10-07 16:02:21 +02002045 bool full_sync = false;
David Sterba9dcbeed2015-11-09 11:44:45 +01002046 u64 len;
Chris Mason39279cc2007-06-12 06:35:45 -04002047
David Sterba9dcbeed2015-11-09 11:44:45 +01002048 /*
2049 * The range length can be represented by u64, we have to do the typecasts
2050 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
2051 */
2052 len = (u64)end - (u64)start + 1;
liubo1abe9b82011-03-24 11:18:59 +00002053 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04002054
Liu Boebb70442017-11-21 14:35:40 -07002055 btrfs_init_log_ctx(&ctx, inode);
2056
Miao Xie90abccf2012-09-13 04:53:47 -06002057 /*
2058 * We write the dirty pages in the range and wait until they complete
2059 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04002060 * multi-task, and make the performance up. See
2061 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06002062 */
Filipe Manana669249e2014-09-02 11:09:58 +01002063 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06002064 if (ret)
Jeff Layton333427a2017-07-06 07:02:31 -04002065 goto out;
Miao Xie90abccf2012-09-13 04:53:47 -06002066
Al Viro59551022016-01-22 15:40:57 -05002067 inode_lock(inode);
Miao Xie2ecb7922012-09-06 04:04:27 -06002068 atomic_inc(&root->log_batch);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002069 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2070 &BTRFS_I(inode)->runtime_flags);
Filipe Manana669249e2014-09-02 11:09:58 +01002071 /*
2072 * We might have have had more pages made dirty after calling
2073 * start_ordered_ops and before acquiring the inode's i_mutex.
2074 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04002075 if (full_sync) {
Filipe Manana669249e2014-09-02 11:09:58 +01002076 /*
2077 * For a full sync, we need to make sure any ordered operations
2078 * start and finish before we start logging the inode, so that
2079 * all extents are persisted and the respective file extent
2080 * items are in the fs/subvol btree.
2081 */
Filipe Mananab659ef02015-03-31 14:16:52 +01002082 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Manana669249e2014-09-02 11:09:58 +01002083 } else {
2084 /*
2085 * Start any new ordered operations before starting to log the
2086 * inode. We will wait for them to finish in btrfs_sync_log().
2087 *
2088 * Right before acquiring the inode's mutex, we might have new
2089 * writes dirtying pages, which won't immediately start the
2090 * respective ordered operations - that is done through the
2091 * fill_delalloc callbacks invoked from the writepage and
2092 * writepages address space operations. So make sure we start
2093 * all ordered operations before starting to log our inode. Not
2094 * doing this means that while logging the inode, writeback
2095 * could start and invoke writepage/writepages, which would call
2096 * the fill_delalloc callbacks (cow_file_range,
2097 * submit_compressed_extents). These callbacks add first an
2098 * extent map to the modified list of extents and then create
2099 * the respective ordered operation, which means in
2100 * tree-log.c:btrfs_log_inode() we might capture all existing
2101 * ordered operations (with btrfs_get_logged_extents()) before
2102 * the fill_delalloc callback adds its ordered operation, and by
2103 * the time we visit the modified list of extent maps (with
2104 * btrfs_log_changed_extents()), we see and process the extent
2105 * map they created. We then use the extent map to construct a
2106 * file extent item for logging without waiting for the
2107 * respective ordered operation to finish - this file extent
2108 * item points to a disk location that might not have yet been
2109 * written to, containing random data - so after a crash a log
2110 * replay will make our inode have file extent items that point
2111 * to disk locations containing invalid data, as we returned
2112 * success to userspace without waiting for the respective
2113 * ordered operation to finish, because it wasn't captured by
2114 * btrfs_get_logged_extents().
2115 */
2116 ret = start_ordered_ops(inode, start, end);
2117 }
2118 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002119 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002120 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002121 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002122 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002123
Chris Mason39279cc2007-06-12 06:35:45 -04002124 /*
Filipe Manana3a8b36f2015-03-01 20:36:00 +00002125 * If the last transaction that changed this file was before the current
2126 * transaction and we have the full sync flag set in our inode, we can
2127 * bail out now without any syncing.
2128 *
2129 * Note that we can't bail out if the full sync flag isn't set. This is
2130 * because when the full sync flag is set we start all ordered extents
2131 * and wait for them to fully complete - when they complete they update
2132 * the inode's last_trans field through:
2133 *
2134 * btrfs_finish_ordered_io() ->
2135 * btrfs_update_inode_fallback() ->
2136 * btrfs_update_inode() ->
2137 * btrfs_set_inode_last_trans()
2138 *
2139 * So we are sure that last_trans is up to date and can do this check to
2140 * bail out safely. For the fast path, when the full sync flag is not
2141 * set in our inode, we can not do it because we start only our ordered
2142 * extents and don't wait for them to complete (that is when
2143 * btrfs_finish_ordered_io runs), so here at this point their last_trans
2144 * value might be less than or equals to fs_info->last_trans_committed,
2145 * and setting a speculative last_trans for an inode when a buffered
2146 * write is made (such as fs_info->generation + 1 for example) would not
2147 * be reliable since after setting the value and before fsync is called
2148 * any number of transactions can start and commit (transaction kthread
2149 * commits the current transaction periodically), and a transaction
2150 * commit does not start nor waits for ordered extents to complete.
Chris Mason257c62e2009-10-13 13:21:08 -04002151 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002152 smp_mb();
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02002153 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
Filipe Mananaaffc0ff2016-02-24 07:35:05 +00002154 (full_sync && BTRFS_I(inode)->last_trans <=
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002155 fs_info->last_trans_committed) ||
Filipe Mananaaffc0ff2016-02-24 07:35:05 +00002156 (!btrfs_have_ordered_extents_in_range(inode, start, len) &&
2157 BTRFS_I(inode)->last_trans
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002158 <= fs_info->last_trans_committed)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002159 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002160 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002161 * modified so clear this flag in case it was set for whatever
2162 * reason, it's no longer relevant.
2163 */
2164 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2165 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002166 /*
2167 * An ordered extent might have started before and completed
2168 * already with io errors, in which case the inode was not
2169 * updated and we end up here. So check the inode's mapping
Jeff Layton333427a2017-07-06 07:02:31 -04002170 * for any errors that might have happened since we last
2171 * checked called fsync.
Filipe Manana0596a902016-06-14 14:18:27 +01002172 */
Jeff Layton333427a2017-07-06 07:02:31 -04002173 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
Al Viro59551022016-01-22 15:40:57 -05002174 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002175 goto out;
2176 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002177
2178 /*
Josef Bacik5039edd2014-01-15 13:34:13 -05002179 * We use start here because we will need to wait on the IO to complete
2180 * in btrfs_sync_log, which could require joining a transaction (for
2181 * example checking cross references in the nocow path). If we use join
2182 * here we could get into a situation where we're waiting on IO to
2183 * happen that is blocked on a transaction trying to commit. With start
2184 * we inc the extwriter counter, so we wait for all extwriters to exit
2185 * before we start blocking join'ers. This comment is to keep somebody
2186 * from thinking they are super smart and changing this to
2187 * btrfs_join_transaction *cough*Josef*cough*.
2188 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002189 trans = btrfs_start_transaction(root, 0);
2190 if (IS_ERR(trans)) {
2191 ret = PTR_ERR(trans);
Al Viro59551022016-01-22 15:40:57 -05002192 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002193 goto out;
2194 }
Josef Bacik5039edd2014-01-15 13:34:13 -05002195 trans->sync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002196
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +02002197 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002198 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002199 /* Fallthrough and commit/free transaction. */
2200 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002201 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002202
2203 /* we've logged all the items and now have a consistent
2204 * version of the file in the log. It is possible that
2205 * someone will come in and modify the file, but that's
2206 * fine because the log is consistent on disk, and we
2207 * have references to all of the file's extents
2208 *
2209 * It is possible that someone will come in and log the
2210 * file again, but that will end up using the synchronization
2211 * inside btrfs_sync_log to keep things safe.
2212 */
Al Viro59551022016-01-22 15:40:57 -05002213 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002214
Filipe Manana8407f552014-09-05 15:14:39 +01002215 /*
2216 * If any of the ordered extents had an error, just return it to user
2217 * space, so that the application knows some writes didn't succeed and
2218 * can take proper action (retry for e.g.). Blindly committing the
2219 * transaction in this case, would fool userspace that everything was
2220 * successful. And we also want to make sure our log doesn't contain
2221 * file extent items pointing to extents that weren't fully written to -
2222 * just like in the non fast fsync path, where we check for the ordered
2223 * operation's error flag before writing to the log tree and return -EIO
2224 * if any of them had this flag set (btrfs_wait_ordered_range) -
2225 * therefore we need to check for errors in the ordered operations,
2226 * which are indicated by ctx.io_err.
2227 */
2228 if (ctx.io_err) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002229 btrfs_end_transaction(trans);
Filipe Manana8407f552014-09-05 15:14:39 +01002230 ret = ctx.io_err;
2231 goto out;
2232 }
2233
Chris Mason257c62e2009-10-13 13:21:08 -04002234 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002235 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002236 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002237 if (!ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002238 ret = btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002239 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002240 }
Chris Mason257c62e2009-10-13 13:21:08 -04002241 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002242 if (!full_sync) {
David Sterba9dcbeed2015-11-09 11:44:45 +01002243 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Mananab05fd872014-05-29 23:31:39 +01002244 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002245 btrfs_end_transaction(trans);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002246 goto out;
Filipe Mananab05fd872014-05-29 23:31:39 +01002247 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002248 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002249 ret = btrfs_commit_transaction(trans);
Chris Mason257c62e2009-10-13 13:21:08 -04002250 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002251 ret = btrfs_end_transaction(trans);
Chris Masone02119d2008-09-05 16:13:11 -04002252 }
Chris Mason39279cc2007-06-12 06:35:45 -04002253out:
Liu Boebb70442017-11-21 14:35:40 -07002254 ASSERT(list_empty(&ctx.list));
Jeff Layton333427a2017-07-06 07:02:31 -04002255 err = file_check_and_advance_wb_err(file);
2256 if (!ret)
2257 ret = err;
Roel Kluin014e4ac2010-01-29 10:42:11 +00002258 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002259}
2260
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002261static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002262 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002263 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002264 .page_mkwrite = btrfs_page_mkwrite,
2265};
2266
2267static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2268{
Miao Xie058a4572010-05-20 07:21:50 +00002269 struct address_space *mapping = filp->f_mapping;
2270
2271 if (!mapping->a_ops->readpage)
2272 return -ENOEXEC;
2273
Chris Mason9ebefb182007-06-15 13:50:00 -04002274 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002275 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002276
Chris Mason9ebefb182007-06-15 13:50:00 -04002277 return 0;
2278}
2279
Nikolay Borisov35339c22017-02-20 13:50:46 +02002280static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
Josef Bacik2aaa6652012-08-29 14:27:18 -04002281 int slot, u64 start, u64 end)
2282{
2283 struct btrfs_file_extent_item *fi;
2284 struct btrfs_key key;
2285
2286 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2287 return 0;
2288
2289 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov35339c22017-02-20 13:50:46 +02002290 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002291 key.type != BTRFS_EXTENT_DATA_KEY)
2292 return 0;
2293
2294 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2295
2296 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2297 return 0;
2298
2299 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2300 return 0;
2301
2302 if (key.offset == end)
2303 return 1;
2304 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2305 return 1;
2306 return 0;
2307}
2308
Nikolay Borisova012a742017-02-20 13:50:47 +02002309static int fill_holes(struct btrfs_trans_handle *trans,
2310 struct btrfs_inode *inode,
2311 struct btrfs_path *path, u64 offset, u64 end)
Josef Bacik2aaa6652012-08-29 14:27:18 -04002312{
Nikolay Borisova012a742017-02-20 13:50:47 +02002313 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
2314 struct btrfs_root *root = inode->root;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002315 struct extent_buffer *leaf;
2316 struct btrfs_file_extent_item *fi;
2317 struct extent_map *hole_em;
Nikolay Borisova012a742017-02-20 13:50:47 +02002318 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002319 struct btrfs_key key;
2320 int ret;
2321
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002322 if (btrfs_fs_incompat(fs_info, NO_HOLES))
Josef Bacik16e75492013-10-22 12:18:51 -04002323 goto out;
2324
Nikolay Borisova012a742017-02-20 13:50:47 +02002325 key.objectid = btrfs_ino(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002326 key.type = BTRFS_EXTENT_DATA_KEY;
2327 key.offset = offset;
2328
Josef Bacik2aaa6652012-08-29 14:27:18 -04002329 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacikf94480b2016-11-14 14:06:22 -05002330 if (ret <= 0) {
2331 /*
2332 * We should have dropped this offset, so if we find it then
2333 * something has gone horribly wrong.
2334 */
2335 if (ret == 0)
2336 ret = -EINVAL;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002337 return ret;
Josef Bacikf94480b2016-11-14 14:06:22 -05002338 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002339
2340 leaf = path->nodes[0];
Nikolay Borisova012a742017-02-20 13:50:47 +02002341 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002342 u64 num_bytes;
2343
2344 path->slots[0]--;
2345 fi = btrfs_item_ptr(leaf, path->slots[0],
2346 struct btrfs_file_extent_item);
2347 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2348 end - offset;
2349 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2350 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2351 btrfs_set_file_extent_offset(leaf, fi, 0);
2352 btrfs_mark_buffer_dirty(leaf);
2353 goto out;
2354 }
2355
chandan1707e262014-07-01 12:04:28 +05302356 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002357 u64 num_bytes;
2358
Josef Bacik2aaa6652012-08-29 14:27:18 -04002359 key.offset = offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002360 btrfs_set_item_key_safe(fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002361 fi = btrfs_item_ptr(leaf, path->slots[0],
2362 struct btrfs_file_extent_item);
2363 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2364 offset;
2365 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2366 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2367 btrfs_set_file_extent_offset(leaf, fi, 0);
2368 btrfs_mark_buffer_dirty(leaf);
2369 goto out;
2370 }
2371 btrfs_release_path(path);
2372
Nikolay Borisova012a742017-02-20 13:50:47 +02002373 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01002374 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002375 if (ret)
2376 return ret;
2377
2378out:
2379 btrfs_release_path(path);
2380
2381 hole_em = alloc_extent_map();
2382 if (!hole_em) {
2383 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
Nikolay Borisova012a742017-02-20 13:50:47 +02002384 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002385 } else {
2386 hole_em->start = offset;
2387 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002388 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002389 hole_em->orig_start = offset;
2390
2391 hole_em->block_start = EXTENT_MAP_HOLE;
2392 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002393 hole_em->orig_block_len = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002394 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002395 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2396 hole_em->generation = trans->transid;
2397
2398 do {
2399 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2400 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002401 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002402 write_unlock(&em_tree->lock);
2403 } while (ret == -EEXIST);
2404 free_extent_map(hole_em);
2405 if (ret)
2406 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova012a742017-02-20 13:50:47 +02002407 &inode->runtime_flags);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002408 }
2409
2410 return 0;
2411}
2412
Qu Wenruod7781542014-05-30 15:16:10 +08002413/*
2414 * Find a hole extent on given inode and change start/len to the end of hole
2415 * extent.(hole/vacuum extent whose em->start <= start &&
2416 * em->start + em->len > start)
2417 * When a hole extent is found, return 1 and modify start/len.
2418 */
2419static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2420{
Filipe Manana609805d2017-05-30 05:29:09 +01002421 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruod7781542014-05-30 15:16:10 +08002422 struct extent_map *em;
2423 int ret = 0;
2424
Filipe Manana609805d2017-05-30 05:29:09 +01002425 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2426 round_down(*start, fs_info->sectorsize),
2427 round_up(*len, fs_info->sectorsize), 0);
Dan Carpenter99862772017-04-11 11:57:15 +03002428 if (IS_ERR(em))
2429 return PTR_ERR(em);
Qu Wenruod7781542014-05-30 15:16:10 +08002430
2431 /* Hole or vacuum extent(only exists in no-hole mode) */
2432 if (em->block_start == EXTENT_MAP_HOLE) {
2433 ret = 1;
2434 *len = em->start + em->len > *start + *len ?
2435 0 : *start + *len - em->start - em->len;
2436 *start = em->start + em->len;
2437 }
2438 free_extent_map(em);
2439 return ret;
2440}
2441
Filipe Mananaf27451f2017-10-25 11:55:28 +01002442static int btrfs_punch_hole_lock_range(struct inode *inode,
2443 const u64 lockstart,
2444 const u64 lockend,
2445 struct extent_state **cached_state)
2446{
2447 while (1) {
2448 struct btrfs_ordered_extent *ordered;
2449 int ret;
2450
2451 truncate_pagecache_range(inode, lockstart, lockend);
2452
2453 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2454 cached_state);
2455 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2456
2457 /*
2458 * We need to make sure we have no ordered extents in this range
2459 * and nobody raced in and read a page in this range, if we did
2460 * we need to try again.
2461 */
2462 if ((!ordered ||
2463 (ordered->file_offset + ordered->len <= lockstart ||
2464 ordered->file_offset > lockend)) &&
David Sterba051c98e2018-03-07 15:33:22 +01002465 !filemap_range_has_page(inode->i_mapping,
2466 lockstart, lockend)) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002467 if (ordered)
2468 btrfs_put_ordered_extent(ordered);
2469 break;
2470 }
2471 if (ordered)
2472 btrfs_put_ordered_extent(ordered);
2473 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2474 lockend, cached_state);
2475 ret = btrfs_wait_ordered_range(inode, lockstart,
2476 lockend - lockstart + 1);
2477 if (ret)
2478 return ret;
2479 }
2480 return 0;
2481}
2482
Josef Bacik2aaa6652012-08-29 14:27:18 -04002483static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2484{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002485 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002486 struct btrfs_root *root = BTRFS_I(inode)->root;
2487 struct extent_state *cached_state = NULL;
2488 struct btrfs_path *path;
2489 struct btrfs_block_rsv *rsv;
2490 struct btrfs_trans_handle *trans;
Qu Wenruod7781542014-05-30 15:16:10 +08002491 u64 lockstart;
2492 u64 lockend;
2493 u64 tail_start;
2494 u64 tail_len;
2495 u64 orig_start = offset;
2496 u64 cur_offset;
Chris Mason5f52a2c2016-12-13 09:14:42 -08002497 u64 min_size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002498 u64 drop_end;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002499 int ret = 0;
2500 int err = 0;
Alexandru Moise6e4d6fa2015-09-22 21:00:07 +00002501 unsigned int rsv_count;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302502 bool same_block;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002503 bool no_holes = btrfs_fs_incompat(fs_info, NO_HOLES);
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002504 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302505 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002506 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002507
Josef Bacik0ef8b722013-10-25 16:13:35 -04002508 ret = btrfs_wait_ordered_range(inode, offset, len);
2509 if (ret)
2510 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002511
Al Viro59551022016-01-22 15:40:57 -05002512 inode_lock(inode);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002513 ino_size = round_up(inode->i_size, fs_info->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002514 ret = find_first_non_hole(inode, &offset, &len);
2515 if (ret < 0)
2516 goto out_only_mutex;
2517 if (ret && !len) {
2518 /* Already in a large hole */
2519 ret = 0;
2520 goto out_only_mutex;
2521 }
2522
Jeff Mahoneyda170662016-06-15 09:22:56 -04002523 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
Qu Wenruod7781542014-05-30 15:16:10 +08002524 lockend = round_down(offset + len,
Jeff Mahoneyda170662016-06-15 09:22:56 -04002525 btrfs_inode_sectorsize(inode)) - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002526 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2527 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002528 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302529 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002530 * because we are sure there is no data there.
2531 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002532 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302533 * Only do this if we are in the same block and we aren't doing the
2534 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002535 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002536 if (same_block && len < fs_info->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002537 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302538 truncated_block = true;
2539 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002540 } else {
2541 ret = 0;
2542 }
Qu Wenruod7781542014-05-30 15:16:10 +08002543 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002544 }
2545
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302546 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002547 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302548 truncated_block = true;
2549 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002550 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002551 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002552 return ret;
2553 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002554 }
2555
Qu Wenruod7781542014-05-30 15:16:10 +08002556 /* Check the aligned pages after the first unaligned page,
2557 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002558 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002559 * the extra check can be skipped */
2560 if (offset == orig_start) {
2561 /* after truncate page, check hole again */
2562 len = offset + len - lockstart;
2563 offset = lockstart;
2564 ret = find_first_non_hole(inode, &offset, &len);
2565 if (ret < 0)
2566 goto out_only_mutex;
2567 if (ret && !len) {
2568 ret = 0;
2569 goto out_only_mutex;
2570 }
2571 lockstart = offset;
2572 }
2573
2574 /* Check the tail unaligned part is in a hole */
2575 tail_start = lockend + 1;
2576 tail_len = offset + len - tail_start;
2577 if (tail_len) {
2578 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2579 if (unlikely(ret < 0))
2580 goto out_only_mutex;
2581 if (!ret) {
2582 /* zero the front end of the last page */
2583 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302584 truncated_block = true;
2585 ret = btrfs_truncate_block(inode,
2586 tail_start + tail_len,
2587 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002588 if (ret)
2589 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002590 }
Miao Xie00612802012-12-05 10:54:12 +00002591 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002592 }
2593
2594 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002595 ret = 0;
2596 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002597 }
2598
Filipe Mananaf27451f2017-10-25 11:55:28 +01002599 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2600 &cached_state);
2601 if (ret) {
2602 inode_unlock(inode);
2603 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002604 }
2605
2606 path = btrfs_alloc_path();
2607 if (!path) {
2608 ret = -ENOMEM;
2609 goto out;
2610 }
2611
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002612 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002613 if (!rsv) {
2614 ret = -ENOMEM;
2615 goto out_free;
2616 }
Chris Mason5f52a2c2016-12-13 09:14:42 -08002617 rsv->size = btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002618 rsv->failfast = 1;
2619
2620 /*
2621 * 1 - update the inode
2622 * 1 - removing the extents in the range
Josef Bacik16e75492013-10-22 12:18:51 -04002623 * 1 - adding the hole extent if no_holes isn't set
Josef Bacik2aaa6652012-08-29 14:27:18 -04002624 */
Josef Bacik16e75492013-10-22 12:18:51 -04002625 rsv_count = no_holes ? 2 : 3;
2626 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002627 if (IS_ERR(trans)) {
2628 err = PTR_ERR(trans);
2629 goto out_free;
2630 }
2631
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002632 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002633 min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002634 BUG_ON(ret);
2635 trans->block_rsv = rsv;
2636
Qu Wenruod7781542014-05-30 15:16:10 +08002637 cur_offset = lockstart;
2638 len = lockend - cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002639 while (cur_offset < lockend) {
2640 ret = __btrfs_drop_extents(trans, root, inode, path,
2641 cur_offset, lockend + 1,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002642 &drop_end, 1, 0, 0, NULL);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002643 if (ret != -ENOSPC)
2644 break;
2645
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002646 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002647
Josef Bacik62fe51c12016-11-16 09:13:39 -05002648 if (cur_offset < drop_end && cur_offset < ino_size) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002649 ret = fill_holes(trans, BTRFS_I(inode), path,
2650 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002651 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002652 /*
2653 * If we failed then we didn't insert our hole
2654 * entries for the area we dropped, so now the
2655 * fs is corrupted, so we must abort the
2656 * transaction.
2657 */
2658 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002659 err = ret;
2660 break;
2661 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002662 }
2663
2664 cur_offset = drop_end;
2665
2666 ret = btrfs_update_inode(trans, root, inode);
2667 if (ret) {
2668 err = ret;
2669 break;
2670 }
2671
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002672 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002673 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002674
Josef Bacik16e75492013-10-22 12:18:51 -04002675 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002676 if (IS_ERR(trans)) {
2677 ret = PTR_ERR(trans);
2678 trans = NULL;
2679 break;
2680 }
2681
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002682 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002683 rsv, min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002684 BUG_ON(ret); /* shouldn't happen */
2685 trans->block_rsv = rsv;
Qu Wenruod7781542014-05-30 15:16:10 +08002686
2687 ret = find_first_non_hole(inode, &cur_offset, &len);
2688 if (unlikely(ret < 0))
2689 break;
2690 if (ret && !len) {
2691 ret = 0;
2692 break;
2693 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002694 }
2695
2696 if (ret) {
2697 err = ret;
2698 goto out_trans;
2699 }
2700
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002701 trans->block_rsv = &fs_info->trans_block_rsv;
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002702 /*
Filipe Manana2959a322015-11-02 12:32:44 +00002703 * If we are using the NO_HOLES feature we might have had already an
2704 * hole that overlaps a part of the region [lockstart, lockend] and
2705 * ends at (or beyond) lockend. Since we have no file extent items to
2706 * represent holes, drop_end can be less than lockend and so we must
2707 * make sure we have an extent map representing the existing hole (the
2708 * call to __btrfs_drop_extents() might have dropped the existing extent
2709 * map representing the existing hole), otherwise the fast fsync path
2710 * will not record the existence of the hole region
2711 * [existing_hole_start, lockend].
2712 */
2713 if (drop_end <= lockend)
2714 drop_end = lockend + 1;
2715 /*
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002716 * Don't insert file hole extent item if it's for a range beyond eof
2717 * (because it's useless) or if it represents a 0 bytes range (when
2718 * cur_offset == drop_end).
2719 */
2720 if (cur_offset < ino_size && cur_offset < drop_end) {
Nikolay Borisova012a742017-02-20 13:50:47 +02002721 ret = fill_holes(trans, BTRFS_I(inode), path,
2722 cur_offset, drop_end);
Filipe Manana12870f12014-02-15 15:55:58 +00002723 if (ret) {
Josef Bacikf94480b2016-11-14 14:06:22 -05002724 /* Same comment as above. */
2725 btrfs_abort_transaction(trans, ret);
Filipe Manana12870f12014-02-15 15:55:58 +00002726 err = ret;
2727 goto out_trans;
2728 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002729 }
2730
2731out_trans:
2732 if (!trans)
2733 goto out_free;
2734
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002735 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002736 inode->i_mtime = inode->i_ctime = current_time(inode);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002737
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002738 trans->block_rsv = &fs_info->trans_block_rsv;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002739 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002740 updated_inode = true;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002741 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002742 btrfs_btree_balance_dirty(fs_info);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002743out_free:
2744 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002745 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002746out:
2747 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01002748 &cached_state);
Qu Wenruod7781542014-05-30 15:16:10 +08002749out_only_mutex:
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302750 if (!updated_inode && truncated_block && !ret && !err) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002751 /*
2752 * If we only end up zeroing part of a page, we still need to
2753 * update the inode item, so that all the time fields are
2754 * updated as well as the necessary btrfs inode in memory fields
2755 * for detecting, at fsync time, if the inode isn't yet in the
2756 * log tree or it's there but not up to date.
2757 */
2758 trans = btrfs_start_transaction(root, 1);
2759 if (IS_ERR(trans)) {
2760 err = PTR_ERR(trans);
2761 } else {
2762 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002763 ret = btrfs_end_transaction(trans);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002764 }
2765 }
Al Viro59551022016-01-22 15:40:57 -05002766 inode_unlock(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002767 if (ret && !err)
2768 err = ret;
2769 return err;
2770}
2771
Qu Wenruo14524a82015-09-08 17:22:44 +08002772/* Helper structure to record which range is already reserved */
2773struct falloc_range {
2774 struct list_head list;
2775 u64 start;
2776 u64 len;
2777};
2778
2779/*
2780 * Helper function to add falloc range
2781 *
2782 * Caller should have locked the larger range of extent containing
2783 * [start, len)
2784 */
2785static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2786{
2787 struct falloc_range *prev = NULL;
2788 struct falloc_range *range = NULL;
2789
2790 if (list_empty(head))
2791 goto insert;
2792
2793 /*
2794 * As fallocate iterate by bytenr order, we only need to check
2795 * the last range.
2796 */
2797 prev = list_entry(head->prev, struct falloc_range, list);
2798 if (prev->start + prev->len == start) {
2799 prev->len += len;
2800 return 0;
2801 }
2802insert:
David Sterba32fc9322016-02-11 14:25:38 +01002803 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002804 if (!range)
2805 return -ENOMEM;
2806 range->start = start;
2807 range->len = len;
2808 list_add_tail(&range->list, head);
2809 return 0;
2810}
2811
Filipe Mananaf27451f2017-10-25 11:55:28 +01002812static int btrfs_fallocate_update_isize(struct inode *inode,
2813 const u64 end,
2814 const int mode)
2815{
2816 struct btrfs_trans_handle *trans;
2817 struct btrfs_root *root = BTRFS_I(inode)->root;
2818 int ret;
2819 int ret2;
2820
2821 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2822 return 0;
2823
2824 trans = btrfs_start_transaction(root, 1);
2825 if (IS_ERR(trans))
2826 return PTR_ERR(trans);
2827
2828 inode->i_ctime = current_time(inode);
2829 i_size_write(inode, end);
2830 btrfs_ordered_update_i_size(inode, end, NULL);
2831 ret = btrfs_update_inode(trans, root, inode);
2832 ret2 = btrfs_end_transaction(trans);
2833
2834 return ret ? ret : ret2;
2835}
2836
Filipe Manana81fdf632018-01-18 11:34:31 +00002837enum {
2838 RANGE_BOUNDARY_WRITTEN_EXTENT = 0,
2839 RANGE_BOUNDARY_PREALLOC_EXTENT = 1,
2840 RANGE_BOUNDARY_HOLE = 2,
2841};
2842
Filipe Mananaf27451f2017-10-25 11:55:28 +01002843static int btrfs_zero_range_check_range_boundary(struct inode *inode,
2844 u64 offset)
2845{
2846 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2847 struct extent_map *em;
Filipe Manana81fdf632018-01-18 11:34:31 +00002848 int ret;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002849
2850 offset = round_down(offset, sectorsize);
2851 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize, 0);
2852 if (IS_ERR(em))
2853 return PTR_ERR(em);
2854
2855 if (em->block_start == EXTENT_MAP_HOLE)
Filipe Manana81fdf632018-01-18 11:34:31 +00002856 ret = RANGE_BOUNDARY_HOLE;
2857 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2858 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
2859 else
2860 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002861
2862 free_extent_map(em);
2863 return ret;
2864}
2865
2866static int btrfs_zero_range(struct inode *inode,
2867 loff_t offset,
2868 loff_t len,
2869 const int mode)
2870{
2871 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2872 struct extent_map *em;
2873 struct extent_changeset *data_reserved = NULL;
2874 int ret;
2875 u64 alloc_hint = 0;
2876 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2877 u64 alloc_start = round_down(offset, sectorsize);
2878 u64 alloc_end = round_up(offset + len, sectorsize);
2879 u64 bytes_to_reserve = 0;
2880 bool space_reserved = false;
2881
2882 inode_dio_wait(inode);
2883
2884 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2885 alloc_start, alloc_end - alloc_start, 0);
2886 if (IS_ERR(em)) {
2887 ret = PTR_ERR(em);
2888 goto out;
2889 }
2890
2891 /*
2892 * Avoid hole punching and extent allocation for some cases. More cases
2893 * could be considered, but these are unlikely common and we keep things
2894 * as simple as possible for now. Also, intentionally, if the target
2895 * range contains one or more prealloc extents together with regular
2896 * extents and holes, we drop all the existing extents and allocate a
2897 * new prealloc extent, so that we get a larger contiguous disk extent.
2898 */
2899 if (em->start <= alloc_start &&
2900 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2901 const u64 em_end = em->start + em->len;
2902
2903 if (em_end >= offset + len) {
2904 /*
2905 * The whole range is already a prealloc extent,
2906 * do nothing except updating the inode's i_size if
2907 * needed.
2908 */
2909 free_extent_map(em);
2910 ret = btrfs_fallocate_update_isize(inode, offset + len,
2911 mode);
2912 goto out;
2913 }
2914 /*
2915 * Part of the range is already a prealloc extent, so operate
2916 * only on the remaining part of the range.
2917 */
2918 alloc_start = em_end;
2919 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
2920 len = offset + len - alloc_start;
2921 offset = alloc_start;
2922 alloc_hint = em->block_start + em->len;
2923 }
2924 free_extent_map(em);
2925
2926 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
2927 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
2928 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2929 alloc_start, sectorsize, 0);
2930 if (IS_ERR(em)) {
2931 ret = PTR_ERR(em);
2932 goto out;
2933 }
2934
2935 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2936 free_extent_map(em);
2937 ret = btrfs_fallocate_update_isize(inode, offset + len,
2938 mode);
2939 goto out;
2940 }
2941 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
2942 free_extent_map(em);
2943 ret = btrfs_truncate_block(inode, offset, len, 0);
2944 if (!ret)
2945 ret = btrfs_fallocate_update_isize(inode,
2946 offset + len,
2947 mode);
2948 return ret;
2949 }
2950 free_extent_map(em);
2951 alloc_start = round_down(offset, sectorsize);
2952 alloc_end = alloc_start + sectorsize;
2953 goto reserve_space;
2954 }
2955
2956 alloc_start = round_up(offset, sectorsize);
2957 alloc_end = round_down(offset + len, sectorsize);
2958
2959 /*
2960 * For unaligned ranges, check the pages at the boundaries, they might
2961 * map to an extent, in which case we need to partially zero them, or
2962 * they might map to a hole, in which case we need our allocation range
2963 * to cover them.
2964 */
2965 if (!IS_ALIGNED(offset, sectorsize)) {
2966 ret = btrfs_zero_range_check_range_boundary(inode, offset);
2967 if (ret < 0)
2968 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002969 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002970 alloc_start = round_down(offset, sectorsize);
2971 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002972 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002973 ret = btrfs_truncate_block(inode, offset, 0, 0);
2974 if (ret)
2975 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002976 } else {
2977 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002978 }
2979 }
2980
2981 if (!IS_ALIGNED(offset + len, sectorsize)) {
2982 ret = btrfs_zero_range_check_range_boundary(inode,
2983 offset + len);
2984 if (ret < 0)
2985 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002986 if (ret == RANGE_BOUNDARY_HOLE) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002987 alloc_end = round_up(offset + len, sectorsize);
2988 ret = 0;
Filipe Manana81fdf632018-01-18 11:34:31 +00002989 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01002990 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
2991 if (ret)
2992 goto out;
Filipe Manana81fdf632018-01-18 11:34:31 +00002993 } else {
2994 ret = 0;
Filipe Mananaf27451f2017-10-25 11:55:28 +01002995 }
2996 }
2997
2998reserve_space:
2999 if (alloc_start < alloc_end) {
3000 struct extent_state *cached_state = NULL;
3001 const u64 lockstart = alloc_start;
3002 const u64 lockend = alloc_end - 1;
3003
3004 bytes_to_reserve = alloc_end - alloc_start;
3005 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3006 bytes_to_reserve);
3007 if (ret < 0)
3008 goto out;
3009 space_reserved = true;
3010 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3011 alloc_start, bytes_to_reserve);
3012 if (ret)
3013 goto out;
3014 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3015 &cached_state);
3016 if (ret)
3017 goto out;
3018 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3019 alloc_end - alloc_start,
3020 i_blocksize(inode),
3021 offset + len, &alloc_hint);
3022 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3023 lockend, &cached_state);
3024 /* btrfs_prealloc_file_range releases reserved space on error */
Filipe Manana9f13ce72018-01-18 11:34:20 +00003025 if (ret) {
Filipe Mananaf27451f2017-10-25 11:55:28 +01003026 space_reserved = false;
Filipe Manana9f13ce72018-01-18 11:34:20 +00003027 goto out;
3028 }
Filipe Mananaf27451f2017-10-25 11:55:28 +01003029 }
Filipe Manana9f13ce72018-01-18 11:34:20 +00003030 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
Filipe Mananaf27451f2017-10-25 11:55:28 +01003031 out:
3032 if (ret && space_reserved)
3033 btrfs_free_reserved_data_space(inode, data_reserved,
3034 alloc_start, bytes_to_reserve);
3035 extent_changeset_free(data_reserved);
3036
3037 return ret;
3038}
3039
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003040static long btrfs_fallocate(struct file *file, int mode,
3041 loff_t offset, loff_t len)
3042{
Al Viro496ad9a2013-01-23 17:07:38 -05003043 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003044 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003045 struct extent_changeset *data_reserved = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08003046 struct falloc_range *range;
3047 struct falloc_range *tmp;
3048 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003049 u64 cur_offset;
3050 u64 last_byte;
3051 u64 alloc_start;
3052 u64 alloc_end;
3053 u64 alloc_hint = 0;
3054 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08003055 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003056 struct extent_map *em;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003057 int blocksize = btrfs_inode_sectorsize(inode);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003058 int ret;
3059
Miao Xie797f4272012-11-28 10:28:07 +00003060 alloc_start = round_down(offset, blocksize);
3061 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003062 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003063
Josef Bacik2aaa6652012-08-29 14:27:18 -04003064 /* Make sure we aren't being give some crap mode */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003065 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3066 FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003067 return -EOPNOTSUPP;
3068
Josef Bacik2aaa6652012-08-29 14:27:18 -04003069 if (mode & FALLOC_FL_PUNCH_HOLE)
3070 return btrfs_punch_hole(inode, offset, len);
3071
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003072 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08003073 * Only trigger disk allocation, don't trigger qgroup reserve
3074 *
3075 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05003076 */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003077 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3078 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3079 alloc_end - alloc_start);
3080 if (ret < 0)
3081 return ret;
3082 }
Chris Masond98456f2012-01-31 20:27:41 -05003083
Al Viro59551022016-01-22 15:40:57 -05003084 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07003085
3086 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3087 ret = inode_newsize_ok(inode, offset + len);
3088 if (ret)
3089 goto out;
3090 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003091
Qu Wenruo14524a82015-09-08 17:22:44 +08003092 /*
3093 * TODO: Move these two operations after we have checked
3094 * accurate reserved space, or fallocate can still fail but
3095 * with page truncated or size expanded.
3096 *
3097 * But that's a minor problem and won't do much harm BTW.
3098 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003099 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05003100 ret = btrfs_cont_expand(inode, i_size_read(inode),
3101 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003102 if (ret)
3103 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08003104 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04003105 /*
3106 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303107 * need to zero out the end of the block if i_size lands in the
3108 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04003109 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05303110 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04003111 if (ret)
3112 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003113 }
3114
Josef Bacika71754f2013-06-17 17:14:39 -04003115 /*
3116 * wait for ordered IO before we have any locks. We'll loop again
3117 * below with the locks held.
3118 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003119 ret = btrfs_wait_ordered_range(inode, alloc_start,
3120 alloc_end - alloc_start);
3121 if (ret)
3122 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04003123
Filipe Mananaf27451f2017-10-25 11:55:28 +01003124 if (mode & FALLOC_FL_ZERO_RANGE) {
3125 ret = btrfs_zero_range(inode, offset, len, mode);
3126 inode_unlock(inode);
3127 return ret;
3128 }
3129
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003130 locked_end = alloc_end - 1;
3131 while (1) {
3132 struct btrfs_ordered_extent *ordered;
3133
3134 /* the extent lock is ordered inside the running
3135 * transaction
3136 */
3137 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01003138 locked_end, &cached_state);
Nikolay Borisov96b09dd2017-11-01 11:36:05 +02003139 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3140
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003141 if (ordered &&
3142 ordered->file_offset + ordered->len > alloc_start &&
3143 ordered->file_offset < alloc_end) {
3144 btrfs_put_ordered_extent(ordered);
3145 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3146 alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003147 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003148 /*
3149 * we can't wait on the range with the transaction
3150 * running or with the extent lock held
3151 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04003152 ret = btrfs_wait_ordered_range(inode, alloc_start,
3153 alloc_end - alloc_start);
3154 if (ret)
3155 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003156 } else {
3157 if (ordered)
3158 btrfs_put_ordered_extent(ordered);
3159 break;
3160 }
3161 }
3162
Qu Wenruo14524a82015-09-08 17:22:44 +08003163 /* First, check if we exceed the qgroup limit */
3164 INIT_LIST_HEAD(&reserve_list);
Nikolay Borisov6b7d6e92017-11-01 11:32:18 +02003165 while (cur_offset < alloc_end) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003166 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003167 alloc_end - cur_offset, 0);
Dan Carpenter99862772017-04-11 11:57:15 +03003168 if (IS_ERR(em)) {
3169 ret = PTR_ERR(em);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003170 break;
3171 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003172 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04003173 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00003174 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003175 if (em->block_start == EXTENT_MAP_HOLE ||
3176 (cur_offset >= inode->i_size &&
3177 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08003178 ret = add_falloc_range(&reserve_list, cur_offset,
3179 last_byte - cur_offset);
3180 if (ret < 0) {
3181 free_extent_map(em);
3182 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00003183 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08003184 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3185 cur_offset, last_byte - cur_offset);
Filipe Mananabe2d2532017-04-03 15:57:17 +01003186 if (ret < 0) {
3187 free_extent_map(em);
Qu Wenruo14524a82015-09-08 17:22:44 +08003188 break;
Filipe Mananabe2d2532017-04-03 15:57:17 +01003189 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003190 } else {
3191 /*
3192 * Do not need to reserve unwritten extent for this
3193 * range, free reserved data space first, otherwise
3194 * it'll result in false ENOSPC error.
3195 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08003196 btrfs_free_reserved_data_space(inode, data_reserved,
3197 cur_offset, last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003198 }
3199 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003200 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08003201 }
3202
3203 /*
3204 * If ret is still 0, means we're OK to fallocate.
3205 * Or just cleanup the list and exit.
3206 */
3207 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3208 if (!ret)
3209 ret = btrfs_prealloc_file_range(inode, mode,
3210 range->start,
Fabian Frederick93407472017-02-27 14:28:32 -08003211 range->len, i_blocksize(inode),
Qu Wenruo14524a82015-09-08 17:22:44 +08003212 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003213 else
Qu Wenruobc42bda2017-02-27 15:10:39 +08003214 btrfs_free_reserved_data_space(inode,
3215 data_reserved, range->start,
3216 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08003217 list_del(&range->list);
3218 kfree(range);
3219 }
3220 if (ret < 0)
3221 goto out_unlock;
3222
Filipe Mananaf27451f2017-10-25 11:55:28 +01003223 /*
3224 * We didn't need to allocate any more space, but we still extended the
3225 * size of the file so we need to update i_size and the inode item.
3226 */
3227 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
Qu Wenruo14524a82015-09-08 17:22:44 +08003228out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003229 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterbae43bbe52017-12-12 21:43:52 +01003230 &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003231out:
Al Viro59551022016-01-22 15:40:57 -05003232 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05003233 /* Let go of our reservation. */
Filipe Mananaf27451f2017-10-25 11:55:28 +01003234 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
Qu Wenruobc42bda2017-02-27 15:10:39 +08003235 btrfs_free_reserved_data_space(inode, data_reserved,
3236 alloc_start, alloc_end - cur_offset);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003237 extent_changeset_free(data_reserved);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003238 return ret;
3239}
3240
Andrew Morton965c8e52012-12-17 15:59:39 -08003241static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003242{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003243 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003244 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003245 struct extent_state *cached_state = NULL;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003246 u64 lockstart;
3247 u64 lockend;
3248 u64 start;
3249 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04003250 int ret = 0;
3251
Josef Bacikb2675152011-07-18 13:21:36 -04003252 if (inode->i_size == 0)
3253 return -ENXIO;
3254
Liu Bo4d1a40c2014-09-16 17:49:30 +08003255 /*
3256 * *offset can be negative, in this case we start finding DATA/HOLE from
3257 * the very start of the file.
3258 */
3259 start = max_t(loff_t, 0, *offset);
3260
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003261 lockstart = round_down(start, fs_info->sectorsize);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003262 lockend = round_up(i_size_read(inode),
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003263 fs_info->sectorsize);
Liu Bo4d1a40c2014-09-16 17:49:30 +08003264 if (lockend <= lockstart)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003265 lockend = lockstart + fs_info->sectorsize;
Liu Bo4d1a40c2014-09-16 17:49:30 +08003266 lockend--;
3267 len = lockend - lockstart + 1;
3268
David Sterbaff13db42015-12-03 14:30:40 +01003269 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003270 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003271
Josef Bacik7f4ca372013-10-18 11:44:46 -04003272 while (start < inode->i_size) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003273 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0,
3274 start, len, 0);
Josef Bacikb2675152011-07-18 13:21:36 -04003275 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08003276 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003277 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003278 break;
3279 }
3280
Josef Bacik7f4ca372013-10-18 11:44:46 -04003281 if (whence == SEEK_HOLE &&
3282 (em->block_start == EXTENT_MAP_HOLE ||
3283 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3284 break;
3285 else if (whence == SEEK_DATA &&
3286 (em->block_start != EXTENT_MAP_HOLE &&
3287 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3288 break;
Josef Bacikb2675152011-07-18 13:21:36 -04003289
3290 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04003291 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04003292 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04003293 cond_resched();
3294 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04003295 free_extent_map(em);
3296 if (!ret) {
3297 if (whence == SEEK_DATA && start >= inode->i_size)
3298 ret = -ENXIO;
3299 else
3300 *offset = min_t(loff_t, start, inode->i_size);
3301 }
Josef Bacikb2675152011-07-18 13:21:36 -04003302 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01003303 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04003304 return ret;
3305}
3306
Andrew Morton965c8e52012-12-17 15:59:39 -08003307static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04003308{
3309 struct inode *inode = file->f_mapping->host;
3310 int ret;
3311
Al Viro59551022016-01-22 15:40:57 -05003312 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08003313 switch (whence) {
Josef Bacikb2675152011-07-18 13:21:36 -04003314 case SEEK_END:
3315 case SEEK_CUR:
Andrew Morton965c8e52012-12-17 15:59:39 -08003316 offset = generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003317 goto out;
3318 case SEEK_DATA:
3319 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04003320 if (offset >= i_size_read(inode)) {
Al Viro59551022016-01-22 15:40:57 -05003321 inode_unlock(inode);
Jeff Liu48802c82011-09-18 10:34:02 -04003322 return -ENXIO;
3323 }
3324
Andrew Morton965c8e52012-12-17 15:59:39 -08003325 ret = find_desired_extent(inode, &offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04003326 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05003327 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003328 return ret;
3329 }
3330 }
3331
Jie Liu46a1c2c2013-06-25 12:02:13 +08003332 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04003333out:
Al Viro59551022016-01-22 15:40:57 -05003334 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04003335 return offset;
3336}
3337
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003338static int btrfs_file_open(struct inode *inode, struct file *filp)
3339{
Christoph Hellwig91f99432017-08-29 16:13:20 +02003340 filp->f_mode |= FMODE_NOWAIT;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003341 return generic_file_open(inode, filp);
3342}
3343
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003344const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04003345 .llseek = btrfs_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -04003346 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05003347 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04003348 .write_iter = btrfs_file_write_iter,
Chris Mason9ebefb182007-06-15 13:50:00 -04003349 .mmap = btrfs_file_mmap,
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05003350 .open = btrfs_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003351 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003352 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003353 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003354 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003355#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003356 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003357#endif
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003358 .clone_file_range = btrfs_clone_file_range,
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003359 .dedupe_file_range = btrfs_dedupe_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003360};
Miao Xie9247f312012-11-26 09:24:43 +00003361
David Sterbae67c7182018-02-19 17:24:18 +01003362void __cold btrfs_auto_defrag_exit(void)
Miao Xie9247f312012-11-26 09:24:43 +00003363{
Kinglong Mee5598e902016-01-29 21:36:35 +08003364 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003365}
3366
Liu Bof5c29bd2017-11-02 17:21:50 -06003367int __init btrfs_auto_defrag_init(void)
Miao Xie9247f312012-11-26 09:24:43 +00003368{
3369 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3370 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003371 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003372 NULL);
3373 if (!btrfs_inode_defrag_cachep)
3374 return -ENOMEM;
3375
3376 return 0;
3377}
Filipe Manana728404d2014-10-10 09:43:11 +01003378
3379int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3380{
3381 int ret;
3382
3383 /*
3384 * So with compression we will find and lock a dirty page and clear the
3385 * first one as dirty, setup an async extent, and immediately return
3386 * with the entire range locked but with nobody actually marked with
3387 * writeback. So we can't just filemap_write_and_wait_range() and
3388 * expect it to work since it will just kick off a thread to do the
3389 * actual work. So we need to call filemap_fdatawrite_range _again_
3390 * since it will wait on the page lock, which won't be unlocked until
3391 * after the pages have been marked as writeback and so we're good to go
3392 * from there. We have to do this otherwise we'll miss the ordered
3393 * extents and that results in badness. Please Josef, do not think you
3394 * know better and pull this out at some point in the future, it is
3395 * right and you are wrong.
3396 */
3397 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3398 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3399 &BTRFS_I(inode)->runtime_flags))
3400 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3401
3402 return ret;
3403}