1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2007 Oracle. All rights reserved.
6 #include <linux/kernel.h>
8 #include <linux/buffer_head.h>
9 #include <linux/file.h>
11 #include <linux/pagemap.h>
12 #include <linux/highmem.h>
13 #include <linux/time.h>
14 #include <linux/init.h>
15 #include <linux/string.h>
16 #include <linux/backing-dev.h>
17 #include <linux/mpage.h>
18 #include <linux/swap.h>
19 #include <linux/writeback.h>
20 #include <linux/compat.h>
21 #include <linux/bit_spinlock.h>
22 #include <linux/xattr.h>
23 #include <linux/posix_acl.h>
24 #include <linux/falloc.h>
25 #include <linux/slab.h>
26 #include <linux/ratelimit.h>
27 #include <linux/mount.h>
28 #include <linux/btrfs.h>
29 #include <linux/blkdev.h>
30 #include <linux/posix_acl_xattr.h>
31 #include <linux/uio.h>
32 #include <linux/magic.h>
33 #include <linux/iversion.h>
34 #include <asm/unaligned.h>
37 #include "transaction.h"
38 #include "btrfs_inode.h"
39 #include "print-tree.h"
40 #include "ordered-data.h"
44 #include "compression.h"
46 #include "free-space-cache.h"
47 #include "inode-map.h"
53 struct btrfs_iget_args {
54 struct btrfs_key *location;
55 struct btrfs_root *root;
58 struct btrfs_dio_data {
60 u64 unsubmitted_oe_range_start;
61 u64 unsubmitted_oe_range_end;
65 static const struct inode_operations btrfs_dir_inode_operations;
66 static const struct inode_operations btrfs_symlink_inode_operations;
67 static const struct inode_operations btrfs_dir_ro_inode_operations;
68 static const struct inode_operations btrfs_special_inode_operations;
69 static const struct inode_operations btrfs_file_inode_operations;
70 static const struct address_space_operations btrfs_aops;
71 static const struct address_space_operations btrfs_symlink_aops;
72 static const struct file_operations btrfs_dir_file_operations;
73 static const struct extent_io_ops btrfs_extent_io_ops;
75 static struct kmem_cache *btrfs_inode_cachep;
76 struct kmem_cache *btrfs_trans_handle_cachep;
77 struct kmem_cache *btrfs_path_cachep;
78 struct kmem_cache *btrfs_free_space_cachep;
81 static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
82 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
83 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
84 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
85 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
86 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
87 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
88 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
91 static int btrfs_setsize(struct inode *inode, struct iattr *attr);
92 static int btrfs_truncate(struct inode *inode, bool skip_writeback);
93 static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
94 static noinline int cow_file_range(struct inode *inode,
95 struct page *locked_page,
96 u64 start, u64 end, u64 delalloc_end,
97 int *page_started, unsigned long *nr_written,
98 int unlock, struct btrfs_dedupe_hash *hash);
99 static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
100 u64 orig_start, u64 block_start,
101 u64 block_len, u64 orig_block_len,
102 u64 ram_bytes, int compress_type,
105 static void __endio_write_update_ordered(struct inode *inode,
106 const u64 offset, const u64 bytes,
107 const bool uptodate);
110 * Cleanup all submitted ordered extents in specified range to handle errors
111 * from the fill_dellaloc() callback.
113 * NOTE: caller must ensure that when an error happens, it can not call
114 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
115 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
116 * to be released, which we want to happen only when finishing the ordered
117 * extent (btrfs_finish_ordered_io()). Also note that the caller of the
118 * fill_delalloc() callback already does proper cleanup for the first page of
119 * the range, that is, it invokes the callback writepage_end_io_hook() for the
120 * range of the first page.
122 static inline void btrfs_cleanup_ordered_extents(struct inode *inode,
126 unsigned long index = offset >> PAGE_SHIFT;
127 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
130 while (index <= end_index) {
131 page = find_get_page(inode->i_mapping, index);
135 ClearPagePrivate2(page);
138 return __endio_write_update_ordered(inode, offset + PAGE_SIZE,
139 bytes - PAGE_SIZE, false);
142 static int btrfs_dirty_inode(struct inode *inode);
144 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
145 void btrfs_test_inode_set_ops(struct inode *inode)
147 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
151 static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
152 struct inode *inode, struct inode *dir,
153 const struct qstr *qstr)
157 err = btrfs_init_acl(trans, inode, dir);
159 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
164 * this does all the hard work for inserting an inline extent into
165 * the btree. The caller should have done a btrfs_drop_extents so that
166 * no overlapping inline items exist in the btree
168 static int insert_inline_extent(struct btrfs_trans_handle *trans,
169 struct btrfs_path *path, int extent_inserted,
170 struct btrfs_root *root, struct inode *inode,
171 u64 start, size_t size, size_t compressed_size,
173 struct page **compressed_pages)
175 struct extent_buffer *leaf;
176 struct page *page = NULL;
179 struct btrfs_file_extent_item *ei;
181 size_t cur_size = size;
182 unsigned long offset;
184 if (compressed_size && compressed_pages)
185 cur_size = compressed_size;
187 inode_add_bytes(inode, size);
189 if (!extent_inserted) {
190 struct btrfs_key key;
193 key.objectid = btrfs_ino(BTRFS_I(inode));
195 key.type = BTRFS_EXTENT_DATA_KEY;
197 datasize = btrfs_file_extent_calc_inline_size(cur_size);
198 path->leave_spinning = 1;
199 ret = btrfs_insert_empty_item(trans, root, path, &key,
204 leaf = path->nodes[0];
205 ei = btrfs_item_ptr(leaf, path->slots[0],
206 struct btrfs_file_extent_item);
207 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
208 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
209 btrfs_set_file_extent_encryption(leaf, ei, 0);
210 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
211 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
212 ptr = btrfs_file_extent_inline_start(ei);
214 if (compress_type != BTRFS_COMPRESS_NONE) {
217 while (compressed_size > 0) {
218 cpage = compressed_pages[i];
219 cur_size = min_t(unsigned long, compressed_size,
222 kaddr = kmap_atomic(cpage);
223 write_extent_buffer(leaf, kaddr, ptr, cur_size);
224 kunmap_atomic(kaddr);
228 compressed_size -= cur_size;
230 btrfs_set_file_extent_compression(leaf, ei,
233 page = find_get_page(inode->i_mapping,
234 start >> PAGE_SHIFT);
235 btrfs_set_file_extent_compression(leaf, ei, 0);
236 kaddr = kmap_atomic(page);
237 offset = start & (PAGE_SIZE - 1);
238 write_extent_buffer(leaf, kaddr + offset, ptr, size);
239 kunmap_atomic(kaddr);
242 btrfs_mark_buffer_dirty(leaf);
243 btrfs_release_path(path);
246 * we're an inline extent, so nobody can
247 * extend the file past i_size without locking
248 * a page we already have locked.
250 * We must do any isize and inode updates
251 * before we unlock the pages. Otherwise we
252 * could end up racing with unlink.
254 BTRFS_I(inode)->disk_i_size = inode->i_size;
255 ret = btrfs_update_inode(trans, root, inode);
263 * conditionally insert an inline extent into the file. This
264 * does the checks required to make sure the data is small enough
265 * to fit as an inline extent.
267 static noinline int cow_file_range_inline(struct inode *inode, u64 start,
268 u64 end, size_t compressed_size,
270 struct page **compressed_pages)
272 struct btrfs_root *root = BTRFS_I(inode)->root;
273 struct btrfs_fs_info *fs_info = root->fs_info;
274 struct btrfs_trans_handle *trans;
275 u64 isize = i_size_read(inode);
276 u64 actual_end = min(end + 1, isize);
277 u64 inline_len = actual_end - start;
278 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
279 u64 data_len = inline_len;
281 struct btrfs_path *path;
282 int extent_inserted = 0;
283 u32 extent_item_size;
286 data_len = compressed_size;
289 actual_end > fs_info->sectorsize ||
290 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
292 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
294 data_len > fs_info->max_inline) {
298 path = btrfs_alloc_path();
302 trans = btrfs_join_transaction(root);
304 btrfs_free_path(path);
305 return PTR_ERR(trans);
307 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
309 if (compressed_size && compressed_pages)
310 extent_item_size = btrfs_file_extent_calc_inline_size(
313 extent_item_size = btrfs_file_extent_calc_inline_size(
316 ret = __btrfs_drop_extents(trans, root, inode, path,
317 start, aligned_end, NULL,
318 1, 1, extent_item_size, &extent_inserted);
320 btrfs_abort_transaction(trans, ret);
324 if (isize > actual_end)
325 inline_len = min_t(u64, isize, actual_end);
326 ret = insert_inline_extent(trans, path, extent_inserted,
328 inline_len, compressed_size,
329 compress_type, compressed_pages);
330 if (ret && ret != -ENOSPC) {
331 btrfs_abort_transaction(trans, ret);
333 } else if (ret == -ENOSPC) {
338 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
339 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
342 * Don't forget to free the reserved space, as for inlined extent
343 * it won't count as data extent, free them directly here.
344 * And at reserve time, it's always aligned to page size, so
345 * just free one page here.
347 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
348 btrfs_free_path(path);
349 btrfs_end_transaction(trans);
353 struct async_extent {
358 unsigned long nr_pages;
360 struct list_head list;
365 struct btrfs_root *root;
366 struct page *locked_page;
369 unsigned int write_flags;
370 struct list_head extents;
371 struct btrfs_work work;
374 static noinline int add_async_extent(struct async_cow *cow,
375 u64 start, u64 ram_size,
378 unsigned long nr_pages,
381 struct async_extent *async_extent;
383 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
384 BUG_ON(!async_extent); /* -ENOMEM */
385 async_extent->start = start;
386 async_extent->ram_size = ram_size;
387 async_extent->compressed_size = compressed_size;
388 async_extent->pages = pages;
389 async_extent->nr_pages = nr_pages;
390 async_extent->compress_type = compress_type;
391 list_add_tail(&async_extent->list, &cow->extents);
395 static inline int inode_need_compress(struct inode *inode, u64 start, u64 end)
397 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
400 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
403 if (BTRFS_I(inode)->defrag_compress)
405 /* bad compression ratios */
406 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
408 if (btrfs_test_opt(fs_info, COMPRESS) ||
409 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
410 BTRFS_I(inode)->prop_compress)
411 return btrfs_compress_heuristic(inode, start, end);
415 static inline void inode_should_defrag(struct btrfs_inode *inode,
416 u64 start, u64 end, u64 num_bytes, u64 small_write)
418 /* If this is a small write inside eof, kick off a defrag */
419 if (num_bytes < small_write &&
420 (start > 0 || end + 1 < inode->disk_i_size))
421 btrfs_add_inode_defrag(NULL, inode);
425 * we create compressed extents in two phases. The first
426 * phase compresses a range of pages that have already been
427 * locked (both pages and state bits are locked).
429 * This is done inside an ordered work queue, and the compression
430 * is spread across many cpus. The actual IO submission is step
431 * two, and the ordered work queue takes care of making sure that
432 * happens in the same order things were put onto the queue by
433 * writepages and friends.
435 * If this code finds it can't get good compression, it puts an
436 * entry onto the work queue to write the uncompressed bytes. This
437 * makes sure that both compressed inodes and uncompressed inodes
438 * are written in the same order that the flusher thread sent them
441 static noinline void compress_file_range(struct inode *inode,
442 struct page *locked_page,
444 struct async_cow *async_cow,
447 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
448 u64 blocksize = fs_info->sectorsize;
450 u64 isize = i_size_read(inode);
452 struct page **pages = NULL;
453 unsigned long nr_pages;
454 unsigned long total_compressed = 0;
455 unsigned long total_in = 0;
458 int compress_type = fs_info->compress_type;
461 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
464 actual_end = min_t(u64, isize, end + 1);
467 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
468 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
469 nr_pages = min_t(unsigned long, nr_pages,
470 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
473 * we don't want to send crud past the end of i_size through
474 * compression, that's just a waste of CPU time. So, if the
475 * end of the file is before the start of our current
476 * requested range of bytes, we bail out to the uncompressed
477 * cleanup code that can deal with all of this.
479 * It isn't really the fastest way to fix things, but this is a
480 * very uncommon corner.
482 if (actual_end <= start)
483 goto cleanup_and_bail_uncompressed;
485 total_compressed = actual_end - start;
488 * skip compression for a small file range(<=blocksize) that
489 * isn't an inline extent, since it doesn't save disk space at all.
491 if (total_compressed <= blocksize &&
492 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
493 goto cleanup_and_bail_uncompressed;
495 total_compressed = min_t(unsigned long, total_compressed,
496 BTRFS_MAX_UNCOMPRESSED);
501 * we do compression for mount -o compress and when the
502 * inode has not been flagged as nocompress. This flag can
503 * change at any time if we discover bad compression ratios.
505 if (inode_need_compress(inode, start, end)) {
507 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
509 /* just bail out to the uncompressed code */
513 if (BTRFS_I(inode)->defrag_compress)
514 compress_type = BTRFS_I(inode)->defrag_compress;
515 else if (BTRFS_I(inode)->prop_compress)
516 compress_type = BTRFS_I(inode)->prop_compress;
519 * we need to call clear_page_dirty_for_io on each
520 * page in the range. Otherwise applications with the file
521 * mmap'd can wander in and change the page contents while
522 * we are compressing them.
524 * If the compression fails for any reason, we set the pages
525 * dirty again later on.
527 * Note that the remaining part is redirtied, the start pointer
528 * has moved, the end is the original one.
531 extent_range_clear_dirty_for_io(inode, start, end);
535 /* Compression level is applied here and only here */
536 ret = btrfs_compress_pages(
537 compress_type | (fs_info->compress_level << 4),
538 inode->i_mapping, start,
545 unsigned long offset = total_compressed &
547 struct page *page = pages[nr_pages - 1];
550 /* zero the tail end of the last page, we might be
551 * sending it down to disk
554 kaddr = kmap_atomic(page);
555 memset(kaddr + offset, 0,
557 kunmap_atomic(kaddr);
564 /* lets try to make an inline extent */
565 if (ret || total_in < actual_end) {
566 /* we didn't compress the entire range, try
567 * to make an uncompressed inline extent.
569 ret = cow_file_range_inline(inode, start, end, 0,
570 BTRFS_COMPRESS_NONE, NULL);
572 /* try making a compressed inline extent */
573 ret = cow_file_range_inline(inode, start, end,
575 compress_type, pages);
578 unsigned long clear_flags = EXTENT_DELALLOC |
579 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
580 EXTENT_DO_ACCOUNTING;
581 unsigned long page_error_op;
583 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
586 * inline extent creation worked or returned error,
587 * we don't need to create any more async work items.
588 * Unlock and free up our temp pages.
590 * We use DO_ACCOUNTING here because we need the
591 * delalloc_release_metadata to be done _after_ we drop
592 * our outstanding extent for clearing delalloc for this
595 extent_clear_unlock_delalloc(inode, start, end, end,
608 * we aren't doing an inline extent round the compressed size
609 * up to a block size boundary so the allocator does sane
612 total_compressed = ALIGN(total_compressed, blocksize);
615 * one last check to make sure the compression is really a
616 * win, compare the page count read with the blocks on disk,
617 * compression must free at least one sector size
619 total_in = ALIGN(total_in, PAGE_SIZE);
620 if (total_compressed + blocksize <= total_in) {
624 * The async work queues will take care of doing actual
625 * allocation on disk for these compressed pages, and
626 * will submit them to the elevator.
628 add_async_extent(async_cow, start, total_in,
629 total_compressed, pages, nr_pages,
632 if (start + total_in < end) {
643 * the compression code ran but failed to make things smaller,
644 * free any pages it allocated and our page pointer array
646 for (i = 0; i < nr_pages; i++) {
647 WARN_ON(pages[i]->mapping);
652 total_compressed = 0;
655 /* flag the file so we don't compress in the future */
656 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
657 !(BTRFS_I(inode)->prop_compress)) {
658 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
661 cleanup_and_bail_uncompressed:
663 * No compression, but we still need to write the pages in the file
664 * we've been given so far. redirty the locked page if it corresponds
665 * to our extent and set things up for the async work queue to run
666 * cow_file_range to do the normal delalloc dance.
668 if (page_offset(locked_page) >= start &&
669 page_offset(locked_page) <= end)
670 __set_page_dirty_nobuffers(locked_page);
671 /* unlocked later on in the async handlers */
674 extent_range_redirty_for_io(inode, start, end);
675 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
676 BTRFS_COMPRESS_NONE);
682 for (i = 0; i < nr_pages; i++) {
683 WARN_ON(pages[i]->mapping);
689 static void free_async_extent_pages(struct async_extent *async_extent)
693 if (!async_extent->pages)
696 for (i = 0; i < async_extent->nr_pages; i++) {
697 WARN_ON(async_extent->pages[i]->mapping);
698 put_page(async_extent->pages[i]);
700 kfree(async_extent->pages);
701 async_extent->nr_pages = 0;
702 async_extent->pages = NULL;
706 * phase two of compressed writeback. This is the ordered portion
707 * of the code, which only gets called in the order the work was
708 * queued. We walk all the async extents created by compress_file_range
709 * and send them down to the disk.
711 static noinline void submit_compressed_extents(struct inode *inode,
712 struct async_cow *async_cow)
714 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
715 struct async_extent *async_extent;
717 struct btrfs_key ins;
718 struct extent_map *em;
719 struct btrfs_root *root = BTRFS_I(inode)->root;
720 struct extent_io_tree *io_tree;
724 while (!list_empty(&async_cow->extents)) {
725 async_extent = list_entry(async_cow->extents.next,
726 struct async_extent, list);
727 list_del(&async_extent->list);
729 io_tree = &BTRFS_I(inode)->io_tree;
732 /* did the compression code fall back to uncompressed IO? */
733 if (!async_extent->pages) {
734 int page_started = 0;
735 unsigned long nr_written = 0;
737 lock_extent(io_tree, async_extent->start,
738 async_extent->start +
739 async_extent->ram_size - 1);
741 /* allocate blocks */
742 ret = cow_file_range(inode, async_cow->locked_page,
744 async_extent->start +
745 async_extent->ram_size - 1,
746 async_extent->start +
747 async_extent->ram_size - 1,
748 &page_started, &nr_written, 0,
754 * if page_started, cow_file_range inserted an
755 * inline extent and took care of all the unlocking
756 * and IO for us. Otherwise, we need to submit
757 * all those pages down to the drive.
759 if (!page_started && !ret)
760 extent_write_locked_range(inode,
762 async_extent->start +
763 async_extent->ram_size - 1,
766 unlock_page(async_cow->locked_page);
772 lock_extent(io_tree, async_extent->start,
773 async_extent->start + async_extent->ram_size - 1);
775 ret = btrfs_reserve_extent(root, async_extent->ram_size,
776 async_extent->compressed_size,
777 async_extent->compressed_size,
778 0, alloc_hint, &ins, 1, 1);
780 free_async_extent_pages(async_extent);
782 if (ret == -ENOSPC) {
783 unlock_extent(io_tree, async_extent->start,
784 async_extent->start +
785 async_extent->ram_size - 1);
788 * we need to redirty the pages if we decide to
789 * fallback to uncompressed IO, otherwise we
790 * will not submit these pages down to lower
793 extent_range_redirty_for_io(inode,
795 async_extent->start +
796 async_extent->ram_size - 1);
803 * here we're doing allocation and writeback of the
806 em = create_io_em(inode, async_extent->start,
807 async_extent->ram_size, /* len */
808 async_extent->start, /* orig_start */
809 ins.objectid, /* block_start */
810 ins.offset, /* block_len */
811 ins.offset, /* orig_block_len */
812 async_extent->ram_size, /* ram_bytes */
813 async_extent->compress_type,
814 BTRFS_ORDERED_COMPRESSED);
816 /* ret value is not necessary due to void function */
817 goto out_free_reserve;
820 ret = btrfs_add_ordered_extent_compress(inode,
823 async_extent->ram_size,
825 BTRFS_ORDERED_COMPRESSED,
826 async_extent->compress_type);
828 btrfs_drop_extent_cache(BTRFS_I(inode),
830 async_extent->start +
831 async_extent->ram_size - 1, 0);
832 goto out_free_reserve;
834 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
837 * clear dirty, set writeback and unlock the pages.
839 extent_clear_unlock_delalloc(inode, async_extent->start,
840 async_extent->start +
841 async_extent->ram_size - 1,
842 async_extent->start +
843 async_extent->ram_size - 1,
844 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
845 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
847 if (btrfs_submit_compressed_write(inode,
849 async_extent->ram_size,
851 ins.offset, async_extent->pages,
852 async_extent->nr_pages,
853 async_cow->write_flags)) {
854 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
855 struct page *p = async_extent->pages[0];
856 const u64 start = async_extent->start;
857 const u64 end = start + async_extent->ram_size - 1;
859 p->mapping = inode->i_mapping;
860 tree->ops->writepage_end_io_hook(p, start, end,
863 extent_clear_unlock_delalloc(inode, start, end, end,
867 free_async_extent_pages(async_extent);
869 alloc_hint = ins.objectid + ins.offset;
875 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
876 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
878 extent_clear_unlock_delalloc(inode, async_extent->start,
879 async_extent->start +
880 async_extent->ram_size - 1,
881 async_extent->start +
882 async_extent->ram_size - 1,
883 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
884 EXTENT_DELALLOC_NEW |
885 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
886 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
887 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
889 free_async_extent_pages(async_extent);
894 static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
897 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
898 struct extent_map *em;
901 read_lock(&em_tree->lock);
902 em = search_extent_mapping(em_tree, start, num_bytes);
905 * if block start isn't an actual block number then find the
906 * first block in this inode and use that as a hint. If that
907 * block is also bogus then just don't worry about it.
909 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
911 em = search_extent_mapping(em_tree, 0, 0);
912 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
913 alloc_hint = em->block_start;
917 alloc_hint = em->block_start;
921 read_unlock(&em_tree->lock);
927 * when extent_io.c finds a delayed allocation range in the file,
928 * the call backs end up in this code. The basic idea is to
929 * allocate extents on disk for the range, and create ordered data structs
930 * in ram to track those extents.
932 * locked_page is the page that writepage had locked already. We use
933 * it to make sure we don't do extra locks or unlocks.
935 * *page_started is set to one if we unlock locked_page and do everything
936 * required to start IO on it. It may be clean and already done with
939 static noinline int cow_file_range(struct inode *inode,
940 struct page *locked_page,
941 u64 start, u64 end, u64 delalloc_end,
942 int *page_started, unsigned long *nr_written,
943 int unlock, struct btrfs_dedupe_hash *hash)
945 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
946 struct btrfs_root *root = BTRFS_I(inode)->root;
949 unsigned long ram_size;
950 u64 cur_alloc_size = 0;
951 u64 blocksize = fs_info->sectorsize;
952 struct btrfs_key ins;
953 struct extent_map *em;
955 unsigned long page_ops;
956 bool extent_reserved = false;
959 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
965 num_bytes = ALIGN(end - start + 1, blocksize);
966 num_bytes = max(blocksize, num_bytes);
967 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
969 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
972 /* lets try to make an inline extent */
973 ret = cow_file_range_inline(inode, start, end, 0,
974 BTRFS_COMPRESS_NONE, NULL);
977 * We use DO_ACCOUNTING here because we need the
978 * delalloc_release_metadata to be run _after_ we drop
979 * our outstanding extent for clearing delalloc for this
982 extent_clear_unlock_delalloc(inode, start, end,
984 EXTENT_LOCKED | EXTENT_DELALLOC |
985 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
986 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
987 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
989 *nr_written = *nr_written +
990 (end - start + PAGE_SIZE) / PAGE_SIZE;
993 } else if (ret < 0) {
998 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
999 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1000 start + num_bytes - 1, 0);
1002 while (num_bytes > 0) {
1003 cur_alloc_size = num_bytes;
1004 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
1005 fs_info->sectorsize, 0, alloc_hint,
1009 cur_alloc_size = ins.offset;
1010 extent_reserved = true;
1012 ram_size = ins.offset;
1013 em = create_io_em(inode, start, ins.offset, /* len */
1014 start, /* orig_start */
1015 ins.objectid, /* block_start */
1016 ins.offset, /* block_len */
1017 ins.offset, /* orig_block_len */
1018 ram_size, /* ram_bytes */
1019 BTRFS_COMPRESS_NONE, /* compress_type */
1020 BTRFS_ORDERED_REGULAR /* type */);
1023 free_extent_map(em);
1025 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
1026 ram_size, cur_alloc_size, 0);
1028 goto out_drop_extent_cache;
1030 if (root->root_key.objectid ==
1031 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1032 ret = btrfs_reloc_clone_csums(inode, start,
1035 * Only drop cache here, and process as normal.
1037 * We must not allow extent_clear_unlock_delalloc()
1038 * at out_unlock label to free meta of this ordered
1039 * extent, as its meta should be freed by
1040 * btrfs_finish_ordered_io().
1042 * So we must continue until @start is increased to
1043 * skip current ordered extent.
1046 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1047 start + ram_size - 1, 0);
1050 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
1052 /* we're not doing compressed IO, don't unlock the first
1053 * page (which the caller expects to stay locked), don't
1054 * clear any dirty bits and don't set any writeback bits
1056 * Do set the Private2 bit so we know this page was properly
1057 * setup for writepage
1059 page_ops = unlock ? PAGE_UNLOCK : 0;
1060 page_ops |= PAGE_SET_PRIVATE2;
1062 extent_clear_unlock_delalloc(inode, start,
1063 start + ram_size - 1,
1064 delalloc_end, locked_page,
1065 EXTENT_LOCKED | EXTENT_DELALLOC,
1067 if (num_bytes < cur_alloc_size)
1070 num_bytes -= cur_alloc_size;
1071 alloc_hint = ins.objectid + ins.offset;
1072 start += cur_alloc_size;
1073 extent_reserved = false;
1076 * btrfs_reloc_clone_csums() error, since start is increased
1077 * extent_clear_unlock_delalloc() at out_unlock label won't
1078 * free metadata of current ordered extent, we're OK to exit.
1086 out_drop_extent_cache:
1087 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
1089 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
1090 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
1092 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1093 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
1094 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1097 * If we reserved an extent for our delalloc range (or a subrange) and
1098 * failed to create the respective ordered extent, then it means that
1099 * when we reserved the extent we decremented the extent's size from
1100 * the data space_info's bytes_may_use counter and incremented the
1101 * space_info's bytes_reserved counter by the same amount. We must make
1102 * sure extent_clear_unlock_delalloc() does not try to decrement again
1103 * the data space_info's bytes_may_use counter, therefore we do not pass
1104 * it the flag EXTENT_CLEAR_DATA_RESV.
1106 if (extent_reserved) {
1107 extent_clear_unlock_delalloc(inode, start,
1108 start + cur_alloc_size,
1109 start + cur_alloc_size,
1113 start += cur_alloc_size;
1117 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1119 clear_bits | EXTENT_CLEAR_DATA_RESV,
1125 * work queue call back to started compression on a file and pages
1127 static noinline void async_cow_start(struct btrfs_work *work)
1129 struct async_cow *async_cow;
1131 async_cow = container_of(work, struct async_cow, work);
1133 compress_file_range(async_cow->inode, async_cow->locked_page,
1134 async_cow->start, async_cow->end, async_cow,
1136 if (num_added == 0) {
1137 btrfs_add_delayed_iput(async_cow->inode);
1138 async_cow->inode = NULL;
1143 * work queue call back to submit previously compressed pages
1145 static noinline void async_cow_submit(struct btrfs_work *work)
1147 struct btrfs_fs_info *fs_info;
1148 struct async_cow *async_cow;
1149 struct btrfs_root *root;
1150 unsigned long nr_pages;
1152 async_cow = container_of(work, struct async_cow, work);
1154 root = async_cow->root;
1155 fs_info = root->fs_info;
1156 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1160 * atomic_sub_return implies a barrier for waitqueue_active
1162 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
1164 waitqueue_active(&fs_info->async_submit_wait))
1165 wake_up(&fs_info->async_submit_wait);
1167 if (async_cow->inode)
1168 submit_compressed_extents(async_cow->inode, async_cow);
1171 static noinline void async_cow_free(struct btrfs_work *work)
1173 struct async_cow *async_cow;
1174 async_cow = container_of(work, struct async_cow, work);
1175 if (async_cow->inode)
1176 btrfs_add_delayed_iput(async_cow->inode);
1180 static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1181 u64 start, u64 end, int *page_started,
1182 unsigned long *nr_written,
1183 unsigned int write_flags)
1185 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1186 struct async_cow *async_cow;
1187 struct btrfs_root *root = BTRFS_I(inode)->root;
1188 unsigned long nr_pages;
1191 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1193 while (start < end) {
1194 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
1195 BUG_ON(!async_cow); /* -ENOMEM */
1196 async_cow->inode = igrab(inode);
1197 async_cow->root = root;
1198 async_cow->locked_page = locked_page;
1199 async_cow->start = start;
1200 async_cow->write_flags = write_flags;
1202 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
1203 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
1206 cur_end = min(end, start + SZ_512K - 1);
1208 async_cow->end = cur_end;
1209 INIT_LIST_HEAD(&async_cow->extents);
1211 btrfs_init_work(&async_cow->work,
1212 btrfs_delalloc_helper,
1213 async_cow_start, async_cow_submit,
1216 nr_pages = (cur_end - start + PAGE_SIZE) >>
1218 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
1220 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
1222 *nr_written += nr_pages;
1223 start = cur_end + 1;
1229 static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
1230 u64 bytenr, u64 num_bytes)
1233 struct btrfs_ordered_sum *sums;
1236 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
1237 bytenr + num_bytes - 1, &list, 0);
1238 if (ret == 0 && list_empty(&list))
1241 while (!list_empty(&list)) {
1242 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1243 list_del(&sums->list);
1252 * when nowcow writeback call back. This checks for snapshots or COW copies
1253 * of the extents that exist in the file, and COWs the file as required.
1255 * If no cow copies or snapshots exist, we write directly to the existing
1258 static noinline int run_delalloc_nocow(struct inode *inode,
1259 struct page *locked_page,
1260 u64 start, u64 end, int *page_started, int force,
1261 unsigned long *nr_written)
1263 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1264 struct btrfs_root *root = BTRFS_I(inode)->root;
1265 struct extent_buffer *leaf;
1266 struct btrfs_path *path;
1267 struct btrfs_file_extent_item *fi;
1268 struct btrfs_key found_key;
1269 struct extent_map *em;
1284 u64 ino = btrfs_ino(BTRFS_I(inode));
1286 path = btrfs_alloc_path();
1288 extent_clear_unlock_delalloc(inode, start, end, end,
1290 EXTENT_LOCKED | EXTENT_DELALLOC |
1291 EXTENT_DO_ACCOUNTING |
1292 EXTENT_DEFRAG, PAGE_UNLOCK |
1294 PAGE_SET_WRITEBACK |
1295 PAGE_END_WRITEBACK);
1299 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
1301 cow_start = (u64)-1;
1304 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
1308 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1309 leaf = path->nodes[0];
1310 btrfs_item_key_to_cpu(leaf, &found_key,
1311 path->slots[0] - 1);
1312 if (found_key.objectid == ino &&
1313 found_key.type == BTRFS_EXTENT_DATA_KEY)
1318 leaf = path->nodes[0];
1319 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1320 ret = btrfs_next_leaf(root, path);
1322 if (cow_start != (u64)-1)
1323 cur_offset = cow_start;
1328 leaf = path->nodes[0];
1334 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1336 if (found_key.objectid > ino)
1338 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1339 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1343 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
1344 found_key.offset > end)
1347 if (found_key.offset > cur_offset) {
1348 extent_end = found_key.offset;
1353 fi = btrfs_item_ptr(leaf, path->slots[0],
1354 struct btrfs_file_extent_item);
1355 extent_type = btrfs_file_extent_type(leaf, fi);
1357 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
1358 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1359 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1360 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1361 extent_offset = btrfs_file_extent_offset(leaf, fi);
1362 extent_end = found_key.offset +
1363 btrfs_file_extent_num_bytes(leaf, fi);
1365 btrfs_file_extent_disk_num_bytes(leaf, fi);
1366 if (extent_end <= start) {
1370 if (disk_bytenr == 0)
1372 if (btrfs_file_extent_compression(leaf, fi) ||
1373 btrfs_file_extent_encryption(leaf, fi) ||
1374 btrfs_file_extent_other_encoding(leaf, fi))
1376 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1378 if (btrfs_extent_readonly(fs_info, disk_bytenr))
1380 ret = btrfs_cross_ref_exist(root, ino,
1382 extent_offset, disk_bytenr);
1385 * ret could be -EIO if the above fails to read
1389 if (cow_start != (u64)-1)
1390 cur_offset = cow_start;
1394 WARN_ON_ONCE(nolock);
1397 disk_bytenr += extent_offset;
1398 disk_bytenr += cur_offset - found_key.offset;
1399 num_bytes = min(end + 1, extent_end) - cur_offset;
1401 * if there are pending snapshots for this root,
1402 * we fall into common COW way.
1405 err = btrfs_start_write_no_snapshotting(root);
1410 * force cow if csum exists in the range.
1411 * this ensure that csum for a given extent are
1412 * either valid or do not exist.
1414 ret = csum_exist_in_range(fs_info, disk_bytenr,
1418 btrfs_end_write_no_snapshotting(root);
1421 * ret could be -EIO if the above fails to read
1425 if (cow_start != (u64)-1)
1426 cur_offset = cow_start;
1429 WARN_ON_ONCE(nolock);
1432 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr)) {
1434 btrfs_end_write_no_snapshotting(root);
1438 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1439 extent_end = found_key.offset +
1440 btrfs_file_extent_inline_len(leaf,
1441 path->slots[0], fi);
1442 extent_end = ALIGN(extent_end,
1443 fs_info->sectorsize);
1448 if (extent_end <= start) {
1450 if (!nolock && nocow)
1451 btrfs_end_write_no_snapshotting(root);
1453 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1457 if (cow_start == (u64)-1)
1458 cow_start = cur_offset;
1459 cur_offset = extent_end;
1460 if (cur_offset > end)
1466 btrfs_release_path(path);
1467 if (cow_start != (u64)-1) {
1468 ret = cow_file_range(inode, locked_page,
1469 cow_start, found_key.offset - 1,
1470 end, page_started, nr_written, 1,
1473 if (!nolock && nocow)
1474 btrfs_end_write_no_snapshotting(root);
1476 btrfs_dec_nocow_writers(fs_info,
1480 cow_start = (u64)-1;
1483 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1484 u64 orig_start = found_key.offset - extent_offset;
1486 em = create_io_em(inode, cur_offset, num_bytes,
1488 disk_bytenr, /* block_start */
1489 num_bytes, /* block_len */
1490 disk_num_bytes, /* orig_block_len */
1491 ram_bytes, BTRFS_COMPRESS_NONE,
1492 BTRFS_ORDERED_PREALLOC);
1494 if (!nolock && nocow)
1495 btrfs_end_write_no_snapshotting(root);
1497 btrfs_dec_nocow_writers(fs_info,
1502 free_extent_map(em);
1505 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1506 type = BTRFS_ORDERED_PREALLOC;
1508 type = BTRFS_ORDERED_NOCOW;
1511 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
1512 num_bytes, num_bytes, type);
1514 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1515 BUG_ON(ret); /* -ENOMEM */
1517 if (root->root_key.objectid ==
1518 BTRFS_DATA_RELOC_TREE_OBJECTID)
1520 * Error handled later, as we must prevent
1521 * extent_clear_unlock_delalloc() in error handler
1522 * from freeing metadata of created ordered extent.
1524 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1527 extent_clear_unlock_delalloc(inode, cur_offset,
1528 cur_offset + num_bytes - 1, end,
1529 locked_page, EXTENT_LOCKED |
1531 EXTENT_CLEAR_DATA_RESV,
1532 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1534 if (!nolock && nocow)
1535 btrfs_end_write_no_snapshotting(root);
1536 cur_offset = extent_end;
1539 * btrfs_reloc_clone_csums() error, now we're OK to call error
1540 * handler, as metadata for created ordered extent will only
1541 * be freed by btrfs_finish_ordered_io().
1545 if (cur_offset > end)
1548 btrfs_release_path(path);
1550 if (cur_offset <= end && cow_start == (u64)-1) {
1551 cow_start = cur_offset;
1555 if (cow_start != (u64)-1) {
1556 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1557 page_started, nr_written, 1, NULL);
1563 if (ret && cur_offset < end)
1564 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
1565 locked_page, EXTENT_LOCKED |
1566 EXTENT_DELALLOC | EXTENT_DEFRAG |
1567 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1569 PAGE_SET_WRITEBACK |
1570 PAGE_END_WRITEBACK);
1571 btrfs_free_path(path);
1575 static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1578 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1579 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1583 * @defrag_bytes is a hint value, no spinlock held here,
1584 * if is not zero, it means the file is defragging.
1585 * Force cow if given extent needs to be defragged.
1587 if (BTRFS_I(inode)->defrag_bytes &&
1588 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1589 EXTENT_DEFRAG, 0, NULL))
1596 * extent_io.c call back to do delayed allocation processing
1598 static int run_delalloc_range(void *private_data, struct page *locked_page,
1599 u64 start, u64 end, int *page_started,
1600 unsigned long *nr_written,
1601 struct writeback_control *wbc)
1603 struct inode *inode = private_data;
1605 int force_cow = need_force_cow(inode, start, end);
1606 unsigned int write_flags = wbc_to_write_flags(wbc);
1608 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
1609 ret = run_delalloc_nocow(inode, locked_page, start, end,
1610 page_started, 1, nr_written);
1611 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
1612 ret = run_delalloc_nocow(inode, locked_page, start, end,
1613 page_started, 0, nr_written);
1614 } else if (!inode_need_compress(inode, start, end)) {
1615 ret = cow_file_range(inode, locked_page, start, end, end,
1616 page_started, nr_written, 1, NULL);
1618 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1619 &BTRFS_I(inode)->runtime_flags);
1620 ret = cow_file_range_async(inode, locked_page, start, end,
1621 page_started, nr_written,
1625 btrfs_cleanup_ordered_extents(inode, start, end - start + 1);
1629 static void btrfs_split_extent_hook(void *private_data,
1630 struct extent_state *orig, u64 split)
1632 struct inode *inode = private_data;
1635 /* not delalloc, ignore it */
1636 if (!(orig->state & EXTENT_DELALLOC))
1639 size = orig->end - orig->start + 1;
1640 if (size > BTRFS_MAX_EXTENT_SIZE) {
1645 * See the explanation in btrfs_merge_extent_hook, the same
1646 * applies here, just in reverse.
1648 new_size = orig->end - split + 1;
1649 num_extents = count_max_extents(new_size);
1650 new_size = split - orig->start;
1651 num_extents += count_max_extents(new_size);
1652 if (count_max_extents(size) >= num_extents)
1656 spin_lock(&BTRFS_I(inode)->lock);
1657 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
1658 spin_unlock(&BTRFS_I(inode)->lock);
1662 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1663 * extents so we can keep track of new extents that are just merged onto old
1664 * extents, such as when we are doing sequential writes, so we can properly
1665 * account for the metadata space we'll need.
1667 static void btrfs_merge_extent_hook(void *private_data,
1668 struct extent_state *new,
1669 struct extent_state *other)
1671 struct inode *inode = private_data;
1672 u64 new_size, old_size;
1675 /* not delalloc, ignore it */
1676 if (!(other->state & EXTENT_DELALLOC))
1679 if (new->start > other->start)
1680 new_size = new->end - other->start + 1;
1682 new_size = other->end - new->start + 1;
1684 /* we're not bigger than the max, unreserve the space and go */
1685 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1686 spin_lock(&BTRFS_I(inode)->lock);
1687 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
1688 spin_unlock(&BTRFS_I(inode)->lock);
1693 * We have to add up either side to figure out how many extents were
1694 * accounted for before we merged into one big extent. If the number of
1695 * extents we accounted for is <= the amount we need for the new range
1696 * then we can return, otherwise drop. Think of it like this
1700 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1701 * need 2 outstanding extents, on one side we have 1 and the other side
1702 * we have 1 so they are == and we can return. But in this case
1704 * [MAX_SIZE+4k][MAX_SIZE+4k]
1706 * Each range on their own accounts for 2 extents, but merged together
1707 * they are only 3 extents worth of accounting, so we need to drop in
1710 old_size = other->end - other->start + 1;
1711 num_extents = count_max_extents(old_size);
1712 old_size = new->end - new->start + 1;
1713 num_extents += count_max_extents(old_size);
1714 if (count_max_extents(new_size) >= num_extents)
1717 spin_lock(&BTRFS_I(inode)->lock);
1718 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
1719 spin_unlock(&BTRFS_I(inode)->lock);
1722 static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1723 struct inode *inode)
1725 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1727 spin_lock(&root->delalloc_lock);
1728 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1729 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1730 &root->delalloc_inodes);
1731 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1732 &BTRFS_I(inode)->runtime_flags);
1733 root->nr_delalloc_inodes++;
1734 if (root->nr_delalloc_inodes == 1) {
1735 spin_lock(&fs_info->delalloc_root_lock);
1736 BUG_ON(!list_empty(&root->delalloc_root));
1737 list_add_tail(&root->delalloc_root,
1738 &fs_info->delalloc_roots);
1739 spin_unlock(&fs_info->delalloc_root_lock);
1742 spin_unlock(&root->delalloc_lock);
1746 void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1747 struct btrfs_inode *inode)
1749 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1751 if (!list_empty(&inode->delalloc_inodes)) {
1752 list_del_init(&inode->delalloc_inodes);
1753 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1754 &inode->runtime_flags);
1755 root->nr_delalloc_inodes--;
1756 if (!root->nr_delalloc_inodes) {
1757 spin_lock(&fs_info->delalloc_root_lock);
1758 BUG_ON(list_empty(&root->delalloc_root));
1759 list_del_init(&root->delalloc_root);
1760 spin_unlock(&fs_info->delalloc_root_lock);
1765 static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1766 struct btrfs_inode *inode)
1768 spin_lock(&root->delalloc_lock);
1769 __btrfs_del_delalloc_inode(root, inode);
1770 spin_unlock(&root->delalloc_lock);
1774 * extent_io.c set_bit_hook, used to track delayed allocation
1775 * bytes in this file, and to maintain the list of inodes that
1776 * have pending delalloc work to be done.
1778 static void btrfs_set_bit_hook(void *private_data,
1779 struct extent_state *state, unsigned *bits)
1781 struct inode *inode = private_data;
1783 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1785 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1788 * set_bit and clear bit hooks normally require _irqsave/restore
1789 * but in this case, we are only testing for the DELALLOC
1790 * bit, which is only set or cleared with irqs on
1792 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
1793 struct btrfs_root *root = BTRFS_I(inode)->root;
1794 u64 len = state->end + 1 - state->start;
1795 u32 num_extents = count_max_extents(len);
1796 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
1798 spin_lock(&BTRFS_I(inode)->lock);
1799 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1800 spin_unlock(&BTRFS_I(inode)->lock);
1802 /* For sanity tests */
1803 if (btrfs_is_testing(fs_info))
1806 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1807 fs_info->delalloc_batch);
1808 spin_lock(&BTRFS_I(inode)->lock);
1809 BTRFS_I(inode)->delalloc_bytes += len;
1810 if (*bits & EXTENT_DEFRAG)
1811 BTRFS_I(inode)->defrag_bytes += len;
1812 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1813 &BTRFS_I(inode)->runtime_flags))
1814 btrfs_add_delalloc_inodes(root, inode);
1815 spin_unlock(&BTRFS_I(inode)->lock);
1818 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1819 (*bits & EXTENT_DELALLOC_NEW)) {
1820 spin_lock(&BTRFS_I(inode)->lock);
1821 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1823 spin_unlock(&BTRFS_I(inode)->lock);
1828 * extent_io.c clear_bit_hook, see set_bit_hook for why
1830 static void btrfs_clear_bit_hook(void *private_data,
1831 struct extent_state *state,
1834 struct btrfs_inode *inode = BTRFS_I((struct inode *)private_data);
1835 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1836 u64 len = state->end + 1 - state->start;
1837 u32 num_extents = count_max_extents(len);
1839 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1840 spin_lock(&inode->lock);
1841 inode->defrag_bytes -= len;
1842 spin_unlock(&inode->lock);
1846 * set_bit and clear bit hooks normally require _irqsave/restore
1847 * but in this case, we are only testing for the DELALLOC
1848 * bit, which is only set or cleared with irqs on
1850 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
1851 struct btrfs_root *root = inode->root;
1852 bool do_list = !btrfs_is_free_space_inode(inode);
1854 spin_lock(&inode->lock);
1855 btrfs_mod_outstanding_extents(inode, -num_extents);
1856 spin_unlock(&inode->lock);
1859 * We don't reserve metadata space for space cache inodes so we
1860 * don't need to call dellalloc_release_metadata if there is an
1863 if (*bits & EXTENT_CLEAR_META_RESV &&
1864 root != fs_info->tree_root)
1865 btrfs_delalloc_release_metadata(inode, len, false);
1867 /* For sanity tests. */
1868 if (btrfs_is_testing(fs_info))
1871 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1872 do_list && !(state->state & EXTENT_NORESERVE) &&
1873 (*bits & EXTENT_CLEAR_DATA_RESV))
1874 btrfs_free_reserved_data_space_noquota(
1878 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1879 fs_info->delalloc_batch);
1880 spin_lock(&inode->lock);
1881 inode->delalloc_bytes -= len;
1882 if (do_list && inode->delalloc_bytes == 0 &&
1883 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1884 &inode->runtime_flags))
1885 btrfs_del_delalloc_inode(root, inode);
1886 spin_unlock(&inode->lock);
1889 if ((state->state & EXTENT_DELALLOC_NEW) &&
1890 (*bits & EXTENT_DELALLOC_NEW)) {
1891 spin_lock(&inode->lock);
1892 ASSERT(inode->new_delalloc_bytes >= len);
1893 inode->new_delalloc_bytes -= len;
1894 spin_unlock(&inode->lock);
1899 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1900 * we don't create bios that span stripes or chunks
1902 * return 1 if page cannot be merged to bio
1903 * return 0 if page can be merged to bio
1904 * return error otherwise
1906 int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
1907 size_t size, struct bio *bio,
1908 unsigned long bio_flags)
1910 struct inode *inode = page->mapping->host;
1911 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1912 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
1917 if (bio_flags & EXTENT_BIO_COMPRESSED)
1920 length = bio->bi_iter.bi_size;
1921 map_length = length;
1922 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1926 if (map_length < length + size)
1932 * in order to insert checksums into the metadata in large chunks,
1933 * we wait until bio submission time. All the pages in the bio are
1934 * checksummed and sums are attached onto the ordered extent record.
1936 * At IO completion time the cums attached on the ordered extent record
1937 * are inserted into the btree
1939 static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
1942 struct inode *inode = private_data;
1943 blk_status_t ret = 0;
1945 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
1946 BUG_ON(ret); /* -ENOMEM */
1951 * in order to insert checksums into the metadata in large chunks,
1952 * we wait until bio submission time. All the pages in the bio are
1953 * checksummed and sums are attached onto the ordered extent record.
1955 * At IO completion time the cums attached on the ordered extent record
1956 * are inserted into the btree
1958 static blk_status_t btrfs_submit_bio_done(void *private_data, struct bio *bio,
1961 struct inode *inode = private_data;
1962 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1965 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
1967 bio->bi_status = ret;
1974 * extent_io.c submission hook. This does the right thing for csum calculation
1975 * on write, or reading the csums from the tree before a read.
1977 * Rules about async/sync submit,
1978 * a) read: sync submit
1980 * b) write without checksum: sync submit
1982 * c) write with checksum:
1983 * c-1) if bio is issued by fsync: sync submit
1984 * (sync_writers != 0)
1986 * c-2) if root is reloc root: sync submit
1987 * (only in case of buffered IO)
1989 * c-3) otherwise: async submit
1991 static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
1992 int mirror_num, unsigned long bio_flags,
1995 struct inode *inode = private_data;
1996 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1997 struct btrfs_root *root = BTRFS_I(inode)->root;
1998 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
1999 blk_status_t ret = 0;
2001 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
2003 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
2005 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
2006 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
2008 if (bio_op(bio) != REQ_OP_WRITE) {
2009 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
2013 if (bio_flags & EXTENT_BIO_COMPRESSED) {
2014 ret = btrfs_submit_compressed_read(inode, bio,
2018 } else if (!skip_sum) {
2019 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
2024 } else if (async && !skip_sum) {
2025 /* csum items have already been cloned */
2026 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2028 /* we're doing a write, do the async checksumming */
2029 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
2031 btrfs_submit_bio_start,
2032 btrfs_submit_bio_done);
2034 } else if (!skip_sum) {
2035 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
2041 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
2045 bio->bi_status = ret;
2052 * given a list of ordered sums record them in the inode. This happens
2053 * at IO completion time based on sums calculated at bio submission time.
2055 static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
2056 struct inode *inode, struct list_head *list)
2058 struct btrfs_ordered_sum *sum;
2061 list_for_each_entry(sum, list, list) {
2062 trans->adding_csums = true;
2063 ret = btrfs_csum_file_blocks(trans,
2064 BTRFS_I(inode)->root->fs_info->csum_root, sum);
2065 trans->adding_csums = false;
2072 int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
2073 unsigned int extra_bits,
2074 struct extent_state **cached_state, int dedupe)
2076 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
2077 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
2078 extra_bits, cached_state);
2081 /* see btrfs_writepage_start_hook for details on why this is required */
2082 struct btrfs_writepage_fixup {
2084 struct btrfs_work work;
2087 static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
2089 struct btrfs_writepage_fixup *fixup;
2090 struct btrfs_ordered_extent *ordered;
2091 struct extent_state *cached_state = NULL;
2092 struct extent_changeset *data_reserved = NULL;
2094 struct inode *inode;
2099 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2103 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2104 ClearPageChecked(page);
2108 inode = page->mapping->host;
2109 page_start = page_offset(page);
2110 page_end = page_offset(page) + PAGE_SIZE - 1;
2112 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
2115 /* already ordered? We're done */
2116 if (PagePrivate2(page))
2119 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
2122 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
2123 page_end, &cached_state);
2125 btrfs_start_ordered_extent(inode, ordered, 1);
2126 btrfs_put_ordered_extent(ordered);
2130 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
2133 mapping_set_error(page->mapping, ret);
2134 end_extent_writepage(page, ret, page_start, page_end);
2135 ClearPageChecked(page);
2139 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2142 mapping_set_error(page->mapping, ret);
2143 end_extent_writepage(page, ret, page_start, page_end);
2144 ClearPageChecked(page);
2148 ClearPageChecked(page);
2149 set_page_dirty(page);
2150 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false);
2152 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
2158 extent_changeset_free(data_reserved);
2162 * There are a few paths in the higher layers of the kernel that directly
2163 * set the page dirty bit without asking the filesystem if it is a
2164 * good idea. This causes problems because we want to make sure COW
2165 * properly happens and the data=ordered rules are followed.
2167 * In our case any range that doesn't have the ORDERED bit set
2168 * hasn't been properly setup for IO. We kick off an async process
2169 * to fix it up. The async helper will wait for ordered extents, set
2170 * the delalloc bit and make it safe to write the page.
2172 static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
2174 struct inode *inode = page->mapping->host;
2175 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2176 struct btrfs_writepage_fixup *fixup;
2178 /* this page is properly in the ordered list */
2179 if (TestClearPagePrivate2(page))
2182 if (PageChecked(page))
2185 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2189 SetPageChecked(page);
2191 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2192 btrfs_writepage_fixup_worker, NULL, NULL);
2194 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
2198 static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2199 struct inode *inode, u64 file_pos,
2200 u64 disk_bytenr, u64 disk_num_bytes,
2201 u64 num_bytes, u64 ram_bytes,
2202 u8 compression, u8 encryption,
2203 u16 other_encoding, int extent_type)
2205 struct btrfs_root *root = BTRFS_I(inode)->root;
2206 struct btrfs_file_extent_item *fi;
2207 struct btrfs_path *path;
2208 struct extent_buffer *leaf;
2209 struct btrfs_key ins;
2211 int extent_inserted = 0;
2214 path = btrfs_alloc_path();
2219 * we may be replacing one extent in the tree with another.
2220 * The new extent is pinned in the extent map, and we don't want
2221 * to drop it from the cache until it is completely in the btree.
2223 * So, tell btrfs_drop_extents to leave this extent in the cache.
2224 * the caller is expected to unpin it and allow it to be merged
2227 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2228 file_pos + num_bytes, NULL, 0,
2229 1, sizeof(*fi), &extent_inserted);
2233 if (!extent_inserted) {
2234 ins.objectid = btrfs_ino(BTRFS_I(inode));
2235 ins.offset = file_pos;
2236 ins.type = BTRFS_EXTENT_DATA_KEY;
2238 path->leave_spinning = 1;
2239 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2244 leaf = path->nodes[0];
2245 fi = btrfs_item_ptr(leaf, path->slots[0],
2246 struct btrfs_file_extent_item);
2247 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2248 btrfs_set_file_extent_type(leaf, fi, extent_type);
2249 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2250 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2251 btrfs_set_file_extent_offset(leaf, fi, 0);
2252 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2253 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2254 btrfs_set_file_extent_compression(leaf, fi, compression);
2255 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2256 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
2258 btrfs_mark_buffer_dirty(leaf);
2259 btrfs_release_path(path);
2261 inode_add_bytes(inode, num_bytes);
2263 ins.objectid = disk_bytenr;
2264 ins.offset = disk_num_bytes;
2265 ins.type = BTRFS_EXTENT_ITEM_KEY;
2268 * Release the reserved range from inode dirty range map, as it is
2269 * already moved into delayed_ref_head
2271 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2275 ret = btrfs_alloc_reserved_file_extent(trans, root,
2276 btrfs_ino(BTRFS_I(inode)),
2277 file_pos, qg_released, &ins);
2279 btrfs_free_path(path);
2284 /* snapshot-aware defrag */
2285 struct sa_defrag_extent_backref {
2286 struct rb_node node;
2287 struct old_sa_defrag_extent *old;
2296 struct old_sa_defrag_extent {
2297 struct list_head list;
2298 struct new_sa_defrag_extent *new;
2307 struct new_sa_defrag_extent {
2308 struct rb_root root;
2309 struct list_head head;
2310 struct btrfs_path *path;
2311 struct inode *inode;
2319 static int backref_comp(struct sa_defrag_extent_backref *b1,
2320 struct sa_defrag_extent_backref *b2)
2322 if (b1->root_id < b2->root_id)
2324 else if (b1->root_id > b2->root_id)
2327 if (b1->inum < b2->inum)
2329 else if (b1->inum > b2->inum)
2332 if (b1->file_pos < b2->file_pos)
2334 else if (b1->file_pos > b2->file_pos)
2338 * [------------------------------] ===> (a range of space)
2339 * |<--->| |<---->| =============> (fs/file tree A)
2340 * |<---------------------------->| ===> (fs/file tree B)
2342 * A range of space can refer to two file extents in one tree while
2343 * refer to only one file extent in another tree.
2345 * So we may process a disk offset more than one time(two extents in A)
2346 * and locate at the same extent(one extent in B), then insert two same
2347 * backrefs(both refer to the extent in B).
2352 static void backref_insert(struct rb_root *root,
2353 struct sa_defrag_extent_backref *backref)
2355 struct rb_node **p = &root->rb_node;
2356 struct rb_node *parent = NULL;
2357 struct sa_defrag_extent_backref *entry;
2362 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2364 ret = backref_comp(backref, entry);
2368 p = &(*p)->rb_right;
2371 rb_link_node(&backref->node, parent, p);
2372 rb_insert_color(&backref->node, root);
2376 * Note the backref might has changed, and in this case we just return 0.
2378 static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2381 struct btrfs_file_extent_item *extent;
2382 struct old_sa_defrag_extent *old = ctx;
2383 struct new_sa_defrag_extent *new = old->new;
2384 struct btrfs_path *path = new->path;
2385 struct btrfs_key key;
2386 struct btrfs_root *root;
2387 struct sa_defrag_extent_backref *backref;
2388 struct extent_buffer *leaf;
2389 struct inode *inode = new->inode;
2390 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2396 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2397 inum == btrfs_ino(BTRFS_I(inode)))
2400 key.objectid = root_id;
2401 key.type = BTRFS_ROOT_ITEM_KEY;
2402 key.offset = (u64)-1;
2404 root = btrfs_read_fs_root_no_name(fs_info, &key);
2406 if (PTR_ERR(root) == -ENOENT)
2409 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
2410 inum, offset, root_id);
2411 return PTR_ERR(root);
2414 key.objectid = inum;
2415 key.type = BTRFS_EXTENT_DATA_KEY;
2416 if (offset > (u64)-1 << 32)
2419 key.offset = offset;
2421 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2422 if (WARN_ON(ret < 0))
2429 leaf = path->nodes[0];
2430 slot = path->slots[0];
2432 if (slot >= btrfs_header_nritems(leaf)) {
2433 ret = btrfs_next_leaf(root, path);
2436 } else if (ret > 0) {
2445 btrfs_item_key_to_cpu(leaf, &key, slot);
2447 if (key.objectid > inum)
2450 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2453 extent = btrfs_item_ptr(leaf, slot,
2454 struct btrfs_file_extent_item);
2456 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2460 * 'offset' refers to the exact key.offset,
2461 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2462 * (key.offset - extent_offset).
2464 if (key.offset != offset)
2467 extent_offset = btrfs_file_extent_offset(leaf, extent);
2468 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
2470 if (extent_offset >= old->extent_offset + old->offset +
2471 old->len || extent_offset + num_bytes <=
2472 old->extent_offset + old->offset)
2477 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2483 backref->root_id = root_id;
2484 backref->inum = inum;
2485 backref->file_pos = offset;
2486 backref->num_bytes = num_bytes;
2487 backref->extent_offset = extent_offset;
2488 backref->generation = btrfs_file_extent_generation(leaf, extent);
2490 backref_insert(&new->root, backref);
2493 btrfs_release_path(path);
2498 static noinline bool record_extent_backrefs(struct btrfs_path *path,
2499 struct new_sa_defrag_extent *new)
2501 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
2502 struct old_sa_defrag_extent *old, *tmp;
2507 list_for_each_entry_safe(old, tmp, &new->head, list) {
2508 ret = iterate_inodes_from_logical(old->bytenr +
2509 old->extent_offset, fs_info,
2510 path, record_one_backref,
2512 if (ret < 0 && ret != -ENOENT)
2515 /* no backref to be processed for this extent */
2517 list_del(&old->list);
2522 if (list_empty(&new->head))
2528 static int relink_is_mergable(struct extent_buffer *leaf,
2529 struct btrfs_file_extent_item *fi,
2530 struct new_sa_defrag_extent *new)
2532 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
2535 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2538 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2541 if (btrfs_file_extent_encryption(leaf, fi) ||
2542 btrfs_file_extent_other_encoding(leaf, fi))
2549 * Note the backref might has changed, and in this case we just return 0.
2551 static noinline int relink_extent_backref(struct btrfs_path *path,
2552 struct sa_defrag_extent_backref *prev,
2553 struct sa_defrag_extent_backref *backref)
2555 struct btrfs_file_extent_item *extent;
2556 struct btrfs_file_extent_item *item;
2557 struct btrfs_ordered_extent *ordered;
2558 struct btrfs_trans_handle *trans;
2559 struct btrfs_root *root;
2560 struct btrfs_key key;
2561 struct extent_buffer *leaf;
2562 struct old_sa_defrag_extent *old = backref->old;
2563 struct new_sa_defrag_extent *new = old->new;
2564 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
2565 struct inode *inode;
2566 struct extent_state *cached = NULL;
2575 if (prev && prev->root_id == backref->root_id &&
2576 prev->inum == backref->inum &&
2577 prev->file_pos + prev->num_bytes == backref->file_pos)
2580 /* step 1: get root */
2581 key.objectid = backref->root_id;
2582 key.type = BTRFS_ROOT_ITEM_KEY;
2583 key.offset = (u64)-1;
2585 index = srcu_read_lock(&fs_info->subvol_srcu);
2587 root = btrfs_read_fs_root_no_name(fs_info, &key);
2589 srcu_read_unlock(&fs_info->subvol_srcu, index);
2590 if (PTR_ERR(root) == -ENOENT)
2592 return PTR_ERR(root);
2595 if (btrfs_root_readonly(root)) {
2596 srcu_read_unlock(&fs_info->subvol_srcu, index);
2600 /* step 2: get inode */
2601 key.objectid = backref->inum;
2602 key.type = BTRFS_INODE_ITEM_KEY;
2605 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2606 if (IS_ERR(inode)) {
2607 srcu_read_unlock(&fs_info->subvol_srcu, index);
2611 srcu_read_unlock(&fs_info->subvol_srcu, index);
2613 /* step 3: relink backref */
2614 lock_start = backref->file_pos;
2615 lock_end = backref->file_pos + backref->num_bytes - 1;
2616 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2619 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2621 btrfs_put_ordered_extent(ordered);
2625 trans = btrfs_join_transaction(root);
2626 if (IS_ERR(trans)) {
2627 ret = PTR_ERR(trans);
2631 key.objectid = backref->inum;
2632 key.type = BTRFS_EXTENT_DATA_KEY;
2633 key.offset = backref->file_pos;
2635 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2638 } else if (ret > 0) {
2643 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2644 struct btrfs_file_extent_item);
2646 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2647 backref->generation)
2650 btrfs_release_path(path);
2652 start = backref->file_pos;
2653 if (backref->extent_offset < old->extent_offset + old->offset)
2654 start += old->extent_offset + old->offset -
2655 backref->extent_offset;
2657 len = min(backref->extent_offset + backref->num_bytes,
2658 old->extent_offset + old->offset + old->len);
2659 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2661 ret = btrfs_drop_extents(trans, root, inode, start,
2666 key.objectid = btrfs_ino(BTRFS_I(inode));
2667 key.type = BTRFS_EXTENT_DATA_KEY;
2670 path->leave_spinning = 1;
2672 struct btrfs_file_extent_item *fi;
2674 struct btrfs_key found_key;
2676 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2681 leaf = path->nodes[0];
2682 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2684 fi = btrfs_item_ptr(leaf, path->slots[0],
2685 struct btrfs_file_extent_item);
2686 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2688 if (extent_len + found_key.offset == start &&
2689 relink_is_mergable(leaf, fi, new)) {
2690 btrfs_set_file_extent_num_bytes(leaf, fi,
2692 btrfs_mark_buffer_dirty(leaf);
2693 inode_add_bytes(inode, len);
2699 btrfs_release_path(path);
2704 ret = btrfs_insert_empty_item(trans, root, path, &key,
2707 btrfs_abort_transaction(trans, ret);
2711 leaf = path->nodes[0];
2712 item = btrfs_item_ptr(leaf, path->slots[0],
2713 struct btrfs_file_extent_item);
2714 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2715 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2716 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2717 btrfs_set_file_extent_num_bytes(leaf, item, len);
2718 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2719 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2720 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2721 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2722 btrfs_set_file_extent_encryption(leaf, item, 0);
2723 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2725 btrfs_mark_buffer_dirty(leaf);
2726 inode_add_bytes(inode, len);
2727 btrfs_release_path(path);
2729 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2731 backref->root_id, backref->inum,
2732 new->file_pos); /* start - extent_offset */
2734 btrfs_abort_transaction(trans, ret);
2740 btrfs_release_path(path);
2741 path->leave_spinning = 0;
2742 btrfs_end_transaction(trans);
2744 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2750 static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2752 struct old_sa_defrag_extent *old, *tmp;
2757 list_for_each_entry_safe(old, tmp, &new->head, list) {
2763 static void relink_file_extents(struct new_sa_defrag_extent *new)
2765 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
2766 struct btrfs_path *path;
2767 struct sa_defrag_extent_backref *backref;
2768 struct sa_defrag_extent_backref *prev = NULL;
2769 struct inode *inode;
2770 struct rb_node *node;
2775 path = btrfs_alloc_path();
2779 if (!record_extent_backrefs(path, new)) {
2780 btrfs_free_path(path);
2783 btrfs_release_path(path);
2786 node = rb_first(&new->root);
2789 rb_erase(node, &new->root);
2791 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2793 ret = relink_extent_backref(path, prev, backref);
2806 btrfs_free_path(path);
2808 free_sa_defrag_extent(new);
2810 atomic_dec(&fs_info->defrag_running);
2811 wake_up(&fs_info->transaction_wait);
2814 static struct new_sa_defrag_extent *
2815 record_old_file_extents(struct inode *inode,
2816 struct btrfs_ordered_extent *ordered)
2818 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2819 struct btrfs_root *root = BTRFS_I(inode)->root;
2820 struct btrfs_path *path;
2821 struct btrfs_key key;
2822 struct old_sa_defrag_extent *old;
2823 struct new_sa_defrag_extent *new;
2826 new = kmalloc(sizeof(*new), GFP_NOFS);
2831 new->file_pos = ordered->file_offset;
2832 new->len = ordered->len;
2833 new->bytenr = ordered->start;
2834 new->disk_len = ordered->disk_len;
2835 new->compress_type = ordered->compress_type;
2836 new->root = RB_ROOT;
2837 INIT_LIST_HEAD(&new->head);
2839 path = btrfs_alloc_path();
2843 key.objectid = btrfs_ino(BTRFS_I(inode));
2844 key.type = BTRFS_EXTENT_DATA_KEY;
2845 key.offset = new->file_pos;
2847 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2850 if (ret > 0 && path->slots[0] > 0)
2853 /* find out all the old extents for the file range */
2855 struct btrfs_file_extent_item *extent;
2856 struct extent_buffer *l;
2865 slot = path->slots[0];
2867 if (slot >= btrfs_header_nritems(l)) {
2868 ret = btrfs_next_leaf(root, path);
2876 btrfs_item_key_to_cpu(l, &key, slot);
2878 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
2880 if (key.type != BTRFS_EXTENT_DATA_KEY)
2882 if (key.offset >= new->file_pos + new->len)
2885 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2887 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2888 if (key.offset + num_bytes < new->file_pos)
2891 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2895 extent_offset = btrfs_file_extent_offset(l, extent);
2897 old = kmalloc(sizeof(*old), GFP_NOFS);
2901 offset = max(new->file_pos, key.offset);
2902 end = min(new->file_pos + new->len, key.offset + num_bytes);
2904 old->bytenr = disk_bytenr;
2905 old->extent_offset = extent_offset;
2906 old->offset = offset - key.offset;
2907 old->len = end - offset;
2910 list_add_tail(&old->list, &new->head);
2916 btrfs_free_path(path);
2917 atomic_inc(&fs_info->defrag_running);
2922 btrfs_free_path(path);
2924 free_sa_defrag_extent(new);
2928 static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
2931 struct btrfs_block_group_cache *cache;
2933 cache = btrfs_lookup_block_group(fs_info, start);
2936 spin_lock(&cache->lock);
2937 cache->delalloc_bytes -= len;
2938 spin_unlock(&cache->lock);
2940 btrfs_put_block_group(cache);
2943 /* as ordered data IO finishes, this gets called so we can finish
2944 * an ordered extent if the range of bytes in the file it covers are
2947 static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
2949 struct inode *inode = ordered_extent->inode;
2950 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2951 struct btrfs_root *root = BTRFS_I(inode)->root;
2952 struct btrfs_trans_handle *trans = NULL;
2953 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2954 struct extent_state *cached_state = NULL;
2955 struct new_sa_defrag_extent *new = NULL;
2956 int compress_type = 0;
2958 u64 logical_len = ordered_extent->len;
2960 bool truncated = false;
2961 bool range_locked = false;
2962 bool clear_new_delalloc_bytes = false;
2964 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2965 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2966 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2967 clear_new_delalloc_bytes = true;
2969 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
2971 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2976 btrfs_free_io_failure_record(BTRFS_I(inode),
2977 ordered_extent->file_offset,
2978 ordered_extent->file_offset +
2979 ordered_extent->len - 1);
2981 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2983 logical_len = ordered_extent->truncated_len;
2984 /* Truncated the entire extent, don't bother adding */
2989 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
2990 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
2993 * For mwrite(mmap + memset to write) case, we still reserve
2994 * space for NOCOW range.
2995 * As NOCOW won't cause a new delayed ref, just free the space
2997 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
2998 ordered_extent->len);
2999 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3001 trans = btrfs_join_transaction_nolock(root);
3003 trans = btrfs_join_transaction(root);
3004 if (IS_ERR(trans)) {
3005 ret = PTR_ERR(trans);
3009 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
3010 ret = btrfs_update_inode_fallback(trans, root, inode);
3011 if (ret) /* -ENOMEM or corruption */
3012 btrfs_abort_transaction(trans, ret);
3016 range_locked = true;
3017 lock_extent_bits(io_tree, ordered_extent->file_offset,
3018 ordered_extent->file_offset + ordered_extent->len - 1,
3021 ret = test_range_bit(io_tree, ordered_extent->file_offset,
3022 ordered_extent->file_offset + ordered_extent->len - 1,
3023 EXTENT_DEFRAG, 0, cached_state);
3025 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
3026 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
3027 /* the inode is shared */
3028 new = record_old_file_extents(inode, ordered_extent);
3030 clear_extent_bit(io_tree, ordered_extent->file_offset,
3031 ordered_extent->file_offset + ordered_extent->len - 1,
3032 EXTENT_DEFRAG, 0, 0, &cached_state);
3036 trans = btrfs_join_transaction_nolock(root);
3038 trans = btrfs_join_transaction(root);
3039 if (IS_ERR(trans)) {
3040 ret = PTR_ERR(trans);
3045 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
3047 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
3048 compress_type = ordered_extent->compress_type;
3049 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
3050 BUG_ON(compress_type);
3051 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3052 ordered_extent->len);
3053 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
3054 ordered_extent->file_offset,
3055 ordered_extent->file_offset +
3058 BUG_ON(root == fs_info->tree_root);
3059 ret = insert_reserved_file_extent(trans, inode,
3060 ordered_extent->file_offset,
3061 ordered_extent->start,
3062 ordered_extent->disk_len,
3063 logical_len, logical_len,
3064 compress_type, 0, 0,
3065 BTRFS_FILE_EXTENT_REG);
3067 btrfs_release_delalloc_bytes(fs_info,