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