blob: f5288fa0aad048772a48141c268baf992cd36e28 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010027#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040028#include <linux/swap.h>
29#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040030#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000032#include <linux/btrfs.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080033#include <linux/uio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040034#include "ctree.h"
35#include "disk-io.h"
36#include "transaction.h"
37#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040038#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
40#include "locking.h"
Josef Bacik2aaa6652012-08-29 14:27:18 -040041#include "volumes.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070042#include "qgroup.h"
Anand Jainebb87652016-03-10 17:26:59 +080043#include "compression.h"
Chris Mason39279cc2007-06-12 06:35:45 -040044
Miao Xie9247f312012-11-26 09:24:43 +000045static struct kmem_cache *btrfs_inode_defrag_cachep;
Chris Mason4cb53002011-05-24 15:35:30 -040046/*
47 * when auto defrag is enabled we
48 * queue up these defrag structs to remember which
49 * inodes need defragging passes
50 */
51struct inode_defrag {
52 struct rb_node rb_node;
53 /* objectid */
54 u64 ino;
55 /*
56 * transid where the defrag was added, we search for
57 * extents newer than this
58 */
59 u64 transid;
60
61 /* root objectid */
62 u64 root;
63
64 /* last offset we were able to defrag */
65 u64 last_offset;
66
67 /* if we've wrapped around back to zero once already */
68 int cycled;
69};
70
Miao Xie762f2262012-05-24 18:58:27 +080071static int __compare_inode_defrag(struct inode_defrag *defrag1,
72 struct inode_defrag *defrag2)
73{
74 if (defrag1->root > defrag2->root)
75 return 1;
76 else if (defrag1->root < defrag2->root)
77 return -1;
78 else if (defrag1->ino > defrag2->ino)
79 return 1;
80 else if (defrag1->ino < defrag2->ino)
81 return -1;
82 else
83 return 0;
84}
85
Chris Mason4cb53002011-05-24 15:35:30 -040086/* pop a record for an inode into the defrag tree. The lock
87 * must be held already
88 *
89 * If you're inserting a record for an older transid than an
90 * existing record, the transid already in the tree is lowered
91 *
92 * If an existing record is found the defrag item you
93 * pass in is freed
94 */
Miao Xie8ddc4732012-11-26 09:25:38 +000095static int __btrfs_add_inode_defrag(struct inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040096 struct inode_defrag *defrag)
97{
98 struct btrfs_root *root = BTRFS_I(inode)->root;
99 struct inode_defrag *entry;
100 struct rb_node **p;
101 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800102 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400103
104 p = &root->fs_info->defrag_inodes.rb_node;
105 while (*p) {
106 parent = *p;
107 entry = rb_entry(parent, struct inode_defrag, rb_node);
108
Miao Xie762f2262012-05-24 18:58:27 +0800109 ret = __compare_inode_defrag(defrag, entry);
110 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400111 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800112 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400113 p = &parent->rb_right;
114 else {
115 /* if we're reinserting an entry for
116 * an old defrag run, make sure to
117 * lower the transid of our existing record
118 */
119 if (defrag->transid < entry->transid)
120 entry->transid = defrag->transid;
121 if (defrag->last_offset > entry->last_offset)
122 entry->last_offset = defrag->last_offset;
Miao Xie8ddc4732012-11-26 09:25:38 +0000123 return -EEXIST;
Chris Mason4cb53002011-05-24 15:35:30 -0400124 }
125 }
Josef Bacik72ac3c02012-05-23 14:13:11 -0400126 set_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400127 rb_link_node(&defrag->rb_node, parent, p);
128 rb_insert_color(&defrag->rb_node, &root->fs_info->defrag_inodes);
Miao Xie8ddc4732012-11-26 09:25:38 +0000129 return 0;
130}
Chris Mason4cb53002011-05-24 15:35:30 -0400131
Miao Xie8ddc4732012-11-26 09:25:38 +0000132static inline int __need_auto_defrag(struct btrfs_root *root)
133{
Jeff Mahoney3cdde222016-06-09 21:38:35 -0400134 if (!btrfs_test_opt(root->fs_info, AUTO_DEFRAG))
Miao Xie8ddc4732012-11-26 09:25:38 +0000135 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400136
Miao Xie8ddc4732012-11-26 09:25:38 +0000137 if (btrfs_fs_closing(root->fs_info))
138 return 0;
139
140 return 1;
Chris Mason4cb53002011-05-24 15:35:30 -0400141}
142
143/*
144 * insert a defrag record for this inode if auto defrag is
145 * enabled
146 */
147int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
148 struct inode *inode)
149{
150 struct btrfs_root *root = BTRFS_I(inode)->root;
151 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400152 u64 transid;
Miao Xie8ddc4732012-11-26 09:25:38 +0000153 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400154
Miao Xie8ddc4732012-11-26 09:25:38 +0000155 if (!__need_auto_defrag(root))
Chris Mason4cb53002011-05-24 15:35:30 -0400156 return 0;
157
Josef Bacik72ac3c02012-05-23 14:13:11 -0400158 if (test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400159 return 0;
160
161 if (trans)
162 transid = trans->transid;
163 else
164 transid = BTRFS_I(inode)->root->last_trans;
165
Miao Xie9247f312012-11-26 09:24:43 +0000166 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400167 if (!defrag)
168 return -ENOMEM;
169
David Sterbaa4689d22011-05-31 17:08:14 +0000170 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400171 defrag->transid = transid;
172 defrag->root = root->root_key.objectid;
173
174 spin_lock(&root->fs_info->defrag_inodes_lock);
Miao Xie8ddc4732012-11-26 09:25:38 +0000175 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags)) {
176 /*
177 * If we set IN_DEFRAG flag and evict the inode from memory,
178 * and then re-read this inode, this new inode doesn't have
179 * IN_DEFRAG flag. At the case, we may find the existed defrag.
180 */
181 ret = __btrfs_add_inode_defrag(inode, defrag);
182 if (ret)
183 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
184 } else {
Miao Xie9247f312012-11-26 09:24:43 +0000185 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
Miao Xie8ddc4732012-11-26 09:25:38 +0000186 }
Chris Mason4cb53002011-05-24 15:35:30 -0400187 spin_unlock(&root->fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000188 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400189}
190
191/*
Miao Xie8ddc4732012-11-26 09:25:38 +0000192 * Requeue the defrag object. If there is a defrag object that points to
193 * the same inode in the tree, we will merge them together (by
194 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
Chris Mason4cb53002011-05-24 15:35:30 -0400195 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000196static void btrfs_requeue_inode_defrag(struct inode *inode,
197 struct inode_defrag *defrag)
Miao Xie8ddc4732012-11-26 09:25:38 +0000198{
199 struct btrfs_root *root = BTRFS_I(inode)->root;
200 int ret;
201
202 if (!__need_auto_defrag(root))
203 goto out;
204
205 /*
206 * Here we don't check the IN_DEFRAG flag, because we need merge
207 * them together.
208 */
209 spin_lock(&root->fs_info->defrag_inodes_lock);
210 ret = __btrfs_add_inode_defrag(inode, defrag);
211 spin_unlock(&root->fs_info->defrag_inodes_lock);
212 if (ret)
213 goto out;
214 return;
215out:
216 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
217}
218
219/*
Miao Xie26176e72012-11-26 09:26:20 +0000220 * pick the defragable inode that we want, if it doesn't exist, we will get
221 * the next one.
Chris Mason4cb53002011-05-24 15:35:30 -0400222 */
Miao Xie26176e72012-11-26 09:26:20 +0000223static struct inode_defrag *
224btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400225{
226 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800227 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400228 struct rb_node *p;
229 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800230 int ret;
231
232 tmp.ino = ino;
233 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400234
Miao Xie26176e72012-11-26 09:26:20 +0000235 spin_lock(&fs_info->defrag_inodes_lock);
236 p = fs_info->defrag_inodes.rb_node;
Chris Mason4cb53002011-05-24 15:35:30 -0400237 while (p) {
238 parent = p;
239 entry = rb_entry(parent, struct inode_defrag, rb_node);
240
Miao Xie762f2262012-05-24 18:58:27 +0800241 ret = __compare_inode_defrag(&tmp, entry);
242 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400243 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800244 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400245 p = parent->rb_right;
246 else
Miao Xie26176e72012-11-26 09:26:20 +0000247 goto out;
Chris Mason4cb53002011-05-24 15:35:30 -0400248 }
249
Miao Xie26176e72012-11-26 09:26:20 +0000250 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
251 parent = rb_next(parent);
252 if (parent)
Chris Mason4cb53002011-05-24 15:35:30 -0400253 entry = rb_entry(parent, struct inode_defrag, rb_node);
Miao Xie26176e72012-11-26 09:26:20 +0000254 else
255 entry = NULL;
Chris Mason4cb53002011-05-24 15:35:30 -0400256 }
Miao Xie26176e72012-11-26 09:26:20 +0000257out:
258 if (entry)
259 rb_erase(parent, &fs_info->defrag_inodes);
260 spin_unlock(&fs_info->defrag_inodes_lock);
261 return entry;
262}
263
264void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
265{
266 struct inode_defrag *defrag;
267 struct rb_node *node;
268
269 spin_lock(&fs_info->defrag_inodes_lock);
270 node = rb_first(&fs_info->defrag_inodes);
271 while (node) {
272 rb_erase(node, &fs_info->defrag_inodes);
273 defrag = rb_entry(node, struct inode_defrag, rb_node);
274 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
275
David Sterba351810c2015-01-08 15:20:54 +0100276 cond_resched_lock(&fs_info->defrag_inodes_lock);
Miao Xie26176e72012-11-26 09:26:20 +0000277
278 node = rb_first(&fs_info->defrag_inodes);
279 }
280 spin_unlock(&fs_info->defrag_inodes_lock);
281}
282
283#define BTRFS_DEFRAG_BATCH 1024
284
285static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
286 struct inode_defrag *defrag)
287{
288 struct btrfs_root *inode_root;
289 struct inode *inode;
290 struct btrfs_key key;
291 struct btrfs_ioctl_defrag_range_args range;
292 int num_defrag;
Liu Bo6f1c3602013-01-29 03:22:10 +0000293 int index;
294 int ret;
Miao Xie26176e72012-11-26 09:26:20 +0000295
296 /* get the inode */
297 key.objectid = defrag->root;
David Sterba962a2982014-06-04 18:41:45 +0200298 key.type = BTRFS_ROOT_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000299 key.offset = (u64)-1;
Liu Bo6f1c3602013-01-29 03:22:10 +0000300
301 index = srcu_read_lock(&fs_info->subvol_srcu);
302
Miao Xie26176e72012-11-26 09:26:20 +0000303 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
304 if (IS_ERR(inode_root)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000305 ret = PTR_ERR(inode_root);
306 goto cleanup;
307 }
Miao Xie26176e72012-11-26 09:26:20 +0000308
309 key.objectid = defrag->ino;
David Sterba962a2982014-06-04 18:41:45 +0200310 key.type = BTRFS_INODE_ITEM_KEY;
Miao Xie26176e72012-11-26 09:26:20 +0000311 key.offset = 0;
312 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
313 if (IS_ERR(inode)) {
Liu Bo6f1c3602013-01-29 03:22:10 +0000314 ret = PTR_ERR(inode);
315 goto cleanup;
Miao Xie26176e72012-11-26 09:26:20 +0000316 }
Liu Bo6f1c3602013-01-29 03:22:10 +0000317 srcu_read_unlock(&fs_info->subvol_srcu, index);
Miao Xie26176e72012-11-26 09:26:20 +0000318
319 /* do a chunk of defrag */
320 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
321 memset(&range, 0, sizeof(range));
322 range.len = (u64)-1;
323 range.start = defrag->last_offset;
Miao Xieb66f00d2012-11-26 09:27:29 +0000324
325 sb_start_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000326 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
327 BTRFS_DEFRAG_BATCH);
Miao Xieb66f00d2012-11-26 09:27:29 +0000328 sb_end_write(fs_info->sb);
Miao Xie26176e72012-11-26 09:26:20 +0000329 /*
330 * if we filled the whole defrag batch, there
331 * must be more work to do. Queue this defrag
332 * again
333 */
334 if (num_defrag == BTRFS_DEFRAG_BATCH) {
335 defrag->last_offset = range.start;
336 btrfs_requeue_inode_defrag(inode, defrag);
337 } else if (defrag->last_offset && !defrag->cycled) {
338 /*
339 * we didn't fill our defrag batch, but
340 * we didn't start at zero. Make sure we loop
341 * around to the start of the file.
342 */
343 defrag->last_offset = 0;
344 defrag->cycled = 1;
345 btrfs_requeue_inode_defrag(inode, defrag);
346 } else {
347 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
348 }
349
350 iput(inode);
351 return 0;
Liu Bo6f1c3602013-01-29 03:22:10 +0000352cleanup:
353 srcu_read_unlock(&fs_info->subvol_srcu, index);
354 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
355 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400356}
357
358/*
359 * run through the list of inodes in the FS that need
360 * defragging
361 */
362int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
363{
364 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400365 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800366 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400367
368 atomic_inc(&fs_info->defrag_running);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530369 while (1) {
Miao Xiedc81cdc2013-02-20 23:32:52 -0700370 /* Pause the auto defragger. */
371 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
372 &fs_info->fs_state))
373 break;
374
Miao Xie26176e72012-11-26 09:26:20 +0000375 if (!__need_auto_defrag(fs_info->tree_root))
376 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400377
378 /* find an inode to defrag */
Miao Xie26176e72012-11-26 09:26:20 +0000379 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
380 first_ino);
Chris Mason4cb53002011-05-24 15:35:30 -0400381 if (!defrag) {
Miao Xie26176e72012-11-26 09:26:20 +0000382 if (root_objectid || first_ino) {
Miao Xie762f2262012-05-24 18:58:27 +0800383 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400384 first_ino = 0;
385 continue;
386 } else {
387 break;
388 }
389 }
390
Chris Mason4cb53002011-05-24 15:35:30 -0400391 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800392 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400393
Miao Xie26176e72012-11-26 09:26:20 +0000394 __btrfs_run_defrag_inode(fs_info, defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400395 }
Chris Mason4cb53002011-05-24 15:35:30 -0400396 atomic_dec(&fs_info->defrag_running);
397
398 /*
399 * during unmount, we use the transaction_wait queue to
400 * wait for the defragger to stop
401 */
402 wake_up(&fs_info->transaction_wait);
403 return 0;
404}
Chris Mason39279cc2007-06-12 06:35:45 -0400405
Chris Masond352ac62008-09-29 15:18:18 -0400406/* simple helper to fault in pages and copy. This should go away
407 * and be replaced with calls into generic code.
408 */
Zhao Leiee22f0c2016-01-06 18:47:31 +0800409static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400410 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400411 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400412{
Xin Zhong914ee292010-12-09 09:30:14 +0000413 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500414 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400415 int pg = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300416 int offset = pos & (PAGE_SIZE - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400417
Josef Bacik11c65dc2010-05-23 11:07:21 -0400418 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400419 size_t count = min_t(size_t,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300420 PAGE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400421 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000422 /*
423 * Copy data from userspace to the current page
Xin Zhong914ee292010-12-09 09:30:14 +0000424 */
Xin Zhong914ee292010-12-09 09:30:14 +0000425 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400426
Chris Mason39279cc2007-06-12 06:35:45 -0400427 /* Flush processor's dcache for this page */
428 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500429
430 /*
431 * if we get a partial write, we can end up with
432 * partially up to date pages. These add
433 * a lot of complexity, so make sure they don't
434 * happen by forcing this copy to be retried.
435 *
436 * The rest of the btrfs_file_write code will fall
437 * back to page at a time copies after we return 0.
438 */
439 if (!PageUptodate(page) && copied < count)
440 copied = 0;
441
Josef Bacik11c65dc2010-05-23 11:07:21 -0400442 iov_iter_advance(i, copied);
443 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000444 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400445
Al Virob30ac0f2014-04-03 14:29:04 -0400446 /* Return to btrfs_file_write_iter to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500447 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000448 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400449
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300450 if (copied < PAGE_SIZE - offset) {
Josef Bacik11c65dc2010-05-23 11:07:21 -0400451 offset += copied;
452 } else {
453 pg++;
454 offset = 0;
455 }
Chris Mason39279cc2007-06-12 06:35:45 -0400456 }
Xin Zhong914ee292010-12-09 09:30:14 +0000457 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400458}
459
Chris Masond352ac62008-09-29 15:18:18 -0400460/*
461 * unlocks pages after btrfs_file_write is done with them
462 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000463static void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400464{
465 size_t i;
466 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400467 /* page checked is some magic around finding pages that
468 * have been modified without going through btrfs_set_page_dirty
Mel Gorman2457aec2014-06-04 16:10:31 -0700469 * clear it here. There should be no need to mark the pages
470 * accessed as prepare_pages should have marked them accessed
471 * in prepare_pages via find_or_create_page()
Chris Masond352ac62008-09-29 15:18:18 -0400472 */
Chris Mason4a096752008-07-21 10:29:44 -0400473 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400474 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300475 put_page(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400476 }
477}
478
Chris Masond352ac62008-09-29 15:18:18 -0400479/*
480 * after copy_from_user, pages need to be dirtied and we need to make
481 * sure holes are created between the current EOF and the start of
482 * any next extents (if required).
483 *
484 * this also makes the decision about creating an inline extent vs
485 * doing real data extents, marking pages dirty and delalloc as required.
486 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400487int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
Eric Sandeen48a3b632013-04-25 20:41:01 +0000488 struct page **pages, size_t num_pages,
489 loff_t pos, size_t write_bytes,
490 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400491{
Chris Mason39279cc2007-06-12 06:35:45 -0400492 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400493 int i;
Chris Masondb945352007-10-15 16:15:53 -0400494 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400495 u64 start_pos;
496 u64 end_of_last_block;
497 u64 end_pos = pos + write_bytes;
498 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400499
Chris Mason5f39d392007-10-15 16:14:19 -0400500 start_pos = pos & ~((u64)root->sectorsize - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +0530501 num_bytes = round_up(write_bytes + pos - start_pos, root->sectorsize);
Chris Mason39279cc2007-06-12 06:35:45 -0400502
Chris Masondb945352007-10-15 16:15:53 -0400503 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000504 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800505 cached, 0);
Josef Bacikd0215f32011-01-25 14:57:24 -0500506 if (err)
507 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400508
Chris Masonc8b97812008-10-29 14:49:59 -0400509 for (i = 0; i < num_pages; i++) {
510 struct page *p = pages[i];
511 SetPageUptodate(p);
512 ClearPageChecked(p);
513 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400514 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500515
516 /*
517 * we've only changed i_size in ram, and we haven't updated
518 * the disk i_size. There is no need to log the inode
519 * at this time.
520 */
521 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400522 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400523 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400524}
525
Chris Masond352ac62008-09-29 15:18:18 -0400526/*
527 * this drops all the extents in the cache that intersect the range
528 * [start, end]. Existing extents are split as required.
529 */
Josef Bacik7014cdb2012-08-30 20:06:49 -0400530void btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
531 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400532{
533 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400534 struct extent_map *split = NULL;
535 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400536 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500537 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400538 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400539 int ret;
540 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400541 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400542 int compressed = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400543 bool modified;
Chris Masona52d9a82007-08-27 16:49:44 -0400544
Chris Masone6dcd2d2008-07-17 12:53:50 -0400545 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400546 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500547 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400548 testend = 0;
549 }
Chris Masond3977122009-01-05 21:25:51 -0500550 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400551 int no_splits = 0;
552
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400553 modified = false;
Chris Mason3b951512008-04-17 11:29:12 -0400554 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200555 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400556 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200557 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400558 if (!split || !split2)
559 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400560
Chris Mason890871b2009-09-02 16:24:52 -0400561 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500562 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500563 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400564 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400565 break;
Chris Masond1310b22008-01-24 16:13:08 -0500566 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400567 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400568 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400569 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000570 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400571 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400572 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400573 break;
574 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000575 start = em->start + em->len;
576 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400577 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400578 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400579 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400580 continue;
581 }
Chris Masonc8b97812008-10-29 14:49:59 -0400582 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400583 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo3b277592013-03-15 08:46:39 -0600584 clear_bit(EXTENT_FLAG_LOGGING, &flags);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400585 modified = !list_empty(&em->list);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400586 if (no_splits)
587 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400588
Josef Bacikee20a982013-07-11 10:34:59 -0400589 if (em->start < start) {
Chris Mason3b951512008-04-17 11:29:12 -0400590 split->start = em->start;
591 split->len = start - em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400592
Josef Bacikee20a982013-07-11 10:34:59 -0400593 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
594 split->orig_start = em->orig_start;
595 split->block_start = em->block_start;
596
597 if (compressed)
598 split->block_len = em->block_len;
599 else
600 split->block_len = split->len;
601 split->orig_block_len = max(split->block_len,
602 em->orig_block_len);
603 split->ram_bytes = em->ram_bytes;
604 } else {
605 split->orig_start = split->start;
606 split->block_len = 0;
607 split->block_start = em->block_start;
608 split->orig_block_len = 0;
609 split->ram_bytes = split->len;
610 }
611
Josef Bacik5dc562c2012-08-17 13:14:17 -0400612 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400613 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400614 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800615 split->compress_type = em->compress_type;
Filipe Manana176840b2014-02-25 14:15:13 +0000616 replace_extent_mapping(em_tree, em, split, modified);
Chris Mason3b951512008-04-17 11:29:12 -0400617 free_extent_map(split);
618 split = split2;
619 split2 = NULL;
620 }
Josef Bacikee20a982013-07-11 10:34:59 -0400621 if (testend && em->start + em->len > start + len) {
Chris Mason3b951512008-04-17 11:29:12 -0400622 u64 diff = start + len - em->start;
623
624 split->start = start + len;
625 split->len = em->start + em->len - (start + len);
626 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400627 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800628 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400629 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400630
Josef Bacikee20a982013-07-11 10:34:59 -0400631 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
632 split->orig_block_len = max(em->block_len,
633 em->orig_block_len);
634
635 split->ram_bytes = em->ram_bytes;
636 if (compressed) {
637 split->block_len = em->block_len;
638 split->block_start = em->block_start;
639 split->orig_start = em->orig_start;
640 } else {
641 split->block_len = split->len;
642 split->block_start = em->block_start
643 + diff;
644 split->orig_start = em->orig_start;
645 }
Chris Masonc8b97812008-10-29 14:49:59 -0400646 } else {
Josef Bacikee20a982013-07-11 10:34:59 -0400647 split->ram_bytes = split->len;
648 split->orig_start = split->start;
649 split->block_len = 0;
650 split->block_start = em->block_start;
651 split->orig_block_len = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400652 }
Chris Mason3b951512008-04-17 11:29:12 -0400653
Filipe Manana176840b2014-02-25 14:15:13 +0000654 if (extent_map_in_tree(em)) {
655 replace_extent_mapping(em_tree, em, split,
656 modified);
657 } else {
658 ret = add_extent_mapping(em_tree, split,
659 modified);
660 ASSERT(ret == 0); /* Logic error */
661 }
Chris Mason3b951512008-04-17 11:29:12 -0400662 free_extent_map(split);
663 split = NULL;
664 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400665next:
Filipe Manana176840b2014-02-25 14:15:13 +0000666 if (extent_map_in_tree(em))
667 remove_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400668 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500669
Chris Masona52d9a82007-08-27 16:49:44 -0400670 /* once for us */
671 free_extent_map(em);
672 /* once for the tree*/
673 free_extent_map(em);
674 }
Chris Mason3b951512008-04-17 11:29:12 -0400675 if (split)
676 free_extent_map(split);
677 if (split2)
678 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400679}
680
Chris Mason39279cc2007-06-12 06:35:45 -0400681/*
682 * this is very complex, but the basic idea is to drop all extents
683 * in the range start - end. hint_block is filled in with a block number
684 * that would be a good hint to the block allocator for this file.
685 *
686 * If an extent intersects the range but is not entirely inside the range
687 * it is either truncated or split. Anything entirely inside the range
688 * is deleted from the tree.
689 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400690int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
691 struct btrfs_root *root, struct inode *inode,
692 struct btrfs_path *path, u64 start, u64 end,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000693 u64 *drop_end, int drop_cache,
694 int replace_extent,
695 u32 extent_item_size,
696 int *key_inserted)
Chris Mason39279cc2007-06-12 06:35:45 -0400697{
Chris Mason00f5c792007-11-30 10:09:33 -0500698 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000699 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500700 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000701 struct btrfs_key new_key;
Li Zefan33345d012011-04-20 10:31:50 +0800702 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000703 u64 search_start = start;
704 u64 disk_bytenr = 0;
705 u64 num_bytes = 0;
706 u64 extent_offset = 0;
707 u64 extent_end = 0;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500708 u64 last_end = start;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000709 int del_nr = 0;
710 int del_slot = 0;
711 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400712 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500713 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400714 int modify_tree = -1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800715 int update_refs;
Josef Bacikc3308f82012-09-14 14:51:22 -0400716 int found = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000717 int leafs_visited = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400718
Chris Masona1ed8352009-09-11 12:27:37 -0400719 if (drop_cache)
720 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400721
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000722 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
Chris Masondc7fdde2012-04-27 14:31:29 -0400723 modify_tree = 0;
724
Miao Xie27cdeb72014-04-02 19:51:05 +0800725 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
726 root == root->fs_info->tree_root);
Chris Masond3977122009-01-05 21:25:51 -0500727 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400728 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800729 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400730 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400731 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000732 break;
733 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
734 leaf = path->nodes[0];
735 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800736 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000737 key.type == BTRFS_EXTENT_DATA_KEY)
738 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400739 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400740 ret = 0;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000741 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000742next_slot:
743 leaf = path->nodes[0];
744 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
745 BUG_ON(del_nr > 0);
746 ret = btrfs_next_leaf(root, path);
747 if (ret < 0)
748 break;
749 if (ret > 0) {
750 ret = 0;
751 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400752 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000753 leafs_visited++;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000754 leaf = path->nodes[0];
755 recow = 1;
756 }
757
758 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000759
760 if (key.objectid > ino)
761 break;
762 if (WARN_ON_ONCE(key.objectid < ino) ||
763 key.type < BTRFS_EXTENT_DATA_KEY) {
764 ASSERT(del_nr == 0);
765 path->slots[0]++;
766 goto next_slot;
767 }
768 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000769 break;
770
771 fi = btrfs_item_ptr(leaf, path->slots[0],
772 struct btrfs_file_extent_item);
773 extent_type = btrfs_file_extent_type(leaf, fi);
774
775 if (extent_type == BTRFS_FILE_EXTENT_REG ||
776 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
777 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
778 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
779 extent_offset = btrfs_file_extent_offset(leaf, fi);
780 extent_end = key.offset +
781 btrfs_file_extent_num_bytes(leaf, fi);
782 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
783 extent_end = key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -0800784 btrfs_file_extent_inline_len(leaf,
785 path->slots[0], fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400786 } else {
Filipe Mananaaeafbf82015-11-06 13:33:33 +0000787 /* can't happen */
788 BUG();
Chris Mason39279cc2007-06-12 06:35:45 -0400789 }
790
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100791 /*
792 * Don't skip extent items representing 0 byte lengths. They
793 * used to be created (bug) if while punching holes we hit
794 * -ENOSPC condition. So if we find one here, just ensure we
795 * delete it, otherwise we would insert a new file extent item
796 * with the same key (offset) as that 0 bytes length file
797 * extent item in the call to setup_items_for_insert() later
798 * in this function.
799 */
Josef Bacik62fe51c12016-11-16 09:13:39 -0500800 if (extent_end == key.offset && extent_end >= search_start) {
801 last_end = extent_end;
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100802 goto delete_extent_item;
Josef Bacik62fe51c12016-11-16 09:13:39 -0500803 }
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100804
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000805 if (extent_end <= search_start) {
806 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400807 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400808 }
809
Josef Bacikc3308f82012-09-14 14:51:22 -0400810 found = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000811 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400812 if (recow || !modify_tree) {
813 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200814 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000815 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400816 }
Chris Mason771ed682008-11-06 22:02:51 -0500817
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000818 /*
819 * | - range to drop - |
820 * | -------- extent -------- |
821 */
822 if (start > key.offset && end < extent_end) {
823 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800824 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200825 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800826 break;
827 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000828
829 memcpy(&new_key, &key, sizeof(new_key));
830 new_key.offset = start;
831 ret = btrfs_duplicate_item(trans, root, path,
832 &new_key);
833 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200834 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000835 continue;
836 }
837 if (ret < 0)
838 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400839
Chris Mason5f39d392007-10-15 16:14:19 -0400840 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000841 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
842 struct btrfs_file_extent_item);
843 btrfs_set_file_extent_num_bytes(leaf, fi,
844 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400845
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000846 fi = btrfs_item_ptr(leaf, path->slots[0],
847 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400848
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000849 extent_offset += start - key.offset;
850 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
851 btrfs_set_file_extent_num_bytes(leaf, fi,
852 extent_end - start);
853 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400854
Josef Bacik5dc562c2012-08-17 13:14:17 -0400855 if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000856 ret = btrfs_inc_extent_ref(trans, root,
857 disk_bytenr, num_bytes, 0,
858 root->root_key.objectid,
859 new_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100860 start - extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100861 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400862 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000863 key.offset = start;
864 }
865 /*
Josef Bacik62fe51c12016-11-16 09:13:39 -0500866 * From here on out we will have actually dropped something, so
867 * last_end can be updated.
868 */
869 last_end = extent_end;
870
871 /*
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000872 * | ---- range to drop ----- |
873 * | -------- extent -------- |
874 */
875 if (start <= key.offset && end < extent_end) {
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 = end;
Daniel Dresslerb7a03652014-11-12 13:43:09 +0900883 btrfs_set_item_key_safe(root->fs_info, path, &new_key);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000884
885 extent_offset += end - key.offset;
886 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
887 btrfs_set_file_extent_num_bytes(leaf, fi,
888 extent_end - end);
889 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400890 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000891 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000892 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400893 }
894
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000895 search_start = extent_end;
896 /*
897 * | ---- range to drop ----- |
898 * | -------- extent -------- |
899 */
900 if (start > key.offset && end >= extent_end) {
901 BUG_ON(del_nr > 0);
Liu Bo00fdf132014-03-10 18:56:07 +0800902 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
David Sterba3f9e3df2014-04-15 18:50:17 +0200903 ret = -EOPNOTSUPP;
Liu Bo00fdf132014-03-10 18:56:07 +0800904 break;
905 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000906
907 btrfs_set_file_extent_num_bytes(leaf, fi,
908 start - key.offset);
909 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400910 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000911 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000912 if (end == extent_end)
913 break;
914
915 path->slots[0]++;
916 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400917 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000918
919 /*
920 * | ---- range to drop ----- |
921 * | ------ extent ------ |
922 */
923 if (start <= key.offset && end >= extent_end) {
Filipe Mananafc19c5e2014-04-29 13:18:40 +0100924delete_extent_item:
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000925 if (del_nr == 0) {
926 del_slot = path->slots[0];
927 del_nr = 1;
928 } else {
929 BUG_ON(del_slot + del_nr != path->slots[0]);
930 del_nr++;
931 }
932
Josef Bacik5dc562c2012-08-17 13:14:17 -0400933 if (update_refs &&
934 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000935 inode_sub_bytes(inode,
936 extent_end - key.offset);
937 extent_end = ALIGN(extent_end,
938 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400939 } else if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940 ret = btrfs_free_extent(trans, root,
941 disk_bytenr, num_bytes, 0,
942 root->root_key.objectid,
943 key.objectid, key.offset -
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100944 extent_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100945 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000946 inode_sub_bytes(inode,
947 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000948 }
949
950 if (end == extent_end)
951 break;
952
953 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
954 path->slots[0]++;
955 goto next_slot;
956 }
957
958 ret = btrfs_del_items(trans, root, path, del_slot,
959 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100960 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400961 btrfs_abort_transaction(trans, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400962 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100963 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000964
965 del_nr = 0;
966 del_slot = 0;
967
David Sterbab3b4aa72011-04-21 01:20:15 +0200968 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000969 continue;
970 }
971
972 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400973 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000974
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100975 if (!ret && del_nr > 0) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000976 /*
977 * Set path->slots[0] to first slot, so that after the delete
978 * if items are move off from our leaf to its immediate left or
979 * right neighbor leafs, we end up with a correct and adjusted
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000980 * path->slots[0] for our insertion (if replace_extent != 0).
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000981 */
982 path->slots[0] = del_slot;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000983 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100984 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400985 btrfs_abort_transaction(trans, ret);
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000986 }
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000987
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +0000988 leaf = path->nodes[0];
989 /*
990 * If btrfs_del_items() was called, it might have deleted a leaf, in
991 * which case it unlocked our path, so check path->locks[0] matches a
992 * write lock.
993 */
994 if (!ret && replace_extent && leafs_visited == 1 &&
995 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
996 path->locks[0] == BTRFS_WRITE_LOCK) &&
997 btrfs_leaf_free_space(root, leaf) >=
998 sizeof(struct btrfs_item) + extent_item_size) {
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000999
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001000 key.objectid = ino;
1001 key.type = BTRFS_EXTENT_DATA_KEY;
1002 key.offset = start;
1003 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1004 struct btrfs_key slot_key;
1005
1006 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1007 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1008 path->slots[0]++;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001009 }
Filipe David Borba Mananad5f37522014-02-09 23:45:12 +00001010 setup_items_for_insert(root, path, &key,
1011 &extent_item_size,
1012 extent_item_size,
1013 sizeof(struct btrfs_item) +
1014 extent_item_size, 1);
1015 *key_inserted = 1;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001016 }
1017
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001018 if (!replace_extent || !(*key_inserted))
1019 btrfs_release_path(path);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001020 if (drop_end)
Josef Bacik62fe51c12016-11-16 09:13:39 -05001021 *drop_end = found ? min(end, last_end) : end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001022 return ret;
1023}
1024
1025int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1026 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -04001027 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -04001028{
1029 struct btrfs_path *path;
1030 int ret;
1031
1032 path = btrfs_alloc_path();
1033 if (!path)
1034 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -04001035 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00001036 drop_cache, 0, 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04001037 btrfs_free_path(path);
1038 return ret;
1039}
1040
Yan Zhengd899e052008-10-30 14:25:28 -04001041static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001042 u64 objectid, u64 bytenr, u64 orig_offset,
1043 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -04001044{
1045 struct btrfs_file_extent_item *fi;
1046 struct btrfs_key key;
1047 u64 extent_end;
1048
1049 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1050 return 0;
1051
1052 btrfs_item_key_to_cpu(leaf, &key, slot);
1053 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1054 return 0;
1055
1056 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1057 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1058 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001059 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -04001060 btrfs_file_extent_compression(leaf, fi) ||
1061 btrfs_file_extent_encryption(leaf, fi) ||
1062 btrfs_file_extent_other_encoding(leaf, fi))
1063 return 0;
1064
1065 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1066 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1067 return 0;
1068
1069 *start = key.offset;
1070 *end = extent_end;
1071 return 1;
1072}
1073
1074/*
1075 * Mark extent in the range start - end as written.
1076 *
1077 * This changes extent type from 'pre-allocated' to 'regular'. If only
1078 * part of extent is marked as written, the extent will be split into
1079 * two or three.
1080 */
1081int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -04001082 struct inode *inode, u64 start, u64 end)
1083{
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001084 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -04001085 struct extent_buffer *leaf;
1086 struct btrfs_path *path;
1087 struct btrfs_file_extent_item *fi;
1088 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001089 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -04001090 u64 bytenr;
1091 u64 num_bytes;
1092 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001093 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001094 u64 other_start;
1095 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001096 u64 split;
1097 int del_nr = 0;
1098 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001099 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -04001100 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08001101 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001102
Yan Zhengd899e052008-10-30 14:25:28 -04001103 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001104 if (!path)
1105 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001106again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001107 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001108 split = start;
Li Zefan33345d012011-04-20 10:31:50 +08001109 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -04001110 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001111 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -04001112
1113 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -04001114 if (ret < 0)
1115 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001116 if (ret > 0 && path->slots[0] > 0)
1117 path->slots[0]--;
1118
1119 leaf = path->nodes[0];
1120 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001121 if (key.objectid != ino ||
1122 key.type != BTRFS_EXTENT_DATA_KEY) {
1123 ret = -EINVAL;
1124 btrfs_abort_transaction(trans, ret);
1125 goto out;
1126 }
Yan Zhengd899e052008-10-30 14:25:28 -04001127 fi = btrfs_item_ptr(leaf, path->slots[0],
1128 struct btrfs_file_extent_item);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001129 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1130 ret = -EINVAL;
1131 btrfs_abort_transaction(trans, ret);
1132 goto out;
1133 }
Yan Zhengd899e052008-10-30 14:25:28 -04001134 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001135 if (key.offset > start || extent_end < end) {
1136 ret = -EINVAL;
1137 btrfs_abort_transaction(trans, ret);
1138 goto out;
1139 }
Yan Zhengd899e052008-10-30 14:25:28 -04001140
1141 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1142 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001143 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001144 memcpy(&new_key, &key, sizeof(new_key));
1145
1146 if (start == key.offset && end < extent_end) {
1147 other_start = 0;
1148 other_end = start;
1149 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001150 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001151 &other_start, &other_end)) {
1152 new_key.offset = end;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09001153 btrfs_set_item_key_safe(root->fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001154 fi = btrfs_item_ptr(leaf, path->slots[0],
1155 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001156 btrfs_set_file_extent_generation(leaf, fi,
1157 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001158 btrfs_set_file_extent_num_bytes(leaf, fi,
1159 extent_end - end);
1160 btrfs_set_file_extent_offset(leaf, fi,
1161 end - orig_offset);
1162 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1163 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001164 btrfs_set_file_extent_generation(leaf, fi,
1165 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001166 btrfs_set_file_extent_num_bytes(leaf, fi,
1167 end - other_start);
1168 btrfs_mark_buffer_dirty(leaf);
1169 goto out;
1170 }
1171 }
1172
1173 if (start > key.offset && end == extent_end) {
1174 other_start = end;
1175 other_end = 0;
1176 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001177 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001178 &other_start, &other_end)) {
1179 fi = btrfs_item_ptr(leaf, path->slots[0],
1180 struct btrfs_file_extent_item);
1181 btrfs_set_file_extent_num_bytes(leaf, fi,
1182 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -04001183 btrfs_set_file_extent_generation(leaf, fi,
1184 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001185 path->slots[0]++;
1186 new_key.offset = start;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09001187 btrfs_set_item_key_safe(root->fs_info, path, &new_key);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001188
1189 fi = btrfs_item_ptr(leaf, path->slots[0],
1190 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001191 btrfs_set_file_extent_generation(leaf, fi,
1192 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001193 btrfs_set_file_extent_num_bytes(leaf, fi,
1194 other_end - start);
1195 btrfs_set_file_extent_offset(leaf, fi,
1196 start - orig_offset);
1197 btrfs_mark_buffer_dirty(leaf);
1198 goto out;
1199 }
1200 }
Yan Zhengd899e052008-10-30 14:25:28 -04001201
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001202 while (start > key.offset || end < extent_end) {
1203 if (key.offset == start)
1204 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001205
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001206 new_key.offset = split;
1207 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1208 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001209 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001210 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001211 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001212 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001213 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001214 goto out;
1215 }
Yan Zhengd899e052008-10-30 14:25:28 -04001216
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001217 leaf = path->nodes[0];
1218 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001219 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001220 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001221 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001222 split - key.offset);
1223
1224 fi = btrfs_item_ptr(leaf, path->slots[0],
1225 struct btrfs_file_extent_item);
1226
Josef Bacik224ecce2012-08-16 16:32:06 -04001227 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001228 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1229 btrfs_set_file_extent_num_bytes(leaf, fi,
1230 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001231 btrfs_mark_buffer_dirty(leaf);
1232
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001233 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
1234 root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001235 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001236 if (ret) {
1237 btrfs_abort_transaction(trans, ret);
1238 goto out;
1239 }
Yan Zhengd899e052008-10-30 14:25:28 -04001240
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001241 if (split == start) {
1242 key.offset = start;
1243 } else {
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001244 if (start != key.offset) {
1245 ret = -EINVAL;
1246 btrfs_abort_transaction(trans, ret);
1247 goto out;
1248 }
Yan Zhengd899e052008-10-30 14:25:28 -04001249 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001250 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001251 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001252 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001253 }
1254
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001255 other_start = end;
1256 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001257 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001258 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001259 &other_start, &other_end)) {
1260 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001261 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001262 goto again;
1263 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001264 extent_end = other_end;
1265 del_slot = path->slots[0] + 1;
1266 del_nr++;
1267 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1268 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001269 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001270 if (ret) {
1271 btrfs_abort_transaction(trans, ret);
1272 goto out;
1273 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001274 }
1275 other_start = 0;
1276 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001277 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001278 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001279 &other_start, &other_end)) {
1280 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001281 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001282 goto again;
1283 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001284 key.offset = other_start;
1285 del_slot = path->slots[0];
1286 del_nr++;
1287 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1288 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01001289 ino, orig_offset);
Josef Bacik9c8e63d2016-09-02 15:40:06 -04001290 if (ret) {
1291 btrfs_abort_transaction(trans, ret);
1292 goto out;
1293 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001294 }
1295 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001296 fi = btrfs_item_ptr(leaf, path->slots[0],
1297 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001298 btrfs_set_file_extent_type(leaf, fi,
1299 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001300 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001301 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001302 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001303 fi = btrfs_item_ptr(leaf, del_slot - 1,
1304 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001305 btrfs_set_file_extent_type(leaf, fi,
1306 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001307 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001308 btrfs_set_file_extent_num_bytes(leaf, fi,
1309 extent_end - key.offset);
1310 btrfs_mark_buffer_dirty(leaf);
1311
1312 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001313 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001314 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001315 goto out;
1316 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001317 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001318out:
Yan Zhengd899e052008-10-30 14:25:28 -04001319 btrfs_free_path(path);
1320 return 0;
1321}
1322
Chris Mason39279cc2007-06-12 06:35:45 -04001323/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001324 * on error we return an unlocked page and the error value
1325 * on success we return a locked page and 0
1326 */
Chris Masonbb1591b42015-12-14 15:40:44 -08001327static int prepare_uptodate_page(struct inode *inode,
1328 struct page *page, u64 pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001329 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001330{
1331 int ret = 0;
1332
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001333 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
Josef Bacikb63164292011-09-30 15:23:54 -04001334 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001335 ret = btrfs_readpage(NULL, page);
1336 if (ret)
1337 return ret;
1338 lock_page(page);
1339 if (!PageUptodate(page)) {
1340 unlock_page(page);
1341 return -EIO;
1342 }
Chris Masonbb1591b42015-12-14 15:40:44 -08001343 if (page->mapping != inode->i_mapping) {
1344 unlock_page(page);
1345 return -EAGAIN;
1346 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001347 }
1348 return 0;
1349}
1350
1351/*
Miao Xie376cc682013-12-10 19:25:04 +08001352 * this just gets pages into the page cache and locks them down.
Chris Mason39279cc2007-06-12 06:35:45 -04001353 */
Miao Xieb37392e2013-12-10 19:25:03 +08001354static noinline int prepare_pages(struct inode *inode, struct page **pages,
1355 size_t num_pages, loff_t pos,
1356 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001357{
1358 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001359 unsigned long index = pos >> PAGE_SHIFT;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001360 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Filipe David Borba Mananafc28b622013-12-13 19:39:34 +00001361 int err = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001362 int faili;
Chris Mason8c2383c2007-06-18 09:57:58 -04001363
Chris Mason39279cc2007-06-12 06:35:45 -04001364 for (i = 0; i < num_pages; i++) {
Chris Masonbb1591b42015-12-14 15:40:44 -08001365again:
Josef Bacika94733d2011-07-11 10:47:06 -04001366 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001367 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001368 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001369 faili = i - 1;
1370 err = -ENOMEM;
1371 goto fail;
1372 }
1373
1374 if (i == 0)
Chris Masonbb1591b42015-12-14 15:40:44 -08001375 err = prepare_uptodate_page(inode, pages[i], pos,
Josef Bacikb63164292011-09-30 15:23:54 -04001376 force_uptodate);
Chris Masonbb1591b42015-12-14 15:40:44 -08001377 if (!err && i == num_pages - 1)
1378 err = prepare_uptodate_page(inode, pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001379 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001380 if (err) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001381 put_page(pages[i]);
Chris Masonbb1591b42015-12-14 15:40:44 -08001382 if (err == -EAGAIN) {
1383 err = 0;
1384 goto again;
1385 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001386 faili = i - 1;
1387 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001388 }
Chris Masonccd467d2007-06-28 15:57:36 -04001389 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001390 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001391
Chris Mason39279cc2007-06-12 06:35:45 -04001392 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001393fail:
1394 while (faili >= 0) {
1395 unlock_page(pages[faili]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001396 put_page(pages[faili]);
Chris Masonb1bf8622011-02-28 09:52:08 -05001397 faili--;
1398 }
1399 return err;
1400
Chris Mason39279cc2007-06-12 06:35:45 -04001401}
1402
Miao Xie376cc682013-12-10 19:25:04 +08001403/*
1404 * This function locks the extent and properly waits for data=ordered extents
1405 * to finish before allowing the pages to be modified if need.
1406 *
1407 * The return value:
1408 * 1 - the extent is locked
1409 * 0 - the extent is not locked, and everything is OK
1410 * -EAGAIN - need re-prepare the pages
1411 * the other < 0 number - Something wrong happens
1412 */
1413static noinline int
1414lock_and_cleanup_extent_if_need(struct inode *inode, struct page **pages,
1415 size_t num_pages, loff_t pos,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301416 size_t write_bytes,
Miao Xie376cc682013-12-10 19:25:04 +08001417 u64 *lockstart, u64 *lockend,
1418 struct extent_state **cached_state)
1419{
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301420 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie376cc682013-12-10 19:25:04 +08001421 u64 start_pos;
1422 u64 last_pos;
1423 int i;
1424 int ret = 0;
1425
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301426 start_pos = round_down(pos, root->sectorsize);
1427 last_pos = start_pos
1428 + round_up(pos + write_bytes - start_pos, root->sectorsize) - 1;
Miao Xie376cc682013-12-10 19:25:04 +08001429
1430 if (start_pos < inode->i_size) {
1431 struct btrfs_ordered_extent *ordered;
1432 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001433 start_pos, last_pos, cached_state);
Miao Xieb88935b2014-03-06 13:54:58 +08001434 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1435 last_pos - start_pos + 1);
Miao Xie376cc682013-12-10 19:25:04 +08001436 if (ordered &&
1437 ordered->file_offset + ordered->len > start_pos &&
1438 ordered->file_offset <= last_pos) {
Miao Xie376cc682013-12-10 19:25:04 +08001439 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1440 start_pos, last_pos,
1441 cached_state, GFP_NOFS);
1442 for (i = 0; i < num_pages; i++) {
1443 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001444 put_page(pages[i]);
Miao Xie376cc682013-12-10 19:25:04 +08001445 }
Miao Xieb88935b2014-03-06 13:54:58 +08001446 btrfs_start_ordered_extent(inode, ordered, 1);
1447 btrfs_put_ordered_extent(ordered);
1448 return -EAGAIN;
Miao Xie376cc682013-12-10 19:25:04 +08001449 }
1450 if (ordered)
1451 btrfs_put_ordered_extent(ordered);
1452
1453 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
1454 last_pos, EXTENT_DIRTY | EXTENT_DELALLOC |
1455 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
1456 0, 0, cached_state, GFP_NOFS);
1457 *lockstart = start_pos;
1458 *lockend = last_pos;
1459 ret = 1;
1460 }
1461
1462 for (i = 0; i < num_pages; i++) {
1463 if (clear_page_dirty_for_io(pages[i]))
1464 account_page_redirty(pages[i]);
1465 set_page_extent_mapped(pages[i]);
1466 WARN_ON(!PageLocked(pages[i]));
1467 }
1468
1469 return ret;
1470}
1471
Josef Bacik7ee9e442013-06-21 16:37:03 -04001472static noinline int check_can_nocow(struct inode *inode, loff_t pos,
1473 size_t *write_bytes)
1474{
Josef Bacik7ee9e442013-06-21 16:37:03 -04001475 struct btrfs_root *root = BTRFS_I(inode)->root;
1476 struct btrfs_ordered_extent *ordered;
1477 u64 lockstart, lockend;
1478 u64 num_bytes;
1479 int ret;
1480
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001481 ret = btrfs_start_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001482 if (!ret)
1483 return -ENOSPC;
1484
Josef Bacik7ee9e442013-06-21 16:37:03 -04001485 lockstart = round_down(pos, root->sectorsize);
Miao Xiec9339562014-02-27 13:58:04 +08001486 lockend = round_up(pos + *write_bytes, root->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001487
1488 while (1) {
1489 lock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1490 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1491 lockend - lockstart + 1);
1492 if (!ordered) {
1493 break;
1494 }
1495 unlock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1496 btrfs_start_ordered_extent(inode, ordered, 1);
1497 btrfs_put_ordered_extent(ordered);
1498 }
1499
Josef Bacik7ee9e442013-06-21 16:37:03 -04001500 num_bytes = lockend - lockstart + 1;
Josef Bacik00361582013-08-14 14:02:47 -04001501 ret = can_nocow_extent(inode, lockstart, &num_bytes, NULL, NULL, NULL);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001502 if (ret <= 0) {
1503 ret = 0;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001504 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001505 } else {
Miao Xiec9339562014-02-27 13:58:04 +08001506 *write_bytes = min_t(size_t, *write_bytes ,
1507 num_bytes - pos + lockstart);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001508 }
1509
1510 unlock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1511
1512 return ret;
1513}
1514
Josef Bacikd0215f32011-01-25 14:57:24 -05001515static noinline ssize_t __btrfs_buffered_write(struct file *file,
1516 struct iov_iter *i,
1517 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001518{
Al Viro496ad9a2013-01-23 17:07:38 -05001519 struct inode *inode = file_inode(file);
Josef Bacik11c65dc2010-05-23 11:07:21 -04001520 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001521 struct page **pages = NULL;
Miao Xie376cc682013-12-10 19:25:04 +08001522 struct extent_state *cached_state = NULL;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001523 u64 release_bytes = 0;
Miao Xie376cc682013-12-10 19:25:04 +08001524 u64 lockstart;
1525 u64 lockend;
Josef Bacikd0215f32011-01-25 14:57:24 -05001526 size_t num_written = 0;
1527 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001528 int ret = 0;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001529 bool only_release_metadata = false;
Josef Bacikb63164292011-09-30 15:23:54 -04001530 bool force_page_uptodate = false;
Miao Xie376cc682013-12-10 19:25:04 +08001531 bool need_unlock;
Chris Masoncb843a62008-10-03 12:30:02 -04001532
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001533 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1534 PAGE_SIZE / (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001535 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1536 nrptrs = max(nrptrs, 8);
David Sterba31e818f2015-02-20 18:00:26 +01001537 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001538 if (!pages)
1539 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001540
Josef Bacikd0215f32011-01-25 14:57:24 -05001541 while (iov_iter_count(i) > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001542 size_t offset = pos & (PAGE_SIZE - 1);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301543 size_t sector_offset;
Josef Bacikd0215f32011-01-25 14:57:24 -05001544 size_t write_bytes = min(iov_iter_count(i),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001545 nrptrs * (size_t)PAGE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001546 offset);
David Sterbaed6078f2014-06-05 01:59:57 +02001547 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001548 PAGE_SIZE);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001549 size_t reserve_bytes;
Josef Bacikd0215f32011-01-25 14:57:24 -05001550 size_t dirty_pages;
1551 size_t copied;
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301552 size_t dirty_sectors;
1553 size_t num_sectors;
Chris Mason39279cc2007-06-12 06:35:45 -04001554
Chris Mason8c2383c2007-06-18 09:57:58 -04001555 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001556
Xin Zhong914ee292010-12-09 09:30:14 +00001557 /*
1558 * Fault pages before locking them in prepare_pages
1559 * to avoid recursive lock
1560 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001561 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001562 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001563 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001564 }
1565
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301566 sector_offset = pos & (root->sectorsize - 1);
1567 reserve_bytes = round_up(write_bytes + sector_offset,
1568 root->sectorsize);
Qu Wenruod9d8b2a2015-09-08 17:22:43 +08001569
Josef Bacikc6887cd2016-03-25 13:26:00 -04001570 ret = btrfs_check_data_free_space(inode, pos, write_bytes);
1571 if (ret < 0) {
1572 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1573 BTRFS_INODE_PREALLOC)) &&
1574 check_can_nocow(inode, pos, &write_bytes) > 0) {
1575 /*
1576 * For nodata cow case, no need to reserve
1577 * data space.
1578 */
1579 only_release_metadata = true;
1580 /*
1581 * our prealloc extent may be smaller than
1582 * write_bytes, so scale down.
1583 */
1584 num_pages = DIV_ROUND_UP(write_bytes + offset,
1585 PAGE_SIZE);
1586 reserve_bytes = round_up(write_bytes +
1587 sector_offset,
1588 root->sectorsize);
1589 } else {
1590 break;
1591 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001592 }
Zhao Lei4da2e262016-01-06 18:24:43 +08001593
Josef Bacik7ee9e442013-06-21 16:37:03 -04001594 ret = btrfs_delalloc_reserve_metadata(inode, reserve_bytes);
1595 if (ret) {
1596 if (!only_release_metadata)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001597 btrfs_free_reserved_data_space(inode, pos,
1598 write_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001599 else
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001600 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001601 break;
1602 }
1603
1604 release_bytes = reserve_bytes;
Miao Xie376cc682013-12-10 19:25:04 +08001605 need_unlock = false;
1606again:
Josef Bacik4a640012011-01-25 15:10:08 -05001607 /*
1608 * This is going to setup the pages array with the number of
1609 * pages we want, so we don't really need to worry about the
1610 * contents of pages from loop to loop
1611 */
Miao Xieb37392e2013-12-10 19:25:03 +08001612 ret = prepare_pages(inode, pages, num_pages,
1613 pos, write_bytes,
Josef Bacikb63164292011-09-30 15:23:54 -04001614 force_page_uptodate);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001615 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -05001616 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001617
Miao Xie376cc682013-12-10 19:25:04 +08001618 ret = lock_and_cleanup_extent_if_need(inode, pages, num_pages,
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301619 pos, write_bytes, &lockstart,
1620 &lockend, &cached_state);
Miao Xie376cc682013-12-10 19:25:04 +08001621 if (ret < 0) {
1622 if (ret == -EAGAIN)
1623 goto again;
1624 break;
1625 } else if (ret > 0) {
1626 need_unlock = true;
1627 ret = 0;
1628 }
1629
Zhao Leiee22f0c2016-01-06 18:47:31 +08001630 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001631
Chris Mason56244ef2016-05-16 09:21:01 -07001632 num_sectors = BTRFS_BYTES_TO_BLKS(root->fs_info,
1633 reserve_bytes);
1634 dirty_sectors = round_up(copied + sector_offset,
1635 root->sectorsize);
1636 dirty_sectors = BTRFS_BYTES_TO_BLKS(root->fs_info,
1637 dirty_sectors);
1638
Chris Masonb1bf8622011-02-28 09:52:08 -05001639 /*
1640 * if we have trouble faulting in the pages, fall
1641 * back to one page at a time
1642 */
1643 if (copied < write_bytes)
1644 nrptrs = 1;
1645
Josef Bacikb63164292011-09-30 15:23:54 -04001646 if (copied == 0) {
1647 force_page_uptodate = true;
Chris Mason56244ef2016-05-16 09:21:01 -07001648 dirty_sectors = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001649 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001650 } else {
1651 force_page_uptodate = false;
David Sterbaed6078f2014-06-05 01:59:57 +02001652 dirty_pages = DIV_ROUND_UP(copied + offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001653 PAGE_SIZE);
Josef Bacikb63164292011-09-30 15:23:54 -04001654 }
Xin Zhong914ee292010-12-09 09:30:14 +00001655
Josef Bacikd0215f32011-01-25 14:57:24 -05001656 /*
1657 * If we had a short copy we need to release the excess delaloc
1658 * bytes we reserved. We need to increment outstanding_extents
Chris Mason56244ef2016-05-16 09:21:01 -07001659 * because btrfs_delalloc_release_space and
1660 * btrfs_delalloc_release_metadata will decrement it, but
Josef Bacikd0215f32011-01-25 14:57:24 -05001661 * we still have an outstanding extent for the chunk we actually
1662 * managed to copy.
1663 */
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301664 if (num_sectors > dirty_sectors) {
Chris Mason8b8b08c2016-07-19 05:52:36 -07001665
1666 /* release everything except the sectors we dirtied */
1667 release_bytes -= dirty_sectors <<
1668 root->fs_info->sb->s_blocksize_bits;
1669
Josef Bacik9e0baf62011-07-15 15:16:44 +00001670 if (copied > 0) {
1671 spin_lock(&BTRFS_I(inode)->lock);
1672 BTRFS_I(inode)->outstanding_extents++;
1673 spin_unlock(&BTRFS_I(inode)->lock);
1674 }
Qu Wenruo485290a2015-10-29 17:28:46 +08001675 if (only_release_metadata) {
Josef Bacik7ee9e442013-06-21 16:37:03 -04001676 btrfs_delalloc_release_metadata(inode,
1677 release_bytes);
Qu Wenruo485290a2015-10-29 17:28:46 +08001678 } else {
1679 u64 __pos;
1680
1681 __pos = round_down(pos, root->sectorsize) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001682 (dirty_pages << PAGE_SHIFT);
Qu Wenruo485290a2015-10-29 17:28:46 +08001683 btrfs_delalloc_release_space(inode, __pos,
Josef Bacik7ee9e442013-06-21 16:37:03 -04001684 release_bytes);
Qu Wenruo485290a2015-10-29 17:28:46 +08001685 }
Xin Zhong914ee292010-12-09 09:30:14 +00001686 }
1687
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301688 release_bytes = round_up(copied + sector_offset,
1689 root->sectorsize);
Miao Xie376cc682013-12-10 19:25:04 +08001690
1691 if (copied > 0)
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001692 ret = btrfs_dirty_pages(root, inode, pages,
1693 dirty_pages, pos, copied,
1694 NULL);
Miao Xie376cc682013-12-10 19:25:04 +08001695 if (need_unlock)
1696 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1697 lockstart, lockend, &cached_state,
1698 GFP_NOFS);
Miao Xief1de9682014-01-09 10:06:10 +08001699 if (ret) {
1700 btrfs_drop_pages(pages, num_pages);
Miao Xie376cc682013-12-10 19:25:04 +08001701 break;
Miao Xief1de9682014-01-09 10:06:10 +08001702 }
Chris Mason39279cc2007-06-12 06:35:45 -04001703
Josef Bacik7ee9e442013-06-21 16:37:03 -04001704 release_bytes = 0;
Miao Xie8257b2d2014-03-06 13:38:19 +08001705 if (only_release_metadata)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001706 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08001707
Josef Bacik7ee9e442013-06-21 16:37:03 -04001708 if (only_release_metadata && copied > 0) {
David Sterbaf64c7b12015-02-24 19:07:26 +01001709 lockstart = round_down(pos, root->sectorsize);
Chandan Rajendra2e78c922016-01-21 15:55:53 +05301710 lockend = round_up(pos + copied, root->sectorsize) - 1;
Josef Bacik7ee9e442013-06-21 16:37:03 -04001711
1712 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1713 lockend, EXTENT_NORESERVE, NULL,
1714 NULL, GFP_NOFS);
1715 only_release_metadata = false;
1716 }
1717
Miao Xief1de9682014-01-09 10:06:10 +08001718 btrfs_drop_pages(pages, num_pages);
1719
Josef Bacikd0215f32011-01-25 14:57:24 -05001720 cond_resched();
1721
Namjae Jeond0e1d662012-12-11 16:00:21 -08001722 balance_dirty_pages_ratelimited(inode->i_mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001723 if (dirty_pages < (root->nodesize >> PAGE_SHIFT) + 1)
Liu Bob53d3f52012-11-14 14:34:34 +00001724 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001725
Xin Zhong914ee292010-12-09 09:30:14 +00001726 pos += copied;
1727 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001728 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001729
Chris Mason8c2383c2007-06-18 09:57:58 -04001730 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001731
Josef Bacik7ee9e442013-06-21 16:37:03 -04001732 if (release_bytes) {
Miao Xie8257b2d2014-03-06 13:38:19 +08001733 if (only_release_metadata) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001734 btrfs_end_write_no_snapshoting(root);
Josef Bacik7ee9e442013-06-21 16:37:03 -04001735 btrfs_delalloc_release_metadata(inode, release_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001736 } else {
Chandan Rajendraa2af23b2016-04-04 02:53:06 +05301737 btrfs_delalloc_release_space(inode,
1738 round_down(pos, root->sectorsize),
1739 release_bytes);
Miao Xie8257b2d2014-03-06 13:38:19 +08001740 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04001741 }
1742
Josef Bacikd0215f32011-01-25 14:57:24 -05001743 return num_written ? num_written : ret;
1744}
1745
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001746static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001747{
1748 struct file *file = iocb->ki_filp;
Filipe Manana728404d2014-10-10 09:43:11 +01001749 struct inode *inode = file_inode(file);
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001750 loff_t pos = iocb->ki_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001751 ssize_t written;
1752 ssize_t written_buffered;
1753 loff_t endbyte;
1754 int err;
1755
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001756 written = generic_file_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001757
Al Viro0c949332014-03-22 06:51:37 -04001758 if (written < 0 || !iov_iter_count(from))
Josef Bacikd0215f32011-01-25 14:57:24 -05001759 return written;
1760
1761 pos += written;
Al Viro0ae5e4d2014-03-03 22:09:39 -05001762 written_buffered = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001763 if (written_buffered < 0) {
1764 err = written_buffered;
1765 goto out;
1766 }
Filipe Manana075bdbd2014-10-09 21:18:55 +01001767 /*
1768 * Ensure all data is persisted. We want the next direct IO read to be
1769 * able to read what was just written.
1770 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001771 endbyte = pos + written_buffered - 1;
Filipe Manana728404d2014-10-10 09:43:11 +01001772 err = btrfs_fdatawrite_range(inode, pos, endbyte);
Filipe Manana075bdbd2014-10-09 21:18:55 +01001773 if (err)
1774 goto out;
Filipe Manana728404d2014-10-10 09:43:11 +01001775 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
Josef Bacikd0215f32011-01-25 14:57:24 -05001776 if (err)
1777 goto out;
1778 written += written_buffered;
Al Viro867c4f92014-02-11 19:31:06 -05001779 iocb->ki_pos = pos + written_buffered;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001780 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1781 endbyte >> PAGE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001782out:
1783 return written ? written : err;
1784}
1785
Josef Bacik6c760c02012-11-09 10:53:21 -05001786static void update_time_for_write(struct inode *inode)
1787{
1788 struct timespec now;
1789
1790 if (IS_NOCMTIME(inode))
1791 return;
1792
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001793 now = current_time(inode);
Josef Bacik6c760c02012-11-09 10:53:21 -05001794 if (!timespec_equal(&inode->i_mtime, &now))
1795 inode->i_mtime = now;
1796
1797 if (!timespec_equal(&inode->i_ctime, &now))
1798 inode->i_ctime = now;
1799
1800 if (IS_I_VERSION(inode))
1801 inode_inc_iversion(inode);
1802}
1803
Al Virob30ac0f2014-04-03 14:29:04 -04001804static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1805 struct iov_iter *from)
Josef Bacikd0215f32011-01-25 14:57:24 -05001806{
1807 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001808 struct inode *inode = file_inode(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001809 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001810 u64 start_pos;
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001811 u64 end_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001812 ssize_t num_written = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001813 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
Al Viro3309dd02015-04-09 12:55:47 -04001814 ssize_t err;
1815 loff_t pos;
1816 size_t count;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301817 loff_t oldsize;
1818 int clean_page = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -05001819
Al Viro59551022016-01-22 15:40:57 -05001820 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001821 err = generic_write_checks(iocb, from);
1822 if (err <= 0) {
Al Viro59551022016-01-22 15:40:57 -05001823 inode_unlock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001824 return err;
1825 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001826
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001827 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001828 err = file_remove_privs(file);
Josef Bacikd0215f32011-01-25 14:57:24 -05001829 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001830 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001831 goto out;
1832 }
1833
1834 /*
1835 * If BTRFS flips readonly due to some impossible error
1836 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1837 * although we have opened a file as writable, we have
1838 * to stop this write operation to ensure FS consistency.
1839 */
Miao Xie87533c42013-01-29 10:14:48 +00001840 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) {
Al Viro59551022016-01-22 15:40:57 -05001841 inode_unlock(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001842 err = -EROFS;
1843 goto out;
1844 }
1845
Josef Bacik6c760c02012-11-09 10:53:21 -05001846 /*
1847 * We reserve space for updating the inode when we reserve space for the
1848 * extent we are going to write, so we will enospc out there. We don't
1849 * need to start yet another transaction to update the inode as we will
1850 * update the inode when we finish writing whatever data we write.
1851 */
1852 update_time_for_write(inode);
Josef Bacikd0215f32011-01-25 14:57:24 -05001853
Al Viro3309dd02015-04-09 12:55:47 -04001854 pos = iocb->ki_pos;
1855 count = iov_iter_count(from);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001856 start_pos = round_down(pos, root->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301857 oldsize = i_size_read(inode);
1858 if (start_pos > oldsize) {
Qu Wenruo3ac0d7b2014-03-27 02:51:58 +00001859 /* Expand hole size to cover write data, preventing empty gap */
Qu Wenruoc5f7d0b2014-04-15 10:41:00 +08001860 end_pos = round_up(pos + count, root->sectorsize);
Chandan Rajendra27772b62016-01-21 15:56:03 +05301861 err = btrfs_cont_expand(inode, oldsize, end_pos);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001862 if (err) {
Al Viro59551022016-01-22 15:40:57 -05001863 inode_unlock(inode);
Miao Xie0c1a98c2011-09-11 10:52:24 -04001864 goto out;
1865 }
Chandan Rajendra27772b62016-01-21 15:56:03 +05301866 if (start_pos > round_up(oldsize, root->sectorsize))
1867 clean_page = 1;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001868 }
1869
Josef Bacikb812ce22012-11-16 13:56:32 -05001870 if (sync)
1871 atomic_inc(&BTRFS_I(inode)->sync_writers);
1872
Al Viro2ba48ce2015-04-09 13:52:01 -04001873 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001874 num_written = __btrfs_direct_write(iocb, from);
Josef Bacikd0215f32011-01-25 14:57:24 -05001875 } else {
Al Virob30ac0f2014-04-03 14:29:04 -04001876 num_written = __btrfs_buffered_write(file, from, pos);
Josef Bacikd0215f32011-01-25 14:57:24 -05001877 if (num_written > 0)
Al Viro867c4f92014-02-11 19:31:06 -05001878 iocb->ki_pos = pos + num_written;
Chandan Rajendra27772b62016-01-21 15:56:03 +05301879 if (clean_page)
1880 pagecache_isize_extended(inode, oldsize,
1881 i_size_read(inode));
Josef Bacikd0215f32011-01-25 14:57:24 -05001882 }
1883
Al Viro59551022016-01-22 15:40:57 -05001884 inode_unlock(inode);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001885
Chris Mason5a3f23d2009-03-31 13:27:11 -04001886 /*
Josef Bacik6c760c02012-11-09 10:53:21 -05001887 * We also have to set last_sub_trans to the current log transid,
1888 * otherwise subsequent syncs to a file that's been synced in this
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001889 * transaction will appear to have already occurred.
Chris Mason5a3f23d2009-03-31 13:27:11 -04001890 */
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001891 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6c760c02012-11-09 10:53:21 -05001892 BTRFS_I(inode)->last_sub_trans = root->log_transid;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00001893 spin_unlock(&BTRFS_I(inode)->lock);
Christoph Hellwige2592212016-04-07 08:52:01 -07001894 if (num_written > 0)
1895 num_written = generic_write_sync(iocb, num_written);
Miao Xie0a3404d2013-01-28 12:34:55 +00001896
Josef Bacikb812ce22012-11-16 13:56:32 -05001897 if (sync)
1898 atomic_dec(&BTRFS_I(inode)->sync_writers);
Miao Xie0a3404d2013-01-28 12:34:55 +00001899out:
Chris Mason39279cc2007-06-12 06:35:45 -04001900 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001901 return num_written ? num_written : err;
1902}
1903
Chris Masond3977122009-01-05 21:25:51 -05001904int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001905{
Sage Weil6bf13c02008-06-10 10:07:39 -04001906 if (filp->private_data)
1907 btrfs_ioctl_trans_end(filp);
Chris Masonf6dc45c2014-08-20 07:15:33 -07001908 /*
1909 * ordered_data_close is set by settattr when we are about to truncate
1910 * a file from a non-zero size to a zero size. This tries to
1911 * flush down new bytes that may have been written if the
1912 * application were using truncate to replace a file in place.
1913 */
1914 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1915 &BTRFS_I(inode)->runtime_flags))
1916 filemap_flush(inode->i_mapping);
Mingminge1b81e62008-05-27 10:55:43 -04001917 return 0;
1918}
1919
Filipe Manana669249e2014-09-02 11:09:58 +01001920static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
1921{
1922 int ret;
1923
1924 atomic_inc(&BTRFS_I(inode)->sync_writers);
Filipe Manana728404d2014-10-10 09:43:11 +01001925 ret = btrfs_fdatawrite_range(inode, start, end);
Filipe Manana669249e2014-09-02 11:09:58 +01001926 atomic_dec(&BTRFS_I(inode)->sync_writers);
1927
1928 return ret;
1929}
1930
Chris Masond352ac62008-09-29 15:18:18 -04001931/*
1932 * fsync call for both files and directories. This logs the inode into
1933 * the tree log instead of forcing full commits whenever possible.
1934 *
1935 * It needs to call filemap_fdatawait so that all ordered extent updates are
1936 * in the metadata btree are up to date for copying to the log.
1937 *
1938 * It drops the inode mutex before doing the tree log commit. This is an
1939 * important optimization for directories because holding the mutex prevents
1940 * new operations on the dir while we write to disk.
1941 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001942int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001943{
Filipe Mananade17e792016-03-30 19:03:13 -04001944 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +00001945 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001946 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001947 struct btrfs_trans_handle *trans;
Miao Xie8b050d32014-02-20 18:08:58 +08001948 struct btrfs_log_ctx ctx;
1949 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001950 bool full_sync = 0;
David Sterba9dcbeed2015-11-09 11:44:45 +01001951 u64 len;
Chris Mason39279cc2007-06-12 06:35:45 -04001952
David Sterba9dcbeed2015-11-09 11:44:45 +01001953 /*
1954 * The range length can be represented by u64, we have to do the typecasts
1955 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
1956 */
1957 len = (u64)end - (u64)start + 1;
liubo1abe9b82011-03-24 11:18:59 +00001958 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001959
Miao Xie90abccf2012-09-13 04:53:47 -06001960 /*
1961 * We write the dirty pages in the range and wait until they complete
1962 * out of the ->i_mutex. If so, we can flush the dirty pages by
Josef Bacik2ab28f32012-10-12 15:27:49 -04001963 * multi-task, and make the performance up. See
1964 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
Miao Xie90abccf2012-09-13 04:53:47 -06001965 */
Filipe Manana669249e2014-09-02 11:09:58 +01001966 ret = start_ordered_ops(inode, start, end);
Miao Xie90abccf2012-09-13 04:53:47 -06001967 if (ret)
1968 return ret;
1969
Al Viro59551022016-01-22 15:40:57 -05001970 inode_lock(inode);
Miao Xie2ecb7922012-09-06 04:04:27 -06001971 atomic_inc(&root->log_batch);
Josef Bacik2ab28f32012-10-12 15:27:49 -04001972 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1973 &BTRFS_I(inode)->runtime_flags);
Filipe Manana669249e2014-09-02 11:09:58 +01001974 /*
1975 * We might have have had more pages made dirty after calling
1976 * start_ordered_ops and before acquiring the inode's i_mutex.
1977 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04001978 if (full_sync) {
Filipe Manana669249e2014-09-02 11:09:58 +01001979 /*
1980 * For a full sync, we need to make sure any ordered operations
1981 * start and finish before we start logging the inode, so that
1982 * all extents are persisted and the respective file extent
1983 * items are in the fs/subvol btree.
1984 */
Filipe Mananab659ef02015-03-31 14:16:52 +01001985 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Manana669249e2014-09-02 11:09:58 +01001986 } else {
1987 /*
1988 * Start any new ordered operations before starting to log the
1989 * inode. We will wait for them to finish in btrfs_sync_log().
1990 *
1991 * Right before acquiring the inode's mutex, we might have new
1992 * writes dirtying pages, which won't immediately start the
1993 * respective ordered operations - that is done through the
1994 * fill_delalloc callbacks invoked from the writepage and
1995 * writepages address space operations. So make sure we start
1996 * all ordered operations before starting to log our inode. Not
1997 * doing this means that while logging the inode, writeback
1998 * could start and invoke writepage/writepages, which would call
1999 * the fill_delalloc callbacks (cow_file_range,
2000 * submit_compressed_extents). These callbacks add first an
2001 * extent map to the modified list of extents and then create
2002 * the respective ordered operation, which means in
2003 * tree-log.c:btrfs_log_inode() we might capture all existing
2004 * ordered operations (with btrfs_get_logged_extents()) before
2005 * the fill_delalloc callback adds its ordered operation, and by
2006 * the time we visit the modified list of extent maps (with
2007 * btrfs_log_changed_extents()), we see and process the extent
2008 * map they created. We then use the extent map to construct a
2009 * file extent item for logging without waiting for the
2010 * respective ordered operation to finish - this file extent
2011 * item points to a disk location that might not have yet been
2012 * written to, containing random data - so after a crash a log
2013 * replay will make our inode have file extent items that point
2014 * to disk locations containing invalid data, as we returned
2015 * success to userspace without waiting for the respective
2016 * ordered operation to finish, because it wasn't captured by
2017 * btrfs_get_logged_extents().
2018 */
2019 ret = start_ordered_ops(inode, start, end);
2020 }
2021 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002022 inode_unlock(inode);
Filipe Manana669249e2014-09-02 11:09:58 +01002023 goto out;
Josef Bacik0ef8b722013-10-25 16:13:35 -04002024 }
Miao Xie2ecb7922012-09-06 04:04:27 -06002025 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04002026
Chris Mason39279cc2007-06-12 06:35:45 -04002027 /*
Filipe Manana3a8b36f2015-03-01 20:36:00 +00002028 * If the last transaction that changed this file was before the current
2029 * transaction and we have the full sync flag set in our inode, we can
2030 * bail out now without any syncing.
2031 *
2032 * Note that we can't bail out if the full sync flag isn't set. This is
2033 * because when the full sync flag is set we start all ordered extents
2034 * and wait for them to fully complete - when they complete they update
2035 * the inode's last_trans field through:
2036 *
2037 * btrfs_finish_ordered_io() ->
2038 * btrfs_update_inode_fallback() ->
2039 * btrfs_update_inode() ->
2040 * btrfs_set_inode_last_trans()
2041 *
2042 * So we are sure that last_trans is up to date and can do this check to
2043 * bail out safely. For the fast path, when the full sync flag is not
2044 * set in our inode, we can not do it because we start only our ordered
2045 * extents and don't wait for them to complete (that is when
2046 * btrfs_finish_ordered_io runs), so here at this point their last_trans
2047 * value might be less than or equals to fs_info->last_trans_committed,
2048 * and setting a speculative last_trans for an inode when a buffered
2049 * write is made (such as fs_info->generation + 1 for example) would not
2050 * be reliable since after setting the value and before fsync is called
2051 * any number of transactions can start and commit (transaction kthread
2052 * commits the current transaction periodically), and a transaction
2053 * commit does not start nor waits for ordered extents to complete.
Chris Mason257c62e2009-10-13 13:21:08 -04002054 */
Josef Bacika4abeea2011-04-11 17:25:13 -04002055 smp_mb();
Josef Bacik22ee6985d2012-05-29 16:57:49 -04002056 if (btrfs_inode_in_log(inode, root->fs_info->generation) ||
Filipe Mananaaffc0ff2016-02-24 07:35:05 +00002057 (full_sync && BTRFS_I(inode)->last_trans <=
2058 root->fs_info->last_trans_committed) ||
2059 (!btrfs_have_ordered_extents_in_range(inode, start, len) &&
2060 BTRFS_I(inode)->last_trans
2061 <= root->fs_info->last_trans_committed)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04002062 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002063 * We've had everything committed since the last time we were
Josef Bacik5dc562c2012-08-17 13:14:17 -04002064 * modified so clear this flag in case it was set for whatever
2065 * reason, it's no longer relevant.
2066 */
2067 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2068 &BTRFS_I(inode)->runtime_flags);
Filipe Manana0596a902016-06-14 14:18:27 +01002069 /*
2070 * An ordered extent might have started before and completed
2071 * already with io errors, in which case the inode was not
2072 * updated and we end up here. So check the inode's mapping
2073 * flags for any errors that might have happened while doing
2074 * writeback of file data.
2075 */
Miklos Szeredif0312212016-09-16 12:44:21 +02002076 ret = filemap_check_errors(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05002077 inode_unlock(inode);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002078 goto out;
2079 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002080
2081 /*
Chris Masona52d9a82007-08-27 16:49:44 -04002082 * ok we haven't committed the transaction yet, lets do a commit
2083 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00002084 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04002085 btrfs_ioctl_trans_end(file);
2086
Josef Bacik5039edd2014-01-15 13:34:13 -05002087 /*
2088 * We use start here because we will need to wait on the IO to complete
2089 * in btrfs_sync_log, which could require joining a transaction (for
2090 * example checking cross references in the nocow path). If we use join
2091 * here we could get into a situation where we're waiting on IO to
2092 * happen that is blocked on a transaction trying to commit. With start
2093 * we inc the extwriter counter, so we wait for all extwriters to exit
2094 * before we start blocking join'ers. This comment is to keep somebody
2095 * from thinking they are super smart and changing this to
2096 * btrfs_join_transaction *cough*Josef*cough*.
2097 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002098 trans = btrfs_start_transaction(root, 0);
2099 if (IS_ERR(trans)) {
2100 ret = PTR_ERR(trans);
Al Viro59551022016-01-22 15:40:57 -05002101 inode_unlock(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002102 goto out;
2103 }
Josef Bacik5039edd2014-01-15 13:34:13 -05002104 trans->sync = true;
Chris Masone02119d2008-09-05 16:13:11 -04002105
Filipe Manana28a23592016-08-23 21:13:51 +01002106 btrfs_init_log_ctx(&ctx, inode);
Miao Xie8b050d32014-02-20 18:08:58 +08002107
Filipe Manana49dae1b2014-09-06 22:34:39 +01002108 ret = btrfs_log_dentry_safe(trans, root, dentry, start, end, &ctx);
Josef Bacik02c24a82011-07-16 20:44:56 -04002109 if (ret < 0) {
Filipe David Borba Mananaa0634be2013-09-11 20:36:44 +01002110 /* Fallthrough and commit/free transaction. */
2111 ret = 1;
Josef Bacik02c24a82011-07-16 20:44:56 -04002112 }
Chris Mason49eb7e42008-09-11 15:53:12 -04002113
2114 /* we've logged all the items and now have a consistent
2115 * version of the file in the log. It is possible that
2116 * someone will come in and modify the file, but that's
2117 * fine because the log is consistent on disk, and we
2118 * have references to all of the file's extents
2119 *
2120 * It is possible that someone will come in and log the
2121 * file again, but that will end up using the synchronization
2122 * inside btrfs_sync_log to keep things safe.
2123 */
Al Viro59551022016-01-22 15:40:57 -05002124 inode_unlock(inode);
Chris Mason49eb7e42008-09-11 15:53:12 -04002125
Filipe Manana8407f552014-09-05 15:14:39 +01002126 /*
2127 * If any of the ordered extents had an error, just return it to user
2128 * space, so that the application knows some writes didn't succeed and
2129 * can take proper action (retry for e.g.). Blindly committing the
2130 * transaction in this case, would fool userspace that everything was
2131 * successful. And we also want to make sure our log doesn't contain
2132 * file extent items pointing to extents that weren't fully written to -
2133 * just like in the non fast fsync path, where we check for the ordered
2134 * operation's error flag before writing to the log tree and return -EIO
2135 * if any of them had this flag set (btrfs_wait_ordered_range) -
2136 * therefore we need to check for errors in the ordered operations,
2137 * which are indicated by ctx.io_err.
2138 */
2139 if (ctx.io_err) {
2140 btrfs_end_transaction(trans, root);
2141 ret = ctx.io_err;
2142 goto out;
2143 }
2144
Chris Mason257c62e2009-10-13 13:21:08 -04002145 if (ret != BTRFS_NO_LOG_SYNC) {
Josef Bacik0ef8b722013-10-25 16:13:35 -04002146 if (!ret) {
Miao Xie8b050d32014-02-20 18:08:58 +08002147 ret = btrfs_sync_log(trans, root, &ctx);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002148 if (!ret) {
Chris Mason257c62e2009-10-13 13:21:08 -04002149 ret = btrfs_end_transaction(trans, root);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002150 goto out;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002151 }
Chris Mason257c62e2009-10-13 13:21:08 -04002152 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002153 if (!full_sync) {
David Sterba9dcbeed2015-11-09 11:44:45 +01002154 ret = btrfs_wait_ordered_range(inode, start, len);
Filipe Mananab05fd872014-05-29 23:31:39 +01002155 if (ret) {
2156 btrfs_end_transaction(trans, root);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002157 goto out;
Filipe Mananab05fd872014-05-29 23:31:39 +01002158 }
Josef Bacik0ef8b722013-10-25 16:13:35 -04002159 }
2160 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04002161 } else {
2162 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04002163 }
Chris Mason39279cc2007-06-12 06:35:45 -04002164out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00002165 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002166}
2167
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002168static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04002169 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002170 .map_pages = filemap_map_pages,
Chris Mason9ebefb182007-06-15 13:50:00 -04002171 .page_mkwrite = btrfs_page_mkwrite,
2172};
2173
2174static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2175{
Miao Xie058a4572010-05-20 07:21:50 +00002176 struct address_space *mapping = filp->f_mapping;
2177
2178 if (!mapping->a_ops->readpage)
2179 return -ENOEXEC;
2180
Chris Mason9ebefb182007-06-15 13:50:00 -04002181 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00002182 vma->vm_ops = &btrfs_file_vm_ops;
Miao Xie058a4572010-05-20 07:21:50 +00002183
Chris Mason9ebefb182007-06-15 13:50:00 -04002184 return 0;
2185}
2186
Josef Bacik2aaa6652012-08-29 14:27:18 -04002187static int hole_mergeable(struct inode *inode, struct extent_buffer *leaf,
2188 int slot, u64 start, u64 end)
2189{
2190 struct btrfs_file_extent_item *fi;
2191 struct btrfs_key key;
2192
2193 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2194 return 0;
2195
2196 btrfs_item_key_to_cpu(leaf, &key, slot);
2197 if (key.objectid != btrfs_ino(inode) ||
2198 key.type != BTRFS_EXTENT_DATA_KEY)
2199 return 0;
2200
2201 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2202
2203 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2204 return 0;
2205
2206 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2207 return 0;
2208
2209 if (key.offset == end)
2210 return 1;
2211 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2212 return 1;
2213 return 0;
2214}
2215
2216static int fill_holes(struct btrfs_trans_handle *trans, struct inode *inode,
2217 struct btrfs_path *path, u64 offset, u64 end)
2218{
2219 struct btrfs_root *root = BTRFS_I(inode)->root;
2220 struct extent_buffer *leaf;
2221 struct btrfs_file_extent_item *fi;
2222 struct extent_map *hole_em;
2223 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2224 struct btrfs_key key;
2225 int ret;
2226
Josef Bacik16e75492013-10-22 12:18:51 -04002227 if (btrfs_fs_incompat(root->fs_info, NO_HOLES))
2228 goto out;
2229
Josef Bacik2aaa6652012-08-29 14:27:18 -04002230 key.objectid = btrfs_ino(inode);
2231 key.type = BTRFS_EXTENT_DATA_KEY;
2232 key.offset = offset;
2233
Josef Bacik2aaa6652012-08-29 14:27:18 -04002234 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2235 if (ret < 0)
2236 return ret;
2237 BUG_ON(!ret);
2238
2239 leaf = path->nodes[0];
2240 if (hole_mergeable(inode, leaf, path->slots[0]-1, offset, end)) {
2241 u64 num_bytes;
2242
2243 path->slots[0]--;
2244 fi = btrfs_item_ptr(leaf, path->slots[0],
2245 struct btrfs_file_extent_item);
2246 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2247 end - offset;
2248 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2249 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2250 btrfs_set_file_extent_offset(leaf, fi, 0);
2251 btrfs_mark_buffer_dirty(leaf);
2252 goto out;
2253 }
2254
chandan1707e262014-07-01 12:04:28 +05302255 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002256 u64 num_bytes;
2257
Josef Bacik2aaa6652012-08-29 14:27:18 -04002258 key.offset = offset;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09002259 btrfs_set_item_key_safe(root->fs_info, path, &key);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002260 fi = btrfs_item_ptr(leaf, path->slots[0],
2261 struct btrfs_file_extent_item);
2262 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2263 offset;
2264 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2265 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2266 btrfs_set_file_extent_offset(leaf, fi, 0);
2267 btrfs_mark_buffer_dirty(leaf);
2268 goto out;
2269 }
2270 btrfs_release_path(path);
2271
2272 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
2273 0, 0, end - offset, 0, end - offset,
2274 0, 0, 0);
2275 if (ret)
2276 return ret;
2277
2278out:
2279 btrfs_release_path(path);
2280
2281 hole_em = alloc_extent_map();
2282 if (!hole_em) {
2283 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2284 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2285 &BTRFS_I(inode)->runtime_flags);
2286 } else {
2287 hole_em->start = offset;
2288 hole_em->len = end - offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04002289 hole_em->ram_bytes = hole_em->len;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002290 hole_em->orig_start = offset;
2291
2292 hole_em->block_start = EXTENT_MAP_HOLE;
2293 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05002294 hole_em->orig_block_len = 0;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002295 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
2296 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2297 hole_em->generation = trans->transid;
2298
2299 do {
2300 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2301 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002302 ret = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002303 write_unlock(&em_tree->lock);
2304 } while (ret == -EEXIST);
2305 free_extent_map(hole_em);
2306 if (ret)
2307 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2308 &BTRFS_I(inode)->runtime_flags);
2309 }
2310
2311 return 0;
2312}
2313
Qu Wenruod7781542014-05-30 15:16:10 +08002314/*
2315 * Find a hole extent on given inode and change start/len to the end of hole
2316 * extent.(hole/vacuum extent whose em->start <= start &&
2317 * em->start + em->len > start)
2318 * When a hole extent is found, return 1 and modify start/len.
2319 */
2320static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2321{
2322 struct extent_map *em;
2323 int ret = 0;
2324
2325 em = btrfs_get_extent(inode, NULL, 0, *start, *len, 0);
2326 if (IS_ERR_OR_NULL(em)) {
2327 if (!em)
2328 ret = -ENOMEM;
2329 else
2330 ret = PTR_ERR(em);
2331 return ret;
2332 }
2333
2334 /* Hole or vacuum extent(only exists in no-hole mode) */
2335 if (em->block_start == EXTENT_MAP_HOLE) {
2336 ret = 1;
2337 *len = em->start + em->len > *start + *len ?
2338 0 : *start + *len - em->start - em->len;
2339 *start = em->start + em->len;
2340 }
2341 free_extent_map(em);
2342 return ret;
2343}
2344
Josef Bacik2aaa6652012-08-29 14:27:18 -04002345static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2346{
2347 struct btrfs_root *root = BTRFS_I(inode)->root;
2348 struct extent_state *cached_state = NULL;
2349 struct btrfs_path *path;
2350 struct btrfs_block_rsv *rsv;
2351 struct btrfs_trans_handle *trans;
Qu Wenruod7781542014-05-30 15:16:10 +08002352 u64 lockstart;
2353 u64 lockend;
2354 u64 tail_start;
2355 u64 tail_len;
2356 u64 orig_start = offset;
2357 u64 cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002358 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
2359 u64 drop_end;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002360 int ret = 0;
2361 int err = 0;
Alexandru Moise6e4d6fa2015-09-22 21:00:07 +00002362 unsigned int rsv_count;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302363 bool same_block;
Josef Bacik16e75492013-10-22 12:18:51 -04002364 bool no_holes = btrfs_fs_incompat(root->fs_info, NO_HOLES);
Filipe Mananaa1a50f62014-04-26 01:35:31 +01002365 u64 ino_size;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302366 bool truncated_block = false;
Filipe Mananae8c1c762015-02-15 22:38:54 +00002367 bool updated_inode = false;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002368
Josef Bacik0ef8b722013-10-25 16:13:35 -04002369 ret = btrfs_wait_ordered_range(inode, offset, len);
2370 if (ret)
2371 return ret;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002372
Al Viro59551022016-01-22 15:40:57 -05002373 inode_lock(inode);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302374 ino_size = round_up(inode->i_size, root->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002375 ret = find_first_non_hole(inode, &offset, &len);
2376 if (ret < 0)
2377 goto out_only_mutex;
2378 if (ret && !len) {
2379 /* Already in a large hole */
2380 ret = 0;
2381 goto out_only_mutex;
2382 }
2383
Qu Wenruo51f395a2014-08-08 13:06:20 +08002384 lockstart = round_up(offset, BTRFS_I(inode)->root->sectorsize);
Qu Wenruod7781542014-05-30 15:16:10 +08002385 lockend = round_down(offset + len,
2386 BTRFS_I(inode)->root->sectorsize) - 1;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302387 same_block = (BTRFS_BYTES_TO_BLKS(root->fs_info, offset))
2388 == (BTRFS_BYTES_TO_BLKS(root->fs_info, offset + len - 1));
Miao Xie7426cc02012-12-05 10:54:52 +00002389 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302390 * We needn't truncate any block which is beyond the end of the file
Miao Xie7426cc02012-12-05 10:54:52 +00002391 * because we are sure there is no data there.
2392 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04002393 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302394 * Only do this if we are in the same block and we aren't doing the
2395 * entire block.
Josef Bacik2aaa6652012-08-29 14:27:18 -04002396 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302397 if (same_block && len < root->sectorsize) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002398 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302399 truncated_block = true;
2400 ret = btrfs_truncate_block(inode, offset, len, 0);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002401 } else {
2402 ret = 0;
2403 }
Qu Wenruod7781542014-05-30 15:16:10 +08002404 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002405 }
2406
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302407 /* zero back part of the first block */
Filipe Manana12870f12014-02-15 15:55:58 +00002408 if (offset < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302409 truncated_block = true;
2410 ret = btrfs_truncate_block(inode, offset, 0, 0);
Miao Xie7426cc02012-12-05 10:54:52 +00002411 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002412 inode_unlock(inode);
Miao Xie7426cc02012-12-05 10:54:52 +00002413 return ret;
2414 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002415 }
2416
Qu Wenruod7781542014-05-30 15:16:10 +08002417 /* Check the aligned pages after the first unaligned page,
2418 * if offset != orig_start, which means the first unaligned page
Nicholas D Steeves01327612016-05-19 21:18:45 -04002419 * including several following pages are already in holes,
Qu Wenruod7781542014-05-30 15:16:10 +08002420 * the extra check can be skipped */
2421 if (offset == orig_start) {
2422 /* after truncate page, check hole again */
2423 len = offset + len - lockstart;
2424 offset = lockstart;
2425 ret = find_first_non_hole(inode, &offset, &len);
2426 if (ret < 0)
2427 goto out_only_mutex;
2428 if (ret && !len) {
2429 ret = 0;
2430 goto out_only_mutex;
2431 }
2432 lockstart = offset;
2433 }
2434
2435 /* Check the tail unaligned part is in a hole */
2436 tail_start = lockend + 1;
2437 tail_len = offset + len - tail_start;
2438 if (tail_len) {
2439 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2440 if (unlikely(ret < 0))
2441 goto out_only_mutex;
2442 if (!ret) {
2443 /* zero the front end of the last page */
2444 if (tail_start + tail_len < ino_size) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302445 truncated_block = true;
2446 ret = btrfs_truncate_block(inode,
2447 tail_start + tail_len,
2448 0, 1);
Qu Wenruod7781542014-05-30 15:16:10 +08002449 if (ret)
2450 goto out_only_mutex;
Qu Wenruo51f395a2014-08-08 13:06:20 +08002451 }
Miao Xie00612802012-12-05 10:54:12 +00002452 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002453 }
2454
2455 if (lockend < lockstart) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002456 ret = 0;
2457 goto out_only_mutex;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002458 }
2459
2460 while (1) {
2461 struct btrfs_ordered_extent *ordered;
2462
2463 truncate_pagecache_range(inode, lockstart, lockend);
2464
2465 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01002466 &cached_state);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002467 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2468
2469 /*
2470 * We need to make sure we have no ordered extents in this range
2471 * and nobody raced in and read a page in this range, if we did
2472 * we need to try again.
2473 */
2474 if ((!ordered ||
Filipe David Borba Manana6126e3c2013-11-19 16:19:24 +00002475 (ordered->file_offset + ordered->len <= lockstart ||
Josef Bacik2aaa6652012-08-29 14:27:18 -04002476 ordered->file_offset > lockend)) &&
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07002477 !btrfs_page_exists_in_range(inode, lockstart, lockend)) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04002478 if (ordered)
2479 btrfs_put_ordered_extent(ordered);
2480 break;
2481 }
2482 if (ordered)
2483 btrfs_put_ordered_extent(ordered);
2484 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2485 lockend, &cached_state, GFP_NOFS);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002486 ret = btrfs_wait_ordered_range(inode, lockstart,
2487 lockend - lockstart + 1);
2488 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002489 inode_unlock(inode);
Josef Bacik0ef8b722013-10-25 16:13:35 -04002490 return ret;
2491 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002492 }
2493
2494 path = btrfs_alloc_path();
2495 if (!path) {
2496 ret = -ENOMEM;
2497 goto out;
2498 }
2499
Miao Xie66d8f3d2012-09-06 04:02:28 -06002500 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002501 if (!rsv) {
2502 ret = -ENOMEM;
2503 goto out_free;
2504 }
2505 rsv->size = btrfs_calc_trunc_metadata_size(root, 1);
2506 rsv->failfast = 1;
2507
2508 /*
2509 * 1 - update the inode
2510 * 1 - removing the extents in the range
Josef Bacik16e75492013-10-22 12:18:51 -04002511 * 1 - adding the hole extent if no_holes isn't set
Josef Bacik2aaa6652012-08-29 14:27:18 -04002512 */
Josef Bacik16e75492013-10-22 12:18:51 -04002513 rsv_count = no_holes ? 2 : 3;
2514 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002515 if (IS_ERR(trans)) {
2516 err = PTR_ERR(trans);
2517 goto out_free;
2518 }
2519
2520 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002521 min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002522 BUG_ON(ret);
2523 trans->block_rsv = rsv;
2524
Qu Wenruod7781542014-05-30 15:16:10 +08002525 cur_offset = lockstart;
2526 len = lockend - cur_offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002527 while (cur_offset < lockend) {
2528 ret = __btrfs_drop_extents(trans, root, inode, path,
2529 cur_offset, lockend + 1,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002530 &drop_end, 1, 0, 0, NULL);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002531 if (ret != -ENOSPC)
2532 break;
2533
2534 trans->block_rsv = &root->fs_info->trans_block_rsv;
2535
Josef Bacik62fe51c12016-11-16 09:13:39 -05002536 if (cur_offset < drop_end && cur_offset < ino_size) {
Filipe Manana12870f12014-02-15 15:55:58 +00002537 ret = fill_holes(trans, inode, path, cur_offset,
2538 drop_end);
2539 if (ret) {
2540 err = ret;
2541 break;
2542 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002543 }
2544
2545 cur_offset = drop_end;
2546
2547 ret = btrfs_update_inode(trans, root, inode);
2548 if (ret) {
2549 err = ret;
2550 break;
2551 }
2552
Josef Bacik2aaa6652012-08-29 14:27:18 -04002553 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00002554 btrfs_btree_balance_dirty(root);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002555
Josef Bacik16e75492013-10-22 12:18:51 -04002556 trans = btrfs_start_transaction(root, rsv_count);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002557 if (IS_ERR(trans)) {
2558 ret = PTR_ERR(trans);
2559 trans = NULL;
2560 break;
2561 }
2562
2563 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04002564 rsv, min_size, 0);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002565 BUG_ON(ret); /* shouldn't happen */
2566 trans->block_rsv = rsv;
Qu Wenruod7781542014-05-30 15:16:10 +08002567
2568 ret = find_first_non_hole(inode, &cur_offset, &len);
2569 if (unlikely(ret < 0))
2570 break;
2571 if (ret && !len) {
2572 ret = 0;
2573 break;
2574 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002575 }
2576
2577 if (ret) {
2578 err = ret;
2579 goto out_trans;
2580 }
2581
2582 trans->block_rsv = &root->fs_info->trans_block_rsv;
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002583 /*
Filipe Manana2959a322015-11-02 12:32:44 +00002584 * If we are using the NO_HOLES feature we might have had already an
2585 * hole that overlaps a part of the region [lockstart, lockend] and
2586 * ends at (or beyond) lockend. Since we have no file extent items to
2587 * represent holes, drop_end can be less than lockend and so we must
2588 * make sure we have an extent map representing the existing hole (the
2589 * call to __btrfs_drop_extents() might have dropped the existing extent
2590 * map representing the existing hole), otherwise the fast fsync path
2591 * will not record the existence of the hole region
2592 * [existing_hole_start, lockend].
2593 */
2594 if (drop_end <= lockend)
2595 drop_end = lockend + 1;
2596 /*
Filipe Mananafc19c5e2014-04-29 13:18:40 +01002597 * Don't insert file hole extent item if it's for a range beyond eof
2598 * (because it's useless) or if it represents a 0 bytes range (when
2599 * cur_offset == drop_end).
2600 */
2601 if (cur_offset < ino_size && cur_offset < drop_end) {
Filipe Manana12870f12014-02-15 15:55:58 +00002602 ret = fill_holes(trans, inode, path, cur_offset, drop_end);
2603 if (ret) {
2604 err = ret;
2605 goto out_trans;
2606 }
Josef Bacik2aaa6652012-08-29 14:27:18 -04002607 }
2608
2609out_trans:
2610 if (!trans)
2611 goto out_free;
2612
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002613 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002614 inode->i_mtime = inode->i_ctime = current_time(inode);
Tsutomu Itohe1f57902012-11-08 04:47:33 +00002615
Josef Bacik2aaa6652012-08-29 14:27:18 -04002616 trans->block_rsv = &root->fs_info->trans_block_rsv;
2617 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananae8c1c762015-02-15 22:38:54 +00002618 updated_inode = true;
Josef Bacik2aaa6652012-08-29 14:27:18 -04002619 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00002620 btrfs_btree_balance_dirty(root);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002621out_free:
2622 btrfs_free_path(path);
2623 btrfs_free_block_rsv(root, rsv);
2624out:
2625 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2626 &cached_state, GFP_NOFS);
Qu Wenruod7781542014-05-30 15:16:10 +08002627out_only_mutex:
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302628 if (!updated_inode && truncated_block && !ret && !err) {
Filipe Mananae8c1c762015-02-15 22:38:54 +00002629 /*
2630 * If we only end up zeroing part of a page, we still need to
2631 * update the inode item, so that all the time fields are
2632 * updated as well as the necessary btrfs inode in memory fields
2633 * for detecting, at fsync time, if the inode isn't yet in the
2634 * log tree or it's there but not up to date.
2635 */
2636 trans = btrfs_start_transaction(root, 1);
2637 if (IS_ERR(trans)) {
2638 err = PTR_ERR(trans);
2639 } else {
2640 err = btrfs_update_inode(trans, root, inode);
2641 ret = btrfs_end_transaction(trans, root);
2642 }
2643 }
Al Viro59551022016-01-22 15:40:57 -05002644 inode_unlock(inode);
Josef Bacik2aaa6652012-08-29 14:27:18 -04002645 if (ret && !err)
2646 err = ret;
2647 return err;
2648}
2649
Qu Wenruo14524a82015-09-08 17:22:44 +08002650/* Helper structure to record which range is already reserved */
2651struct falloc_range {
2652 struct list_head list;
2653 u64 start;
2654 u64 len;
2655};
2656
2657/*
2658 * Helper function to add falloc range
2659 *
2660 * Caller should have locked the larger range of extent containing
2661 * [start, len)
2662 */
2663static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2664{
2665 struct falloc_range *prev = NULL;
2666 struct falloc_range *range = NULL;
2667
2668 if (list_empty(head))
2669 goto insert;
2670
2671 /*
2672 * As fallocate iterate by bytenr order, we only need to check
2673 * the last range.
2674 */
2675 prev = list_entry(head->prev, struct falloc_range, list);
2676 if (prev->start + prev->len == start) {
2677 prev->len += len;
2678 return 0;
2679 }
2680insert:
David Sterba32fc9322016-02-11 14:25:38 +01002681 range = kmalloc(sizeof(*range), GFP_KERNEL);
Qu Wenruo14524a82015-09-08 17:22:44 +08002682 if (!range)
2683 return -ENOMEM;
2684 range->start = start;
2685 range->len = len;
2686 list_add_tail(&range->list, head);
2687 return 0;
2688}
2689
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002690static long btrfs_fallocate(struct file *file, int mode,
2691 loff_t offset, loff_t len)
2692{
Al Viro496ad9a2013-01-23 17:07:38 -05002693 struct inode *inode = file_inode(file);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002694 struct extent_state *cached_state = NULL;
Qu Wenruo14524a82015-09-08 17:22:44 +08002695 struct falloc_range *range;
2696 struct falloc_range *tmp;
2697 struct list_head reserve_list;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002698 u64 cur_offset;
2699 u64 last_byte;
2700 u64 alloc_start;
2701 u64 alloc_end;
2702 u64 alloc_hint = 0;
2703 u64 locked_end;
Qu Wenruo14524a82015-09-08 17:22:44 +08002704 u64 actual_end = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002705 struct extent_map *em;
Miao Xie797f4272012-11-28 10:28:07 +00002706 int blocksize = BTRFS_I(inode)->root->sectorsize;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002707 int ret;
2708
Miao Xie797f4272012-11-28 10:28:07 +00002709 alloc_start = round_down(offset, blocksize);
2710 alloc_end = round_up(offset + len, blocksize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08002711 cur_offset = alloc_start;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002712
Josef Bacik2aaa6652012-08-29 14:27:18 -04002713 /* Make sure we aren't being give some crap mode */
2714 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002715 return -EOPNOTSUPP;
2716
Josef Bacik2aaa6652012-08-29 14:27:18 -04002717 if (mode & FALLOC_FL_PUNCH_HOLE)
2718 return btrfs_punch_hole(inode, offset, len);
2719
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002720 /*
Qu Wenruo14524a82015-09-08 17:22:44 +08002721 * Only trigger disk allocation, don't trigger qgroup reserve
2722 *
2723 * For qgroup space, it will be checked later.
Chris Masond98456f2012-01-31 20:27:41 -05002724 */
Qu Wenruo14524a82015-09-08 17:22:44 +08002725 ret = btrfs_alloc_data_chunk_ondemand(inode, alloc_end - alloc_start);
2726 if (ret < 0)
Chris Masond98456f2012-01-31 20:27:41 -05002727 return ret;
2728
Al Viro59551022016-01-22 15:40:57 -05002729 inode_lock(inode);
Davide Italiano2a162ce2015-04-06 22:09:15 -07002730
2731 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
2732 ret = inode_newsize_ok(inode, offset + len);
2733 if (ret)
2734 goto out;
2735 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002736
Qu Wenruo14524a82015-09-08 17:22:44 +08002737 /*
2738 * TODO: Move these two operations after we have checked
2739 * accurate reserved space, or fallocate can still fail but
2740 * with page truncated or size expanded.
2741 *
2742 * But that's a minor problem and won't do much harm BTW.
2743 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002744 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05002745 ret = btrfs_cont_expand(inode, i_size_read(inode),
2746 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002747 if (ret)
2748 goto out;
Qu Wenruo0f6925f2015-10-14 15:26:13 +08002749 } else if (offset + len > inode->i_size) {
Josef Bacika71754f2013-06-17 17:14:39 -04002750 /*
2751 * If we are fallocating from the end of the file onward we
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302752 * need to zero out the end of the block if i_size lands in the
2753 * middle of a block.
Josef Bacika71754f2013-06-17 17:14:39 -04002754 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05302755 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04002756 if (ret)
2757 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002758 }
2759
Josef Bacika71754f2013-06-17 17:14:39 -04002760 /*
2761 * wait for ordered IO before we have any locks. We'll loop again
2762 * below with the locks held.
2763 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04002764 ret = btrfs_wait_ordered_range(inode, alloc_start,
2765 alloc_end - alloc_start);
2766 if (ret)
2767 goto out;
Josef Bacika71754f2013-06-17 17:14:39 -04002768
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002769 locked_end = alloc_end - 1;
2770 while (1) {
2771 struct btrfs_ordered_extent *ordered;
2772
2773 /* the extent lock is ordered inside the running
2774 * transaction
2775 */
2776 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
David Sterbaff13db42015-12-03 14:30:40 +01002777 locked_end, &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002778 ordered = btrfs_lookup_first_ordered_extent(inode,
2779 alloc_end - 1);
2780 if (ordered &&
2781 ordered->file_offset + ordered->len > alloc_start &&
2782 ordered->file_offset < alloc_end) {
2783 btrfs_put_ordered_extent(ordered);
2784 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
2785 alloc_start, locked_end,
David Sterba32fc9322016-02-11 14:25:38 +01002786 &cached_state, GFP_KERNEL);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002787 /*
2788 * we can't wait on the range with the transaction
2789 * running or with the extent lock held
2790 */
Josef Bacik0ef8b722013-10-25 16:13:35 -04002791 ret = btrfs_wait_ordered_range(inode, alloc_start,
2792 alloc_end - alloc_start);
2793 if (ret)
2794 goto out;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002795 } else {
2796 if (ordered)
2797 btrfs_put_ordered_extent(ordered);
2798 break;
2799 }
2800 }
2801
Qu Wenruo14524a82015-09-08 17:22:44 +08002802 /* First, check if we exceed the qgroup limit */
2803 INIT_LIST_HEAD(&reserve_list);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002804 while (1) {
2805 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2806 alloc_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002807 if (IS_ERR_OR_NULL(em)) {
2808 if (!em)
2809 ret = -ENOMEM;
2810 else
2811 ret = PTR_ERR(em);
2812 break;
2813 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002814 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04002815 actual_end = min_t(u64, extent_map_end(em), offset + len);
Miao Xie797f4272012-11-28 10:28:07 +00002816 last_byte = ALIGN(last_byte, blocksize);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002817 if (em->block_start == EXTENT_MAP_HOLE ||
2818 (cur_offset >= inode->i_size &&
2819 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Qu Wenruo14524a82015-09-08 17:22:44 +08002820 ret = add_falloc_range(&reserve_list, cur_offset,
2821 last_byte - cur_offset);
2822 if (ret < 0) {
2823 free_extent_map(em);
2824 break;
Filipe Manana3d850dd2015-03-12 23:23:13 +00002825 }
Qu Wenruo14524a82015-09-08 17:22:44 +08002826 ret = btrfs_qgroup_reserve_data(inode, cur_offset,
2827 last_byte - cur_offset);
2828 if (ret < 0)
2829 break;
Wang Xiaoguang18513092016-07-25 15:51:40 +08002830 } else {
2831 /*
2832 * Do not need to reserve unwritten extent for this
2833 * range, free reserved data space first, otherwise
2834 * it'll result in false ENOSPC error.
2835 */
2836 btrfs_free_reserved_data_space(inode, cur_offset,
2837 last_byte - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002838 }
2839 free_extent_map(em);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002840 cur_offset = last_byte;
Qu Wenruo14524a82015-09-08 17:22:44 +08002841 if (cur_offset >= alloc_end)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002842 break;
Qu Wenruo14524a82015-09-08 17:22:44 +08002843 }
2844
2845 /*
2846 * If ret is still 0, means we're OK to fallocate.
2847 * Or just cleanup the list and exit.
2848 */
2849 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
2850 if (!ret)
2851 ret = btrfs_prealloc_file_range(inode, mode,
2852 range->start,
2853 range->len, 1 << inode->i_blkbits,
2854 offset + len, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08002855 else
2856 btrfs_free_reserved_data_space(inode, range->start,
2857 range->len);
Qu Wenruo14524a82015-09-08 17:22:44 +08002858 list_del(&range->list);
2859 kfree(range);
2860 }
2861 if (ret < 0)
2862 goto out_unlock;
2863
2864 if (actual_end > inode->i_size &&
2865 !(mode & FALLOC_FL_KEEP_SIZE)) {
2866 struct btrfs_trans_handle *trans;
2867 struct btrfs_root *root = BTRFS_I(inode)->root;
2868
2869 /*
2870 * We didn't need to allocate any more space, but we
2871 * still extended the size of the file so we need to
2872 * update i_size and the inode item.
2873 */
2874 trans = btrfs_start_transaction(root, 1);
2875 if (IS_ERR(trans)) {
2876 ret = PTR_ERR(trans);
2877 } else {
Deepa Dinamanic2050a42016-09-14 07:48:06 -07002878 inode->i_ctime = current_time(inode);
Qu Wenruo14524a82015-09-08 17:22:44 +08002879 i_size_write(inode, actual_end);
2880 btrfs_ordered_update_i_size(inode, actual_end, NULL);
2881 ret = btrfs_update_inode(trans, root, inode);
2882 if (ret)
2883 btrfs_end_transaction(trans, root);
2884 else
2885 ret = btrfs_end_transaction(trans, root);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002886 }
2887 }
Qu Wenruo14524a82015-09-08 17:22:44 +08002888out_unlock:
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002889 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
David Sterba32fc9322016-02-11 14:25:38 +01002890 &cached_state, GFP_KERNEL);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002891out:
Al Viro59551022016-01-22 15:40:57 -05002892 inode_unlock(inode);
Chris Masond98456f2012-01-31 20:27:41 -05002893 /* Let go of our reservation. */
Wang Xiaoguang18513092016-07-25 15:51:40 +08002894 if (ret != 0)
2895 btrfs_free_reserved_data_space(inode, alloc_start,
2896 alloc_end - cur_offset);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002897 return ret;
2898}
2899
Andrew Morton965c8e52012-12-17 15:59:39 -08002900static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04002901{
2902 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik7f4ca372013-10-18 11:44:46 -04002903 struct extent_map *em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04002904 struct extent_state *cached_state = NULL;
Liu Bo4d1a40c2014-09-16 17:49:30 +08002905 u64 lockstart;
2906 u64 lockend;
2907 u64 start;
2908 u64 len;
Josef Bacikb2675152011-07-18 13:21:36 -04002909 int ret = 0;
2910
Josef Bacikb2675152011-07-18 13:21:36 -04002911 if (inode->i_size == 0)
2912 return -ENXIO;
2913
Liu Bo4d1a40c2014-09-16 17:49:30 +08002914 /*
2915 * *offset can be negative, in this case we start finding DATA/HOLE from
2916 * the very start of the file.
2917 */
2918 start = max_t(loff_t, 0, *offset);
2919
2920 lockstart = round_down(start, root->sectorsize);
2921 lockend = round_up(i_size_read(inode), root->sectorsize);
2922 if (lockend <= lockstart)
2923 lockend = lockstart + root->sectorsize;
2924 lockend--;
2925 len = lockend - lockstart + 1;
2926
David Sterbaff13db42015-12-03 14:30:40 +01002927 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002928 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04002929
Josef Bacik7f4ca372013-10-18 11:44:46 -04002930 while (start < inode->i_size) {
Josef Bacikb2675152011-07-18 13:21:36 -04002931 em = btrfs_get_extent_fiemap(inode, NULL, 0, start, len, 0);
2932 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08002933 ret = PTR_ERR(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04002934 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04002935 break;
2936 }
2937
Josef Bacik7f4ca372013-10-18 11:44:46 -04002938 if (whence == SEEK_HOLE &&
2939 (em->block_start == EXTENT_MAP_HOLE ||
2940 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
2941 break;
2942 else if (whence == SEEK_DATA &&
2943 (em->block_start != EXTENT_MAP_HOLE &&
2944 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
2945 break;
Josef Bacikb2675152011-07-18 13:21:36 -04002946
2947 start = em->start + em->len;
Josef Bacikb2675152011-07-18 13:21:36 -04002948 free_extent_map(em);
Josef Bacik7f4ca372013-10-18 11:44:46 -04002949 em = NULL;
Josef Bacikb2675152011-07-18 13:21:36 -04002950 cond_resched();
2951 }
Josef Bacik7f4ca372013-10-18 11:44:46 -04002952 free_extent_map(em);
2953 if (!ret) {
2954 if (whence == SEEK_DATA && start >= inode->i_size)
2955 ret = -ENXIO;
2956 else
2957 *offset = min_t(loff_t, start, inode->i_size);
2958 }
Josef Bacikb2675152011-07-18 13:21:36 -04002959 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2960 &cached_state, GFP_NOFS);
2961 return ret;
2962}
2963
Andrew Morton965c8e52012-12-17 15:59:39 -08002964static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
Josef Bacikb2675152011-07-18 13:21:36 -04002965{
2966 struct inode *inode = file->f_mapping->host;
2967 int ret;
2968
Al Viro59551022016-01-22 15:40:57 -05002969 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08002970 switch (whence) {
Josef Bacikb2675152011-07-18 13:21:36 -04002971 case SEEK_END:
2972 case SEEK_CUR:
Andrew Morton965c8e52012-12-17 15:59:39 -08002973 offset = generic_file_llseek(file, offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04002974 goto out;
2975 case SEEK_DATA:
2976 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04002977 if (offset >= i_size_read(inode)) {
Al Viro59551022016-01-22 15:40:57 -05002978 inode_unlock(inode);
Jeff Liu48802c82011-09-18 10:34:02 -04002979 return -ENXIO;
2980 }
2981
Andrew Morton965c8e52012-12-17 15:59:39 -08002982 ret = find_desired_extent(inode, &offset, whence);
Josef Bacikb2675152011-07-18 13:21:36 -04002983 if (ret) {
Al Viro59551022016-01-22 15:40:57 -05002984 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04002985 return ret;
2986 }
2987 }
2988
Jie Liu46a1c2c2013-06-25 12:02:13 +08002989 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Josef Bacikb2675152011-07-18 13:21:36 -04002990out:
Al Viro59551022016-01-22 15:40:57 -05002991 inode_unlock(inode);
Josef Bacikb2675152011-07-18 13:21:36 -04002992 return offset;
2993}
2994
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002995const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04002996 .llseek = btrfs_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -04002997 .read_iter = generic_file_read_iter,
Chris Masone9906a92007-12-14 12:56:58 -05002998 .splice_read = generic_file_splice_read,
Al Virob30ac0f2014-04-03 14:29:04 -04002999 .write_iter = btrfs_file_write_iter,
Chris Mason9ebefb182007-06-15 13:50:00 -04003000 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04003001 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04003002 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003003 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003004 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003005 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003006#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +00003007 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003008#endif
Zach Brown3db11b22015-11-10 16:53:32 -05003009 .copy_file_range = btrfs_copy_file_range,
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003010 .clone_file_range = btrfs_clone_file_range,
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003011 .dedupe_file_range = btrfs_dedupe_file_range,
Chris Mason39279cc2007-06-12 06:35:45 -04003012};
Miao Xie9247f312012-11-26 09:24:43 +00003013
3014void btrfs_auto_defrag_exit(void)
3015{
Kinglong Mee5598e902016-01-29 21:36:35 +08003016 kmem_cache_destroy(btrfs_inode_defrag_cachep);
Miao Xie9247f312012-11-26 09:24:43 +00003017}
3018
3019int btrfs_auto_defrag_init(void)
3020{
3021 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3022 sizeof(struct inode_defrag), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03003023 SLAB_MEM_SPREAD,
Miao Xie9247f312012-11-26 09:24:43 +00003024 NULL);
3025 if (!btrfs_inode_defrag_cachep)
3026 return -ENOMEM;
3027
3028 return 0;
3029}
Filipe Manana728404d2014-10-10 09:43:11 +01003030
3031int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3032{
3033 int ret;
3034
3035 /*
3036 * So with compression we will find and lock a dirty page and clear the
3037 * first one as dirty, setup an async extent, and immediately return
3038 * with the entire range locked but with nobody actually marked with
3039 * writeback. So we can't just filemap_write_and_wait_range() and
3040 * expect it to work since it will just kick off a thread to do the
3041 * actual work. So we need to call filemap_fdatawrite_range _again_
3042 * since it will wait on the page lock, which won't be unlocked until
3043 * after the pages have been marked as writeback and so we're good to go
3044 * from there. We have to do this otherwise we'll miss the ordered
3045 * extents and that results in badness. Please Josef, do not think you
3046 * know better and pull this out at some point in the future, it is
3047 * right and you are wrong.
3048 */
3049 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3050 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3051 &BTRFS_I(inode)->runtime_flags))
3052 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3053
3054 return ret;
3055}