Merge remote-tracking branch 'asoc/topic/mxs' into asoc-next
[deliverable/linux.git] / fs / btrfs / file.c
CommitLineData
6cbd5570
CM
1/*
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
39279cc3
CM
19#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>
39279cc3
CM
25#include <linux/backing-dev.h>
26#include <linux/mpage.h>
a27bb332 27#include <linux/aio.h>
2fe17c10 28#include <linux/falloc.h>
39279cc3
CM
29#include <linux/swap.h>
30#include <linux/writeback.h>
31#include <linux/statfs.h>
32#include <linux/compat.h>
5a0e3ad6 33#include <linux/slab.h>
55e301fd 34#include <linux/btrfs.h>
39279cc3
CM
35#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
39279cc3 39#include "print-tree.h"
e02119d5
CM
40#include "tree-log.h"
41#include "locking.h"
12fa8ec6 42#include "compat.h"
2aaa6655 43#include "volumes.h"
39279cc3 44
9247f317 45static struct kmem_cache *btrfs_inode_defrag_cachep;
4cb5300b
CM
46/*
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
762f2263
MX
71static 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
4cb5300b
CM
86/* 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 */
8ddc4734 95static int __btrfs_add_inode_defrag(struct inode *inode,
4cb5300b
CM
96 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;
762f2263 102 int ret;
4cb5300b
CM
103
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
762f2263
MX
109 ret = __compare_inode_defrag(defrag, entry);
110 if (ret < 0)
4cb5300b 111 p = &parent->rb_left;
762f2263 112 else if (ret > 0)
4cb5300b
CM
113 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;
8ddc4734 123 return -EEXIST;
4cb5300b
CM
124 }
125 }
72ac3c0d 126 set_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
4cb5300b
CM
127 rb_link_node(&defrag->rb_node, parent, p);
128 rb_insert_color(&defrag->rb_node, &root->fs_info->defrag_inodes);
8ddc4734
MX
129 return 0;
130}
4cb5300b 131
8ddc4734
MX
132static inline int __need_auto_defrag(struct btrfs_root *root)
133{
134 if (!btrfs_test_opt(root, AUTO_DEFRAG))
135 return 0;
136
137 if (btrfs_fs_closing(root->fs_info))
138 return 0;
4cb5300b 139
8ddc4734 140 return 1;
4cb5300b
CM
141}
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;
4cb5300b 152 u64 transid;
8ddc4734 153 int ret;
4cb5300b 154
8ddc4734 155 if (!__need_auto_defrag(root))
4cb5300b
CM
156 return 0;
157
72ac3c0d 158 if (test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
4cb5300b
CM
159 return 0;
160
161 if (trans)
162 transid = trans->transid;
163 else
164 transid = BTRFS_I(inode)->root->last_trans;
165
9247f317 166 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
4cb5300b
CM
167 if (!defrag)
168 return -ENOMEM;
169
a4689d2b 170 defrag->ino = btrfs_ino(inode);
4cb5300b
CM
171 defrag->transid = transid;
172 defrag->root = root->root_key.objectid;
173
174 spin_lock(&root->fs_info->defrag_inodes_lock);
8ddc4734
MX
175 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 {
9247f317 185 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
8ddc4734 186 }
4cb5300b 187 spin_unlock(&root->fs_info->defrag_inodes_lock);
a0f98dde 188 return 0;
4cb5300b
CM
189}
190
191/*
8ddc4734
MX
192 * 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.
4cb5300b 195 */
48a3b636
ES
196static void btrfs_requeue_inode_defrag(struct inode *inode,
197 struct inode_defrag *defrag)
8ddc4734
MX
198{
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
4cb5300b 219/*
26176e7c
MX
220 * pick the defragable inode that we want, if it doesn't exist, we will get
221 * the next one.
4cb5300b 222 */
26176e7c
MX
223static struct inode_defrag *
224btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
4cb5300b
CM
225{
226 struct inode_defrag *entry = NULL;
762f2263 227 struct inode_defrag tmp;
4cb5300b
CM
228 struct rb_node *p;
229 struct rb_node *parent = NULL;
762f2263
MX
230 int ret;
231
232 tmp.ino = ino;
233 tmp.root = root;
4cb5300b 234
26176e7c
MX
235 spin_lock(&fs_info->defrag_inodes_lock);
236 p = fs_info->defrag_inodes.rb_node;
4cb5300b
CM
237 while (p) {
238 parent = p;
239 entry = rb_entry(parent, struct inode_defrag, rb_node);
240
762f2263
MX
241 ret = __compare_inode_defrag(&tmp, entry);
242 if (ret < 0)
4cb5300b 243 p = parent->rb_left;
762f2263 244 else if (ret > 0)
4cb5300b
CM
245 p = parent->rb_right;
246 else
26176e7c 247 goto out;
4cb5300b
CM
248 }
249
26176e7c
MX
250 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
251 parent = rb_next(parent);
252 if (parent)
4cb5300b 253 entry = rb_entry(parent, struct inode_defrag, rb_node);
26176e7c
MX
254 else
255 entry = NULL;
4cb5300b 256 }
26176e7c
MX
257out:
258 if (entry)
259 rb_erase(parent, &fs_info->defrag_inodes);
260 spin_unlock(&fs_info->defrag_inodes_lock);
261 return entry;
4cb5300b
CM
262}
263
26176e7c 264void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
4cb5300b
CM
265{
266 struct inode_defrag *defrag;
26176e7c
MX
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
276 if (need_resched()) {
277 spin_unlock(&fs_info->defrag_inodes_lock);
278 cond_resched();
279 spin_lock(&fs_info->defrag_inodes_lock);
280 }
281
282 node = rb_first(&fs_info->defrag_inodes);
283 }
284 spin_unlock(&fs_info->defrag_inodes_lock);
285}
286
287#define BTRFS_DEFRAG_BATCH 1024
288
289static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
290 struct inode_defrag *defrag)
291{
4cb5300b
CM
292 struct btrfs_root *inode_root;
293 struct inode *inode;
4cb5300b
CM
294 struct btrfs_key key;
295 struct btrfs_ioctl_defrag_range_args range;
4cb5300b 296 int num_defrag;
6f1c3605
LB
297 int index;
298 int ret;
4cb5300b 299
26176e7c
MX
300 /* get the inode */
301 key.objectid = defrag->root;
302 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
303 key.offset = (u64)-1;
6f1c3605
LB
304
305 index = srcu_read_lock(&fs_info->subvol_srcu);
306
26176e7c
MX
307 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
308 if (IS_ERR(inode_root)) {
6f1c3605
LB
309 ret = PTR_ERR(inode_root);
310 goto cleanup;
311 }
26176e7c
MX
312
313 key.objectid = defrag->ino;
314 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
315 key.offset = 0;
316 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
317 if (IS_ERR(inode)) {
6f1c3605
LB
318 ret = PTR_ERR(inode);
319 goto cleanup;
26176e7c 320 }
6f1c3605 321 srcu_read_unlock(&fs_info->subvol_srcu, index);
26176e7c
MX
322
323 /* do a chunk of defrag */
324 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
4cb5300b
CM
325 memset(&range, 0, sizeof(range));
326 range.len = (u64)-1;
26176e7c 327 range.start = defrag->last_offset;
b66f00da
MX
328
329 sb_start_write(fs_info->sb);
26176e7c
MX
330 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
331 BTRFS_DEFRAG_BATCH);
b66f00da 332 sb_end_write(fs_info->sb);
26176e7c
MX
333 /*
334 * if we filled the whole defrag batch, there
335 * must be more work to do. Queue this defrag
336 * again
337 */
338 if (num_defrag == BTRFS_DEFRAG_BATCH) {
339 defrag->last_offset = range.start;
340 btrfs_requeue_inode_defrag(inode, defrag);
341 } else if (defrag->last_offset && !defrag->cycled) {
342 /*
343 * we didn't fill our defrag batch, but
344 * we didn't start at zero. Make sure we loop
345 * around to the start of the file.
346 */
347 defrag->last_offset = 0;
348 defrag->cycled = 1;
349 btrfs_requeue_inode_defrag(inode, defrag);
350 } else {
351 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
352 }
353
354 iput(inode);
355 return 0;
6f1c3605
LB
356cleanup:
357 srcu_read_unlock(&fs_info->subvol_srcu, index);
358 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
359 return ret;
26176e7c
MX
360}
361
362/*
363 * run through the list of inodes in the FS that need
364 * defragging
365 */
366int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
367{
368 struct inode_defrag *defrag;
369 u64 first_ino = 0;
370 u64 root_objectid = 0;
4cb5300b
CM
371
372 atomic_inc(&fs_info->defrag_running);
4cb5300b 373 while(1) {
dc81cdc5
MX
374 /* Pause the auto defragger. */
375 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
376 &fs_info->fs_state))
377 break;
378
26176e7c
MX
379 if (!__need_auto_defrag(fs_info->tree_root))
380 break;
4cb5300b
CM
381
382 /* find an inode to defrag */
26176e7c
MX
383 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
384 first_ino);
4cb5300b 385 if (!defrag) {
26176e7c 386 if (root_objectid || first_ino) {
762f2263 387 root_objectid = 0;
4cb5300b
CM
388 first_ino = 0;
389 continue;
390 } else {
391 break;
392 }
393 }
394
4cb5300b 395 first_ino = defrag->ino + 1;
762f2263 396 root_objectid = defrag->root;
4cb5300b 397
26176e7c 398 __btrfs_run_defrag_inode(fs_info, defrag);
4cb5300b 399 }
4cb5300b
CM
400 atomic_dec(&fs_info->defrag_running);
401
402 /*
403 * during unmount, we use the transaction_wait queue to
404 * wait for the defragger to stop
405 */
406 wake_up(&fs_info->transaction_wait);
407 return 0;
408}
39279cc3 409
d352ac68
CM
410/* simple helper to fault in pages and copy. This should go away
411 * and be replaced with calls into generic code.
412 */
d397712b 413static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
d0215f3e 414 size_t write_bytes,
a1b32a59 415 struct page **prepared_pages,
11c65dcc 416 struct iov_iter *i)
39279cc3 417{
914ee295 418 size_t copied = 0;
d0215f3e 419 size_t total_copied = 0;
11c65dcc 420 int pg = 0;
39279cc3
CM
421 int offset = pos & (PAGE_CACHE_SIZE - 1);
422
11c65dcc 423 while (write_bytes > 0) {
39279cc3
CM
424 size_t count = min_t(size_t,
425 PAGE_CACHE_SIZE - offset, write_bytes);
11c65dcc 426 struct page *page = prepared_pages[pg];
914ee295
XZ
427 /*
428 * Copy data from userspace to the current page
429 *
430 * Disable pagefault to avoid recursive lock since
431 * the pages are already locked
432 */
433 pagefault_disable();
434 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
435 pagefault_enable();
11c65dcc 436
39279cc3
CM
437 /* Flush processor's dcache for this page */
438 flush_dcache_page(page);
31339acd
CM
439
440 /*
441 * if we get a partial write, we can end up with
442 * partially up to date pages. These add
443 * a lot of complexity, so make sure they don't
444 * happen by forcing this copy to be retried.
445 *
446 * The rest of the btrfs_file_write code will fall
447 * back to page at a time copies after we return 0.
448 */
449 if (!PageUptodate(page) && copied < count)
450 copied = 0;
451
11c65dcc
JB
452 iov_iter_advance(i, copied);
453 write_bytes -= copied;
914ee295 454 total_copied += copied;
39279cc3 455
914ee295 456 /* Return to btrfs_file_aio_write to fault page */
9f570b8d 457 if (unlikely(copied == 0))
914ee295 458 break;
11c65dcc
JB
459
460 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
461 offset += copied;
462 } else {
463 pg++;
464 offset = 0;
465 }
39279cc3 466 }
914ee295 467 return total_copied;
39279cc3
CM
468}
469
d352ac68
CM
470/*
471 * unlocks pages after btrfs_file_write is done with them
472 */
48a3b636 473static void btrfs_drop_pages(struct page **pages, size_t num_pages)
39279cc3
CM
474{
475 size_t i;
476 for (i = 0; i < num_pages; i++) {
d352ac68
CM
477 /* page checked is some magic around finding pages that
478 * have been modified without going through btrfs_set_page_dirty
479 * clear it here
480 */
4a096752 481 ClearPageChecked(pages[i]);
39279cc3
CM
482 unlock_page(pages[i]);
483 mark_page_accessed(pages[i]);
484 page_cache_release(pages[i]);
485 }
486}
487
d352ac68
CM
488/*
489 * after copy_from_user, pages need to be dirtied and we need to make
490 * sure holes are created between the current EOF and the start of
491 * any next extents (if required).
492 *
493 * this also makes the decision about creating an inline extent vs
494 * doing real data extents, marking pages dirty and delalloc as required.
495 */
be1a12a0 496int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
48a3b636
ES
497 struct page **pages, size_t num_pages,
498 loff_t pos, size_t write_bytes,
499 struct extent_state **cached)
39279cc3 500{
39279cc3 501 int err = 0;
a52d9a80 502 int i;
db94535d 503 u64 num_bytes;
a52d9a80
CM
504 u64 start_pos;
505 u64 end_of_last_block;
506 u64 end_pos = pos + write_bytes;
507 loff_t isize = i_size_read(inode);
39279cc3 508
5f39d397 509 start_pos = pos & ~((u64)root->sectorsize - 1);
fda2832f 510 num_bytes = ALIGN(write_bytes + pos - start_pos, root->sectorsize);
39279cc3 511
db94535d 512 end_of_last_block = start_pos + num_bytes - 1;
2ac55d41 513 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
be1a12a0 514 cached);
d0215f3e
JB
515 if (err)
516 return err;
9ed74f2d 517
c8b97818
CM
518 for (i = 0; i < num_pages; i++) {
519 struct page *p = pages[i];
520 SetPageUptodate(p);
521 ClearPageChecked(p);
522 set_page_dirty(p);
a52d9a80 523 }
9f570b8d
JB
524
525 /*
526 * we've only changed i_size in ram, and we haven't updated
527 * the disk i_size. There is no need to log the inode
528 * at this time.
529 */
530 if (end_pos > isize)
a52d9a80 531 i_size_write(inode, end_pos);
a22285a6 532 return 0;
39279cc3
CM
533}
534
d352ac68
CM
535/*
536 * this drops all the extents in the cache that intersect the range
537 * [start, end]. Existing extents are split as required.
538 */
7014cdb4
JB
539void btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
540 int skip_pinned)
a52d9a80
CM
541{
542 struct extent_map *em;
3b951516
CM
543 struct extent_map *split = NULL;
544 struct extent_map *split2 = NULL;
a52d9a80 545 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
39b5637f 546 u64 len = end - start + 1;
5dc562c5 547 u64 gen;
3b951516
CM
548 int ret;
549 int testend = 1;
5b21f2ed 550 unsigned long flags;
c8b97818 551 int compressed = 0;
09a2a8f9 552 bool modified;
a52d9a80 553
e6dcd2dc 554 WARN_ON(end < start);
3b951516 555 if (end == (u64)-1) {
39b5637f 556 len = (u64)-1;
3b951516
CM
557 testend = 0;
558 }
d397712b 559 while (1) {
7014cdb4
JB
560 int no_splits = 0;
561
09a2a8f9 562 modified = false;
3b951516 563 if (!split)
172ddd60 564 split = alloc_extent_map();
3b951516 565 if (!split2)
172ddd60 566 split2 = alloc_extent_map();
7014cdb4
JB
567 if (!split || !split2)
568 no_splits = 1;
3b951516 569
890871be 570 write_lock(&em_tree->lock);
39b5637f 571 em = lookup_extent_mapping(em_tree, start, len);
d1310b2e 572 if (!em) {
890871be 573 write_unlock(&em_tree->lock);
a52d9a80 574 break;
d1310b2e 575 }
5b21f2ed 576 flags = em->flags;
5dc562c5 577 gen = em->generation;
5b21f2ed 578 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
55ef6899 579 if (testend && em->start + em->len >= start + len) {
5b21f2ed 580 free_extent_map(em);
a1ed835e 581 write_unlock(&em_tree->lock);
5b21f2ed
ZY
582 break;
583 }
55ef6899
YZ
584 start = em->start + em->len;
585 if (testend)
5b21f2ed 586 len = start + len - (em->start + em->len);
5b21f2ed 587 free_extent_map(em);
a1ed835e 588 write_unlock(&em_tree->lock);
5b21f2ed
ZY
589 continue;
590 }
c8b97818 591 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3ce7e67a 592 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
3b277594 593 clear_bit(EXTENT_FLAG_LOGGING, &flags);
09a2a8f9 594 modified = !list_empty(&em->list);
a52d9a80 595 remove_extent_mapping(em_tree, em);
7014cdb4
JB
596 if (no_splits)
597 goto next;
3b951516 598
ee20a983 599 if (em->start < start) {
3b951516
CM
600 split->start = em->start;
601 split->len = start - em->start;
ee20a983
JB
602
603 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
604 split->orig_start = em->orig_start;
605 split->block_start = em->block_start;
606
607 if (compressed)
608 split->block_len = em->block_len;
609 else
610 split->block_len = split->len;
611 split->orig_block_len = max(split->block_len,
612 em->orig_block_len);
613 split->ram_bytes = em->ram_bytes;
614 } else {
615 split->orig_start = split->start;
616 split->block_len = 0;
617 split->block_start = em->block_start;
618 split->orig_block_len = 0;
619 split->ram_bytes = split->len;
620 }
621
5dc562c5 622 split->generation = gen;
3b951516 623 split->bdev = em->bdev;
5b21f2ed 624 split->flags = flags;
261507a0 625 split->compress_type = em->compress_type;
09a2a8f9 626 ret = add_extent_mapping(em_tree, split, modified);
79787eaa 627 BUG_ON(ret); /* Logic error */
3b951516
CM
628 free_extent_map(split);
629 split = split2;
630 split2 = NULL;
631 }
ee20a983 632 if (testend && em->start + em->len > start + len) {
3b951516
CM
633 u64 diff = start + len - em->start;
634
635 split->start = start + len;
636 split->len = em->start + em->len - (start + len);
637 split->bdev = em->bdev;
5b21f2ed 638 split->flags = flags;
261507a0 639 split->compress_type = em->compress_type;
5dc562c5 640 split->generation = gen;
ee20a983
JB
641
642 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
643 split->orig_block_len = max(em->block_len,
b4939680 644 em->orig_block_len);
3b951516 645
ee20a983
JB
646 split->ram_bytes = em->ram_bytes;
647 if (compressed) {
648 split->block_len = em->block_len;
649 split->block_start = em->block_start;
650 split->orig_start = em->orig_start;
651 } else {
652 split->block_len = split->len;
653 split->block_start = em->block_start
654 + diff;
655 split->orig_start = em->orig_start;
656 }
c8b97818 657 } else {
ee20a983
JB
658 split->ram_bytes = split->len;
659 split->orig_start = split->start;
660 split->block_len = 0;
661 split->block_start = em->block_start;
662 split->orig_block_len = 0;
c8b97818 663 }
3b951516 664
09a2a8f9 665 ret = add_extent_mapping(em_tree, split, modified);
79787eaa 666 BUG_ON(ret); /* Logic error */
3b951516
CM
667 free_extent_map(split);
668 split = NULL;
669 }
7014cdb4 670next:
890871be 671 write_unlock(&em_tree->lock);
d1310b2e 672
a52d9a80
CM
673 /* once for us */
674 free_extent_map(em);
675 /* once for the tree*/
676 free_extent_map(em);
677 }
3b951516
CM
678 if (split)
679 free_extent_map(split);
680 if (split2)
681 free_extent_map(split2);
a52d9a80
CM
682}
683
39279cc3
CM
684/*
685 * this is very complex, but the basic idea is to drop all extents
686 * in the range start - end. hint_block is filled in with a block number
687 * that would be a good hint to the block allocator for this file.
688 *
689 * If an extent intersects the range but is not entirely inside the range
690 * it is either truncated or split. Anything entirely inside the range
691 * is deleted from the tree.
692 */
5dc562c5
JB
693int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
694 struct btrfs_root *root, struct inode *inode,
695 struct btrfs_path *path, u64 start, u64 end,
2aaa6655 696 u64 *drop_end, int drop_cache)
39279cc3 697{
5f39d397 698 struct extent_buffer *leaf;
920bbbfb 699 struct btrfs_file_extent_item *fi;
00f5c795 700 struct btrfs_key key;
920bbbfb 701 struct btrfs_key new_key;
33345d01 702 u64 ino = btrfs_ino(inode);
920bbbfb
YZ
703 u64 search_start = start;
704 u64 disk_bytenr = 0;
705 u64 num_bytes = 0;
706 u64 extent_offset = 0;
707 u64 extent_end = 0;
708 int del_nr = 0;
709 int del_slot = 0;
710 int extent_type;
ccd467d6 711 int recow;
00f5c795 712 int ret;
dc7fdde3 713 int modify_tree = -1;
5dc562c5 714 int update_refs = (root->ref_cows || root == root->fs_info->tree_root);
c3308f84 715 int found = 0;
39279cc3 716
a1ed835e
CM
717 if (drop_cache)
718 btrfs_drop_extent_cache(inode, start, end - 1, 0);
a52d9a80 719
dc7fdde3
CM
720 if (start >= BTRFS_I(inode)->disk_i_size)
721 modify_tree = 0;
722
d397712b 723 while (1) {
ccd467d6 724 recow = 0;
33345d01 725 ret = btrfs_lookup_file_extent(trans, root, path, ino,
dc7fdde3 726 search_start, modify_tree);
39279cc3 727 if (ret < 0)
920bbbfb
YZ
728 break;
729 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
730 leaf = path->nodes[0];
731 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
33345d01 732 if (key.objectid == ino &&
920bbbfb
YZ
733 key.type == BTRFS_EXTENT_DATA_KEY)
734 path->slots[0]--;
39279cc3 735 }
920bbbfb 736 ret = 0;
8c2383c3 737next_slot:
5f39d397 738 leaf = path->nodes[0];
920bbbfb
YZ
739 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
740 BUG_ON(del_nr > 0);
741 ret = btrfs_next_leaf(root, path);
742 if (ret < 0)
743 break;
744 if (ret > 0) {
745 ret = 0;
746 break;
8c2383c3 747 }
920bbbfb
YZ
748 leaf = path->nodes[0];
749 recow = 1;
750 }
751
752 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
33345d01 753 if (key.objectid > ino ||
920bbbfb
YZ
754 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
755 break;
756
757 fi = btrfs_item_ptr(leaf, path->slots[0],
758 struct btrfs_file_extent_item);
759 extent_type = btrfs_file_extent_type(leaf, fi);
760
761 if (extent_type == BTRFS_FILE_EXTENT_REG ||
762 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
763 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
764 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
765 extent_offset = btrfs_file_extent_offset(leaf, fi);
766 extent_end = key.offset +
767 btrfs_file_extent_num_bytes(leaf, fi);
768 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
769 extent_end = key.offset +
770 btrfs_file_extent_inline_len(leaf, fi);
8c2383c3 771 } else {
920bbbfb 772 WARN_ON(1);
8c2383c3 773 extent_end = search_start;
39279cc3
CM
774 }
775
920bbbfb
YZ
776 if (extent_end <= search_start) {
777 path->slots[0]++;
8c2383c3 778 goto next_slot;
39279cc3
CM
779 }
780
c3308f84 781 found = 1;
920bbbfb 782 search_start = max(key.offset, start);
dc7fdde3
CM
783 if (recow || !modify_tree) {
784 modify_tree = -1;
b3b4aa74 785 btrfs_release_path(path);
920bbbfb 786 continue;
39279cc3 787 }
6643558d 788
920bbbfb
YZ
789 /*
790 * | - range to drop - |
791 * | -------- extent -------- |
792 */
793 if (start > key.offset && end < extent_end) {
794 BUG_ON(del_nr > 0);
795 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
796
797 memcpy(&new_key, &key, sizeof(new_key));
798 new_key.offset = start;
799 ret = btrfs_duplicate_item(trans, root, path,
800 &new_key);
801 if (ret == -EAGAIN) {
b3b4aa74 802 btrfs_release_path(path);
920bbbfb 803 continue;
6643558d 804 }
920bbbfb
YZ
805 if (ret < 0)
806 break;
807
808 leaf = path->nodes[0];
809 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
810 struct btrfs_file_extent_item);
811 btrfs_set_file_extent_num_bytes(leaf, fi,
812 start - key.offset);
813
814 fi = btrfs_item_ptr(leaf, path->slots[0],
815 struct btrfs_file_extent_item);
816
817 extent_offset += start - key.offset;
818 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
819 btrfs_set_file_extent_num_bytes(leaf, fi,
820 extent_end - start);
821 btrfs_mark_buffer_dirty(leaf);
822
5dc562c5 823 if (update_refs && disk_bytenr > 0) {
771ed689 824 ret = btrfs_inc_extent_ref(trans, root,
920bbbfb
YZ
825 disk_bytenr, num_bytes, 0,
826 root->root_key.objectid,
827 new_key.objectid,
66d7e7f0 828 start - extent_offset, 0);
79787eaa 829 BUG_ON(ret); /* -ENOMEM */
771ed689 830 }
920bbbfb 831 key.offset = start;
6643558d 832 }
920bbbfb
YZ
833 /*
834 * | ---- range to drop ----- |
835 * | -------- extent -------- |
836 */
837 if (start <= key.offset && end < extent_end) {
838 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
6643558d 839
920bbbfb
YZ
840 memcpy(&new_key, &key, sizeof(new_key));
841 new_key.offset = end;
afe5fea7 842 btrfs_set_item_key_safe(root, path, &new_key);
6643558d 843
920bbbfb
YZ
844 extent_offset += end - key.offset;
845 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
846 btrfs_set_file_extent_num_bytes(leaf, fi,
847 extent_end - end);
848 btrfs_mark_buffer_dirty(leaf);
2671485d 849 if (update_refs && disk_bytenr > 0)
920bbbfb 850 inode_sub_bytes(inode, end - key.offset);
920bbbfb 851 break;
39279cc3 852 }
771ed689 853
920bbbfb
YZ
854 search_start = extent_end;
855 /*
856 * | ---- range to drop ----- |
857 * | -------- extent -------- |
858 */
859 if (start > key.offset && end >= extent_end) {
860 BUG_ON(del_nr > 0);
861 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
8c2383c3 862
920bbbfb
YZ
863 btrfs_set_file_extent_num_bytes(leaf, fi,
864 start - key.offset);
865 btrfs_mark_buffer_dirty(leaf);
2671485d 866 if (update_refs && disk_bytenr > 0)
920bbbfb 867 inode_sub_bytes(inode, extent_end - start);
920bbbfb
YZ
868 if (end == extent_end)
869 break;
c8b97818 870
920bbbfb
YZ
871 path->slots[0]++;
872 goto next_slot;
31840ae1
ZY
873 }
874
920bbbfb
YZ
875 /*
876 * | ---- range to drop ----- |
877 * | ------ extent ------ |
878 */
879 if (start <= key.offset && end >= extent_end) {
880 if (del_nr == 0) {
881 del_slot = path->slots[0];
882 del_nr = 1;
883 } else {
884 BUG_ON(del_slot + del_nr != path->slots[0]);
885 del_nr++;
886 }
31840ae1 887
5dc562c5
JB
888 if (update_refs &&
889 extent_type == BTRFS_FILE_EXTENT_INLINE) {
a76a3cd4 890 inode_sub_bytes(inode,
920bbbfb
YZ
891 extent_end - key.offset);
892 extent_end = ALIGN(extent_end,
893 root->sectorsize);
5dc562c5 894 } else if (update_refs && disk_bytenr > 0) {
31840ae1 895 ret = btrfs_free_extent(trans, root,
920bbbfb
YZ
896 disk_bytenr, num_bytes, 0,
897 root->root_key.objectid,
5d4f98a2 898 key.objectid, key.offset -
66d7e7f0 899 extent_offset, 0);
79787eaa 900 BUG_ON(ret); /* -ENOMEM */
920bbbfb
YZ
901 inode_sub_bytes(inode,
902 extent_end - key.offset);
31840ae1 903 }
31840ae1 904
920bbbfb
YZ
905 if (end == extent_end)
906 break;
907
908 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
909 path->slots[0]++;
910 goto next_slot;
911 }
912
913 ret = btrfs_del_items(trans, root, path, del_slot,
914 del_nr);
79787eaa
JM
915 if (ret) {
916 btrfs_abort_transaction(trans, root, ret);
5dc562c5 917 break;
79787eaa 918 }
920bbbfb
YZ
919
920 del_nr = 0;
921 del_slot = 0;
922
b3b4aa74 923 btrfs_release_path(path);
920bbbfb 924 continue;
39279cc3 925 }
920bbbfb
YZ
926
927 BUG_ON(1);
39279cc3 928 }
920bbbfb 929
79787eaa 930 if (!ret && del_nr > 0) {
920bbbfb 931 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
79787eaa
JM
932 if (ret)
933 btrfs_abort_transaction(trans, root, ret);
6643558d 934 }
920bbbfb 935
2aaa6655 936 if (drop_end)
c3308f84 937 *drop_end = found ? min(end, extent_end) : end;
5dc562c5
JB
938 btrfs_release_path(path);
939 return ret;
940}
941
942int btrfs_drop_extents(struct btrfs_trans_handle *trans,
943 struct btrfs_root *root, struct inode *inode, u64 start,
2671485d 944 u64 end, int drop_cache)
5dc562c5
JB
945{
946 struct btrfs_path *path;
947 int ret;
948
949 path = btrfs_alloc_path();
950 if (!path)
951 return -ENOMEM;
2aaa6655 952 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
2671485d 953 drop_cache);
920bbbfb 954 btrfs_free_path(path);
39279cc3
CM
955 return ret;
956}
957
d899e052 958static int extent_mergeable(struct extent_buffer *leaf, int slot,
6c7d54ac
YZ
959 u64 objectid, u64 bytenr, u64 orig_offset,
960 u64 *start, u64 *end)
d899e052
YZ
961{
962 struct btrfs_file_extent_item *fi;
963 struct btrfs_key key;
964 u64 extent_end;
965
966 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
967 return 0;
968
969 btrfs_item_key_to_cpu(leaf, &key, slot);
970 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
971 return 0;
972
973 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
974 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
975 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
6c7d54ac 976 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
d899e052
YZ
977 btrfs_file_extent_compression(leaf, fi) ||
978 btrfs_file_extent_encryption(leaf, fi) ||
979 btrfs_file_extent_other_encoding(leaf, fi))
980 return 0;
981
982 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
983 if ((*start && *start != key.offset) || (*end && *end != extent_end))
984 return 0;
985
986 *start = key.offset;
987 *end = extent_end;
988 return 1;
989}
990
991/*
992 * Mark extent in the range start - end as written.
993 *
994 * This changes extent type from 'pre-allocated' to 'regular'. If only
995 * part of extent is marked as written, the extent will be split into
996 * two or three.
997 */
998int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
d899e052
YZ
999 struct inode *inode, u64 start, u64 end)
1000{
920bbbfb 1001 struct btrfs_root *root = BTRFS_I(inode)->root;
d899e052
YZ
1002 struct extent_buffer *leaf;
1003 struct btrfs_path *path;
1004 struct btrfs_file_extent_item *fi;
1005 struct btrfs_key key;
920bbbfb 1006 struct btrfs_key new_key;
d899e052
YZ
1007 u64 bytenr;
1008 u64 num_bytes;
1009 u64 extent_end;
5d4f98a2 1010 u64 orig_offset;
d899e052
YZ
1011 u64 other_start;
1012 u64 other_end;
920bbbfb
YZ
1013 u64 split;
1014 int del_nr = 0;
1015 int del_slot = 0;
6c7d54ac 1016 int recow;
d899e052 1017 int ret;
33345d01 1018 u64 ino = btrfs_ino(inode);
d899e052 1019
d899e052 1020 path = btrfs_alloc_path();
d8926bb3
MF
1021 if (!path)
1022 return -ENOMEM;
d899e052 1023again:
6c7d54ac 1024 recow = 0;
920bbbfb 1025 split = start;
33345d01 1026 key.objectid = ino;
d899e052 1027 key.type = BTRFS_EXTENT_DATA_KEY;
920bbbfb 1028 key.offset = split;
d899e052
YZ
1029
1030 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
41415730
JB
1031 if (ret < 0)
1032 goto out;
d899e052
YZ
1033 if (ret > 0 && path->slots[0] > 0)
1034 path->slots[0]--;
1035
1036 leaf = path->nodes[0];
1037 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
33345d01 1038 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
d899e052
YZ
1039 fi = btrfs_item_ptr(leaf, path->slots[0],
1040 struct btrfs_file_extent_item);
920bbbfb
YZ
1041 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
1042 BTRFS_FILE_EXTENT_PREALLOC);
d899e052
YZ
1043 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1044 BUG_ON(key.offset > start || extent_end < end);
1045
1046 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1047 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
5d4f98a2 1048 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
6c7d54ac
YZ
1049 memcpy(&new_key, &key, sizeof(new_key));
1050
1051 if (start == key.offset && end < extent_end) {
1052 other_start = 0;
1053 other_end = start;
1054 if (extent_mergeable(leaf, path->slots[0] - 1,
33345d01 1055 ino, bytenr, orig_offset,
6c7d54ac
YZ
1056 &other_start, &other_end)) {
1057 new_key.offset = end;
afe5fea7 1058 btrfs_set_item_key_safe(root, path, &new_key);
6c7d54ac
YZ
1059 fi = btrfs_item_ptr(leaf, path->slots[0],
1060 struct btrfs_file_extent_item);
224ecce5
JB
1061 btrfs_set_file_extent_generation(leaf, fi,
1062 trans->transid);
6c7d54ac
YZ
1063 btrfs_set_file_extent_num_bytes(leaf, fi,
1064 extent_end - end);
1065 btrfs_set_file_extent_offset(leaf, fi,
1066 end - orig_offset);
1067 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1068 struct btrfs_file_extent_item);
224ecce5
JB
1069 btrfs_set_file_extent_generation(leaf, fi,
1070 trans->transid);
6c7d54ac
YZ
1071 btrfs_set_file_extent_num_bytes(leaf, fi,
1072 end - other_start);
1073 btrfs_mark_buffer_dirty(leaf);
1074 goto out;
1075 }
1076 }
1077
1078 if (start > key.offset && end == extent_end) {
1079 other_start = end;
1080 other_end = 0;
1081 if (extent_mergeable(leaf, path->slots[0] + 1,
33345d01 1082 ino, bytenr, orig_offset,
6c7d54ac
YZ
1083 &other_start, &other_end)) {
1084 fi = btrfs_item_ptr(leaf, path->slots[0],
1085 struct btrfs_file_extent_item);
1086 btrfs_set_file_extent_num_bytes(leaf, fi,
1087 start - key.offset);
224ecce5
JB
1088 btrfs_set_file_extent_generation(leaf, fi,
1089 trans->transid);
6c7d54ac
YZ
1090 path->slots[0]++;
1091 new_key.offset = start;
afe5fea7 1092 btrfs_set_item_key_safe(root, path, &new_key);
6c7d54ac
YZ
1093
1094 fi = btrfs_item_ptr(leaf, path->slots[0],
1095 struct btrfs_file_extent_item);
224ecce5
JB
1096 btrfs_set_file_extent_generation(leaf, fi,
1097 trans->transid);
6c7d54ac
YZ
1098 btrfs_set_file_extent_num_bytes(leaf, fi,
1099 other_end - start);
1100 btrfs_set_file_extent_offset(leaf, fi,
1101 start - orig_offset);
1102 btrfs_mark_buffer_dirty(leaf);
1103 goto out;
1104 }
1105 }
d899e052 1106
920bbbfb
YZ
1107 while (start > key.offset || end < extent_end) {
1108 if (key.offset == start)
1109 split = end;
1110
920bbbfb
YZ
1111 new_key.offset = split;
1112 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1113 if (ret == -EAGAIN) {
b3b4aa74 1114 btrfs_release_path(path);
920bbbfb 1115 goto again;
d899e052 1116 }
79787eaa
JM
1117 if (ret < 0) {
1118 btrfs_abort_transaction(trans, root, ret);
1119 goto out;
1120 }
d899e052 1121
920bbbfb
YZ
1122 leaf = path->nodes[0];
1123 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
d899e052 1124 struct btrfs_file_extent_item);
224ecce5 1125 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
d899e052 1126 btrfs_set_file_extent_num_bytes(leaf, fi,
920bbbfb
YZ
1127 split - key.offset);
1128
1129 fi = btrfs_item_ptr(leaf, path->slots[0],
1130 struct btrfs_file_extent_item);
1131
224ecce5 1132 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
920bbbfb
YZ
1133 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1134 btrfs_set_file_extent_num_bytes(leaf, fi,
1135 extent_end - split);
d899e052
YZ
1136 btrfs_mark_buffer_dirty(leaf);
1137
920bbbfb
YZ
1138 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
1139 root->root_key.objectid,
66d7e7f0 1140 ino, orig_offset, 0);
79787eaa 1141 BUG_ON(ret); /* -ENOMEM */
d899e052 1142
920bbbfb
YZ
1143 if (split == start) {
1144 key.offset = start;
1145 } else {
1146 BUG_ON(start != key.offset);
d899e052 1147 path->slots[0]--;
920bbbfb 1148 extent_end = end;
d899e052 1149 }
6c7d54ac 1150 recow = 1;
d899e052
YZ
1151 }
1152
920bbbfb
YZ
1153 other_start = end;
1154 other_end = 0;
6c7d54ac 1155 if (extent_mergeable(leaf, path->slots[0] + 1,
33345d01 1156 ino, bytenr, orig_offset,
6c7d54ac
YZ
1157 &other_start, &other_end)) {
1158 if (recow) {
b3b4aa74 1159 btrfs_release_path(path);
6c7d54ac
YZ
1160 goto again;
1161 }
920bbbfb
YZ
1162 extent_end = other_end;
1163 del_slot = path->slots[0] + 1;
1164 del_nr++;
1165 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1166 0, root->root_key.objectid,
66d7e7f0 1167 ino, orig_offset, 0);
79787eaa 1168 BUG_ON(ret); /* -ENOMEM */
d899e052 1169 }
920bbbfb
YZ
1170 other_start = 0;
1171 other_end = start;
6c7d54ac 1172 if (extent_mergeable(leaf, path->slots[0] - 1,
33345d01 1173 ino, bytenr, orig_offset,
6c7d54ac
YZ
1174 &other_start, &other_end)) {
1175 if (recow) {
b3b4aa74 1176 btrfs_release_path(path);
6c7d54ac
YZ
1177 goto again;
1178 }
920bbbfb
YZ
1179 key.offset = other_start;
1180 del_slot = path->slots[0];
1181 del_nr++;
1182 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1183 0, root->root_key.objectid,
66d7e7f0 1184 ino, orig_offset, 0);
79787eaa 1185 BUG_ON(ret); /* -ENOMEM */
920bbbfb
YZ
1186 }
1187 if (del_nr == 0) {
3f6fae95
SL
1188 fi = btrfs_item_ptr(leaf, path->slots[0],
1189 struct btrfs_file_extent_item);
920bbbfb
YZ
1190 btrfs_set_file_extent_type(leaf, fi,
1191 BTRFS_FILE_EXTENT_REG);
224ecce5 1192 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
920bbbfb 1193 btrfs_mark_buffer_dirty(leaf);
6c7d54ac 1194 } else {
3f6fae95
SL
1195 fi = btrfs_item_ptr(leaf, del_slot - 1,
1196 struct btrfs_file_extent_item);
6c7d54ac
YZ
1197 btrfs_set_file_extent_type(leaf, fi,
1198 BTRFS_FILE_EXTENT_REG);
224ecce5 1199 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
6c7d54ac
YZ
1200 btrfs_set_file_extent_num_bytes(leaf, fi,
1201 extent_end - key.offset);
1202 btrfs_mark_buffer_dirty(leaf);
920bbbfb 1203
6c7d54ac 1204 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
79787eaa
JM
1205 if (ret < 0) {
1206 btrfs_abort_transaction(trans, root, ret);
1207 goto out;
1208 }
6c7d54ac 1209 }
920bbbfb 1210out:
d899e052
YZ
1211 btrfs_free_path(path);
1212 return 0;
1213}
1214
b1bf862e
CM
1215/*
1216 * on error we return an unlocked page and the error value
1217 * on success we return a locked page and 0
1218 */
b6316429
JB
1219static int prepare_uptodate_page(struct page *page, u64 pos,
1220 bool force_uptodate)
b1bf862e
CM
1221{
1222 int ret = 0;
1223
b6316429
JB
1224 if (((pos & (PAGE_CACHE_SIZE - 1)) || force_uptodate) &&
1225 !PageUptodate(page)) {
b1bf862e
CM
1226 ret = btrfs_readpage(NULL, page);
1227 if (ret)
1228 return ret;
1229 lock_page(page);
1230 if (!PageUptodate(page)) {
1231 unlock_page(page);
1232 return -EIO;
1233 }
1234 }
1235 return 0;
1236}
1237
39279cc3 1238/*
d352ac68
CM
1239 * this gets pages into the page cache and locks them down, it also properly
1240 * waits for data=ordered extents to finish before allowing the pages to be
1241 * modified.
39279cc3 1242 */
d397712b 1243static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
98ed5174
CM
1244 struct page **pages, size_t num_pages,
1245 loff_t pos, unsigned long first_index,
b6316429 1246 size_t write_bytes, bool force_uptodate)
39279cc3 1247{
2ac55d41 1248 struct extent_state *cached_state = NULL;
39279cc3
CM
1249 int i;
1250 unsigned long index = pos >> PAGE_CACHE_SHIFT;
496ad9aa 1251 struct inode *inode = file_inode(file);
3b16a4e3 1252 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
39279cc3 1253 int err = 0;
b1bf862e 1254 int faili = 0;
8c2383c3 1255 u64 start_pos;
e6dcd2dc 1256 u64 last_pos;
8c2383c3 1257
5f39d397 1258 start_pos = pos & ~((u64)root->sectorsize - 1);
e6dcd2dc 1259 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
39279cc3 1260
e6dcd2dc 1261again:
39279cc3 1262 for (i = 0; i < num_pages; i++) {
a94733d0 1263 pages[i] = find_or_create_page(inode->i_mapping, index + i,
e3a41a5b 1264 mask | __GFP_WRITE);
39279cc3 1265 if (!pages[i]) {
b1bf862e
CM
1266 faili = i - 1;
1267 err = -ENOMEM;
1268 goto fail;
1269 }
1270
1271 if (i == 0)
b6316429
JB
1272 err = prepare_uptodate_page(pages[i], pos,
1273 force_uptodate);
b1bf862e
CM
1274 if (i == num_pages - 1)
1275 err = prepare_uptodate_page(pages[i],
b6316429 1276 pos + write_bytes, false);
b1bf862e
CM
1277 if (err) {
1278 page_cache_release(pages[i]);
1279 faili = i - 1;
1280 goto fail;
39279cc3 1281 }
ccd467d6 1282 wait_on_page_writeback(pages[i]);
39279cc3 1283 }
b1bf862e 1284 err = 0;
0762704b 1285 if (start_pos < inode->i_size) {
e6dcd2dc 1286 struct btrfs_ordered_extent *ordered;
2ac55d41 1287 lock_extent_bits(&BTRFS_I(inode)->io_tree,
d0082371 1288 start_pos, last_pos - 1, 0, &cached_state);
d397712b
CM
1289 ordered = btrfs_lookup_first_ordered_extent(inode,
1290 last_pos - 1);
e6dcd2dc
CM
1291 if (ordered &&
1292 ordered->file_offset + ordered->len > start_pos &&
1293 ordered->file_offset < last_pos) {
1294 btrfs_put_ordered_extent(ordered);
2ac55d41
JB
1295 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1296 start_pos, last_pos - 1,
1297 &cached_state, GFP_NOFS);
e6dcd2dc
CM
1298 for (i = 0; i < num_pages; i++) {
1299 unlock_page(pages[i]);
1300 page_cache_release(pages[i]);
1301 }
1302 btrfs_wait_ordered_range(inode, start_pos,
1303 last_pos - start_pos);
1304 goto again;
1305 }
1306 if (ordered)
1307 btrfs_put_ordered_extent(ordered);
1308
2ac55d41 1309 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
32c00aff 1310 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
9e8a4a8b
LB
1311 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
1312 0, 0, &cached_state, GFP_NOFS);
2ac55d41
JB
1313 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1314 start_pos, last_pos - 1, &cached_state,
1315 GFP_NOFS);
0762704b 1316 }
e6dcd2dc 1317 for (i = 0; i < num_pages; i++) {
32c7f202
WF
1318 if (clear_page_dirty_for_io(pages[i]))
1319 account_page_redirty(pages[i]);
e6dcd2dc
CM
1320 set_page_extent_mapped(pages[i]);
1321 WARN_ON(!PageLocked(pages[i]));
1322 }
39279cc3 1323 return 0;
b1bf862e
CM
1324fail:
1325 while (faili >= 0) {
1326 unlock_page(pages[faili]);
1327 page_cache_release(pages[faili]);
1328 faili--;
1329 }
1330 return err;
1331
39279cc3
CM
1332}
1333
7ee9e440
JB
1334static noinline int check_can_nocow(struct inode *inode, loff_t pos,
1335 size_t *write_bytes)
1336{
7ee9e440
JB
1337 struct btrfs_root *root = BTRFS_I(inode)->root;
1338 struct btrfs_ordered_extent *ordered;
1339 u64 lockstart, lockend;
1340 u64 num_bytes;
1341 int ret;
1342
1343 lockstart = round_down(pos, root->sectorsize);
1344 lockend = lockstart + round_up(*write_bytes, root->sectorsize) - 1;
1345
1346 while (1) {
1347 lock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1348 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1349 lockend - lockstart + 1);
1350 if (!ordered) {
1351 break;
1352 }
1353 unlock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1354 btrfs_start_ordered_extent(inode, ordered, 1);
1355 btrfs_put_ordered_extent(ordered);
1356 }
1357
7ee9e440 1358 num_bytes = lockend - lockstart + 1;
00361589 1359 ret = can_nocow_extent(inode, lockstart, &num_bytes, NULL, NULL, NULL);
7ee9e440
JB
1360 if (ret <= 0) {
1361 ret = 0;
1362 } else {
1363 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
1364 EXTENT_DIRTY | EXTENT_DELALLOC |
1365 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1366 NULL, GFP_NOFS);
1367 *write_bytes = min_t(size_t, *write_bytes, num_bytes);
1368 }
1369
1370 unlock_extent(&BTRFS_I(inode)->io_tree, lockstart, lockend);
1371
1372 return ret;
1373}
1374
d0215f3e
JB
1375static noinline ssize_t __btrfs_buffered_write(struct file *file,
1376 struct iov_iter *i,
1377 loff_t pos)
4b46fce2 1378{
496ad9aa 1379 struct inode *inode = file_inode(file);
11c65dcc 1380 struct btrfs_root *root = BTRFS_I(inode)->root;
11c65dcc 1381 struct page **pages = NULL;
7ee9e440 1382 u64 release_bytes = 0;
39279cc3 1383 unsigned long first_index;
d0215f3e
JB
1384 size_t num_written = 0;
1385 int nrptrs;
c9149235 1386 int ret = 0;
7ee9e440 1387 bool only_release_metadata = false;
b6316429 1388 bool force_page_uptodate = false;
4b46fce2 1389
d0215f3e 1390 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
11c65dcc
JB
1391 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
1392 (sizeof(struct page *)));
142349f5
WF
1393 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1394 nrptrs = max(nrptrs, 8);
8c2383c3 1395 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
d0215f3e
JB
1396 if (!pages)
1397 return -ENOMEM;
ab93dbec 1398
39279cc3 1399 first_index = pos >> PAGE_CACHE_SHIFT;
39279cc3 1400
d0215f3e 1401 while (iov_iter_count(i) > 0) {
39279cc3 1402 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
d0215f3e 1403 size_t write_bytes = min(iov_iter_count(i),
11c65dcc 1404 nrptrs * (size_t)PAGE_CACHE_SIZE -
8c2383c3 1405 offset);
3a90983d
YZ
1406 size_t num_pages = (write_bytes + offset +
1407 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
7ee9e440 1408 size_t reserve_bytes;
d0215f3e
JB
1409 size_t dirty_pages;
1410 size_t copied;
39279cc3 1411
8c2383c3 1412 WARN_ON(num_pages > nrptrs);
1832a6d5 1413
914ee295
XZ
1414 /*
1415 * Fault pages before locking them in prepare_pages
1416 * to avoid recursive lock
1417 */
d0215f3e 1418 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
914ee295 1419 ret = -EFAULT;
d0215f3e 1420 break;
914ee295
XZ
1421 }
1422
7ee9e440
JB
1423 reserve_bytes = num_pages << PAGE_CACHE_SHIFT;
1424 ret = btrfs_check_data_free_space(inode, reserve_bytes);
1425 if (ret == -ENOSPC &&
1426 (BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1427 BTRFS_INODE_PREALLOC))) {
1428 ret = check_can_nocow(inode, pos, &write_bytes);
1429 if (ret > 0) {
1430 only_release_metadata = true;
1431 /*
1432 * our prealloc extent may be smaller than
1433 * write_bytes, so scale down.
1434 */
1435 num_pages = (write_bytes + offset +
1436 PAGE_CACHE_SIZE - 1) >>
1437 PAGE_CACHE_SHIFT;
1438 reserve_bytes = num_pages << PAGE_CACHE_SHIFT;
1439 ret = 0;
1440 } else {
1441 ret = -ENOSPC;
1442 }
1443 }
1444
1832a6d5 1445 if (ret)
d0215f3e 1446 break;
1832a6d5 1447
7ee9e440
JB
1448 ret = btrfs_delalloc_reserve_metadata(inode, reserve_bytes);
1449 if (ret) {
1450 if (!only_release_metadata)
1451 btrfs_free_reserved_data_space(inode,
1452 reserve_bytes);
1453 break;
1454 }
1455
1456 release_bytes = reserve_bytes;
1457
4a64001f
JB
1458 /*
1459 * This is going to setup the pages array with the number of
1460 * pages we want, so we don't really need to worry about the
1461 * contents of pages from loop to loop
1462 */
39279cc3 1463 ret = prepare_pages(root, file, pages, num_pages,
b6316429
JB
1464 pos, first_index, write_bytes,
1465 force_page_uptodate);
7ee9e440 1466 if (ret)
d0215f3e 1467 break;
39279cc3 1468
914ee295 1469 copied = btrfs_copy_from_user(pos, num_pages,
d0215f3e 1470 write_bytes, pages, i);
b1bf862e
CM
1471
1472 /*
1473 * if we have trouble faulting in the pages, fall
1474 * back to one page at a time
1475 */
1476 if (copied < write_bytes)
1477 nrptrs = 1;
1478
b6316429
JB
1479 if (copied == 0) {
1480 force_page_uptodate = true;
b1bf862e 1481 dirty_pages = 0;
b6316429
JB
1482 } else {
1483 force_page_uptodate = false;
b1bf862e
CM
1484 dirty_pages = (copied + offset +
1485 PAGE_CACHE_SIZE - 1) >>
1486 PAGE_CACHE_SHIFT;
b6316429 1487 }
914ee295 1488
d0215f3e
JB
1489 /*
1490 * If we had a short copy we need to release the excess delaloc
1491 * bytes we reserved. We need to increment outstanding_extents
1492 * because btrfs_delalloc_release_space will decrement it, but
1493 * we still have an outstanding extent for the chunk we actually
1494 * managed to copy.
1495 */
914ee295 1496 if (num_pages > dirty_pages) {
7ee9e440
JB
1497 release_bytes = (num_pages - dirty_pages) <<
1498 PAGE_CACHE_SHIFT;
9e0baf60
JB
1499 if (copied > 0) {
1500 spin_lock(&BTRFS_I(inode)->lock);
1501 BTRFS_I(inode)->outstanding_extents++;
1502 spin_unlock(&BTRFS_I(inode)->lock);
1503 }
7ee9e440
JB
1504 if (only_release_metadata)
1505 btrfs_delalloc_release_metadata(inode,
1506 release_bytes);
1507 else
1508 btrfs_delalloc_release_space(inode,
1509 release_bytes);
914ee295
XZ
1510 }
1511
7ee9e440 1512 release_bytes = dirty_pages << PAGE_CACHE_SHIFT;
914ee295 1513 if (copied > 0) {
be1a12a0
JB
1514 ret = btrfs_dirty_pages(root, inode, pages,
1515 dirty_pages, pos, copied,
1516 NULL);
d0215f3e 1517 if (ret) {
d0215f3e
JB
1518 btrfs_drop_pages(pages, num_pages);
1519 break;
1520 }
54aa1f4d 1521 }
39279cc3 1522
7ee9e440 1523 release_bytes = 0;
39279cc3
CM
1524 btrfs_drop_pages(pages, num_pages);
1525
7ee9e440
JB
1526 if (only_release_metadata && copied > 0) {
1527 u64 lockstart = round_down(pos, root->sectorsize);
1528 u64 lockend = lockstart +
1529 (dirty_pages << PAGE_CACHE_SHIFT) - 1;
1530
1531 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1532 lockend, EXTENT_NORESERVE, NULL,
1533 NULL, GFP_NOFS);
1534 only_release_metadata = false;
1535 }
1536
d0215f3e
JB
1537 cond_resched();
1538
d0e1d66b 1539 balance_dirty_pages_ratelimited(inode->i_mapping);
d0215f3e 1540 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
b53d3f5d 1541 btrfs_btree_balance_dirty(root);
cb843a6f 1542
914ee295
XZ
1543 pos += copied;
1544 num_written += copied;
d0215f3e 1545 }
39279cc3 1546
d0215f3e
JB
1547 kfree(pages);
1548
7ee9e440
JB
1549 if (release_bytes) {
1550 if (only_release_metadata)
1551 btrfs_delalloc_release_metadata(inode, release_bytes);
1552 else
1553 btrfs_delalloc_release_space(inode, release_bytes);
1554 }
1555
d0215f3e
JB
1556 return num_written ? num_written : ret;
1557}
1558
1559static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1560 const struct iovec *iov,
1561 unsigned long nr_segs, loff_t pos,
1562 loff_t *ppos, size_t count, size_t ocount)
1563{
1564 struct file *file = iocb->ki_filp;
d0215f3e
JB
1565 struct iov_iter i;
1566 ssize_t written;
1567 ssize_t written_buffered;
1568 loff_t endbyte;
1569 int err;
1570
1571 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1572 count, ocount);
1573
d0215f3e
JB
1574 if (written < 0 || written == count)
1575 return written;
1576
1577 pos += written;
1578 count -= written;
1579 iov_iter_init(&i, iov, nr_segs, count, written);
1580 written_buffered = __btrfs_buffered_write(file, &i, pos);
1581 if (written_buffered < 0) {
1582 err = written_buffered;
1583 goto out;
39279cc3 1584 }
d0215f3e
JB
1585 endbyte = pos + written_buffered - 1;
1586 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1587 if (err)
1588 goto out;
1589 written += written_buffered;
1590 *ppos = pos + written_buffered;
1591 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1592 endbyte >> PAGE_CACHE_SHIFT);
39279cc3 1593out:
d0215f3e
JB
1594 return written ? written : err;
1595}
5b92ee72 1596
6c760c07
JB
1597static void update_time_for_write(struct inode *inode)
1598{
1599 struct timespec now;
1600
1601 if (IS_NOCMTIME(inode))
1602 return;
1603
1604 now = current_fs_time(inode->i_sb);
1605 if (!timespec_equal(&inode->i_mtime, &now))
1606 inode->i_mtime = now;
1607
1608 if (!timespec_equal(&inode->i_ctime, &now))
1609 inode->i_ctime = now;
1610
1611 if (IS_I_VERSION(inode))
1612 inode_inc_iversion(inode);
1613}
1614
d0215f3e
JB
1615static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1616 const struct iovec *iov,
1617 unsigned long nr_segs, loff_t pos)
1618{
1619 struct file *file = iocb->ki_filp;
496ad9aa 1620 struct inode *inode = file_inode(file);
d0215f3e
JB
1621 struct btrfs_root *root = BTRFS_I(inode)->root;
1622 loff_t *ppos = &iocb->ki_pos;
0c1a98c8 1623 u64 start_pos;
d0215f3e
JB
1624 ssize_t num_written = 0;
1625 ssize_t err = 0;
1626 size_t count, ocount;
b812ce28 1627 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
d0215f3e 1628
d0215f3e
JB
1629 mutex_lock(&inode->i_mutex);
1630
1631 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1632 if (err) {
1633 mutex_unlock(&inode->i_mutex);
1634 goto out;
1635 }
1636 count = ocount;
1637
1638 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1639 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1640 if (err) {
1641 mutex_unlock(&inode->i_mutex);
1642 goto out;
1643 }
1644
1645 if (count == 0) {
1646 mutex_unlock(&inode->i_mutex);
1647 goto out;
1648 }
1649
1650 err = file_remove_suid(file);
1651 if (err) {
1652 mutex_unlock(&inode->i_mutex);
1653 goto out;
1654 }
1655
1656 /*
1657 * If BTRFS flips readonly due to some impossible error
1658 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1659 * although we have opened a file as writable, we have
1660 * to stop this write operation to ensure FS consistency.
1661 */
87533c47 1662 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) {
d0215f3e
JB
1663 mutex_unlock(&inode->i_mutex);
1664 err = -EROFS;
1665 goto out;
1666 }
1667
6c760c07
JB
1668 /*
1669 * We reserve space for updating the inode when we reserve space for the
1670 * extent we are going to write, so we will enospc out there. We don't
1671 * need to start yet another transaction to update the inode as we will
1672 * update the inode when we finish writing whatever data we write.
1673 */
1674 update_time_for_write(inode);
d0215f3e 1675
0c1a98c8
MX
1676 start_pos = round_down(pos, root->sectorsize);
1677 if (start_pos > i_size_read(inode)) {
1678 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
1679 if (err) {
1680 mutex_unlock(&inode->i_mutex);
1681 goto out;
1682 }
1683 }
1684
b812ce28
JB
1685 if (sync)
1686 atomic_inc(&BTRFS_I(inode)->sync_writers);
1687
d0215f3e
JB
1688 if (unlikely(file->f_flags & O_DIRECT)) {
1689 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1690 pos, ppos, count, ocount);
1691 } else {
1692 struct iov_iter i;
1693
1694 iov_iter_init(&i, iov, nr_segs, count, num_written);
1695
1696 num_written = __btrfs_buffered_write(file, &i, pos);
1697 if (num_written > 0)
1698 *ppos = pos + num_written;
1699 }
1700
1701 mutex_unlock(&inode->i_mutex);
2ff3e9b6 1702
5a3f23d5
CM
1703 /*
1704 * we want to make sure fsync finds this change
1705 * but we haven't joined a transaction running right now.
1706 *
1707 * Later on, someone is sure to update the inode and get the
1708 * real transid recorded.
1709 *
1710 * We set last_trans now to the fs_info generation + 1,
1711 * this will either be one more than the running transaction
1712 * or the generation used for the next transaction if there isn't
1713 * one running right now.
6c760c07
JB
1714 *
1715 * We also have to set last_sub_trans to the current log transid,
1716 * otherwise subsequent syncs to a file that's been synced in this
1717 * transaction will appear to have already occured.
5a3f23d5
CM
1718 */
1719 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
6c760c07 1720 BTRFS_I(inode)->last_sub_trans = root->log_transid;
02afc27f 1721 if (num_written > 0) {
d0215f3e
JB
1722 err = generic_write_sync(file, pos, num_written);
1723 if (err < 0 && num_written > 0)
2ff3e9b6
CM
1724 num_written = err;
1725 }
0a3404dc 1726
b812ce28
JB
1727 if (sync)
1728 atomic_dec(&BTRFS_I(inode)->sync_writers);
0a3404dc 1729out:
39279cc3 1730 current->backing_dev_info = NULL;
39279cc3
CM
1731 return num_written ? num_written : err;
1732}
1733
d397712b 1734int btrfs_release_file(struct inode *inode, struct file *filp)
e1b81e67 1735{
5a3f23d5
CM
1736 /*
1737 * ordered_data_close is set by settattr when we are about to truncate
1738 * a file from a non-zero size to a zero size. This tries to
1739 * flush down new bytes that may have been written if the
1740 * application were using truncate to replace a file in place.
1741 */
72ac3c0d
JB
1742 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1743 &BTRFS_I(inode)->runtime_flags)) {
569e0f35
JB
1744 struct btrfs_trans_handle *trans;
1745 struct btrfs_root *root = BTRFS_I(inode)->root;
1746
1747 /*
1748 * We need to block on a committing transaction to keep us from
1749 * throwing a ordered operation on to the list and causing
1750 * something like sync to deadlock trying to flush out this
1751 * inode.
1752 */
1753 trans = btrfs_start_transaction(root, 0);
1754 if (IS_ERR(trans))
1755 return PTR_ERR(trans);
1756 btrfs_add_ordered_operation(trans, BTRFS_I(inode)->root, inode);
1757 btrfs_end_transaction(trans, root);
5a3f23d5
CM
1758 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1759 filemap_flush(inode->i_mapping);
1760 }
6bf13c0c
SW
1761 if (filp->private_data)
1762 btrfs_ioctl_trans_end(filp);
e1b81e67
M
1763 return 0;
1764}
1765
d352ac68
CM
1766/*
1767 * fsync call for both files and directories. This logs the inode into
1768 * the tree log instead of forcing full commits whenever possible.
1769 *
1770 * It needs to call filemap_fdatawait so that all ordered extent updates are
1771 * in the metadata btree are up to date for copying to the log.
1772 *
1773 * It drops the inode mutex before doing the tree log commit. This is an
1774 * important optimization for directories because holding the mutex prevents
1775 * new operations on the dir while we write to disk.
1776 */
02c24a82 1777int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
39279cc3 1778{
7ea80859 1779 struct dentry *dentry = file->f_path.dentry;
39279cc3
CM
1780 struct inode *inode = dentry->d_inode;
1781 struct btrfs_root *root = BTRFS_I(inode)->root;
15ee9bc7 1782 int ret = 0;
39279cc3 1783 struct btrfs_trans_handle *trans;
2ab28f32 1784 bool full_sync = 0;
39279cc3 1785
1abe9b8a 1786 trace_btrfs_sync_file(file, datasync);
257c62e1 1787
90abccf2
MX
1788 /*
1789 * We write the dirty pages in the range and wait until they complete
1790 * out of the ->i_mutex. If so, we can flush the dirty pages by
2ab28f32
JB
1791 * multi-task, and make the performance up. See
1792 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
90abccf2 1793 */
b812ce28 1794 atomic_inc(&BTRFS_I(inode)->sync_writers);
2ab28f32
JB
1795 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
1796 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1797 &BTRFS_I(inode)->runtime_flags))
1798 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
b812ce28 1799 atomic_dec(&BTRFS_I(inode)->sync_writers);
90abccf2
MX
1800 if (ret)
1801 return ret;
1802
02c24a82
JB
1803 mutex_lock(&inode->i_mutex);
1804
0885ef5b 1805 /*
90abccf2
MX
1806 * We flush the dirty pages again to avoid some dirty pages in the
1807 * range being left.
0885ef5b 1808 */
2ecb7923 1809 atomic_inc(&root->log_batch);
2ab28f32
JB
1810 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1811 &BTRFS_I(inode)->runtime_flags);
1812 if (full_sync)
1813 btrfs_wait_ordered_range(inode, start, end - start + 1);
2ecb7923 1814 atomic_inc(&root->log_batch);
257c62e1 1815
39279cc3 1816 /*
15ee9bc7
JB
1817 * check the transaction that last modified this inode
1818 * and see if its already been committed
39279cc3 1819 */
02c24a82
JB
1820 if (!BTRFS_I(inode)->last_trans) {
1821 mutex_unlock(&inode->i_mutex);
15ee9bc7 1822 goto out;
02c24a82 1823 }
a2135011 1824
257c62e1
CM
1825 /*
1826 * if the last transaction that changed this file was before
1827 * the current transaction, we can bail out now without any
1828 * syncing
1829 */
a4abeea4 1830 smp_mb();
22ee6985
JB
1831 if (btrfs_inode_in_log(inode, root->fs_info->generation) ||
1832 BTRFS_I(inode)->last_trans <=
15ee9bc7
JB
1833 root->fs_info->last_trans_committed) {
1834 BTRFS_I(inode)->last_trans = 0;
5dc562c5
JB
1835
1836 /*
1837 * We'v had everything committed since the last time we were
1838 * modified so clear this flag in case it was set for whatever
1839 * reason, it's no longer relevant.
1840 */
1841 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1842 &BTRFS_I(inode)->runtime_flags);
02c24a82 1843 mutex_unlock(&inode->i_mutex);
15ee9bc7
JB
1844 goto out;
1845 }
15ee9bc7
JB
1846
1847 /*
a52d9a80
CM
1848 * ok we haven't committed the transaction yet, lets do a commit
1849 */
6f902af4 1850 if (file->private_data)
6bf13c0c
SW
1851 btrfs_ioctl_trans_end(file);
1852
a22285a6
YZ
1853 trans = btrfs_start_transaction(root, 0);
1854 if (IS_ERR(trans)) {
1855 ret = PTR_ERR(trans);
02c24a82 1856 mutex_unlock(&inode->i_mutex);
39279cc3
CM
1857 goto out;
1858 }
e02119d5 1859
2cfbd50b 1860 ret = btrfs_log_dentry_safe(trans, root, dentry);
02c24a82 1861 if (ret < 0) {
a0634be5
FDBM
1862 /* Fallthrough and commit/free transaction. */
1863 ret = 1;
02c24a82 1864 }
49eb7e46
CM
1865
1866 /* we've logged all the items and now have a consistent
1867 * version of the file in the log. It is possible that
1868 * someone will come in and modify the file, but that's
1869 * fine because the log is consistent on disk, and we
1870 * have references to all of the file's extents
1871 *
1872 * It is possible that someone will come in and log the
1873 * file again, but that will end up using the synchronization
1874 * inside btrfs_sync_log to keep things safe.
1875 */
02c24a82 1876 mutex_unlock(&inode->i_mutex);
49eb7e46 1877
257c62e1
CM
1878 if (ret != BTRFS_NO_LOG_SYNC) {
1879 if (ret > 0) {
2ab28f32
JB
1880 /*
1881 * If we didn't already wait for ordered extents we need
1882 * to do that now.
1883 */
1884 if (!full_sync)
1885 btrfs_wait_ordered_range(inode, start,
1886 end - start + 1);
12fcfd22 1887 ret = btrfs_commit_transaction(trans, root);
257c62e1
CM
1888 } else {
1889 ret = btrfs_sync_log(trans, root);
2ab28f32 1890 if (ret == 0) {
257c62e1 1891 ret = btrfs_end_transaction(trans, root);
2ab28f32
JB
1892 } else {
1893 if (!full_sync)
1894 btrfs_wait_ordered_range(inode, start,
1895 end -
1896 start + 1);
257c62e1 1897 ret = btrfs_commit_transaction(trans, root);
2ab28f32 1898 }
257c62e1
CM
1899 }
1900 } else {
1901 ret = btrfs_end_transaction(trans, root);
e02119d5 1902 }
39279cc3 1903out:
014e4ac4 1904 return ret > 0 ? -EIO : ret;
39279cc3
CM
1905}
1906
f0f37e2f 1907static const struct vm_operations_struct btrfs_file_vm_ops = {
92fee66d 1908 .fault = filemap_fault,
9ebefb18 1909 .page_mkwrite = btrfs_page_mkwrite,
0b173bc4 1910 .remap_pages = generic_file_remap_pages,
9ebefb18
CM
1911};
1912
1913static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1914{
058a457e
MX
1915 struct address_space *mapping = filp->f_mapping;
1916
1917 if (!mapping->a_ops->readpage)
1918 return -ENOEXEC;
1919
9ebefb18 1920 file_accessed(filp);
058a457e 1921 vma->vm_ops = &btrfs_file_vm_ops;
058a457e 1922
9ebefb18
CM
1923 return 0;
1924}
1925
2aaa6655
JB
1926static int hole_mergeable(struct inode *inode, struct extent_buffer *leaf,
1927 int slot, u64 start, u64 end)
1928{
1929 struct btrfs_file_extent_item *fi;
1930 struct btrfs_key key;
1931
1932 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1933 return 0;
1934
1935 btrfs_item_key_to_cpu(leaf, &key, slot);
1936 if (key.objectid != btrfs_ino(inode) ||
1937 key.type != BTRFS_EXTENT_DATA_KEY)
1938 return 0;
1939
1940 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1941
1942 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
1943 return 0;
1944
1945 if (btrfs_file_extent_disk_bytenr(leaf, fi))
1946 return 0;
1947
1948 if (key.offset == end)
1949 return 1;
1950 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
1951 return 1;
1952 return 0;
1953}
1954
1955static int fill_holes(struct btrfs_trans_handle *trans, struct inode *inode,
1956 struct btrfs_path *path, u64 offset, u64 end)
1957{
1958 struct btrfs_root *root = BTRFS_I(inode)->root;
1959 struct extent_buffer *leaf;
1960 struct btrfs_file_extent_item *fi;
1961 struct extent_map *hole_em;
1962 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1963 struct btrfs_key key;
1964 int ret;
1965
1966 key.objectid = btrfs_ino(inode);
1967 key.type = BTRFS_EXTENT_DATA_KEY;
1968 key.offset = offset;
1969
1970
1971 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1972 if (ret < 0)
1973 return ret;
1974 BUG_ON(!ret);
1975
1976 leaf = path->nodes[0];
1977 if (hole_mergeable(inode, leaf, path->slots[0]-1, offset, end)) {
1978 u64 num_bytes;
1979
1980 path->slots[0]--;
1981 fi = btrfs_item_ptr(leaf, path->slots[0],
1982 struct btrfs_file_extent_item);
1983 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
1984 end - offset;
1985 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1986 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
1987 btrfs_set_file_extent_offset(leaf, fi, 0);
1988 btrfs_mark_buffer_dirty(leaf);
1989 goto out;
1990 }
1991
1992 if (hole_mergeable(inode, leaf, path->slots[0]+1, offset, end)) {
1993 u64 num_bytes;
1994
1995 path->slots[0]++;
1996 key.offset = offset;
afe5fea7 1997 btrfs_set_item_key_safe(root, path, &key);
2aaa6655
JB
1998 fi = btrfs_item_ptr(leaf, path->slots[0],
1999 struct btrfs_file_extent_item);
2000 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2001 offset;
2002 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2003 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2004 btrfs_set_file_extent_offset(leaf, fi, 0);
2005 btrfs_mark_buffer_dirty(leaf);
2006 goto out;
2007 }
2008 btrfs_release_path(path);
2009
2010 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
2011 0, 0, end - offset, 0, end - offset,
2012 0, 0, 0);
2013 if (ret)
2014 return ret;
2015
2016out:
2017 btrfs_release_path(path);
2018
2019 hole_em = alloc_extent_map();
2020 if (!hole_em) {
2021 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2022 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2023 &BTRFS_I(inode)->runtime_flags);
2024 } else {
2025 hole_em->start = offset;
2026 hole_em->len = end - offset;
cc95bef6 2027 hole_em->ram_bytes = hole_em->len;
2aaa6655
JB
2028 hole_em->orig_start = offset;
2029
2030 hole_em->block_start = EXTENT_MAP_HOLE;
2031 hole_em->block_len = 0;
b4939680 2032 hole_em->orig_block_len = 0;
2aaa6655
JB
2033 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
2034 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2035 hole_em->generation = trans->transid;
2036
2037 do {
2038 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2039 write_lock(&em_tree->lock);
09a2a8f9 2040 ret = add_extent_mapping(em_tree, hole_em, 1);
2aaa6655
JB
2041 write_unlock(&em_tree->lock);
2042 } while (ret == -EEXIST);
2043 free_extent_map(hole_em);
2044 if (ret)
2045 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2046 &BTRFS_I(inode)->runtime_flags);
2047 }
2048
2049 return 0;
2050}
2051
2052static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2053{
2054 struct btrfs_root *root = BTRFS_I(inode)->root;
2055 struct extent_state *cached_state = NULL;
2056 struct btrfs_path *path;
2057 struct btrfs_block_rsv *rsv;
2058 struct btrfs_trans_handle *trans;
0061280d
MX
2059 u64 lockstart = round_up(offset, BTRFS_I(inode)->root->sectorsize);
2060 u64 lockend = round_down(offset + len,
2061 BTRFS_I(inode)->root->sectorsize) - 1;
2aaa6655
JB
2062 u64 cur_offset = lockstart;
2063 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
2064 u64 drop_end;
2aaa6655
JB
2065 int ret = 0;
2066 int err = 0;
6347b3c4
MX
2067 bool same_page = ((offset >> PAGE_CACHE_SHIFT) ==
2068 ((offset + len - 1) >> PAGE_CACHE_SHIFT));
2aaa6655
JB
2069
2070 btrfs_wait_ordered_range(inode, offset, len);
2071
2072 mutex_lock(&inode->i_mutex);
7426cc04
MX
2073 /*
2074 * We needn't truncate any page which is beyond the end of the file
2075 * because we are sure there is no data there.
2076 */
2aaa6655
JB
2077 /*
2078 * Only do this if we are in the same page and we aren't doing the
2079 * entire page.
2080 */
2081 if (same_page && len < PAGE_CACHE_SIZE) {
7426cc04
MX
2082 if (offset < round_up(inode->i_size, PAGE_CACHE_SIZE))
2083 ret = btrfs_truncate_page(inode, offset, len, 0);
2aaa6655
JB
2084 mutex_unlock(&inode->i_mutex);
2085 return ret;
2086 }
2087
2088 /* zero back part of the first page */
7426cc04
MX
2089 if (offset < round_up(inode->i_size, PAGE_CACHE_SIZE)) {
2090 ret = btrfs_truncate_page(inode, offset, 0, 0);
2091 if (ret) {
2092 mutex_unlock(&inode->i_mutex);
2093 return ret;
2094 }
2aaa6655
JB
2095 }
2096
2097 /* zero the front end of the last page */
0061280d
MX
2098 if (offset + len < round_up(inode->i_size, PAGE_CACHE_SIZE)) {
2099 ret = btrfs_truncate_page(inode, offset + len, 0, 1);
2100 if (ret) {
2101 mutex_unlock(&inode->i_mutex);
2102 return ret;
2103 }
2aaa6655
JB
2104 }
2105
2106 if (lockend < lockstart) {
2107 mutex_unlock(&inode->i_mutex);
2108 return 0;
2109 }
2110
2111 while (1) {
2112 struct btrfs_ordered_extent *ordered;
2113
2114 truncate_pagecache_range(inode, lockstart, lockend);
2115
2116 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2117 0, &cached_state);
2118 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2119
2120 /*
2121 * We need to make sure we have no ordered extents in this range
2122 * and nobody raced in and read a page in this range, if we did
2123 * we need to try again.
2124 */
2125 if ((!ordered ||
2126 (ordered->file_offset + ordered->len < lockstart ||
2127 ordered->file_offset > lockend)) &&
2128 !test_range_bit(&BTRFS_I(inode)->io_tree, lockstart,
2129 lockend, EXTENT_UPTODATE, 0,
2130 cached_state)) {
2131 if (ordered)
2132 btrfs_put_ordered_extent(ordered);
2133 break;
2134 }
2135 if (ordered)
2136 btrfs_put_ordered_extent(ordered);
2137 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2138 lockend, &cached_state, GFP_NOFS);
2139 btrfs_wait_ordered_range(inode, lockstart,
2140 lockend - lockstart + 1);
2141 }
2142
2143 path = btrfs_alloc_path();
2144 if (!path) {
2145 ret = -ENOMEM;
2146 goto out;
2147 }
2148
66d8f3dd 2149 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
2aaa6655
JB
2150 if (!rsv) {
2151 ret = -ENOMEM;
2152 goto out_free;
2153 }
2154 rsv->size = btrfs_calc_trunc_metadata_size(root, 1);
2155 rsv->failfast = 1;
2156
2157 /*
2158 * 1 - update the inode
2159 * 1 - removing the extents in the range
2160 * 1 - adding the hole extent
2161 */
2162 trans = btrfs_start_transaction(root, 3);
2163 if (IS_ERR(trans)) {
2164 err = PTR_ERR(trans);
2165 goto out_free;
2166 }
2167
2168 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
2169 min_size);
2170 BUG_ON(ret);
2171 trans->block_rsv = rsv;
2172
2173 while (cur_offset < lockend) {
2174 ret = __btrfs_drop_extents(trans, root, inode, path,
2175 cur_offset, lockend + 1,
2176 &drop_end, 1);
2177 if (ret != -ENOSPC)
2178 break;
2179
2180 trans->block_rsv = &root->fs_info->trans_block_rsv;
2181
2182 ret = fill_holes(trans, inode, path, cur_offset, drop_end);
2183 if (ret) {
2184 err = ret;
2185 break;
2186 }
2187
2188 cur_offset = drop_end;
2189
2190 ret = btrfs_update_inode(trans, root, inode);
2191 if (ret) {
2192 err = ret;
2193 break;
2194 }
2195
2aaa6655 2196 btrfs_end_transaction(trans, root);
b53d3f5d 2197 btrfs_btree_balance_dirty(root);
2aaa6655
JB
2198
2199 trans = btrfs_start_transaction(root, 3);
2200 if (IS_ERR(trans)) {
2201 ret = PTR_ERR(trans);
2202 trans = NULL;
2203 break;
2204 }
2205
2206 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
2207 rsv, min_size);
2208 BUG_ON(ret); /* shouldn't happen */
2209 trans->block_rsv = rsv;
2210 }
2211
2212 if (ret) {
2213 err = ret;
2214 goto out_trans;
2215 }
2216
2217 trans->block_rsv = &root->fs_info->trans_block_rsv;
2218 ret = fill_holes(trans, inode, path, cur_offset, drop_end);
2219 if (ret) {
2220 err = ret;
2221 goto out_trans;
2222 }
2223
2224out_trans:
2225 if (!trans)
2226 goto out_free;
2227
e1f5790e
TI
2228 inode_inc_iversion(inode);
2229 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
2230
2aaa6655
JB
2231 trans->block_rsv = &root->fs_info->trans_block_rsv;
2232 ret = btrfs_update_inode(trans, root, inode);
2aaa6655 2233 btrfs_end_transaction(trans, root);
b53d3f5d 2234 btrfs_btree_balance_dirty(root);
2aaa6655
JB
2235out_free:
2236 btrfs_free_path(path);
2237 btrfs_free_block_rsv(root, rsv);
2238out:
2239 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2240 &cached_state, GFP_NOFS);
2241 mutex_unlock(&inode->i_mutex);
2242 if (ret && !err)
2243 err = ret;
2244 return err;
2245}
2246
2fe17c10
CH
2247static long btrfs_fallocate(struct file *file, int mode,
2248 loff_t offset, loff_t len)
2249{
496ad9aa 2250 struct inode *inode = file_inode(file);
2fe17c10 2251 struct extent_state *cached_state = NULL;
6113077c 2252 struct btrfs_root *root = BTRFS_I(inode)->root;
2fe17c10
CH
2253 u64 cur_offset;
2254 u64 last_byte;
2255 u64 alloc_start;
2256 u64 alloc_end;
2257 u64 alloc_hint = 0;
2258 u64 locked_end;
2fe17c10 2259 struct extent_map *em;
797f4277 2260 int blocksize = BTRFS_I(inode)->root->sectorsize;
2fe17c10
CH
2261 int ret;
2262
797f4277
MX
2263 alloc_start = round_down(offset, blocksize);
2264 alloc_end = round_up(offset + len, blocksize);
2fe17c10 2265
2aaa6655
JB
2266 /* Make sure we aren't being give some crap mode */
2267 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2fe17c10
CH
2268 return -EOPNOTSUPP;
2269
2aaa6655
JB
2270 if (mode & FALLOC_FL_PUNCH_HOLE)
2271 return btrfs_punch_hole(inode, offset, len);
2272
d98456fc
CM
2273 /*
2274 * Make sure we have enough space before we do the
2275 * allocation.
2276 */
0ff6fabd 2277 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
d98456fc
CM
2278 if (ret)
2279 return ret;
6113077c
WS
2280 if (root->fs_info->quota_enabled) {
2281 ret = btrfs_qgroup_reserve(root, alloc_end - alloc_start);
2282 if (ret)
2283 goto out_reserve_fail;
2284 }
d98456fc 2285
2fe17c10
CH
2286 mutex_lock(&inode->i_mutex);
2287 ret = inode_newsize_ok(inode, alloc_end);
2288 if (ret)
2289 goto out;
2290
2291 if (alloc_start > inode->i_size) {
a41ad394
JB
2292 ret = btrfs_cont_expand(inode, i_size_read(inode),
2293 alloc_start);
2fe17c10
CH
2294 if (ret)
2295 goto out;
a71754fc
JB
2296 } else {
2297 /*
2298 * If we are fallocating from the end of the file onward we
2299 * need to zero out the end of the page if i_size lands in the
2300 * middle of a page.
2301 */
2302 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
2303 if (ret)
2304 goto out;
2fe17c10
CH
2305 }
2306
a71754fc
JB
2307 /*
2308 * wait for ordered IO before we have any locks. We'll loop again
2309 * below with the locks held.
2310 */
2311 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
2312
2fe17c10
CH
2313 locked_end = alloc_end - 1;
2314 while (1) {
2315 struct btrfs_ordered_extent *ordered;
2316
2317 /* the extent lock is ordered inside the running
2318 * transaction
2319 */
2320 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
d0082371 2321 locked_end, 0, &cached_state);
2fe17c10
CH
2322 ordered = btrfs_lookup_first_ordered_extent(inode,
2323 alloc_end - 1);
2324 if (ordered &&
2325 ordered->file_offset + ordered->len > alloc_start &&
2326 ordered->file_offset < alloc_end) {
2327 btrfs_put_ordered_extent(ordered);
2328 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
2329 alloc_start, locked_end,
2330 &cached_state, GFP_NOFS);
2331 /*
2332 * we can't wait on the range with the transaction
2333 * running or with the extent lock held
2334 */
2335 btrfs_wait_ordered_range(inode, alloc_start,
2336 alloc_end - alloc_start);
2337 } else {
2338 if (ordered)
2339 btrfs_put_ordered_extent(ordered);
2340 break;
2341 }
2342 }
2343
2344 cur_offset = alloc_start;
2345 while (1) {
f1e490a7
JB
2346 u64 actual_end;
2347
2fe17c10
CH
2348 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2349 alloc_end - cur_offset, 0);
79787eaa
JM
2350 if (IS_ERR_OR_NULL(em)) {
2351 if (!em)
2352 ret = -ENOMEM;
2353 else
2354 ret = PTR_ERR(em);
2355 break;
2356 }
2fe17c10 2357 last_byte = min(extent_map_end(em), alloc_end);
f1e490a7 2358 actual_end = min_t(u64, extent_map_end(em), offset + len);
797f4277 2359 last_byte = ALIGN(last_byte, blocksize);
f1e490a7 2360
2fe17c10
CH
2361 if (em->block_start == EXTENT_MAP_HOLE ||
2362 (cur_offset >= inode->i_size &&
2363 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
2364 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
2365 last_byte - cur_offset,
2366 1 << inode->i_blkbits,
2367 offset + len,
2368 &alloc_hint);
1b9c332b 2369
2fe17c10
CH
2370 if (ret < 0) {
2371 free_extent_map(em);
2372 break;
2373 }
f1e490a7
JB
2374 } else if (actual_end > inode->i_size &&
2375 !(mode & FALLOC_FL_KEEP_SIZE)) {
2376 /*
2377 * We didn't need to allocate any more space, but we
2378 * still extended the size of the file so we need to
2379 * update i_size.
2380 */
2381 inode->i_ctime = CURRENT_TIME;
2382 i_size_write(inode, actual_end);
2383 btrfs_ordered_update_i_size(inode, actual_end, NULL);
2fe17c10
CH
2384 }
2385 free_extent_map(em);
2386
2387 cur_offset = last_byte;
2388 if (cur_offset >= alloc_end) {
2389 ret = 0;
2390 break;
2391 }
2392 }
2393 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
2394 &cached_state, GFP_NOFS);
2fe17c10
CH
2395out:
2396 mutex_unlock(&inode->i_mutex);
6113077c
WS
2397 if (root->fs_info->quota_enabled)
2398 btrfs_qgroup_free(root, alloc_end - alloc_start);
2399out_reserve_fail:
d98456fc 2400 /* Let go of our reservation. */
0ff6fabd 2401 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
2fe17c10
CH
2402 return ret;
2403}
2404
965c8e59 2405static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
b2675157
JB
2406{
2407 struct btrfs_root *root = BTRFS_I(inode)->root;
2408 struct extent_map *em;
2409 struct extent_state *cached_state = NULL;
2410 u64 lockstart = *offset;
2411 u64 lockend = i_size_read(inode);
2412 u64 start = *offset;
2413 u64 orig_start = *offset;
2414 u64 len = i_size_read(inode);
2415 u64 last_end = 0;
2416 int ret = 0;
2417
2418 lockend = max_t(u64, root->sectorsize, lockend);
2419 if (lockend <= lockstart)
2420 lockend = lockstart + root->sectorsize;
2421
1214b53f 2422 lockend--;
b2675157
JB
2423 len = lockend - lockstart + 1;
2424
2425 len = max_t(u64, len, root->sectorsize);
2426 if (inode->i_size == 0)
2427 return -ENXIO;
2428
2429 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, 0,
d0082371 2430 &cached_state);
b2675157
JB
2431
2432 /*
2433 * Delalloc is such a pain. If we have a hole and we have pending
2434 * delalloc for a portion of the hole we will get back a hole that
2435 * exists for the entire range since it hasn't been actually written
2436 * yet. So to take care of this case we need to look for an extent just
2437 * before the position we want in case there is outstanding delalloc
2438 * going on here.
2439 */
965c8e59 2440 if (whence == SEEK_HOLE && start != 0) {
b2675157
JB
2441 if (start <= root->sectorsize)
2442 em = btrfs_get_extent_fiemap(inode, NULL, 0, 0,
2443 root->sectorsize, 0);
2444 else
2445 em = btrfs_get_extent_fiemap(inode, NULL, 0,
2446 start - root->sectorsize,
2447 root->sectorsize, 0);
2448 if (IS_ERR(em)) {
6af021d8 2449 ret = PTR_ERR(em);
b2675157
JB
2450 goto out;
2451 }
2452 last_end = em->start + em->len;
2453 if (em->block_start == EXTENT_MAP_DELALLOC)
2454 last_end = min_t(u64, last_end, inode->i_size);
2455 free_extent_map(em);
2456 }
2457
2458 while (1) {
2459 em = btrfs_get_extent_fiemap(inode, NULL, 0, start, len, 0);
2460 if (IS_ERR(em)) {
6af021d8 2461 ret = PTR_ERR(em);
b2675157
JB
2462 break;
2463 }
2464
2465 if (em->block_start == EXTENT_MAP_HOLE) {
2466 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
2467 if (last_end <= orig_start) {
2468 free_extent_map(em);
2469 ret = -ENXIO;
2470 break;
2471 }
2472 }
2473
965c8e59 2474 if (whence == SEEK_HOLE) {
b2675157
JB
2475 *offset = start;
2476 free_extent_map(em);
2477 break;
2478 }
2479 } else {
965c8e59 2480 if (whence == SEEK_DATA) {
b2675157
JB
2481 if (em->block_start == EXTENT_MAP_DELALLOC) {
2482 if (start >= inode->i_size) {
2483 free_extent_map(em);
2484 ret = -ENXIO;
2485 break;
2486 }
2487 }
2488
f9e4fb53
LB
2489 if (!test_bit(EXTENT_FLAG_PREALLOC,
2490 &em->flags)) {
2491 *offset = start;
2492 free_extent_map(em);
2493 break;
2494 }
b2675157
JB
2495 }
2496 }
2497
2498 start = em->start + em->len;
2499 last_end = em->start + em->len;
2500
2501 if (em->block_start == EXTENT_MAP_DELALLOC)
2502 last_end = min_t(u64, last_end, inode->i_size);
2503
2504 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
2505 free_extent_map(em);
2506 ret = -ENXIO;
2507 break;
2508 }
2509 free_extent_map(em);
2510 cond_resched();
2511 }
2512 if (!ret)
2513 *offset = min(*offset, inode->i_size);
2514out:
2515 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2516 &cached_state, GFP_NOFS);
2517 return ret;
2518}
2519
965c8e59 2520static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
b2675157
JB
2521{
2522 struct inode *inode = file->f_mapping->host;
2523 int ret;
2524
2525 mutex_lock(&inode->i_mutex);
965c8e59 2526 switch (whence) {
b2675157
JB
2527 case SEEK_END:
2528 case SEEK_CUR:
965c8e59 2529 offset = generic_file_llseek(file, offset, whence);
b2675157
JB
2530 goto out;
2531 case SEEK_DATA:
2532 case SEEK_HOLE:
48802c8a
JL
2533 if (offset >= i_size_read(inode)) {
2534 mutex_unlock(&inode->i_mutex);
2535 return -ENXIO;
2536 }
2537
965c8e59 2538 ret = find_desired_extent(inode, &offset, whence);
b2675157
JB
2539 if (ret) {
2540 mutex_unlock(&inode->i_mutex);
2541 return ret;
2542 }
2543 }
2544
46a1c2c7 2545 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
b2675157
JB
2546out:
2547 mutex_unlock(&inode->i_mutex);
2548 return offset;
2549}
2550
828c0950 2551const struct file_operations btrfs_file_operations = {
b2675157 2552 .llseek = btrfs_file_llseek,
39279cc3 2553 .read = do_sync_read,
4a001071 2554 .write = do_sync_write,
9ebefb18 2555 .aio_read = generic_file_aio_read,
e9906a98 2556 .splice_read = generic_file_splice_read,
11c65dcc 2557 .aio_write = btrfs_file_aio_write,
9ebefb18 2558 .mmap = btrfs_file_mmap,
39279cc3 2559 .open = generic_file_open,
e1b81e67 2560 .release = btrfs_release_file,
39279cc3 2561 .fsync = btrfs_sync_file,
2fe17c10 2562 .fallocate = btrfs_fallocate,
34287aa3 2563 .unlocked_ioctl = btrfs_ioctl,
39279cc3 2564#ifdef CONFIG_COMPAT
34287aa3 2565 .compat_ioctl = btrfs_ioctl,
39279cc3
CM
2566#endif
2567};
9247f317
MX
2568
2569void btrfs_auto_defrag_exit(void)
2570{
2571 if (btrfs_inode_defrag_cachep)
2572 kmem_cache_destroy(btrfs_inode_defrag_cachep);
2573}
2574
2575int btrfs_auto_defrag_init(void)
2576{
2577 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
2578 sizeof(struct inode_defrag), 0,
2579 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
2580 NULL);
2581 if (!btrfs_inode_defrag_cachep)
2582 return -ENOMEM;
2583
2584 return 0;
2585}
This page took 0.450581 seconds and 5 git commands to generate.