btrfs: use min() to replace open-code in btrfs_invalidatepage()
[platform/kernel/linux-rpi.git] / fs / btrfs / inode.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2007 Oracle.  All rights reserved.
4  */
5
6 #include <crypto/hash.h>
7 #include <linux/kernel.h>
8 #include <linux/bio.h>
9 #include <linux/file.h>
10 #include <linux/fs.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/writeback.h>
18 #include <linux/compat.h>
19 #include <linux/xattr.h>
20 #include <linux/posix_acl.h>
21 #include <linux/falloc.h>
22 #include <linux/slab.h>
23 #include <linux/ratelimit.h>
24 #include <linux/btrfs.h>
25 #include <linux/blkdev.h>
26 #include <linux/posix_acl_xattr.h>
27 #include <linux/uio.h>
28 #include <linux/magic.h>
29 #include <linux/iversion.h>
30 #include <linux/swap.h>
31 #include <linux/migrate.h>
32 #include <linux/sched/mm.h>
33 #include <linux/iomap.h>
34 #include <asm/unaligned.h>
35 #include "misc.h"
36 #include "ctree.h"
37 #include "disk-io.h"
38 #include "transaction.h"
39 #include "btrfs_inode.h"
40 #include "print-tree.h"
41 #include "ordered-data.h"
42 #include "xattr.h"
43 #include "tree-log.h"
44 #include "volumes.h"
45 #include "compression.h"
46 #include "locking.h"
47 #include "free-space-cache.h"
48 #include "props.h"
49 #include "qgroup.h"
50 #include "delalloc-space.h"
51 #include "block-group.h"
52 #include "space-info.h"
53 #include "zoned.h"
54
55 struct btrfs_iget_args {
56         u64 ino;
57         struct btrfs_root *root;
58 };
59
60 struct btrfs_dio_data {
61         u64 reserve;
62         loff_t length;
63         ssize_t submitted;
64         struct extent_changeset *data_reserved;
65 };
66
67 static const struct inode_operations btrfs_dir_inode_operations;
68 static const struct inode_operations btrfs_symlink_inode_operations;
69 static const struct inode_operations btrfs_special_inode_operations;
70 static const struct inode_operations btrfs_file_inode_operations;
71 static const struct address_space_operations btrfs_aops;
72 static const struct file_operations btrfs_dir_file_operations;
73
74 static struct kmem_cache *btrfs_inode_cachep;
75 struct kmem_cache *btrfs_trans_handle_cachep;
76 struct kmem_cache *btrfs_path_cachep;
77 struct kmem_cache *btrfs_free_space_cachep;
78 struct kmem_cache *btrfs_free_space_bitmap_cachep;
79
80 static int btrfs_setsize(struct inode *inode, struct iattr *attr);
81 static int btrfs_truncate(struct inode *inode, bool skip_writeback);
82 static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
83 static noinline int cow_file_range(struct btrfs_inode *inode,
84                                    struct page *locked_page,
85                                    u64 start, u64 end, int *page_started,
86                                    unsigned long *nr_written, int unlock);
87 static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
88                                        u64 len, u64 orig_start, u64 block_start,
89                                        u64 block_len, u64 orig_block_len,
90                                        u64 ram_bytes, int compress_type,
91                                        int type);
92
93 static void __endio_write_update_ordered(struct btrfs_inode *inode,
94                                          const u64 offset, const u64 bytes,
95                                          const bool uptodate);
96
97 /*
98  * btrfs_inode_lock - lock inode i_rwsem based on arguments passed
99  *
100  * ilock_flags can have the following bit set:
101  *
102  * BTRFS_ILOCK_SHARED - acquire a shared lock on the inode
103  * BTRFS_ILOCK_TRY - try to acquire the lock, if fails on first attempt
104  *                   return -EAGAIN
105  * BTRFS_ILOCK_MMAP - acquire a write lock on the i_mmap_lock
106  */
107 int btrfs_inode_lock(struct inode *inode, unsigned int ilock_flags)
108 {
109         if (ilock_flags & BTRFS_ILOCK_SHARED) {
110                 if (ilock_flags & BTRFS_ILOCK_TRY) {
111                         if (!inode_trylock_shared(inode))
112                                 return -EAGAIN;
113                         else
114                                 return 0;
115                 }
116                 inode_lock_shared(inode);
117         } else {
118                 if (ilock_flags & BTRFS_ILOCK_TRY) {
119                         if (!inode_trylock(inode))
120                                 return -EAGAIN;
121                         else
122                                 return 0;
123                 }
124                 inode_lock(inode);
125         }
126         if (ilock_flags & BTRFS_ILOCK_MMAP)
127                 down_write(&BTRFS_I(inode)->i_mmap_lock);
128         return 0;
129 }
130
131 /*
132  * btrfs_inode_unlock - unock inode i_rwsem
133  *
134  * ilock_flags should contain the same bits set as passed to btrfs_inode_lock()
135  * to decide whether the lock acquired is shared or exclusive.
136  */
137 void btrfs_inode_unlock(struct inode *inode, unsigned int ilock_flags)
138 {
139         if (ilock_flags & BTRFS_ILOCK_MMAP)
140                 up_write(&BTRFS_I(inode)->i_mmap_lock);
141         if (ilock_flags & BTRFS_ILOCK_SHARED)
142                 inode_unlock_shared(inode);
143         else
144                 inode_unlock(inode);
145 }
146
147 /*
148  * Cleanup all submitted ordered extents in specified range to handle errors
149  * from the btrfs_run_delalloc_range() callback.
150  *
151  * NOTE: caller must ensure that when an error happens, it can not call
152  * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
153  * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
154  * to be released, which we want to happen only when finishing the ordered
155  * extent (btrfs_finish_ordered_io()).
156  */
157 static inline void btrfs_cleanup_ordered_extents(struct btrfs_inode *inode,
158                                                  struct page *locked_page,
159                                                  u64 offset, u64 bytes)
160 {
161         unsigned long index = offset >> PAGE_SHIFT;
162         unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
163         u64 page_start = page_offset(locked_page);
164         u64 page_end = page_start + PAGE_SIZE - 1;
165
166         struct page *page;
167
168         while (index <= end_index) {
169                 page = find_get_page(inode->vfs_inode.i_mapping, index);
170                 index++;
171                 if (!page)
172                         continue;
173                 ClearPagePrivate2(page);
174                 put_page(page);
175         }
176
177         /*
178          * In case this page belongs to the delalloc range being instantiated
179          * then skip it, since the first page of a range is going to be
180          * properly cleaned up by the caller of run_delalloc_range
181          */
182         if (page_start >= offset && page_end <= (offset + bytes - 1)) {
183                 offset += PAGE_SIZE;
184                 bytes -= PAGE_SIZE;
185         }
186
187         return __endio_write_update_ordered(inode, offset, bytes, false);
188 }
189
190 static int btrfs_dirty_inode(struct inode *inode);
191
192 static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
193                                      struct inode *inode,  struct inode *dir,
194                                      const struct qstr *qstr)
195 {
196         int err;
197
198         err = btrfs_init_acl(trans, inode, dir);
199         if (!err)
200                 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
201         return err;
202 }
203
204 /*
205  * this does all the hard work for inserting an inline extent into
206  * the btree.  The caller should have done a btrfs_drop_extents so that
207  * no overlapping inline items exist in the btree
208  */
209 static int insert_inline_extent(struct btrfs_trans_handle *trans,
210                                 struct btrfs_path *path, bool extent_inserted,
211                                 struct btrfs_root *root, struct inode *inode,
212                                 u64 start, size_t size, size_t compressed_size,
213                                 int compress_type,
214                                 struct page **compressed_pages)
215 {
216         struct extent_buffer *leaf;
217         struct page *page = NULL;
218         char *kaddr;
219         unsigned long ptr;
220         struct btrfs_file_extent_item *ei;
221         int ret;
222         size_t cur_size = size;
223         unsigned long offset;
224
225         ASSERT((compressed_size > 0 && compressed_pages) ||
226                (compressed_size == 0 && !compressed_pages));
227
228         if (compressed_size && compressed_pages)
229                 cur_size = compressed_size;
230
231         if (!extent_inserted) {
232                 struct btrfs_key key;
233                 size_t datasize;
234
235                 key.objectid = btrfs_ino(BTRFS_I(inode));
236                 key.offset = start;
237                 key.type = BTRFS_EXTENT_DATA_KEY;
238
239                 datasize = btrfs_file_extent_calc_inline_size(cur_size);
240                 ret = btrfs_insert_empty_item(trans, root, path, &key,
241                                               datasize);
242                 if (ret)
243                         goto fail;
244         }
245         leaf = path->nodes[0];
246         ei = btrfs_item_ptr(leaf, path->slots[0],
247                             struct btrfs_file_extent_item);
248         btrfs_set_file_extent_generation(leaf, ei, trans->transid);
249         btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
250         btrfs_set_file_extent_encryption(leaf, ei, 0);
251         btrfs_set_file_extent_other_encoding(leaf, ei, 0);
252         btrfs_set_file_extent_ram_bytes(leaf, ei, size);
253         ptr = btrfs_file_extent_inline_start(ei);
254
255         if (compress_type != BTRFS_COMPRESS_NONE) {
256                 struct page *cpage;
257                 int i = 0;
258                 while (compressed_size > 0) {
259                         cpage = compressed_pages[i];
260                         cur_size = min_t(unsigned long, compressed_size,
261                                        PAGE_SIZE);
262
263                         kaddr = kmap_atomic(cpage);
264                         write_extent_buffer(leaf, kaddr, ptr, cur_size);
265                         kunmap_atomic(kaddr);
266
267                         i++;
268                         ptr += cur_size;
269                         compressed_size -= cur_size;
270                 }
271                 btrfs_set_file_extent_compression(leaf, ei,
272                                                   compress_type);
273         } else {
274                 page = find_get_page(inode->i_mapping,
275                                      start >> PAGE_SHIFT);
276                 btrfs_set_file_extent_compression(leaf, ei, 0);
277                 kaddr = kmap_atomic(page);
278                 offset = offset_in_page(start);
279                 write_extent_buffer(leaf, kaddr + offset, ptr, size);
280                 kunmap_atomic(kaddr);
281                 put_page(page);
282         }
283         btrfs_mark_buffer_dirty(leaf);
284         btrfs_release_path(path);
285
286         /*
287          * We align size to sectorsize for inline extents just for simplicity
288          * sake.
289          */
290         size = ALIGN(size, root->fs_info->sectorsize);
291         ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start, size);
292         if (ret)
293                 goto fail;
294
295         /*
296          * we're an inline extent, so nobody can
297          * extend the file past i_size without locking
298          * a page we already have locked.
299          *
300          * We must do any isize and inode updates
301          * before we unlock the pages.  Otherwise we
302          * could end up racing with unlink.
303          */
304         BTRFS_I(inode)->disk_i_size = inode->i_size;
305 fail:
306         return ret;
307 }
308
309
310 /*
311  * conditionally insert an inline extent into the file.  This
312  * does the checks required to make sure the data is small enough
313  * to fit as an inline extent.
314  */
315 static noinline int cow_file_range_inline(struct btrfs_inode *inode, u64 start,
316                                           u64 end, size_t compressed_size,
317                                           int compress_type,
318                                           struct page **compressed_pages)
319 {
320         struct btrfs_drop_extents_args drop_args = { 0 };
321         struct btrfs_root *root = inode->root;
322         struct btrfs_fs_info *fs_info = root->fs_info;
323         struct btrfs_trans_handle *trans;
324         u64 isize = i_size_read(&inode->vfs_inode);
325         u64 actual_end = min(end + 1, isize);
326         u64 inline_len = actual_end - start;
327         u64 aligned_end = ALIGN(end, fs_info->sectorsize);
328         u64 data_len = inline_len;
329         int ret;
330         struct btrfs_path *path;
331
332         if (compressed_size)
333                 data_len = compressed_size;
334
335         if (start > 0 ||
336             actual_end > fs_info->sectorsize ||
337             data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
338             (!compressed_size &&
339             (actual_end & (fs_info->sectorsize - 1)) == 0) ||
340             end + 1 < isize ||
341             data_len > fs_info->max_inline) {
342                 return 1;
343         }
344
345         path = btrfs_alloc_path();
346         if (!path)
347                 return -ENOMEM;
348
349         trans = btrfs_join_transaction(root);
350         if (IS_ERR(trans)) {
351                 btrfs_free_path(path);
352                 return PTR_ERR(trans);
353         }
354         trans->block_rsv = &inode->block_rsv;
355
356         drop_args.path = path;
357         drop_args.start = start;
358         drop_args.end = aligned_end;
359         drop_args.drop_cache = true;
360         drop_args.replace_extent = true;
361
362         if (compressed_size && compressed_pages)
363                 drop_args.extent_item_size = btrfs_file_extent_calc_inline_size(
364                    compressed_size);
365         else
366                 drop_args.extent_item_size = btrfs_file_extent_calc_inline_size(
367                     inline_len);
368
369         ret = btrfs_drop_extents(trans, root, inode, &drop_args);
370         if (ret) {
371                 btrfs_abort_transaction(trans, ret);
372                 goto out;
373         }
374
375         if (isize > actual_end)
376                 inline_len = min_t(u64, isize, actual_end);
377         ret = insert_inline_extent(trans, path, drop_args.extent_inserted,
378                                    root, &inode->vfs_inode, start,
379                                    inline_len, compressed_size,
380                                    compress_type, compressed_pages);
381         if (ret && ret != -ENOSPC) {
382                 btrfs_abort_transaction(trans, ret);
383                 goto out;
384         } else if (ret == -ENOSPC) {
385                 ret = 1;
386                 goto out;
387         }
388
389         btrfs_update_inode_bytes(inode, inline_len, drop_args.bytes_found);
390         ret = btrfs_update_inode(trans, root, inode);
391         if (ret && ret != -ENOSPC) {
392                 btrfs_abort_transaction(trans, ret);
393                 goto out;
394         } else if (ret == -ENOSPC) {
395                 ret = 1;
396                 goto out;
397         }
398
399         set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
400 out:
401         /*
402          * Don't forget to free the reserved space, as for inlined extent
403          * it won't count as data extent, free them directly here.
404          * And at reserve time, it's always aligned to page size, so
405          * just free one page here.
406          */
407         btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
408         btrfs_free_path(path);
409         btrfs_end_transaction(trans);
410         return ret;
411 }
412
413 struct async_extent {
414         u64 start;
415         u64 ram_size;
416         u64 compressed_size;
417         struct page **pages;
418         unsigned long nr_pages;
419         int compress_type;
420         struct list_head list;
421 };
422
423 struct async_chunk {
424         struct inode *inode;
425         struct page *locked_page;
426         u64 start;
427         u64 end;
428         unsigned int write_flags;
429         struct list_head extents;
430         struct cgroup_subsys_state *blkcg_css;
431         struct btrfs_work work;
432         atomic_t *pending;
433 };
434
435 struct async_cow {
436         /* Number of chunks in flight; must be first in the structure */
437         atomic_t num_chunks;
438         struct async_chunk chunks[];
439 };
440
441 static noinline int add_async_extent(struct async_chunk *cow,
442                                      u64 start, u64 ram_size,
443                                      u64 compressed_size,
444                                      struct page **pages,
445                                      unsigned long nr_pages,
446                                      int compress_type)
447 {
448         struct async_extent *async_extent;
449
450         async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
451         BUG_ON(!async_extent); /* -ENOMEM */
452         async_extent->start = start;
453         async_extent->ram_size = ram_size;
454         async_extent->compressed_size = compressed_size;
455         async_extent->pages = pages;
456         async_extent->nr_pages = nr_pages;
457         async_extent->compress_type = compress_type;
458         list_add_tail(&async_extent->list, &cow->extents);
459         return 0;
460 }
461
462 /*
463  * Check if the inode has flags compatible with compression
464  */
465 static inline bool inode_can_compress(struct btrfs_inode *inode)
466 {
467         if (inode->flags & BTRFS_INODE_NODATACOW ||
468             inode->flags & BTRFS_INODE_NODATASUM)
469                 return false;
470         return true;
471 }
472
473 /*
474  * Check if the inode needs to be submitted to compression, based on mount
475  * options, defragmentation, properties or heuristics.
476  */
477 static inline int inode_need_compress(struct btrfs_inode *inode, u64 start,
478                                       u64 end)
479 {
480         struct btrfs_fs_info *fs_info = inode->root->fs_info;
481
482         if (!inode_can_compress(inode)) {
483                 WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG),
484                         KERN_ERR "BTRFS: unexpected compression for ino %llu\n",
485                         btrfs_ino(inode));
486                 return 0;
487         }
488         /* force compress */
489         if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
490                 return 1;
491         /* defrag ioctl */
492         if (inode->defrag_compress)
493                 return 1;
494         /* bad compression ratios */
495         if (inode->flags & BTRFS_INODE_NOCOMPRESS)
496                 return 0;
497         if (btrfs_test_opt(fs_info, COMPRESS) ||
498             inode->flags & BTRFS_INODE_COMPRESS ||
499             inode->prop_compress)
500                 return btrfs_compress_heuristic(&inode->vfs_inode, start, end);
501         return 0;
502 }
503
504 static inline void inode_should_defrag(struct btrfs_inode *inode,
505                 u64 start, u64 end, u64 num_bytes, u64 small_write)
506 {
507         /* If this is a small write inside eof, kick off a defrag */
508         if (num_bytes < small_write &&
509             (start > 0 || end + 1 < inode->disk_i_size))
510                 btrfs_add_inode_defrag(NULL, inode);
511 }
512
513 /*
514  * we create compressed extents in two phases.  The first
515  * phase compresses a range of pages that have already been
516  * locked (both pages and state bits are locked).
517  *
518  * This is done inside an ordered work queue, and the compression
519  * is spread across many cpus.  The actual IO submission is step
520  * two, and the ordered work queue takes care of making sure that
521  * happens in the same order things were put onto the queue by
522  * writepages and friends.
523  *
524  * If this code finds it can't get good compression, it puts an
525  * entry onto the work queue to write the uncompressed bytes.  This
526  * makes sure that both compressed inodes and uncompressed inodes
527  * are written in the same order that the flusher thread sent them
528  * down.
529  */
530 static noinline int compress_file_range(struct async_chunk *async_chunk)
531 {
532         struct inode *inode = async_chunk->inode;
533         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
534         u64 blocksize = fs_info->sectorsize;
535         u64 start = async_chunk->start;
536         u64 end = async_chunk->end;
537         u64 actual_end;
538         u64 i_size;
539         int ret = 0;
540         struct page **pages = NULL;
541         unsigned long nr_pages;
542         unsigned long total_compressed = 0;
543         unsigned long total_in = 0;
544         int i;
545         int will_compress;
546         int compress_type = fs_info->compress_type;
547         int compressed_extents = 0;
548         int redirty = 0;
549
550         inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
551                         SZ_16K);
552
553         /*
554          * We need to save i_size before now because it could change in between
555          * us evaluating the size and assigning it.  This is because we lock and
556          * unlock the page in truncate and fallocate, and then modify the i_size
557          * later on.
558          *
559          * The barriers are to emulate READ_ONCE, remove that once i_size_read
560          * does that for us.
561          */
562         barrier();
563         i_size = i_size_read(inode);
564         barrier();
565         actual_end = min_t(u64, i_size, end + 1);
566 again:
567         will_compress = 0;
568         nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
569         BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
570         nr_pages = min_t(unsigned long, nr_pages,
571                         BTRFS_MAX_COMPRESSED / PAGE_SIZE);
572
573         /*
574          * we don't want to send crud past the end of i_size through
575          * compression, that's just a waste of CPU time.  So, if the
576          * end of the file is before the start of our current
577          * requested range of bytes, we bail out to the uncompressed
578          * cleanup code that can deal with all of this.
579          *
580          * It isn't really the fastest way to fix things, but this is a
581          * very uncommon corner.
582          */
583         if (actual_end <= start)
584                 goto cleanup_and_bail_uncompressed;
585
586         total_compressed = actual_end - start;
587
588         /*
589          * skip compression for a small file range(<=blocksize) that
590          * isn't an inline extent, since it doesn't save disk space at all.
591          */
592         if (total_compressed <= blocksize &&
593            (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
594                 goto cleanup_and_bail_uncompressed;
595
596         total_compressed = min_t(unsigned long, total_compressed,
597                         BTRFS_MAX_UNCOMPRESSED);
598         total_in = 0;
599         ret = 0;
600
601         /*
602          * we do compression for mount -o compress and when the
603          * inode has not been flagged as nocompress.  This flag can
604          * change at any time if we discover bad compression ratios.
605          */
606         if (inode_need_compress(BTRFS_I(inode), start, end)) {
607                 WARN_ON(pages);
608                 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
609                 if (!pages) {
610                         /* just bail out to the uncompressed code */
611                         nr_pages = 0;
612                         goto cont;
613                 }
614
615                 if (BTRFS_I(inode)->defrag_compress)
616                         compress_type = BTRFS_I(inode)->defrag_compress;
617                 else if (BTRFS_I(inode)->prop_compress)
618                         compress_type = BTRFS_I(inode)->prop_compress;
619
620                 /*
621                  * we need to call clear_page_dirty_for_io on each
622                  * page in the range.  Otherwise applications with the file
623                  * mmap'd can wander in and change the page contents while
624                  * we are compressing them.
625                  *
626                  * If the compression fails for any reason, we set the pages
627                  * dirty again later on.
628                  *
629                  * Note that the remaining part is redirtied, the start pointer
630                  * has moved, the end is the original one.
631                  */
632                 if (!redirty) {
633                         extent_range_clear_dirty_for_io(inode, start, end);
634                         redirty = 1;
635                 }
636
637                 /* Compression level is applied here and only here */
638                 ret = btrfs_compress_pages(
639                         compress_type | (fs_info->compress_level << 4),
640                                            inode->i_mapping, start,
641                                            pages,
642                                            &nr_pages,
643                                            &total_in,
644                                            &total_compressed);
645
646                 if (!ret) {
647                         unsigned long offset = offset_in_page(total_compressed);
648                         struct page *page = pages[nr_pages - 1];
649                         char *kaddr;
650
651                         /* zero the tail end of the last page, we might be
652                          * sending it down to disk
653                          */
654                         if (offset) {
655                                 kaddr = kmap_atomic(page);
656                                 memset(kaddr + offset, 0,
657                                        PAGE_SIZE - offset);
658                                 kunmap_atomic(kaddr);
659                         }
660                         will_compress = 1;
661                 }
662         }
663 cont:
664         if (start == 0) {
665                 /* lets try to make an inline extent */
666                 if (ret || total_in < actual_end) {
667                         /* we didn't compress the entire range, try
668                          * to make an uncompressed inline extent.
669                          */
670                         ret = cow_file_range_inline(BTRFS_I(inode), start, end,
671                                                     0, BTRFS_COMPRESS_NONE,
672                                                     NULL);
673                 } else {
674                         /* try making a compressed inline extent */
675                         ret = cow_file_range_inline(BTRFS_I(inode), start, end,
676                                                     total_compressed,
677                                                     compress_type, pages);
678                 }
679                 if (ret <= 0) {
680                         unsigned long clear_flags = EXTENT_DELALLOC |
681                                 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
682                                 EXTENT_DO_ACCOUNTING;
683                         unsigned long page_error_op;
684
685                         page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
686
687                         /*
688                          * inline extent creation worked or returned error,
689                          * we don't need to create any more async work items.
690                          * Unlock and free up our temp pages.
691                          *
692                          * We use DO_ACCOUNTING here because we need the
693                          * delalloc_release_metadata to be done _after_ we drop
694                          * our outstanding extent for clearing delalloc for this
695                          * range.
696                          */
697                         extent_clear_unlock_delalloc(BTRFS_I(inode), start, end,
698                                                      NULL,
699                                                      clear_flags,
700                                                      PAGE_UNLOCK |
701                                                      PAGE_START_WRITEBACK |
702                                                      page_error_op |
703                                                      PAGE_END_WRITEBACK);
704
705                         /*
706                          * Ensure we only free the compressed pages if we have
707                          * them allocated, as we can still reach here with
708                          * inode_need_compress() == false.
709                          */
710                         if (pages) {
711                                 for (i = 0; i < nr_pages; i++) {
712                                         WARN_ON(pages[i]->mapping);
713                                         put_page(pages[i]);
714                                 }
715                                 kfree(pages);
716                         }
717                         return 0;
718                 }
719         }
720
721         if (will_compress) {
722                 /*
723                  * we aren't doing an inline extent round the compressed size
724                  * up to a block size boundary so the allocator does sane
725                  * things
726                  */
727                 total_compressed = ALIGN(total_compressed, blocksize);
728
729                 /*
730                  * one last check to make sure the compression is really a
731                  * win, compare the page count read with the blocks on disk,
732                  * compression must free at least one sector size
733                  */
734                 total_in = ALIGN(total_in, PAGE_SIZE);
735                 if (total_compressed + blocksize <= total_in) {
736                         compressed_extents++;
737
738                         /*
739                          * The async work queues will take care of doing actual
740                          * allocation on disk for these compressed pages, and
741                          * will submit them to the elevator.
742                          */
743                         add_async_extent(async_chunk, start, total_in,
744                                         total_compressed, pages, nr_pages,
745                                         compress_type);
746
747                         if (start + total_in < end) {
748                                 start += total_in;
749                                 pages = NULL;
750                                 cond_resched();
751                                 goto again;
752                         }
753                         return compressed_extents;
754                 }
755         }
756         if (pages) {
757                 /*
758                  * the compression code ran but failed to make things smaller,
759                  * free any pages it allocated and our page pointer array
760                  */
761                 for (i = 0; i < nr_pages; i++) {
762                         WARN_ON(pages[i]->mapping);
763                         put_page(pages[i]);
764                 }
765                 kfree(pages);
766                 pages = NULL;
767                 total_compressed = 0;
768                 nr_pages = 0;
769
770                 /* flag the file so we don't compress in the future */
771                 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
772                     !(BTRFS_I(inode)->prop_compress)) {
773                         BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
774                 }
775         }
776 cleanup_and_bail_uncompressed:
777         /*
778          * No compression, but we still need to write the pages in the file
779          * we've been given so far.  redirty the locked page if it corresponds
780          * to our extent and set things up for the async work queue to run
781          * cow_file_range to do the normal delalloc dance.
782          */
783         if (async_chunk->locked_page &&
784             (page_offset(async_chunk->locked_page) >= start &&
785              page_offset(async_chunk->locked_page)) <= end) {
786                 __set_page_dirty_nobuffers(async_chunk->locked_page);
787                 /* unlocked later on in the async handlers */
788         }
789
790         if (redirty)
791                 extent_range_redirty_for_io(inode, start, end);
792         add_async_extent(async_chunk, start, end - start + 1, 0, NULL, 0,
793                          BTRFS_COMPRESS_NONE);
794         compressed_extents++;
795
796         return compressed_extents;
797 }
798
799 static void free_async_extent_pages(struct async_extent *async_extent)
800 {
801         int i;
802
803         if (!async_extent->pages)
804                 return;
805
806         for (i = 0; i < async_extent->nr_pages; i++) {
807                 WARN_ON(async_extent->pages[i]->mapping);
808                 put_page(async_extent->pages[i]);
809         }
810         kfree(async_extent->pages);
811         async_extent->nr_pages = 0;
812         async_extent->pages = NULL;
813 }
814
815 /*
816  * phase two of compressed writeback.  This is the ordered portion
817  * of the code, which only gets called in the order the work was
818  * queued.  We walk all the async extents created by compress_file_range
819  * and send them down to the disk.
820  */
821 static noinline void submit_compressed_extents(struct async_chunk *async_chunk)
822 {
823         struct btrfs_inode *inode = BTRFS_I(async_chunk->inode);
824         struct btrfs_fs_info *fs_info = inode->root->fs_info;
825         struct async_extent *async_extent;
826         u64 alloc_hint = 0;
827         struct btrfs_key ins;
828         struct extent_map *em;
829         struct btrfs_root *root = inode->root;
830         struct extent_io_tree *io_tree = &inode->io_tree;
831         int ret = 0;
832
833 again:
834         while (!list_empty(&async_chunk->extents)) {
835                 async_extent = list_entry(async_chunk->extents.next,
836                                           struct async_extent, list);
837                 list_del(&async_extent->list);
838
839 retry:
840                 lock_extent(io_tree, async_extent->start,
841                             async_extent->start + async_extent->ram_size - 1);
842                 /* did the compression code fall back to uncompressed IO? */
843                 if (!async_extent->pages) {
844                         int page_started = 0;
845                         unsigned long nr_written = 0;
846
847                         /* allocate blocks */
848                         ret = cow_file_range(inode, async_chunk->locked_page,
849                                              async_extent->start,
850                                              async_extent->start +
851                                              async_extent->ram_size - 1,
852                                              &page_started, &nr_written, 0);
853
854                         /* JDM XXX */
855
856                         /*
857                          * if page_started, cow_file_range inserted an
858                          * inline extent and took care of all the unlocking
859                          * and IO for us.  Otherwise, we need to submit
860                          * all those pages down to the drive.
861                          */
862                         if (!page_started && !ret)
863                                 extent_write_locked_range(&inode->vfs_inode,
864                                                   async_extent->start,
865                                                   async_extent->start +
866                                                   async_extent->ram_size - 1,
867                                                   WB_SYNC_ALL);
868                         else if (ret && async_chunk->locked_page)
869                                 unlock_page(async_chunk->locked_page);
870                         kfree(async_extent);
871                         cond_resched();
872                         continue;
873                 }
874
875                 ret = btrfs_reserve_extent(root, async_extent->ram_size,
876                                            async_extent->compressed_size,
877                                            async_extent->compressed_size,
878                                            0, alloc_hint, &ins, 1, 1);
879                 if (ret) {
880                         free_async_extent_pages(async_extent);
881
882                         if (ret == -ENOSPC) {
883                                 unlock_extent(io_tree, async_extent->start,
884                                               async_extent->start +
885                                               async_extent->ram_size - 1);
886
887                                 /*
888                                  * we need to redirty the pages if we decide to
889                                  * fallback to uncompressed IO, otherwise we
890                                  * will not submit these pages down to lower
891                                  * layers.
892                                  */
893                                 extent_range_redirty_for_io(&inode->vfs_inode,
894                                                 async_extent->start,
895                                                 async_extent->start +
896                                                 async_extent->ram_size - 1);
897
898                                 goto retry;
899                         }
900                         goto out_free;
901                 }
902                 /*
903                  * here we're doing allocation and writeback of the
904                  * compressed pages
905                  */
906                 em = create_io_em(inode, async_extent->start,
907                                   async_extent->ram_size, /* len */
908                                   async_extent->start, /* orig_start */
909                                   ins.objectid, /* block_start */
910                                   ins.offset, /* block_len */
911                                   ins.offset, /* orig_block_len */
912                                   async_extent->ram_size, /* ram_bytes */
913                                   async_extent->compress_type,
914                                   BTRFS_ORDERED_COMPRESSED);
915                 if (IS_ERR(em))
916                         /* ret value is not necessary due to void function */
917                         goto out_free_reserve;
918                 free_extent_map(em);
919
920                 ret = btrfs_add_ordered_extent_compress(inode,
921                                                 async_extent->start,
922                                                 ins.objectid,
923                                                 async_extent->ram_size,
924                                                 ins.offset,
925                                                 async_extent->compress_type);
926                 if (ret) {
927                         btrfs_drop_extent_cache(inode, async_extent->start,
928                                                 async_extent->start +
929                                                 async_extent->ram_size - 1, 0);
930                         goto out_free_reserve;
931                 }
932                 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
933
934                 /*
935                  * clear dirty, set writeback and unlock the pages.
936                  */
937                 extent_clear_unlock_delalloc(inode, async_extent->start,
938                                 async_extent->start +
939                                 async_extent->ram_size - 1,
940                                 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
941                                 PAGE_UNLOCK | PAGE_START_WRITEBACK);
942                 if (btrfs_submit_compressed_write(inode, async_extent->start,
943                                     async_extent->ram_size,
944                                     ins.objectid,
945                                     ins.offset, async_extent->pages,
946                                     async_extent->nr_pages,
947                                     async_chunk->write_flags,
948                                     async_chunk->blkcg_css)) {
949                         struct page *p = async_extent->pages[0];
950                         const u64 start = async_extent->start;
951                         const u64 end = start + async_extent->ram_size - 1;
952
953                         p->mapping = inode->vfs_inode.i_mapping;
954                         btrfs_writepage_endio_finish_ordered(p, start, end, 0);
955
956                         p->mapping = NULL;
957                         extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
958                                                      PAGE_END_WRITEBACK |
959                                                      PAGE_SET_ERROR);
960                         free_async_extent_pages(async_extent);
961                 }
962                 alloc_hint = ins.objectid + ins.offset;
963                 kfree(async_extent);
964                 cond_resched();
965         }
966         return;
967 out_free_reserve:
968         btrfs_dec_block_group_reservations(fs_info, ins.objectid);
969         btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
970 out_free:
971         extent_clear_unlock_delalloc(inode, async_extent->start,
972                                      async_extent->start +
973                                      async_extent->ram_size - 1,
974                                      NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
975                                      EXTENT_DELALLOC_NEW |
976                                      EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
977                                      PAGE_UNLOCK | PAGE_START_WRITEBACK |
978                                      PAGE_END_WRITEBACK | PAGE_SET_ERROR);
979         free_async_extent_pages(async_extent);
980         kfree(async_extent);
981         goto again;
982 }
983
984 static u64 get_extent_allocation_hint(struct btrfs_inode *inode, u64 start,
985                                       u64 num_bytes)
986 {
987         struct extent_map_tree *em_tree = &inode->extent_tree;
988         struct extent_map *em;
989         u64 alloc_hint = 0;
990
991         read_lock(&em_tree->lock);
992         em = search_extent_mapping(em_tree, start, num_bytes);
993         if (em) {
994                 /*
995                  * if block start isn't an actual block number then find the
996                  * first block in this inode and use that as a hint.  If that
997                  * block is also bogus then just don't worry about it.
998                  */
999                 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1000                         free_extent_map(em);
1001                         em = search_extent_mapping(em_tree, 0, 0);
1002                         if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
1003                                 alloc_hint = em->block_start;
1004                         if (em)
1005                                 free_extent_map(em);
1006                 } else {
1007                         alloc_hint = em->block_start;
1008                         free_extent_map(em);
1009                 }
1010         }
1011         read_unlock(&em_tree->lock);
1012
1013         return alloc_hint;
1014 }
1015
1016 /*
1017  * when extent_io.c finds a delayed allocation range in the file,
1018  * the call backs end up in this code.  The basic idea is to
1019  * allocate extents on disk for the range, and create ordered data structs
1020  * in ram to track those extents.
1021  *
1022  * locked_page is the page that writepage had locked already.  We use
1023  * it to make sure we don't do extra locks or unlocks.
1024  *
1025  * *page_started is set to one if we unlock locked_page and do everything
1026  * required to start IO on it.  It may be clean and already done with
1027  * IO when we return.
1028  */
1029 static noinline int cow_file_range(struct btrfs_inode *inode,
1030                                    struct page *locked_page,
1031                                    u64 start, u64 end, int *page_started,
1032                                    unsigned long *nr_written, int unlock)
1033 {
1034         struct btrfs_root *root = inode->root;
1035         struct btrfs_fs_info *fs_info = root->fs_info;
1036         u64 alloc_hint = 0;
1037         u64 num_bytes;
1038         unsigned long ram_size;
1039         u64 cur_alloc_size = 0;
1040         u64 min_alloc_size;
1041         u64 blocksize = fs_info->sectorsize;
1042         struct btrfs_key ins;
1043         struct extent_map *em;
1044         unsigned clear_bits;
1045         unsigned long page_ops;
1046         bool extent_reserved = false;
1047         int ret = 0;
1048
1049         if (btrfs_is_free_space_inode(inode)) {
1050                 WARN_ON_ONCE(1);
1051                 ret = -EINVAL;
1052                 goto out_unlock;
1053         }
1054
1055         num_bytes = ALIGN(end - start + 1, blocksize);
1056         num_bytes = max(blocksize,  num_bytes);
1057         ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
1058
1059         inode_should_defrag(inode, start, end, num_bytes, SZ_64K);
1060
1061         if (start == 0) {
1062                 /* lets try to make an inline extent */
1063                 ret = cow_file_range_inline(inode, start, end, 0,
1064                                             BTRFS_COMPRESS_NONE, NULL);
1065                 if (ret == 0) {
1066                         /*
1067                          * We use DO_ACCOUNTING here because we need the
1068                          * delalloc_release_metadata to be run _after_ we drop
1069                          * our outstanding extent for clearing delalloc for this
1070                          * range.
1071                          */
1072                         extent_clear_unlock_delalloc(inode, start, end, NULL,
1073                                      EXTENT_LOCKED | EXTENT_DELALLOC |
1074                                      EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1075                                      EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1076                                      PAGE_START_WRITEBACK | PAGE_END_WRITEBACK);
1077                         *nr_written = *nr_written +
1078                              (end - start + PAGE_SIZE) / PAGE_SIZE;
1079                         *page_started = 1;
1080                         goto out;
1081                 } else if (ret < 0) {
1082                         goto out_unlock;
1083                 }
1084         }
1085
1086         alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
1087         btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
1088
1089         /*
1090          * Relocation relies on the relocated extents to have exactly the same
1091          * size as the original extents. Normally writeback for relocation data
1092          * extents follows a NOCOW path because relocation preallocates the
1093          * extents. However, due to an operation such as scrub turning a block
1094          * group to RO mode, it may fallback to COW mode, so we must make sure
1095          * an extent allocated during COW has exactly the requested size and can
1096          * not be split into smaller extents, otherwise relocation breaks and
1097          * fails during the stage where it updates the bytenr of file extent
1098          * items.
1099          */
1100         if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1101                 min_alloc_size = num_bytes;
1102         else
1103                 min_alloc_size = fs_info->sectorsize;
1104
1105         while (num_bytes > 0) {
1106                 cur_alloc_size = num_bytes;
1107                 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
1108                                            min_alloc_size, 0, alloc_hint,
1109                                            &ins, 1, 1);
1110                 if (ret < 0)
1111                         goto out_unlock;
1112                 cur_alloc_size = ins.offset;
1113                 extent_reserved = true;
1114
1115                 ram_size = ins.offset;
1116                 em = create_io_em(inode, start, ins.offset, /* len */
1117                                   start, /* orig_start */
1118                                   ins.objectid, /* block_start */
1119                                   ins.offset, /* block_len */
1120                                   ins.offset, /* orig_block_len */
1121                                   ram_size, /* ram_bytes */
1122                                   BTRFS_COMPRESS_NONE, /* compress_type */
1123                                   BTRFS_ORDERED_REGULAR /* type */);
1124                 if (IS_ERR(em)) {
1125                         ret = PTR_ERR(em);
1126                         goto out_reserve;
1127                 }
1128                 free_extent_map(em);
1129
1130                 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
1131                                                ram_size, cur_alloc_size,
1132                                                BTRFS_ORDERED_REGULAR);
1133                 if (ret)
1134                         goto out_drop_extent_cache;
1135
1136                 if (root->root_key.objectid ==
1137                     BTRFS_DATA_RELOC_TREE_OBJECTID) {
1138                         ret = btrfs_reloc_clone_csums(inode, start,
1139                                                       cur_alloc_size);
1140                         /*
1141                          * Only drop cache here, and process as normal.
1142                          *
1143                          * We must not allow extent_clear_unlock_delalloc()
1144                          * at out_unlock label to free meta of this ordered
1145                          * extent, as its meta should be freed by
1146                          * btrfs_finish_ordered_io().
1147                          *
1148                          * So we must continue until @start is increased to
1149                          * skip current ordered extent.
1150                          */
1151                         if (ret)
1152                                 btrfs_drop_extent_cache(inode, start,
1153                                                 start + ram_size - 1, 0);
1154                 }
1155
1156                 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
1157
1158                 /* we're not doing compressed IO, don't unlock the first
1159                  * page (which the caller expects to stay locked), don't
1160                  * clear any dirty bits and don't set any writeback bits
1161                  *
1162                  * Do set the Private2 bit so we know this page was properly
1163                  * setup for writepage
1164                  */
1165                 page_ops = unlock ? PAGE_UNLOCK : 0;
1166                 page_ops |= PAGE_SET_PRIVATE2;
1167
1168                 extent_clear_unlock_delalloc(inode, start, start + ram_size - 1,
1169                                              locked_page,
1170                                              EXTENT_LOCKED | EXTENT_DELALLOC,
1171                                              page_ops);
1172                 if (num_bytes < cur_alloc_size)
1173                         num_bytes = 0;
1174                 else
1175                         num_bytes -= cur_alloc_size;
1176                 alloc_hint = ins.objectid + ins.offset;
1177                 start += cur_alloc_size;
1178                 extent_reserved = false;
1179
1180                 /*
1181                  * btrfs_reloc_clone_csums() error, since start is increased
1182                  * extent_clear_unlock_delalloc() at out_unlock label won't
1183                  * free metadata of current ordered extent, we're OK to exit.
1184                  */
1185                 if (ret)
1186                         goto out_unlock;
1187         }
1188 out:
1189         return ret;
1190
1191 out_drop_extent_cache:
1192         btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
1193 out_reserve:
1194         btrfs_dec_block_group_reservations(fs_info, ins.objectid);
1195         btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
1196 out_unlock:
1197         clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1198                 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
1199         page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK | PAGE_END_WRITEBACK;
1200         /*
1201          * If we reserved an extent for our delalloc range (or a subrange) and
1202          * failed to create the respective ordered extent, then it means that
1203          * when we reserved the extent we decremented the extent's size from
1204          * the data space_info's bytes_may_use counter and incremented the
1205          * space_info's bytes_reserved counter by the same amount. We must make
1206          * sure extent_clear_unlock_delalloc() does not try to decrement again
1207          * the data space_info's bytes_may_use counter, therefore we do not pass
1208          * it the flag EXTENT_CLEAR_DATA_RESV.
1209          */
1210         if (extent_reserved) {
1211                 extent_clear_unlock_delalloc(inode, start,
1212                                              start + cur_alloc_size - 1,
1213                                              locked_page,
1214                                              clear_bits,
1215                                              page_ops);
1216                 start += cur_alloc_size;
1217                 if (start >= end)
1218                         goto out;
1219         }
1220         extent_clear_unlock_delalloc(inode, start, end, locked_page,
1221                                      clear_bits | EXTENT_CLEAR_DATA_RESV,
1222                                      page_ops);
1223         goto out;
1224 }
1225
1226 /*
1227  * work queue call back to started compression on a file and pages
1228  */
1229 static noinline void async_cow_start(struct btrfs_work *work)
1230 {
1231         struct async_chunk *async_chunk;
1232         int compressed_extents;
1233
1234         async_chunk = container_of(work, struct async_chunk, work);
1235
1236         compressed_extents = compress_file_range(async_chunk);
1237         if (compressed_extents == 0) {
1238                 btrfs_add_delayed_iput(async_chunk->inode);
1239                 async_chunk->inode = NULL;
1240         }
1241 }
1242
1243 /*
1244  * work queue call back to submit previously compressed pages
1245  */
1246 static noinline void async_cow_submit(struct btrfs_work *work)
1247 {
1248         struct async_chunk *async_chunk = container_of(work, struct async_chunk,
1249                                                      work);
1250         struct btrfs_fs_info *fs_info = btrfs_work_owner(work);
1251         unsigned long nr_pages;
1252
1253         nr_pages = (async_chunk->end - async_chunk->start + PAGE_SIZE) >>
1254                 PAGE_SHIFT;
1255
1256         /* atomic_sub_return implies a barrier */
1257         if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
1258             5 * SZ_1M)
1259                 cond_wake_up_nomb(&fs_info->async_submit_wait);
1260
1261         /*
1262          * ->inode could be NULL if async_chunk_start has failed to compress,
1263          * in which case we don't have anything to submit, yet we need to
1264          * always adjust ->async_delalloc_pages as its paired with the init
1265          * happening in cow_file_range_async
1266          */
1267         if (async_chunk->inode)
1268                 submit_compressed_extents(async_chunk);
1269 }
1270
1271 static noinline void async_cow_free(struct btrfs_work *work)
1272 {
1273         struct async_chunk *async_chunk;
1274
1275         async_chunk = container_of(work, struct async_chunk, work);
1276         if (async_chunk->inode)
1277                 btrfs_add_delayed_iput(async_chunk->inode);
1278         if (async_chunk->blkcg_css)
1279                 css_put(async_chunk->blkcg_css);
1280         /*
1281          * Since the pointer to 'pending' is at the beginning of the array of
1282          * async_chunk's, freeing it ensures the whole array has been freed.
1283          */
1284         if (atomic_dec_and_test(async_chunk->pending))
1285                 kvfree(async_chunk->pending);
1286 }
1287
1288 static int cow_file_range_async(struct btrfs_inode *inode,
1289                                 struct writeback_control *wbc,
1290                                 struct page *locked_page,
1291                                 u64 start, u64 end, int *page_started,
1292                                 unsigned long *nr_written)
1293 {
1294         struct btrfs_fs_info *fs_info = inode->root->fs_info;
1295         struct cgroup_subsys_state *blkcg_css = wbc_blkcg_css(wbc);
1296         struct async_cow *ctx;
1297         struct async_chunk *async_chunk;
1298         unsigned long nr_pages;
1299         u64 cur_end;
1300         u64 num_chunks = DIV_ROUND_UP(end - start, SZ_512K);
1301         int i;
1302         bool should_compress;
1303         unsigned nofs_flag;
1304         const unsigned int write_flags = wbc_to_write_flags(wbc);
1305
1306         unlock_extent(&inode->io_tree, start, end);
1307
1308         if (inode->flags & BTRFS_INODE_NOCOMPRESS &&
1309             !btrfs_test_opt(fs_info, FORCE_COMPRESS)) {
1310                 num_chunks = 1;
1311                 should_compress = false;
1312         } else {
1313                 should_compress = true;
1314         }
1315
1316         nofs_flag = memalloc_nofs_save();
1317         ctx = kvmalloc(struct_size(ctx, chunks, num_chunks), GFP_KERNEL);
1318         memalloc_nofs_restore(nofs_flag);
1319
1320         if (!ctx) {
1321                 unsigned clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC |
1322                         EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1323                         EXTENT_DO_ACCOUNTING;
1324                 unsigned long page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK |
1325                                          PAGE_END_WRITEBACK | PAGE_SET_ERROR;
1326
1327                 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1328                                              clear_bits, page_ops);
1329                 return -ENOMEM;
1330         }
1331
1332         async_chunk = ctx->chunks;
1333         atomic_set(&ctx->num_chunks, num_chunks);
1334
1335         for (i = 0; i < num_chunks; i++) {
1336                 if (should_compress)
1337                         cur_end = min(end, start + SZ_512K - 1);
1338                 else
1339                         cur_end = end;
1340
1341                 /*
1342                  * igrab is called higher up in the call chain, take only the
1343                  * lightweight reference for the callback lifetime
1344                  */
1345                 ihold(&inode->vfs_inode);
1346                 async_chunk[i].pending = &ctx->num_chunks;
1347                 async_chunk[i].inode = &inode->vfs_inode;
1348                 async_chunk[i].start = start;
1349                 async_chunk[i].end = cur_end;
1350                 async_chunk[i].write_flags = write_flags;
1351                 INIT_LIST_HEAD(&async_chunk[i].extents);
1352
1353                 /*
1354                  * The locked_page comes all the way from writepage and its
1355                  * the original page we were actually given.  As we spread
1356                  * this large delalloc region across multiple async_chunk
1357                  * structs, only the first struct needs a pointer to locked_page
1358                  *
1359                  * This way we don't need racey decisions about who is supposed
1360                  * to unlock it.
1361                  */
1362                 if (locked_page) {
1363                         /*
1364                          * Depending on the compressibility, the pages might or
1365                          * might not go through async.  We want all of them to
1366                          * be accounted against wbc once.  Let's do it here
1367                          * before the paths diverge.  wbc accounting is used
1368                          * only for foreign writeback detection and doesn't
1369                          * need full accuracy.  Just account the whole thing
1370                          * against the first page.
1371                          */
1372                         wbc_account_cgroup_owner(wbc, locked_page,
1373                                                  cur_end - start);
1374                         async_chunk[i].locked_page = locked_page;
1375                         locked_page = NULL;
1376                 } else {
1377                         async_chunk[i].locked_page = NULL;
1378                 }
1379
1380                 if (blkcg_css != blkcg_root_css) {
1381                         css_get(blkcg_css);
1382                         async_chunk[i].blkcg_css = blkcg_css;
1383                 } else {
1384                         async_chunk[i].blkcg_css = NULL;
1385                 }
1386
1387                 btrfs_init_work(&async_chunk[i].work, async_cow_start,
1388                                 async_cow_submit, async_cow_free);
1389
1390                 nr_pages = DIV_ROUND_UP(cur_end - start, PAGE_SIZE);
1391                 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
1392
1393                 btrfs_queue_work(fs_info->delalloc_workers, &async_chunk[i].work);
1394
1395                 *nr_written += nr_pages;
1396                 start = cur_end + 1;
1397         }
1398         *page_started = 1;
1399         return 0;
1400 }
1401
1402 static noinline int run_delalloc_zoned(struct btrfs_inode *inode,
1403                                        struct page *locked_page, u64 start,
1404                                        u64 end, int *page_started,
1405                                        unsigned long *nr_written)
1406 {
1407         int ret;
1408
1409         ret = cow_file_range(inode, locked_page, start, end, page_started,
1410                              nr_written, 0);
1411         if (ret)
1412                 return ret;
1413
1414         if (*page_started)
1415                 return 0;
1416
1417         __set_page_dirty_nobuffers(locked_page);
1418         account_page_redirty(locked_page);
1419         extent_write_locked_range(&inode->vfs_inode, start, end, WB_SYNC_ALL);
1420         *page_started = 1;
1421
1422         return 0;
1423 }
1424
1425 static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
1426                                         u64 bytenr, u64 num_bytes)
1427 {
1428         int ret;
1429         struct btrfs_ordered_sum *sums;
1430         LIST_HEAD(list);
1431
1432         ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
1433                                        bytenr + num_bytes - 1, &list, 0);
1434         if (ret == 0 && list_empty(&list))
1435                 return 0;
1436
1437         while (!list_empty(&list)) {
1438                 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1439                 list_del(&sums->list);
1440                 kfree(sums);
1441         }
1442         if (ret < 0)
1443                 return ret;
1444         return 1;
1445 }
1446
1447 static int fallback_to_cow(struct btrfs_inode *inode, struct page *locked_page,
1448                            const u64 start, const u64 end,
1449                            int *page_started, unsigned long *nr_written)
1450 {
1451         const bool is_space_ino = btrfs_is_free_space_inode(inode);
1452         const bool is_reloc_ino = (inode->root->root_key.objectid ==
1453                                    BTRFS_DATA_RELOC_TREE_OBJECTID);
1454         const u64 range_bytes = end + 1 - start;
1455         struct extent_io_tree *io_tree = &inode->io_tree;
1456         u64 range_start = start;
1457         u64 count;
1458
1459         /*
1460          * If EXTENT_NORESERVE is set it means that when the buffered write was
1461          * made we had not enough available data space and therefore we did not
1462          * reserve data space for it, since we though we could do NOCOW for the
1463          * respective file range (either there is prealloc extent or the inode
1464          * has the NOCOW bit set).
1465          *
1466          * However when we need to fallback to COW mode (because for example the
1467          * block group for the corresponding extent was turned to RO mode by a
1468          * scrub or relocation) we need to do the following:
1469          *
1470          * 1) We increment the bytes_may_use counter of the data space info.
1471          *    If COW succeeds, it allocates a new data extent and after doing
1472          *    that it decrements the space info's bytes_may_use counter and
1473          *    increments its bytes_reserved counter by the same amount (we do
1474          *    this at btrfs_add_reserved_bytes()). So we need to increment the
1475          *    bytes_may_use counter to compensate (when space is reserved at
1476          *    buffered write time, the bytes_may_use counter is incremented);
1477          *
1478          * 2) We clear the EXTENT_NORESERVE bit from the range. We do this so
1479          *    that if the COW path fails for any reason, it decrements (through
1480          *    extent_clear_unlock_delalloc()) the bytes_may_use counter of the
1481          *    data space info, which we incremented in the step above.
1482          *
1483          * If we need to fallback to cow and the inode corresponds to a free
1484          * space cache inode or an inode of the data relocation tree, we must
1485          * also increment bytes_may_use of the data space_info for the same
1486          * reason. Space caches and relocated data extents always get a prealloc
1487          * extent for them, however scrub or balance may have set the block
1488          * group that contains that extent to RO mode and therefore force COW
1489          * when starting writeback.
1490          */
1491         count = count_range_bits(io_tree, &range_start, end, range_bytes,
1492                                  EXTENT_NORESERVE, 0);
1493         if (count > 0 || is_space_ino || is_reloc_ino) {
1494                 u64 bytes = count;
1495                 struct btrfs_fs_info *fs_info = inode->root->fs_info;
1496                 struct btrfs_space_info *sinfo = fs_info->data_sinfo;
1497
1498                 if (is_space_ino || is_reloc_ino)
1499                         bytes = range_bytes;
1500
1501                 spin_lock(&sinfo->lock);
1502                 btrfs_space_info_update_bytes_may_use(fs_info, sinfo, bytes);
1503                 spin_unlock(&sinfo->lock);
1504
1505                 if (count > 0)
1506                         clear_extent_bit(io_tree, start, end, EXTENT_NORESERVE,
1507                                          0, 0, NULL);
1508         }
1509
1510         return cow_file_range(inode, locked_page, start, end, page_started,
1511                               nr_written, 1);
1512 }
1513
1514 /*
1515  * when nowcow writeback call back.  This checks for snapshots or COW copies
1516  * of the extents that exist in the file, and COWs the file as required.
1517  *
1518  * If no cow copies or snapshots exist, we write directly to the existing
1519  * blocks on disk
1520  */
1521 static noinline int run_delalloc_nocow(struct btrfs_inode *inode,
1522                                        struct page *locked_page,
1523                                        const u64 start, const u64 end,
1524                                        int *page_started,
1525                                        unsigned long *nr_written)
1526 {
1527         struct btrfs_fs_info *fs_info = inode->root->fs_info;
1528         struct btrfs_root *root = inode->root;
1529         struct btrfs_path *path;
1530         u64 cow_start = (u64)-1;
1531         u64 cur_offset = start;
1532         int ret;
1533         bool check_prev = true;
1534         const bool freespace_inode = btrfs_is_free_space_inode(inode);
1535         u64 ino = btrfs_ino(inode);
1536         bool nocow = false;
1537         u64 disk_bytenr = 0;
1538         const bool force = inode->flags & BTRFS_INODE_NODATACOW;
1539
1540         path = btrfs_alloc_path();
1541         if (!path) {
1542                 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1543                                              EXTENT_LOCKED | EXTENT_DELALLOC |
1544                                              EXTENT_DO_ACCOUNTING |
1545                                              EXTENT_DEFRAG, PAGE_UNLOCK |
1546                                              PAGE_START_WRITEBACK |
1547                                              PAGE_END_WRITEBACK);
1548                 return -ENOMEM;
1549         }
1550
1551         while (1) {
1552                 struct btrfs_key found_key;
1553                 struct btrfs_file_extent_item *fi;
1554                 struct extent_buffer *leaf;
1555                 u64 extent_end;
1556                 u64 extent_offset;
1557                 u64 num_bytes = 0;
1558                 u64 disk_num_bytes;
1559                 u64 ram_bytes;
1560                 int extent_type;
1561
1562                 nocow = false;
1563
1564                 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
1565                                                cur_offset, 0);
1566                 if (ret < 0)
1567                         goto error;
1568
1569                 /*
1570                  * If there is no extent for our range when doing the initial
1571                  * search, then go back to the previous slot as it will be the
1572                  * one containing the search offset
1573                  */
1574                 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1575                         leaf = path->nodes[0];
1576                         btrfs_item_key_to_cpu(leaf, &found_key,
1577                                               path->slots[0] - 1);
1578                         if (found_key.objectid == ino &&
1579                             found_key.type == BTRFS_EXTENT_DATA_KEY)
1580                                 path->slots[0]--;
1581                 }
1582                 check_prev = false;
1583 next_slot:
1584                 /* Go to next leaf if we have exhausted the current one */
1585                 leaf = path->nodes[0];
1586                 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1587                         ret = btrfs_next_leaf(root, path);
1588                         if (ret < 0) {
1589                                 if (cow_start != (u64)-1)
1590                                         cur_offset = cow_start;
1591                                 goto error;
1592                         }
1593                         if (ret > 0)
1594                                 break;
1595                         leaf = path->nodes[0];
1596                 }
1597
1598                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1599
1600                 /* Didn't find anything for our INO */
1601                 if (found_key.objectid > ino)
1602                         break;
1603                 /*
1604                  * Keep searching until we find an EXTENT_ITEM or there are no
1605                  * more extents for this inode
1606                  */
1607                 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1608                     found_key.type < BTRFS_EXTENT_DATA_KEY) {
1609                         path->slots[0]++;
1610                         goto next_slot;
1611                 }
1612
1613                 /* Found key is not EXTENT_DATA_KEY or starts after req range */
1614                 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
1615                     found_key.offset > end)
1616                         break;
1617
1618                 /*
1619                  * If the found extent starts after requested offset, then
1620                  * adjust extent_end to be right before this extent begins
1621                  */
1622                 if (found_key.offset > cur_offset) {
1623                         extent_end = found_key.offset;
1624                         extent_type = 0;
1625                         goto out_check;
1626                 }
1627
1628                 /*
1629                  * Found extent which begins before our range and potentially
1630                  * intersect it
1631                  */
1632                 fi = btrfs_item_ptr(leaf, path->slots[0],
1633                                     struct btrfs_file_extent_item);
1634                 extent_type = btrfs_file_extent_type(leaf, fi);
1635
1636                 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
1637                 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1638                     extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1639                         disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1640                         extent_offset = btrfs_file_extent_offset(leaf, fi);
1641                         extent_end = found_key.offset +
1642                                 btrfs_file_extent_num_bytes(leaf, fi);
1643                         disk_num_bytes =
1644                                 btrfs_file_extent_disk_num_bytes(leaf, fi);
1645                         /*
1646                          * If the extent we got ends before our current offset,
1647                          * skip to the next extent.
1648                          */
1649                         if (extent_end <= cur_offset) {
1650                                 path->slots[0]++;
1651                                 goto next_slot;
1652                         }
1653                         /* Skip holes */
1654                         if (disk_bytenr == 0)
1655                                 goto out_check;
1656                         /* Skip compressed/encrypted/encoded extents */
1657                         if (btrfs_file_extent_compression(leaf, fi) ||
1658                             btrfs_file_extent_encryption(leaf, fi) ||
1659                             btrfs_file_extent_other_encoding(leaf, fi))
1660                                 goto out_check;
1661                         /*
1662                          * If extent is created before the last volume's snapshot
1663                          * this implies the extent is shared, hence we can't do
1664                          * nocow. This is the same check as in
1665                          * btrfs_cross_ref_exist but without calling
1666                          * btrfs_search_slot.
1667                          */
1668                         if (!freespace_inode &&
1669                             btrfs_file_extent_generation(leaf, fi) <=
1670                             btrfs_root_last_snapshot(&root->root_item))
1671                                 goto out_check;
1672                         if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1673                                 goto out_check;
1674
1675                         /*
1676                          * The following checks can be expensive, as they need to
1677                          * take other locks and do btree or rbtree searches, so
1678                          * release the path to avoid blocking other tasks for too
1679                          * long.
1680                          */
1681                         btrfs_release_path(path);
1682
1683                         ret = btrfs_cross_ref_exist(root, ino,
1684                                                     found_key.offset -
1685                                                     extent_offset, disk_bytenr, false);
1686                         if (ret) {
1687                                 /*
1688                                  * ret could be -EIO if the above fails to read
1689                                  * metadata.
1690                                  */
1691                                 if (ret < 0) {
1692                                         if (cow_start != (u64)-1)
1693                                                 cur_offset = cow_start;
1694                                         goto error;
1695                                 }
1696
1697                                 WARN_ON_ONCE(freespace_inode);
1698                                 goto out_check;
1699                         }
1700                         disk_bytenr += extent_offset;
1701                         disk_bytenr += cur_offset - found_key.offset;
1702                         num_bytes = min(end + 1, extent_end) - cur_offset;
1703                         /*
1704                          * If there are pending snapshots for this root, we
1705                          * fall into common COW way
1706                          */
1707                         if (!freespace_inode && atomic_read(&root->snapshot_force_cow))
1708                                 goto out_check;
1709                         /*
1710                          * force cow if csum exists in the range.
1711                          * this ensure that csum for a given extent are
1712                          * either valid or do not exist.
1713                          */
1714                         ret = csum_exist_in_range(fs_info, disk_bytenr,
1715                                                   num_bytes);
1716                         if (ret) {
1717                                 /*
1718                                  * ret could be -EIO if the above fails to read
1719                                  * metadata.
1720                                  */
1721                                 if (ret < 0) {
1722                                         if (cow_start != (u64)-1)
1723                                                 cur_offset = cow_start;
1724                                         goto error;
1725                                 }
1726                                 WARN_ON_ONCE(freespace_inode);
1727                                 goto out_check;
1728                         }
1729                         /* If the extent's block group is RO, we must COW */
1730                         if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
1731                                 goto out_check;
1732                         nocow = true;
1733                 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1734                         extent_end = found_key.offset + ram_bytes;
1735                         extent_end = ALIGN(extent_end, fs_info->sectorsize);
1736                         /* Skip extents outside of our requested range */
1737                         if (extent_end <= start) {
1738                                 path->slots[0]++;
1739                                 goto next_slot;
1740                         }
1741                 } else {
1742                         /* If this triggers then we have a memory corruption */
1743                         BUG();
1744                 }
1745 out_check:
1746                 /*
1747                  * If nocow is false then record the beginning of the range
1748                  * that needs to be COWed
1749                  */
1750                 if (!nocow) {
1751                         if (cow_start == (u64)-1)
1752                                 cow_start = cur_offset;
1753                         cur_offset = extent_end;
1754                         if (cur_offset > end)
1755                                 break;
1756                         if (!path->nodes[0])
1757                                 continue;
1758                         path->slots[0]++;
1759                         goto next_slot;
1760                 }
1761
1762                 /*
1763                  * COW range from cow_start to found_key.offset - 1. As the key
1764                  * will contain the beginning of the first extent that can be
1765                  * NOCOW, following one which needs to be COW'ed
1766                  */
1767                 if (cow_start != (u64)-1) {
1768                         ret = fallback_to_cow(inode, locked_page,
1769                                               cow_start, found_key.offset - 1,
1770                                               page_started, nr_written);
1771                         if (ret)
1772                                 goto error;
1773                         cow_start = (u64)-1;
1774                 }
1775
1776                 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1777                         u64 orig_start = found_key.offset - extent_offset;
1778                         struct extent_map *em;
1779
1780                         em = create_io_em(inode, cur_offset, num_bytes,
1781                                           orig_start,
1782                                           disk_bytenr, /* block_start */
1783                                           num_bytes, /* block_len */
1784                                           disk_num_bytes, /* orig_block_len */
1785                                           ram_bytes, BTRFS_COMPRESS_NONE,
1786                                           BTRFS_ORDERED_PREALLOC);
1787                         if (IS_ERR(em)) {
1788                                 ret = PTR_ERR(em);
1789                                 goto error;
1790                         }
1791                         free_extent_map(em);
1792                         ret = btrfs_add_ordered_extent(inode, cur_offset,
1793                                                        disk_bytenr, num_bytes,
1794                                                        num_bytes,
1795                                                        BTRFS_ORDERED_PREALLOC);
1796                         if (ret) {
1797                                 btrfs_drop_extent_cache(inode, cur_offset,
1798                                                         cur_offset + num_bytes - 1,
1799                                                         0);
1800                                 goto error;
1801                         }
1802                 } else {
1803                         ret = btrfs_add_ordered_extent(inode, cur_offset,
1804                                                        disk_bytenr, num_bytes,
1805                                                        num_bytes,
1806                                                        BTRFS_ORDERED_NOCOW);
1807                         if (ret)
1808                                 goto error;
1809                 }
1810
1811                 if (nocow)
1812                         btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1813                 nocow = false;
1814
1815                 if (root->root_key.objectid ==
1816                     BTRFS_DATA_RELOC_TREE_OBJECTID)
1817                         /*
1818                          * Error handled later, as we must prevent
1819                          * extent_clear_unlock_delalloc() in error handler
1820                          * from freeing metadata of created ordered extent.
1821                          */
1822                         ret = btrfs_reloc_clone_csums(inode, cur_offset,
1823                                                       num_bytes);
1824
1825                 extent_clear_unlock_delalloc(inode, cur_offset,
1826                                              cur_offset + num_bytes - 1,
1827                                              locked_page, EXTENT_LOCKED |
1828                                              EXTENT_DELALLOC |
1829                                              EXTENT_CLEAR_DATA_RESV,
1830                                              PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1831
1832                 cur_offset = extent_end;
1833
1834                 /*
1835                  * btrfs_reloc_clone_csums() error, now we're OK to call error
1836                  * handler, as metadata for created ordered extent will only
1837                  * be freed by btrfs_finish_ordered_io().
1838                  */
1839                 if (ret)
1840                         goto error;
1841                 if (cur_offset > end)
1842                         break;
1843         }
1844         btrfs_release_path(path);
1845
1846         if (cur_offset <= end && cow_start == (u64)-1)
1847                 cow_start = cur_offset;
1848
1849         if (cow_start != (u64)-1) {
1850                 cur_offset = end;
1851                 ret = fallback_to_cow(inode, locked_page, cow_start, end,
1852                                       page_started, nr_written);
1853                 if (ret)
1854                         goto error;
1855         }
1856
1857 error:
1858         if (nocow)
1859                 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1860
1861         if (ret && cur_offset < end)
1862                 extent_clear_unlock_delalloc(inode, cur_offset, end,
1863                                              locked_page, EXTENT_LOCKED |
1864                                              EXTENT_DELALLOC | EXTENT_DEFRAG |
1865                                              EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1866                                              PAGE_START_WRITEBACK |
1867                                              PAGE_END_WRITEBACK);
1868         btrfs_free_path(path);
1869         return ret;
1870 }
1871
1872 static bool should_nocow(struct btrfs_inode *inode, u64 start, u64 end)
1873 {
1874         if (inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)) {
1875                 if (inode->defrag_bytes &&
1876                     test_range_bit(&inode->io_tree, start, end, EXTENT_DEFRAG,
1877                                    0, NULL))
1878                         return false;
1879                 return true;
1880         }
1881         return false;
1882 }
1883
1884 /*
1885  * Function to process delayed allocation (create CoW) for ranges which are
1886  * being touched for the first time.
1887  */
1888 int btrfs_run_delalloc_range(struct btrfs_inode *inode, struct page *locked_page,
1889                 u64 start, u64 end, int *page_started, unsigned long *nr_written,
1890                 struct writeback_control *wbc)
1891 {
1892         int ret;
1893         const bool zoned = btrfs_is_zoned(inode->root->fs_info);
1894
1895         if (should_nocow(inode, start, end)) {
1896                 ASSERT(!zoned);
1897                 ret = run_delalloc_nocow(inode, locked_page, start, end,
1898                                          page_started, nr_written);
1899         } else if (!inode_can_compress(inode) ||
1900                    !inode_need_compress(inode, start, end)) {
1901                 if (zoned)
1902                         ret = run_delalloc_zoned(inode, locked_page, start, end,
1903                                                  page_started, nr_written);
1904                 else
1905                         ret = cow_file_range(inode, locked_page, start, end,
1906                                              page_started, nr_written, 1);
1907         } else {
1908                 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, &inode->runtime_flags);
1909                 ret = cow_file_range_async(inode, wbc, locked_page, start, end,
1910                                            page_started, nr_written);
1911         }
1912         if (ret)
1913                 btrfs_cleanup_ordered_extents(inode, locked_page, start,
1914                                               end - start + 1);
1915         return ret;
1916 }
1917
1918 void btrfs_split_delalloc_extent(struct inode *inode,
1919                                  struct extent_state *orig, u64 split)
1920 {
1921         u64 size;
1922
1923         /* not delalloc, ignore it */
1924         if (!(orig->state & EXTENT_DELALLOC))
1925                 return;
1926
1927         size = orig->end - orig->start + 1;
1928         if (size > BTRFS_MAX_EXTENT_SIZE) {
1929                 u32 num_extents;
1930                 u64 new_size;
1931
1932                 /*
1933                  * See the explanation in btrfs_merge_delalloc_extent, the same
1934                  * applies here, just in reverse.
1935                  */
1936                 new_size = orig->end - split + 1;
1937                 num_extents = count_max_extents(new_size);
1938                 new_size = split - orig->start;
1939                 num_extents += count_max_extents(new_size);
1940                 if (count_max_extents(size) >= num_extents)
1941                         return;
1942         }
1943
1944         spin_lock(&BTRFS_I(inode)->lock);
1945         btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
1946         spin_unlock(&BTRFS_I(inode)->lock);
1947 }
1948
1949 /*
1950  * Handle merged delayed allocation extents so we can keep track of new extents
1951  * that are just merged onto old extents, such as when we are doing sequential
1952  * writes, so we can properly account for the metadata space we'll need.
1953  */
1954 void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1955                                  struct extent_state *other)
1956 {
1957         u64 new_size, old_size;
1958         u32 num_extents;
1959
1960         /* not delalloc, ignore it */
1961         if (!(other->state & EXTENT_DELALLOC))
1962                 return;
1963
1964         if (new->start > other->start)
1965                 new_size = new->end - other->start + 1;
1966         else
1967                 new_size = other->end - new->start + 1;
1968
1969         /* we're not bigger than the max, unreserve the space and go */
1970         if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1971                 spin_lock(&BTRFS_I(inode)->lock);
1972                 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
1973                 spin_unlock(&BTRFS_I(inode)->lock);
1974                 return;
1975         }
1976
1977         /*
1978          * We have to add up either side to figure out how many extents were
1979          * accounted for before we merged into one big extent.  If the number of
1980          * extents we accounted for is <= the amount we need for the new range
1981          * then we can return, otherwise drop.  Think of it like this
1982          *
1983          * [ 4k][MAX_SIZE]
1984          *
1985          * So we've grown the extent by a MAX_SIZE extent, this would mean we
1986          * need 2 outstanding extents, on one side we have 1 and the other side
1987          * we have 1 so they are == and we can return.  But in this case
1988          *
1989          * [MAX_SIZE+4k][MAX_SIZE+4k]
1990          *
1991          * Each range on their own accounts for 2 extents, but merged together
1992          * they are only 3 extents worth of accounting, so we need to drop in
1993          * this case.
1994          */
1995         old_size = other->end - other->start + 1;
1996         num_extents = count_max_extents(old_size);
1997         old_size = new->end - new->start + 1;
1998         num_extents += count_max_extents(old_size);
1999         if (count_max_extents(new_size) >= num_extents)
2000                 return;
2001
2002         spin_lock(&BTRFS_I(inode)->lock);
2003         btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
2004         spin_unlock(&BTRFS_I(inode)->lock);
2005 }
2006
2007 static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
2008                                       struct inode *inode)
2009 {
2010         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2011
2012         spin_lock(&root->delalloc_lock);
2013         if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
2014                 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
2015                               &root->delalloc_inodes);
2016                 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
2017                         &BTRFS_I(inode)->runtime_flags);
2018                 root->nr_delalloc_inodes++;
2019                 if (root->nr_delalloc_inodes == 1) {
2020                         spin_lock(&fs_info->delalloc_root_lock);
2021                         BUG_ON(!list_empty(&root->delalloc_root));
2022                         list_add_tail(&root->delalloc_root,
2023                                       &fs_info->delalloc_roots);
2024                         spin_unlock(&fs_info->delalloc_root_lock);
2025                 }
2026         }
2027         spin_unlock(&root->delalloc_lock);
2028 }
2029
2030
2031 void __btrfs_del_delalloc_inode(struct btrfs_root *root,
2032                                 struct btrfs_inode *inode)
2033 {
2034         struct btrfs_fs_info *fs_info = root->fs_info;
2035
2036         if (!list_empty(&inode->delalloc_inodes)) {
2037                 list_del_init(&inode->delalloc_inodes);
2038                 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
2039                           &inode->runtime_flags);
2040                 root->nr_delalloc_inodes--;
2041                 if (!root->nr_delalloc_inodes) {
2042                         ASSERT(list_empty(&root->delalloc_inodes));
2043                         spin_lock(&fs_info->delalloc_root_lock);
2044                         BUG_ON(list_empty(&root->delalloc_root));
2045                         list_del_init(&root->delalloc_root);
2046                         spin_unlock(&fs_info->delalloc_root_lock);
2047                 }
2048         }
2049 }
2050
2051 static void btrfs_del_delalloc_inode(struct btrfs_root *root,
2052                                      struct btrfs_inode *inode)
2053 {
2054         spin_lock(&root->delalloc_lock);
2055         __btrfs_del_delalloc_inode(root, inode);
2056         spin_unlock(&root->delalloc_lock);
2057 }
2058
2059 /*
2060  * Properly track delayed allocation bytes in the inode and to maintain the
2061  * list of inodes that have pending delalloc work to be done.
2062  */
2063 void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
2064                                unsigned *bits)
2065 {
2066         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2067
2068         if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
2069                 WARN_ON(1);
2070         /*
2071          * set_bit and clear bit hooks normally require _irqsave/restore
2072          * but in this case, we are only testing for the DELALLOC
2073          * bit, which is only set or cleared with irqs on
2074          */
2075         if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
2076                 struct btrfs_root *root = BTRFS_I(inode)->root;
2077                 u64 len = state->end + 1 - state->start;
2078                 u32 num_extents = count_max_extents(len);
2079                 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
2080
2081                 spin_lock(&BTRFS_I(inode)->lock);
2082                 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
2083                 spin_unlock(&BTRFS_I(inode)->lock);
2084
2085                 /* For sanity tests */
2086                 if (btrfs_is_testing(fs_info))
2087                         return;
2088
2089                 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
2090                                          fs_info->delalloc_batch);
2091                 spin_lock(&BTRFS_I(inode)->lock);
2092                 BTRFS_I(inode)->delalloc_bytes += len;
2093                 if (*bits & EXTENT_DEFRAG)
2094                         BTRFS_I(inode)->defrag_bytes += len;
2095                 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
2096                                          &BTRFS_I(inode)->runtime_flags))
2097                         btrfs_add_delalloc_inodes(root, inode);
2098                 spin_unlock(&BTRFS_I(inode)->lock);
2099         }
2100
2101         if (!(state->state & EXTENT_DELALLOC_NEW) &&
2102             (*bits & EXTENT_DELALLOC_NEW)) {
2103                 spin_lock(&BTRFS_I(inode)->lock);
2104                 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
2105                         state->start;
2106                 spin_unlock(&BTRFS_I(inode)->lock);
2107         }
2108 }
2109
2110 /*
2111  * Once a range is no longer delalloc this function ensures that proper
2112  * accounting happens.
2113  */
2114 void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
2115                                  struct extent_state *state, unsigned *bits)
2116 {
2117         struct btrfs_inode *inode = BTRFS_I(vfs_inode);
2118         struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
2119         u64 len = state->end + 1 - state->start;
2120         u32 num_extents = count_max_extents(len);
2121
2122         if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
2123                 spin_lock(&inode->lock);
2124                 inode->defrag_bytes -= len;
2125                 spin_unlock(&inode->lock);
2126         }
2127
2128         /*
2129          * set_bit and clear bit hooks normally require _irqsave/restore
2130          * but in this case, we are only testing for the DELALLOC
2131          * bit, which is only set or cleared with irqs on
2132          */
2133         if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
2134                 struct btrfs_root *root = inode->root;
2135                 bool do_list = !btrfs_is_free_space_inode(inode);
2136
2137                 spin_lock(&inode->lock);
2138                 btrfs_mod_outstanding_extents(inode, -num_extents);
2139                 spin_unlock(&inode->lock);
2140
2141                 /*
2142                  * We don't reserve metadata space for space cache inodes so we
2143                  * don't need to call delalloc_release_metadata if there is an
2144                  * error.
2145                  */
2146                 if (*bits & EXTENT_CLEAR_META_RESV &&
2147                     root != fs_info->tree_root)
2148                         btrfs_delalloc_release_metadata(inode, len, false);
2149
2150                 /* For sanity tests. */
2151                 if (btrfs_is_testing(fs_info))
2152                         return;
2153
2154                 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
2155                     do_list && !(state->state & EXTENT_NORESERVE) &&
2156                     (*bits & EXTENT_CLEAR_DATA_RESV))
2157                         btrfs_free_reserved_data_space_noquota(fs_info, len);
2158
2159                 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
2160                                          fs_info->delalloc_batch);
2161                 spin_lock(&inode->lock);
2162                 inode->delalloc_bytes -= len;
2163                 if (do_list && inode->delalloc_bytes == 0 &&
2164                     test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
2165                                         &inode->runtime_flags))
2166                         btrfs_del_delalloc_inode(root, inode);
2167                 spin_unlock(&inode->lock);
2168         }
2169
2170         if ((state->state & EXTENT_DELALLOC_NEW) &&
2171             (*bits & EXTENT_DELALLOC_NEW)) {
2172                 spin_lock(&inode->lock);
2173                 ASSERT(inode->new_delalloc_bytes >= len);
2174                 inode->new_delalloc_bytes -= len;
2175                 if (*bits & EXTENT_ADD_INODE_BYTES)
2176                         inode_add_bytes(&inode->vfs_inode, len);
2177                 spin_unlock(&inode->lock);
2178         }
2179 }
2180
2181 /*
2182  * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit
2183  * in a chunk's stripe. This function ensures that bios do not span a
2184  * stripe/chunk
2185  *
2186  * @page - The page we are about to add to the bio
2187  * @size - size we want to add to the bio
2188  * @bio - bio we want to ensure is smaller than a stripe
2189  * @bio_flags - flags of the bio
2190  *
2191  * return 1 if page cannot be added to the bio
2192  * return 0 if page can be added to the bio
2193  * return error otherwise
2194  */
2195 int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
2196                              unsigned long bio_flags)
2197 {
2198         struct inode *inode = page->mapping->host;
2199         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2200         u64 logical = bio->bi_iter.bi_sector << 9;
2201         struct extent_map *em;
2202         u64 length = 0;
2203         u64 map_length;
2204         int ret = 0;
2205         struct btrfs_io_geometry geom;
2206
2207         if (bio_flags & EXTENT_BIO_COMPRESSED)
2208                 return 0;
2209
2210         length = bio->bi_iter.bi_size;
2211         map_length = length;
2212         em = btrfs_get_chunk_map(fs_info, logical, map_length);
2213         if (IS_ERR(em))
2214                 return PTR_ERR(em);
2215         ret = btrfs_get_io_geometry(fs_info, em, btrfs_op(bio), logical,
2216                                     map_length, &geom);
2217         if (ret < 0)
2218                 goto out;
2219
2220         if (geom.len < length + size)
2221                 ret = 1;
2222 out:
2223         free_extent_map(em);
2224         return ret;
2225 }
2226
2227 /*
2228  * in order to insert checksums into the metadata in large chunks,
2229  * we wait until bio submission time.   All the pages in the bio are
2230  * checksummed and sums are attached onto the ordered extent record.
2231  *
2232  * At IO completion time the cums attached on the ordered extent record
2233  * are inserted into the btree
2234  */
2235 static blk_status_t btrfs_submit_bio_start(struct inode *inode, struct bio *bio,
2236                                            u64 dio_file_offset)
2237 {
2238         return btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
2239 }
2240
2241 bool btrfs_bio_fits_in_ordered_extent(struct page *page, struct bio *bio,
2242                                       unsigned int size)
2243 {
2244         struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
2245         struct btrfs_fs_info *fs_info = inode->root->fs_info;
2246         struct btrfs_ordered_extent *ordered;
2247         u64 len = bio->bi_iter.bi_size + size;
2248         bool ret = true;
2249
2250         ASSERT(btrfs_is_zoned(fs_info));
2251         ASSERT(fs_info->max_zone_append_size > 0);
2252         ASSERT(bio_op(bio) == REQ_OP_ZONE_APPEND);
2253
2254         /* Ordered extent not yet created, so we're good */
2255         ordered = btrfs_lookup_ordered_extent(inode, page_offset(page));
2256         if (!ordered)
2257                 return ret;
2258
2259         if ((bio->bi_iter.bi_sector << SECTOR_SHIFT) + len >
2260             ordered->disk_bytenr + ordered->disk_num_bytes)
2261                 ret = false;
2262
2263         btrfs_put_ordered_extent(ordered);
2264
2265         return ret;
2266 }
2267
2268 static blk_status_t extract_ordered_extent(struct btrfs_inode *inode,
2269                                            struct bio *bio, loff_t file_offset)
2270 {
2271         struct btrfs_ordered_extent *ordered;
2272         struct extent_map *em = NULL, *em_new = NULL;
2273         struct extent_map_tree *em_tree = &inode->extent_tree;
2274         u64 start = (u64)bio->bi_iter.bi_sector << SECTOR_SHIFT;
2275         u64 len = bio->bi_iter.bi_size;
2276         u64 end = start + len;
2277         u64 ordered_end;
2278         u64 pre, post;
2279         int ret = 0;
2280
2281         ordered = btrfs_lookup_ordered_extent(inode, file_offset);
2282         if (WARN_ON_ONCE(!ordered))
2283                 return BLK_STS_IOERR;
2284
2285         /* No need to split */
2286         if (ordered->disk_num_bytes == len)
2287                 goto out;
2288
2289         /* We cannot split once end_bio'd ordered extent */
2290         if (WARN_ON_ONCE(ordered->bytes_left != ordered->disk_num_bytes)) {
2291                 ret = -EINVAL;
2292                 goto out;
2293         }
2294
2295         /* We cannot split a compressed ordered extent */
2296         if (WARN_ON_ONCE(ordered->disk_num_bytes != ordered->num_bytes)) {
2297                 ret = -EINVAL;
2298                 goto out;
2299         }
2300
2301         ordered_end = ordered->disk_bytenr + ordered->disk_num_bytes;
2302         /* bio must be in one ordered extent */
2303         if (WARN_ON_ONCE(start < ordered->disk_bytenr || end > ordered_end)) {
2304                 ret = -EINVAL;
2305                 goto out;
2306         }
2307
2308         /* Checksum list should be empty */
2309         if (WARN_ON_ONCE(!list_empty(&ordered->list))) {
2310                 ret = -EINVAL;
2311                 goto out;
2312         }
2313
2314         pre = start - ordered->disk_bytenr;
2315         post = ordered_end - end;
2316
2317         ret = btrfs_split_ordered_extent(ordered, pre, post);
2318         if (ret)
2319                 goto out;
2320
2321         read_lock(&em_tree->lock);
2322         em = lookup_extent_mapping(em_tree, ordered->file_offset, len);
2323         if (!em) {
2324                 read_unlock(&em_tree->lock);
2325                 ret = -EIO;
2326                 goto out;
2327         }
2328         read_unlock(&em_tree->lock);
2329
2330         ASSERT(!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags));
2331         /*
2332          * We cannot reuse em_new here but have to create a new one, as
2333          * unpin_extent_cache() expects the start of the extent map to be the
2334          * logical offset of the file, which does not hold true anymore after
2335          * splitting.
2336          */
2337         em_new = create_io_em(inode, em->start + pre, len,
2338                               em->start + pre, em->block_start + pre, len,
2339                               len, len, BTRFS_COMPRESS_NONE,
2340                               BTRFS_ORDERED_REGULAR);
2341         if (IS_ERR(em_new)) {
2342                 ret = PTR_ERR(em_new);
2343                 goto out;
2344         }
2345         free_extent_map(em_new);
2346
2347 out:
2348         free_extent_map(em);
2349         btrfs_put_ordered_extent(ordered);
2350
2351         return errno_to_blk_status(ret);
2352 }
2353
2354 /*
2355  * extent_io.c submission hook. This does the right thing for csum calculation
2356  * on write, or reading the csums from the tree before a read.
2357  *
2358  * Rules about async/sync submit,
2359  * a) read:                             sync submit
2360  *
2361  * b) write without checksum:           sync submit
2362  *
2363  * c) write with checksum:
2364  *    c-1) if bio is issued by fsync:   sync submit
2365  *         (sync_writers != 0)
2366  *
2367  *    c-2) if root is reloc root:       sync submit
2368  *         (only in case of buffered IO)
2369  *
2370  *    c-3) otherwise:                   async submit
2371  */
2372 blk_status_t btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
2373                                    int mirror_num, unsigned long bio_flags)
2374
2375 {
2376         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2377         struct btrfs_root *root = BTRFS_I(inode)->root;
2378         enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
2379         blk_status_t ret = 0;
2380         int skip_sum;
2381         int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
2382
2383         skip_sum = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) ||
2384                    !fs_info->csum_root;
2385
2386         if (btrfs_is_free_space_inode(BTRFS_I(inode)))
2387                 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
2388
2389         if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
2390                 struct page *page = bio_first_bvec_all(bio)->bv_page;
2391                 loff_t file_offset = page_offset(page);
2392
2393                 ret = extract_ordered_extent(BTRFS_I(inode), bio, file_offset);
2394                 if (ret)
2395                         goto out;
2396         }
2397
2398         if (btrfs_op(bio) != BTRFS_MAP_WRITE) {
2399                 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
2400                 if (ret)
2401                         goto out;
2402
2403                 if (bio_flags & EXTENT_BIO_COMPRESSED) {
2404                         ret = btrfs_submit_compressed_read(inode, bio,
2405                                                            mirror_num,
2406                                                            bio_flags);
2407                         goto out;
2408                 } else {
2409                         /*
2410                          * Lookup bio sums does extra checks around whether we
2411                          * need to csum or not, which is why we ignore skip_sum
2412                          * here.
2413                          */
2414                         ret = btrfs_lookup_bio_sums(inode, bio, NULL);
2415                         if (ret)
2416                                 goto out;
2417                 }
2418                 goto mapit;
2419         } else if (async && !skip_sum) {
2420                 /* csum items have already been cloned */
2421                 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2422                         goto mapit;
2423                 /* we're doing a write, do the async checksumming */
2424                 ret = btrfs_wq_submit_bio(inode, bio, mirror_num, bio_flags,
2425                                           0, btrfs_submit_bio_start);
2426                 goto out;
2427         } else if (!skip_sum) {
2428                 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
2429                 if (ret)
2430                         goto out;
2431         }
2432
2433 mapit:
2434         ret = btrfs_map_bio(fs_info, bio, mirror_num);
2435
2436 out:
2437         if (ret) {
2438                 bio->bi_status = ret;
2439                 bio_endio(bio);
2440         }
2441         return ret;
2442 }
2443
2444 /*
2445  * given a list of ordered sums record them in the inode.  This happens
2446  * at IO completion time based on sums calculated at bio submission time.
2447  */
2448 static int add_pending_csums(struct btrfs_trans_handle *trans,
2449                              struct list_head *list)
2450 {
2451         struct btrfs_ordered_sum *sum;
2452         int ret;
2453
2454         list_for_each_entry(sum, list, list) {
2455                 trans->adding_csums = true;
2456                 ret = btrfs_csum_file_blocks(trans, trans->fs_info->csum_root, sum);
2457                 trans->adding_csums = false;
2458                 if (ret)
2459                         return ret;
2460         }
2461         return 0;
2462 }
2463
2464 static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
2465                                          const u64 start,
2466                                          const u64 len,
2467                                          struct extent_state **cached_state)
2468 {
2469         u64 search_start = start;
2470         const u64 end = start + len - 1;
2471
2472         while (search_start < end) {
2473                 const u64 search_len = end - search_start + 1;
2474                 struct extent_map *em;
2475                 u64 em_len;
2476                 int ret = 0;
2477
2478                 em = btrfs_get_extent(inode, NULL, 0, search_start, search_len);
2479                 if (IS_ERR(em))
2480                         return PTR_ERR(em);
2481
2482                 if (em->block_start != EXTENT_MAP_HOLE)
2483                         goto next;
2484
2485                 em_len = em->len;
2486                 if (em->start < search_start)
2487                         em_len -= search_start - em->start;
2488                 if (em_len > search_len)
2489                         em_len = search_len;
2490
2491                 ret = set_extent_bit(&inode->io_tree, search_start,
2492                                      search_start + em_len - 1,
2493                                      EXTENT_DELALLOC_NEW, 0, NULL, cached_state,
2494                                      GFP_NOFS, NULL);
2495 next:
2496                 search_start = extent_map_end(em);
2497                 free_extent_map(em);
2498                 if (ret)
2499                         return ret;
2500         }
2501         return 0;
2502 }
2503
2504 int btrfs_set_extent_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
2505                               unsigned int extra_bits,
2506                               struct extent_state **cached_state)
2507 {
2508         WARN_ON(PAGE_ALIGNED(end));
2509
2510         if (start >= i_size_read(&inode->vfs_inode) &&
2511             !(inode->flags & BTRFS_INODE_PREALLOC)) {
2512                 /*
2513                  * There can't be any extents following eof in this case so just
2514                  * set the delalloc new bit for the range directly.
2515                  */
2516                 extra_bits |= EXTENT_DELALLOC_NEW;
2517         } else {
2518                 int ret;
2519
2520                 ret = btrfs_find_new_delalloc_bytes(inode, start,
2521                                                     end + 1 - start,
2522                                                     cached_state);
2523                 if (ret)
2524                         return ret;
2525         }
2526
2527         return set_extent_delalloc(&inode->io_tree, start, end, extra_bits,
2528                                    cached_state);
2529 }
2530
2531 /* see btrfs_writepage_start_hook for details on why this is required */
2532 struct btrfs_writepage_fixup {
2533         struct page *page;
2534         struct inode *inode;
2535         struct btrfs_work work;
2536 };
2537
2538 static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
2539 {
2540         struct btrfs_writepage_fixup *fixup;
2541         struct btrfs_ordered_extent *ordered;
2542         struct extent_state *cached_state = NULL;
2543         struct extent_changeset *data_reserved = NULL;
2544         struct page *page;
2545         struct btrfs_inode *inode;
2546         u64 page_start;
2547         u64 page_end;
2548         int ret = 0;
2549         bool free_delalloc_space = true;
2550
2551         fixup = container_of(work, struct btrfs_writepage_fixup, work);
2552         page = fixup->page;
2553         inode = BTRFS_I(fixup->inode);
2554         page_start = page_offset(page);
2555         page_end = page_offset(page) + PAGE_SIZE - 1;
2556
2557         /*
2558          * This is similar to page_mkwrite, we need to reserve the space before
2559          * we take the page lock.
2560          */
2561         ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
2562                                            PAGE_SIZE);
2563 again:
2564         lock_page(page);
2565
2566         /*
2567          * Before we queued this fixup, we took a reference on the page.
2568          * page->mapping may go NULL, but it shouldn't be moved to a different
2569          * address space.
2570          */
2571         if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2572                 /*
2573                  * Unfortunately this is a little tricky, either
2574                  *
2575                  * 1) We got here and our page had already been dealt with and
2576                  *    we reserved our space, thus ret == 0, so we need to just
2577                  *    drop our space reservation and bail.  This can happen the
2578                  *    first time we come into the fixup worker, or could happen
2579                  *    while waiting for the ordered extent.
2580                  * 2) Our page was already dealt with, but we happened to get an
2581                  *    ENOSPC above from the btrfs_delalloc_reserve_space.  In
2582                  *    this case we obviously don't have anything to release, but
2583                  *    because the page was already dealt with we don't want to
2584                  *    mark the page with an error, so make sure we're resetting
2585                  *    ret to 0.  This is why we have this check _before_ the ret
2586                  *    check, because we do not want to have a surprise ENOSPC
2587                  *    when the page was already properly dealt with.
2588                  */
2589                 if (!ret) {
2590                         btrfs_delalloc_release_extents(inode, PAGE_SIZE);
2591                         btrfs_delalloc_release_space(inode, data_reserved,
2592                                                      page_start, PAGE_SIZE,
2593                                                      true);
2594                 }
2595                 ret = 0;
2596                 goto out_page;
2597         }
2598
2599         /*
2600          * We can't mess with the page state unless it is locked, so now that
2601          * it is locked bail if we failed to make our space reservation.
2602          */
2603         if (ret)
2604                 goto out_page;
2605
2606         lock_extent_bits(&inode->io_tree, page_start, page_end, &cached_state);
2607
2608         /* already ordered? We're done */
2609         if (PagePrivate2(page))
2610                 goto out_reserved;
2611
2612         ordered = btrfs_lookup_ordered_range(inode, page_start, PAGE_SIZE);
2613         if (ordered) {
2614                 unlock_extent_cached(&inode->io_tree, page_start, page_end,
2615                                      &cached_state);
2616                 unlock_page(page);
2617                 btrfs_start_ordered_extent(ordered, 1);
2618                 btrfs_put_ordered_extent(ordered);
2619                 goto again;
2620         }
2621
2622         ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2623                                         &cached_state);
2624         if (ret)
2625                 goto out_reserved;
2626
2627         /*
2628          * Everything went as planned, we're now the owner of a dirty page with
2629          * delayed allocation bits set and space reserved for our COW
2630          * destination.
2631          *
2632          * The page was dirty when we started, nothing should have cleaned it.
2633          */
2634         BUG_ON(!PageDirty(page));
2635         free_delalloc_space = false;
2636 out_reserved:
2637         btrfs_delalloc_release_extents(inode, PAGE_SIZE);
2638         if (free_delalloc_space)
2639                 btrfs_delalloc_release_space(inode, data_reserved, page_start,
2640                                              PAGE_SIZE, true);
2641         unlock_extent_cached(&inode->io_tree, page_start, page_end,
2642                              &cached_state);
2643 out_page:
2644         if (ret) {
2645                 /*
2646                  * We hit ENOSPC or other errors.  Update the mapping and page
2647                  * to reflect the errors and clean the page.
2648                  */
2649                 mapping_set_error(page->mapping, ret);
2650                 end_extent_writepage(page, ret, page_start, page_end);
2651                 clear_page_dirty_for_io(page);
2652                 SetPageError(page);
2653         }
2654         ClearPageChecked(page);
2655         unlock_page(page);
2656         put_page(page);
2657         kfree(fixup);
2658         extent_changeset_free(data_reserved);
2659         /*
2660          * As a precaution, do a delayed iput in case it would be the last iput
2661          * that could need flushing space. Recursing back to fixup worker would
2662          * deadlock.
2663          */
2664         btrfs_add_delayed_iput(&inode->vfs_inode);
2665 }
2666
2667 /*
2668  * There are a few paths in the higher layers of the kernel that directly
2669  * set the page dirty bit without asking the filesystem if it is a
2670  * good idea.  This causes problems because we want to make sure COW
2671  * properly happens and the data=ordered rules are followed.
2672  *
2673  * In our case any range that doesn't have the ORDERED bit set
2674  * hasn't been properly setup for IO.  We kick off an async process
2675  * to fix it up.  The async helper will wait for ordered extents, set
2676  * the delalloc bit and make it safe to write the page.
2677  */
2678 int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
2679 {
2680         struct inode *inode = page->mapping->host;
2681         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2682         struct btrfs_writepage_fixup *fixup;
2683
2684         /* this page is properly in the ordered list */
2685         if (TestClearPagePrivate2(page))
2686                 return 0;
2687
2688         /*
2689          * PageChecked is set below when we create a fixup worker for this page,
2690          * don't try to create another one if we're already PageChecked()
2691          *
2692          * The extent_io writepage code will redirty the page if we send back
2693          * EAGAIN.
2694          */
2695         if (PageChecked(page))
2696                 return -EAGAIN;
2697
2698         fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2699         if (!fixup)
2700                 return -EAGAIN;
2701
2702         /*
2703          * We are already holding a reference to this inode from
2704          * write_cache_pages.  We need to hold it because the space reservation
2705          * takes place outside of the page lock, and we can't trust
2706          * page->mapping outside of the page lock.
2707          */
2708         ihold(inode);
2709         SetPageChecked(page);
2710         get_page(page);
2711         btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL);
2712         fixup->page = page;
2713         fixup->inode = inode;
2714         btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
2715
2716         return -EAGAIN;
2717 }
2718
2719 static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2720                                        struct btrfs_inode *inode, u64 file_pos,
2721                                        struct btrfs_file_extent_item *stack_fi,
2722                                        const bool update_inode_bytes,
2723                                        u64 qgroup_reserved)
2724 {
2725         struct btrfs_root *root = inode->root;
2726         const u64 sectorsize = root->fs_info->sectorsize;
2727         struct btrfs_path *path;
2728         struct extent_buffer *leaf;
2729         struct btrfs_key ins;
2730         u64 disk_num_bytes = btrfs_stack_file_extent_disk_num_bytes(stack_fi);
2731         u64 disk_bytenr = btrfs_stack_file_extent_disk_bytenr(stack_fi);
2732         u64 num_bytes = btrfs_stack_file_extent_num_bytes(stack_fi);
2733         u64 ram_bytes = btrfs_stack_file_extent_ram_bytes(stack_fi);
2734         struct btrfs_drop_extents_args drop_args = { 0 };
2735         int ret;
2736
2737         path = btrfs_alloc_path();
2738         if (!path)
2739                 return -ENOMEM;
2740
2741         /*
2742          * we may be replacing one extent in the tree with another.
2743          * The new extent is pinned in the extent map, and we don't want
2744          * to drop it from the cache until it is completely in the btree.
2745          *
2746          * So, tell btrfs_drop_extents to leave this extent in the cache.
2747          * the caller is expected to unpin it and allow it to be merged
2748          * with the others.
2749          */
2750         drop_args.path = path;
2751         drop_args.start = file_pos;
2752         drop_args.end = file_pos + num_bytes;
2753         drop_args.replace_extent = true;
2754         drop_args.extent_item_size = sizeof(*stack_fi);
2755         ret = btrfs_drop_extents(trans, root, inode, &drop_args);
2756         if (ret)
2757                 goto out;
2758
2759         if (!drop_args.extent_inserted) {
2760                 ins.objectid = btrfs_ino(inode);
2761                 ins.offset = file_pos;
2762                 ins.type = BTRFS_EXTENT_DATA_KEY;
2763
2764                 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2765                                               sizeof(*stack_fi));
2766                 if (ret)
2767                         goto out;
2768         }
2769         leaf = path->nodes[0];
2770         btrfs_set_stack_file_extent_generation(stack_fi, trans->transid);
2771         write_extent_buffer(leaf, stack_fi,
2772                         btrfs_item_ptr_offset(leaf, path->slots[0]),
2773                         sizeof(struct btrfs_file_extent_item));
2774
2775         btrfs_mark_buffer_dirty(leaf);
2776         btrfs_release_path(path);
2777
2778         /*
2779          * If we dropped an inline extent here, we know the range where it is
2780          * was not marked with the EXTENT_DELALLOC_NEW bit, so we update the
2781          * number of bytes only for that range contaning the inline extent.
2782          * The remaining of the range will be processed when clearning the
2783          * EXTENT_DELALLOC_BIT bit through the ordered extent completion.
2784          */
2785         if (file_pos == 0 && !IS_ALIGNED(drop_args.bytes_found, sectorsize)) {
2786                 u64 inline_size = round_down(drop_args.bytes_found, sectorsize);
2787
2788                 inline_size = drop_args.bytes_found - inline_size;
2789                 btrfs_update_inode_bytes(inode, sectorsize, inline_size);
2790                 drop_args.bytes_found -= inline_size;
2791                 num_bytes -= sectorsize;
2792         }
2793
2794         if (update_inode_bytes)
2795                 btrfs_update_inode_bytes(inode, num_bytes, drop_args.bytes_found);
2796
2797         ins.objectid = disk_bytenr;
2798         ins.offset = disk_num_bytes;
2799         ins.type = BTRFS_EXTENT_ITEM_KEY;
2800
2801         ret = btrfs_inode_set_file_extent_range(inode, file_pos, ram_bytes);
2802         if (ret)
2803                 goto out;
2804
2805         ret = btrfs_alloc_reserved_file_extent(trans, root, btrfs_ino(inode),
2806                                                file_pos, qgroup_reserved, &ins);
2807 out:
2808         btrfs_free_path(path);
2809
2810         return ret;
2811 }
2812
2813 static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
2814                                          u64 start, u64 len)
2815 {
2816         struct btrfs_block_group *cache;
2817
2818         cache = btrfs_lookup_block_group(fs_info, start);
2819         ASSERT(cache);
2820
2821         spin_lock(&cache->lock);
2822         cache->delalloc_bytes -= len;
2823         spin_unlock(&cache->lock);
2824
2825         btrfs_put_block_group(cache);
2826 }
2827
2828 static int insert_ordered_extent_file_extent(struct btrfs_trans_handle *trans,
2829                                              struct btrfs_ordered_extent *oe)
2830 {
2831         struct btrfs_file_extent_item stack_fi;
2832         u64 logical_len;
2833         bool update_inode_bytes;
2834
2835         memset(&stack_fi, 0, sizeof(stack_fi));
2836         btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_REG);
2837         btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, oe->disk_bytenr);
2838         btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi,
2839                                                    oe->disk_num_bytes);
2840         if (test_bit(BTRFS_ORDERED_TRUNCATED, &oe->flags))
2841                 logical_len = oe->truncated_len;
2842         else
2843                 logical_len = oe->num_bytes;
2844         btrfs_set_stack_file_extent_num_bytes(&stack_fi, logical_len);
2845         btrfs_set_stack_file_extent_ram_bytes(&stack_fi, logical_len);
2846         btrfs_set_stack_file_extent_compression(&stack_fi, oe->compress_type);
2847         /* Encryption and other encoding is reserved and all 0 */
2848
2849         /*
2850          * For delalloc, when completing an ordered extent we update the inode's
2851          * bytes when clearing the range in the inode's io tree, so pass false
2852          * as the argument 'update_inode_bytes' to insert_reserved_file_extent(),
2853          * except if the ordered extent was truncated.
2854          */
2855         update_inode_bytes = test_bit(BTRFS_ORDERED_DIRECT, &oe->flags) ||
2856                              test_bit(BTRFS_ORDERED_TRUNCATED, &oe->flags);
2857
2858         return insert_reserved_file_extent(trans, BTRFS_I(oe->inode),
2859                                            oe->file_offset, &stack_fi,
2860                                            update_inode_bytes, oe->qgroup_rsv);
2861 }
2862
2863 /*
2864  * As ordered data IO finishes, this gets called so we can finish
2865  * an ordered extent if the range of bytes in the file it covers are
2866  * fully written.
2867  */
2868 static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
2869 {
2870         struct btrfs_inode *inode = BTRFS_I(ordered_extent->inode);
2871         struct btrfs_root *root = inode->root;
2872         struct btrfs_fs_info *fs_info = root->fs_info;
2873         struct btrfs_trans_handle *trans = NULL;
2874         struct extent_io_tree *io_tree = &inode->io_tree;
2875         struct extent_state *cached_state = NULL;
2876         u64 start, end;
2877         int compress_type = 0;
2878         int ret = 0;
2879         u64 logical_len = ordered_extent->num_bytes;
2880         bool freespace_inode;
2881         bool truncated = false;
2882         bool clear_reserved_extent = true;
2883         unsigned int clear_bits = EXTENT_DEFRAG;
2884
2885         start = ordered_extent->file_offset;
2886         end = start + ordered_extent->num_bytes - 1;
2887
2888         if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2889             !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2890             !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2891                 clear_bits |= EXTENT_DELALLOC_NEW;
2892
2893         freespace_inode = btrfs_is_free_space_inode(inode);
2894
2895         if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2896                 ret = -EIO;
2897                 goto out;
2898         }
2899
2900         if (ordered_extent->disk)
2901                 btrfs_rewrite_logical_zoned(ordered_extent);
2902
2903         btrfs_free_io_failure_record(inode, start, end);
2904
2905         if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2906                 truncated = true;
2907                 logical_len = ordered_extent->truncated_len;
2908                 /* Truncated the entire extent, don't bother adding */
2909                 if (!logical_len)
2910                         goto out;
2911         }
2912
2913         if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
2914                 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
2915
2916                 btrfs_inode_safe_disk_i_size_write(inode, 0);
2917                 if (freespace_inode)
2918                         trans = btrfs_join_transaction_spacecache(root);
2919                 else
2920                         trans = btrfs_join_transaction(root);
2921                 if (IS_ERR(trans)) {
2922                         ret = PTR_ERR(trans);
2923                         trans = NULL;
2924                         goto out;
2925                 }
2926                 trans->block_rsv = &inode->block_rsv;
2927                 ret = btrfs_update_inode_fallback(trans, root, inode);
2928                 if (ret) /* -ENOMEM or corruption */
2929                         btrfs_abort_transaction(trans, ret);
2930                 goto out;
2931         }
2932
2933         clear_bits |= EXTENT_LOCKED;
2934         lock_extent_bits(io_tree, start, end, &cached_state);
2935
2936         if (freespace_inode)
2937                 trans = btrfs_join_transaction_spacecache(root);
2938         else
2939                 trans = btrfs_join_transaction(root);
2940         if (IS_ERR(trans)) {
2941                 ret = PTR_ERR(trans);
2942                 trans = NULL;
2943                 goto out;
2944         }
2945
2946         trans->block_rsv = &inode->block_rsv;
2947
2948         if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
2949                 compress_type = ordered_extent->compress_type;
2950         if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
2951                 BUG_ON(compress_type);
2952                 ret = btrfs_mark_extent_written(trans, inode,
2953                                                 ordered_extent->file_offset,
2954                                                 ordered_extent->file_offset +
2955                                                 logical_len);
2956         } else {
2957                 BUG_ON(root == fs_info->tree_root);
2958                 ret = insert_ordered_extent_file_extent(trans, ordered_extent);
2959                 if (!ret) {
2960                         clear_reserved_extent = false;
2961                         btrfs_release_delalloc_bytes(fs_info,
2962                                                 ordered_extent->disk_bytenr,
2963                                                 ordered_extent->disk_num_bytes);
2964                 }
2965         }
2966         unpin_extent_cache(&inode->extent_tree, ordered_extent->file_offset,
2967                            ordered_extent->num_bytes, trans->transid);
2968         if (ret < 0) {
2969                 btrfs_abort_transaction(trans, ret);
2970                 goto out;
2971         }
2972
2973         ret = add_pending_csums(trans, &ordered_extent->list);
2974         if (ret) {
2975                 btrfs_abort_transaction(trans, ret);
2976                 goto out;
2977         }
2978
2979         /*
2980          * If this is a new delalloc range, clear its new delalloc flag to
2981          * update the inode's number of bytes. This needs to be done first
2982          * before updating the inode item.
2983          */
2984         if ((clear_bits & EXTENT_DELALLOC_NEW) &&
2985             !test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags))
2986                 clear_extent_bit(&inode->io_tree, start, end,
2987                                  EXTENT_DELALLOC_NEW | EXTENT_ADD_INODE_BYTES,
2988                                  0, 0, &cached_state);
2989
2990         btrfs_inode_safe_disk_i_size_write(inode, 0);
2991         ret = btrfs_update_inode_fallback(trans, root, inode);
2992         if (ret) { /* -ENOMEM or corruption */
2993                 btrfs_abort_transaction(trans, ret);
2994                 goto out;
2995         }
2996         ret = 0;
2997 out:
2998         clear_extent_bit(&inode->io_tree, start, end, clear_bits,
2999                          (clear_bits & EXTENT_LOCKED) ? 1 : 0, 0,
3000                          &cached_state);
3001
3002         if (trans)
3003                 btrfs_end_transaction(trans);
3004
3005         if (ret || truncated) {
3006                 u64 unwritten_start = start;
3007
3008                 if (truncated)
3009                         unwritten_start += logical_len;
3010                 clear_extent_uptodate(io_tree, unwritten_start, end, NULL);
3011
3012                 /* Drop the cache for the part of the extent we didn't write. */
3013                 btrfs_drop_extent_cache(inode, unwritten_start, end, 0);
3014
3015                 /*
3016                  * If the ordered extent had an IOERR or something else went
3017                  * wrong we need to return the space for this ordered extent
3018                  * back to the allocator.  We only free the extent in the
3019                  * truncated case if we didn't write out the extent at all.
3020                  *
3021                  * If we made it past insert_reserved_file_extent before we
3022                  * errored out then we don't need to do this as the accounting
3023                  * has already been done.
3024                  */
3025                 if ((ret || !logical_len) &&
3026                     clear_reserved_extent &&
3027                     !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
3028                     !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
3029                         /*
3030                          * Discard the range before returning it back to the
3031                          * free space pool
3032                          */
3033                         if (ret && btrfs_test_opt(fs_info, DISCARD_SYNC))
3034                                 btrfs_discard_extent(fs_info,
3035                                                 ordered_extent->disk_bytenr,
3036                                                 ordered_extent->disk_num_bytes,
3037                                                 NULL);
3038                         btrfs_free_reserved_extent(fs_info,
3039                                         ordered_extent->disk_bytenr,
3040                                         ordered_extent->disk_num_bytes, 1);
3041                 }
3042         }
3043
3044         /*
3045          * This needs to be done to make sure anybody waiting knows we are done
3046          * updating everything for this ordered extent.
3047          */
3048         btrfs_remove_ordered_extent(inode, ordered_extent);
3049
3050         /* once for us */
3051         btrfs_put_ordered_extent(ordered_extent);
3052         /* once for the tree */
3053         btrfs_put_ordered_extent(ordered_extent);
3054
3055         return ret;
3056 }
3057
3058 static void finish_ordered_fn(struct btrfs_work *work)
3059 {
3060         struct btrfs_ordered_extent *ordered_extent;
3061         ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3062         btrfs_finish_ordered_io(ordered_extent);
3063 }
3064
3065 void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start,
3066                                           u64 end, int uptodate)
3067 {
3068         struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
3069         struct btrfs_fs_info *fs_info = inode->root->fs_info;
3070         struct btrfs_ordered_extent *ordered_extent = NULL;
3071         struct btrfs_workqueue *wq;
3072
3073         trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3074
3075         ClearPagePrivate2(page);
3076         if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3077                                             end - start + 1, uptodate))
3078                 return;
3079
3080         if (btrfs_is_free_space_inode(inode))
3081                 wq = fs_info->endio_freespace_worker;
3082         else
3083                 wq = fs_info->endio_write_workers;
3084
3085         btrfs_init_work(&ordered_extent->work, finish_ordered_fn, NULL, NULL);
3086         btrfs_queue_work(wq, &ordered_extent->work);
3087 }
3088
3089 /*
3090  * check_data_csum - verify checksum of one sector of uncompressed data
3091  * @inode:      inode
3092  * @io_bio:     btrfs_io_bio which contains the csum
3093  * @bio_offset: offset to the beginning of the bio (in bytes)
3094  * @page:       page where is the data to be verified
3095  * @pgoff:      offset inside the page
3096  * @start:      logical offset in the file
3097  *
3098  * The length of such check is always one sector size.
3099  */
3100 static int check_data_csum(struct inode *inode, struct btrfs_io_bio *io_bio,
3101                            u32 bio_offset, struct page *page, u32 pgoff,
3102                            u64 start)
3103 {
3104         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3105         SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
3106         char *kaddr;
3107         u32 len = fs_info->sectorsize;
3108         const u32 csum_size = fs_info->csum_size;
3109         unsigned int offset_sectors;
3110         u8 *csum_expected;
3111         u8 csum[BTRFS_CSUM_SIZE];
3112
3113         ASSERT(pgoff + len <= PAGE_SIZE);
3114
3115         offset_sectors = bio_offset >> fs_info->sectorsize_bits;
3116         csum_expected = ((u8 *)io_bio->csum) + offset_sectors * csum_size;
3117
3118         kaddr = kmap_atomic(page);
3119         shash->tfm = fs_info->csum_shash;
3120
3121         crypto_shash_digest(shash, kaddr + pgoff, len, csum);
3122
3123         if (memcmp(csum, csum_expected, csum_size))
3124                 goto zeroit;
3125
3126         kunmap_atomic(kaddr);
3127         return 0;
3128 zeroit:
3129         btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
3130                                     io_bio->mirror_num);
3131         if (io_bio->device)
3132                 btrfs_dev_stat_inc_and_print(io_bio->device,
3133                                              BTRFS_DEV_STAT_CORRUPTION_ERRS);
3134         memset(kaddr + pgoff, 1, len);
3135         flush_dcache_page(page);
3136         kunmap_atomic(kaddr);
3137         return -EIO;
3138 }
3139
3140 /*
3141  * When reads are done, we need to check csums to verify the data is correct.
3142  * if there's a match, we allow the bio to finish.  If not, the code in
3143  * extent_io.c will try to find good copies for us.
3144  *
3145  * @bio_offset: offset to the beginning of the bio (in bytes)
3146  * @start:      file offset of the range start
3147  * @end:        file offset of the range end (inclusive)
3148  */
3149 int btrfs_verify_data_csum(struct btrfs_io_bio *io_bio, u32 bio_offset,
3150                            struct page *page, u64 start, u64 end)
3151 {
3152         struct inode *inode = page->mapping->host;
3153         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3154         struct btrfs_root *root = BTRFS_I(inode)->root;
3155         const u32 sectorsize = root->fs_info->sectorsize;
3156         u32 pg_off;
3157
3158         if (PageChecked(page)) {
3159                 ClearPageChecked(page);
3160                 return 0;
3161         }
3162
3163         if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
3164                 return 0;
3165
3166         if (!root->fs_info->csum_root)
3167                 return 0;
3168
3169         if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
3170             test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
3171                 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
3172                 return 0;
3173         }
3174
3175         ASSERT(page_offset(page) <= start &&
3176                end <= page_offset(page) + PAGE_SIZE - 1);
3177         for (pg_off = offset_in_page(start);
3178              pg_off < offset_in_page(end);
3179              pg_off += sectorsize, bio_offset += sectorsize) {
3180                 int ret;
3181
3182                 ret = check_data_csum(inode, io_bio, bio_offset, page, pg_off,
3183                                       page_offset(page) + pg_off);
3184                 if (ret < 0)
3185                         return -EIO;
3186         }
3187         return 0;
3188 }
3189
3190 /*
3191  * btrfs_add_delayed_iput - perform a delayed iput on @inode
3192  *
3193  * @inode: The inode we want to perform iput on
3194  *
3195  * This function uses the generic vfs_inode::i_count to track whether we should
3196  * just decrement it (in case it's > 1) or if this is the last iput then link
3197  * the inode to the delayed iput machinery. Delayed iputs are processed at
3198  * transaction commit time/superblock commit/cleaner kthread.
3199  */
3200 void btrfs_add_delayed_iput(struct inode *inode)
3201 {
3202         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3203         struct btrfs_inode *binode = BTRFS_I(inode);
3204
3205         if (atomic_add_unless(&inode->i_count, -1, 1))
3206                 return;
3207
3208         atomic_inc(&fs_info->nr_delayed_iputs);
3209         spin_lock(&fs_info->delayed_iput_lock);
3210         ASSERT(list_empty(&binode->delayed_iput));
3211         list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
3212         spin_unlock(&fs_info->delayed_iput_lock);
3213         if (!test_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags))
3214                 wake_up_process(fs_info->cleaner_kthread);
3215 }
3216
3217 static void run_delayed_iput_locked(struct btrfs_fs_info *fs_info,
3218                                     struct btrfs_inode *inode)
3219 {
3220         list_del_init(&inode->delayed_iput);
3221         spin_unlock(&fs_info->delayed_iput_lock);
3222         iput(&inode->vfs_inode);
3223         if (atomic_dec_and_test(&fs_info->nr_delayed_iputs))
3224                 wake_up(&fs_info->delayed_iputs_wait);
3225         spin_lock(&fs_info->delayed_iput_lock);
3226 }
3227
3228 static void btrfs_run_delayed_iput(struct btrfs_fs_info *fs_info,
3229                                    struct btrfs_inode *inode)
3230 {
3231         if (!list_empty(&inode->delayed_iput)) {
3232                 spin_lock(&fs_info->delayed_iput_lock);
3233                 if (!list_empty(&inode->delayed_iput))
3234                         run_delayed_iput_locked(fs_info, inode);
3235                 spin_unlock(&fs_info->delayed_iput_lock);
3236         }
3237 }
3238
3239 void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
3240 {
3241
3242         spin_lock(&fs_info->delayed_iput_lock);
3243         while (!list_empty(&fs_info->delayed_iputs)) {
3244                 struct btrfs_inode *inode;
3245
3246                 inode = list_first_entry(&fs_info->delayed_iputs,
3247                                 struct btrfs_inode, delayed_iput);
3248                 run_delayed_iput_locked(fs_info, inode);
3249         }
3250         spin_unlock(&fs_info->delayed_iput_lock);
3251 }
3252
3253 /**
3254  * Wait for flushing all delayed iputs
3255  *
3256  * @fs_info:  the filesystem
3257  *
3258  * This will wait on any delayed iputs that are currently running with KILLABLE
3259  * set.  Once they are all done running we will return, unless we are killed in
3260  * which case we return EINTR. This helps in user operations like fallocate etc
3261  * that might get blocked on the iputs.
3262  *
3263  * Return EINTR if we were killed, 0 if nothing's pending
3264  */
3265 int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info)
3266 {
3267         int ret = wait_event_killable(fs_info->delayed_iputs_wait,
3268                         atomic_read(&fs_info->nr_delayed_iputs) == 0);
3269         if (ret)
3270                 return -EINTR;
3271         return 0;
3272 }
3273
3274 /*
3275  * This creates an orphan entry for the given inode in case something goes wrong
3276  * in the middle of an unlink.
3277  */
3278 int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3279                      struct btrfs_inode *inode)
3280 {
3281         int ret;
3282
3283         ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3284         if (ret && ret != -EEXIST) {
3285                 btrfs_abort_transaction(trans, ret);
3286                 return ret;
3287         }
3288
3289         return 0;
3290 }
3291
3292 /*
3293  * We have done the delete so we can go ahead and remove the orphan item for
3294  * this particular inode.
3295  */
3296 static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3297                             struct btrfs_inode *inode)
3298 {
3299         return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
3300 }
3301
3302 /*
3303  * this cleans up any orphans that may be left on the list from the last use
3304  * of this root.
3305  */
3306 int btrfs_orphan_cleanup(struct btrfs_root *root)
3307 {
3308         struct btrfs_fs_info *fs_info = root->fs_info;
3309         struct btrfs_path *path;
3310         struct extent_buffer *leaf;
3311         struct btrfs_key key, found_key;
3312         struct btrfs_trans_handle *trans;
3313         struct inode *inode;
3314         u64 last_objectid = 0;
3315         int ret = 0, nr_unlink = 0;
3316
3317         if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
3318                 return 0;
3319
3320         path = btrfs_alloc_path();
3321         if (!path) {
3322                 ret = -ENOMEM;
3323                 goto out;
3324         }
3325         path->reada = READA_BACK;
3326
3327         key.objectid = BTRFS_ORPHAN_OBJECTID;
3328         key.type = BTRFS_ORPHAN_ITEM_KEY;
3329         key.offset = (u64)-1;
3330
3331         while (1) {
3332                 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3333                 if (ret < 0)
3334                         goto out;
3335
3336                 /*
3337                  * if ret == 0 means we found what we were searching for, which
3338                  * is weird, but possible, so only screw with path if we didn't
3339                  * find the key and see if we have stuff that matches
3340                  */
3341                 if (ret > 0) {
3342                         ret = 0;
3343                         if (path->slots[0] == 0)
3344                                 break;
3345                         path->slots[0]--;
3346                 }
3347
3348                 /* pull out the item */
3349                 leaf = path->nodes[0];
3350                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3351
3352                 /* make sure the item matches what we want */
3353                 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3354                         break;
3355                 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
3356                         break;
3357
3358                 /* release the path since we're done with it */
3359                 btrfs_release_path(path);
3360
3361                 /*
3362                  * this is where we are basically btrfs_lookup, without the
3363                  * crossing root thing.  we store the inode number in the
3364                  * offset of the orphan item.
3365                  */
3366
3367                 if (found_key.offset == last_objectid) {
3368                         btrfs_err(fs_info,
3369                                   "Error removing orphan entry, stopping orphan cleanup");
3370                         ret = -EINVAL;
3371                         goto out;
3372                 }
3373
3374                 last_objectid = found_key.offset;
3375
3376                 found_key.objectid = found_key.offset;
3377                 found_key.type = BTRFS_INODE_ITEM_KEY;
3378                 found_key.offset = 0;
3379                 inode = btrfs_iget(fs_info->sb, last_objectid, root);
3380                 ret = PTR_ERR_OR_ZERO(inode);
3381                 if (ret && ret != -ENOENT)
3382                         goto out;
3383
3384                 if (ret == -ENOENT && root == fs_info->tree_root) {
3385                         struct btrfs_root *dead_root;
3386                         int is_dead_root = 0;
3387
3388                         /*
3389                          * This is an orphan in the tree root. Currently these
3390                          * could come from 2 sources:
3391                          *  a) a root (snapshot/subvolume) deletion in progress
3392                          *  b) a free space cache inode
3393                          * We need to distinguish those two, as the orphan item
3394                          * for a root must not get deleted before the deletion
3395                          * of the snapshot/subvolume's tree completes.
3396                          *
3397                          * btrfs_find_orphan_roots() ran before us, which has
3398                          * found all deleted roots and loaded them into
3399                          * fs_info->fs_roots_radix. So here we can find if an
3400                          * orphan item corresponds to a deleted root by looking
3401                          * up the root from that radix tree.
3402                          */
3403
3404                         spin_lock(&fs_info->fs_roots_radix_lock);
3405                         dead_root = radix_tree_lookup(&fs_info->fs_roots_radix,
3406                                                          (unsigned long)found_key.objectid);
3407                         if (dead_root && btrfs_root_refs(&dead_root->root_item) == 0)
3408                                 is_dead_root = 1;
3409                         spin_unlock(&fs_info->fs_roots_radix_lock);
3410
3411                         if (is_dead_root) {
3412                                 /* prevent this orphan from being found again */
3413                                 key.offset = found_key.objectid - 1;
3414                                 continue;
3415                         }
3416
3417                 }
3418
3419                 /*
3420                  * If we have an inode with links, there are a couple of
3421                  * possibilities. Old kernels (before v3.12) used to create an
3422                  * orphan item for truncate indicating that there were possibly
3423                  * extent items past i_size that needed to be deleted. In v3.12,
3424                  * truncate was changed to update i_size in sync with the extent
3425                  * items, but the (useless) orphan item was still created. Since
3426                  * v4.18, we don't create the orphan item for truncate at all.
3427                  *
3428                  * So, this item could mean that we need to do a truncate, but
3429                  * only if this filesystem was last used on a pre-v3.12 kernel
3430                  * and was not cleanly unmounted. The odds of that are quite
3431                  * slim, and it's a pain to do the truncate now, so just delete
3432                  * the orphan item.
3433                  *
3434                  * It's also possible that this orphan item was supposed to be
3435                  * deleted but wasn't. The inode number may have been reused,
3436                  * but either way, we can delete the orphan item.
3437                  */
3438                 if (ret == -ENOENT || inode->i_nlink) {
3439                         if (!ret)
3440                                 iput(inode);
3441                         trans = btrfs_start_transaction(root, 1);
3442                         if (IS_ERR(trans)) {
3443                                 ret = PTR_ERR(trans);
3444                                 goto out;
3445                         }
3446                         btrfs_debug(fs_info, "auto deleting %Lu",
3447                                     found_key.objectid);
3448                         ret = btrfs_del_orphan_item(trans, root,
3449                                                     found_key.objectid);
3450                         btrfs_end_transaction(trans);
3451                         if (ret)
3452                                 goto out;
3453                         continue;
3454                 }
3455
3456                 nr_unlink++;
3457
3458                 /* this will do delete_inode and everything for us */
3459                 iput(inode);
3460         }
3461         /* release the path since we're done with it */
3462         btrfs_release_path(path);
3463
3464         root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3465
3466         if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
3467                 trans = btrfs_join_transaction(root);
3468                 if (!IS_ERR(trans))
3469                         btrfs_end_transaction(trans);
3470         }
3471
3472         if (nr_unlink)
3473                 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
3474
3475 out:
3476         if (ret)
3477                 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
3478         btrfs_free_path(path);
3479         return ret;
3480 }
3481
3482 /*
3483  * very simple check to peek ahead in the leaf looking for xattrs.  If we
3484  * don't find any xattrs, we know there can't be any acls.
3485  *
3486  * slot is the slot the inode is in, objectid is the objectid of the inode
3487  */
3488 static noinline int acls_after_inode_item(struct extent_buffer *leaf,
3489                                           int slot, u64 objectid,
3490                                           int *first_xattr_slot)
3491 {
3492         u32 nritems = btrfs_header_nritems(leaf);
3493         struct btrfs_key found_key;
3494         static u64 xattr_access = 0;
3495         static u64 xattr_default = 0;
3496         int scanned = 0;
3497
3498         if (!xattr_access) {
3499                 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3500                                         strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3501                 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3502                                         strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
3503         }
3504
3505         slot++;
3506         *first_xattr_slot = -1;
3507         while (slot < nritems) {
3508                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3509
3510                 /* we found a different objectid, there must not be acls */
3511                 if (found_key.objectid != objectid)
3512                         return 0;
3513
3514                 /* we found an xattr, assume we've got an acl */
3515                 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
3516                         if (*first_xattr_slot == -1)
3517                                 *first_xattr_slot = slot;
3518                         if (found_key.offset == xattr_access ||
3519                             found_key.offset == xattr_default)
3520                                 return 1;
3521                 }
3522
3523                 /*
3524                  * we found a key greater than an xattr key, there can't
3525                  * be any acls later on
3526                  */
3527                 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3528                         return 0;
3529
3530                 slot++;
3531                 scanned++;
3532
3533                 /*
3534                  * it goes inode, inode backrefs, xattrs, extents,
3535                  * so if there are a ton of hard links to an inode there can
3536                  * be a lot of backrefs.  Don't waste time searching too hard,
3537                  * this is just an optimization
3538                  */
3539                 if (scanned >= 8)
3540                         break;
3541         }
3542         /* we hit the end of the leaf before we found an xattr or
3543          * something larger than an xattr.  We have to assume the inode
3544          * has acls
3545          */
3546         if (*first_xattr_slot == -1)
3547                 *first_xattr_slot = slot;
3548         return 1;
3549 }
3550
3551 /*
3552  * read an inode from the btree into the in-memory inode
3553  */
3554 static int btrfs_read_locked_inode(struct inode *inode,
3555                                    struct btrfs_path *in_path)
3556 {
3557         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3558         struct btrfs_path *path = in_path;
3559         struct extent_buffer *leaf;
3560         struct btrfs_inode_item *inode_item;
3561         struct btrfs_root *root = BTRFS_I(inode)->root;
3562         struct btrfs_key location;
3563         unsigned long ptr;
3564         int maybe_acls;
3565         u32 rdev;
3566         int ret;
3567         bool filled = false;
3568         int first_xattr_slot;
3569
3570         ret = btrfs_fill_inode(inode, &rdev);
3571         if (!ret)
3572                 filled = true;
3573
3574         if (!path) {
3575                 path = btrfs_alloc_path();
3576                 if (!path)
3577                         return -ENOMEM;
3578         }
3579
3580         memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
3581
3582         ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
3583         if (ret) {
3584                 if (path != in_path)
3585                         btrfs_free_path(path);
3586                 return ret;
3587         }
3588
3589         leaf = path->nodes[0];
3590
3591         if (filled)
3592                 goto cache_index;
3593
3594         inode_item = btrfs_item_ptr(leaf, path->slots[0],
3595                                     struct btrfs_inode_item);
3596         inode->i_mode = btrfs_inode_mode(leaf, inode_item);
3597         set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
3598         i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3599         i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
3600         btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
3601         btrfs_inode_set_file_extent_range(BTRFS_I(inode), 0,
3602                         round_up(i_size_read(inode), fs_info->sectorsize));
3603
3604         inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3605         inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
3606
3607         inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3608         inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
3609
3610         inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3611         inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
3612
3613         BTRFS_I(inode)->i_otime.tv_sec =
3614                 btrfs_timespec_sec(leaf, &inode_item->otime);
3615         BTRFS_I(inode)->i_otime.tv_nsec =
3616                 btrfs_timespec_nsec(leaf, &inode_item->otime);
3617
3618         inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
3619         BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
3620         BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3621
3622         inode_set_iversion_queried(inode,
3623                                    btrfs_inode_sequence(leaf, inode_item));
3624         inode->i_generation = BTRFS_I(inode)->generation;
3625         inode->i_rdev = 0;
3626         rdev = btrfs_inode_rdev(leaf, inode_item);
3627
3628         BTRFS_I(inode)->index_cnt = (u64)-1;
3629         BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
3630
3631 cache_index:
3632         /*
3633          * If we were modified in the current generation and evicted from memory
3634          * and then re-read we need to do a full sync since we don't have any
3635          * idea about which extents were modified before we were evicted from
3636          * cache.
3637          *
3638          * This is required for both inode re-read from disk and delayed inode
3639          * in delayed_nodes_tree.
3640          */
3641         if (BTRFS_I(inode)->last_trans == fs_info->generation)
3642                 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3643                         &BTRFS_I(inode)->runtime_flags);
3644
3645         /*
3646          * We don't persist the id of the transaction where an unlink operation
3647          * against the inode was last made. So here we assume the inode might
3648          * have been evicted, and therefore the exact value of last_unlink_trans
3649          * lost, and set it to last_trans to avoid metadata inconsistencies
3650          * between the inode and its parent if the inode is fsync'ed and the log
3651          * replayed. For example, in the scenario:
3652          *
3653          * touch mydir/foo
3654          * ln mydir/foo mydir/bar
3655          * sync
3656          * unlink mydir/bar
3657          * echo 2 > /proc/sys/vm/drop_caches   # evicts inode
3658          * xfs_io -c fsync mydir/foo
3659          * <power failure>
3660          * mount fs, triggers fsync log replay
3661          *
3662          * We must make sure that when we fsync our inode foo we also log its
3663          * parent inode, otherwise after log replay the parent still has the
3664          * dentry with the "bar" name but our inode foo has a link count of 1
3665          * and doesn't have an inode ref with the name "bar" anymore.
3666          *
3667          * Setting last_unlink_trans to last_trans is a pessimistic approach,
3668          * but it guarantees correctness at the expense of occasional full
3669          * transaction commits on fsync if our inode is a directory, or if our
3670          * inode is not a directory, logging its parent unnecessarily.
3671          */
3672         BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3673
3674         /*
3675          * Same logic as for last_unlink_trans. We don't persist the generation
3676          * of the last transaction where this inode was used for a reflink
3677          * operation, so after eviction and reloading the inode we must be
3678          * pessimistic and assume the last transaction that modified the inode.
3679          */
3680         BTRFS_I(inode)->last_reflink_trans = BTRFS_I(inode)->last_trans;
3681
3682         path->slots[0]++;
3683         if (inode->i_nlink != 1 ||
3684             path->slots[0] >= btrfs_header_nritems(leaf))
3685                 goto cache_acl;
3686
3687         btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
3688         if (location.objectid != btrfs_ino(BTRFS_I(inode)))
3689                 goto cache_acl;
3690
3691         ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3692         if (location.type == BTRFS_INODE_REF_KEY) {
3693                 struct btrfs_inode_ref *ref;
3694
3695                 ref = (struct btrfs_inode_ref *)ptr;
3696                 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3697         } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3698                 struct btrfs_inode_extref *extref;
3699
3700                 extref = (struct btrfs_inode_extref *)ptr;
3701                 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3702                                                                      extref);
3703         }
3704 cache_acl:
3705         /*
3706          * try to precache a NULL acl entry for files that don't have
3707          * any xattrs or acls
3708          */
3709         maybe_acls = acls_after_inode_item(leaf, path->slots[0],
3710                         btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
3711         if (first_xattr_slot != -1) {
3712                 path->slots[0] = first_xattr_slot;
3713                 ret = btrfs_load_inode_props(inode, path);
3714                 if (ret)
3715                         btrfs_err(fs_info,
3716                                   "error loading props for ino %llu (root %llu): %d",
3717                                   btrfs_ino(BTRFS_I(inode)),
3718                                   root->root_key.objectid, ret);
3719         }
3720         if (path != in_path)
3721                 btrfs_free_path(path);
3722
3723         if (!maybe_acls)
3724                 cache_no_acl(inode);
3725
3726         switch (inode->i_mode & S_IFMT) {
3727         case S_IFREG:
3728                 inode->i_mapping->a_ops = &btrfs_aops;
3729                 inode->i_fop = &btrfs_file_operations;
3730                 inode->i_op = &btrfs_file_inode_operations;
3731                 break;
3732         case S_IFDIR:
3733                 inode->i_fop = &btrfs_dir_file_operations;
3734                 inode->i_op = &btrfs_dir_inode_operations;
3735                 break;
3736         case S_IFLNK:
3737                 inode->i_op = &btrfs_symlink_inode_operations;
3738                 inode_nohighmem(inode);
3739                 inode->i_mapping->a_ops = &btrfs_aops;
3740                 break;
3741         default:
3742                 inode->i_op = &btrfs_special_inode_operations;
3743                 init_special_inode(inode, inode->i_mode, rdev);
3744                 break;
3745         }
3746
3747         btrfs_sync_inode_flags_to_i_flags(inode);
3748         return 0;
3749 }
3750
3751 /*
3752  * given a leaf and an inode, copy the inode fields into the leaf
3753  */
3754 static void fill_inode_item(struct btrfs_trans_handle *trans,
3755                             struct extent_buffer *leaf,
3756                             struct btrfs_inode_item *item,
3757                             struct inode *inode)
3758 {
3759         struct btrfs_map_token token;
3760
3761         btrfs_init_map_token(&token, leaf);
3762
3763         btrfs_set_token_inode_uid(&token, item, i_uid_read(inode));
3764         btrfs_set_token_inode_gid(&token, item, i_gid_read(inode));
3765         btrfs_set_token_inode_size(&token, item, BTRFS_I(inode)->disk_i_size);
3766         btrfs_set_token_inode_mode(&token, item, inode->i_mode);
3767         btrfs_set_token_inode_nlink(&token, item, inode->i_nlink);
3768
3769         btrfs_set_token_timespec_sec(&token, &item->atime,
3770                                      inode->i_atime.tv_sec);
3771         btrfs_set_token_timespec_nsec(&token, &item->atime,
3772                                       inode->i_atime.tv_nsec);
3773
3774         btrfs_set_token_timespec_sec(&token, &item->mtime,
3775                                      inode->i_mtime.tv_sec);
3776         btrfs_set_token_timespec_nsec(&token, &item->mtime,
3777                                       inode->i_mtime.tv_nsec);
3778
3779         btrfs_set_token_timespec_sec(&token, &item->ctime,
3780                                      inode->i_ctime.tv_sec);
3781         btrfs_set_token_timespec_nsec(&token, &item->ctime,
3782                                       inode->i_ctime.tv_nsec);
3783
3784         btrfs_set_token_timespec_sec(&token, &item->otime,
3785                                      BTRFS_I(inode)->i_otime.tv_sec);
3786         btrfs_set_token_timespec_nsec(&token, &item->otime,
3787                                       BTRFS_I(inode)->i_otime.tv_nsec);
3788
3789         btrfs_set_token_inode_nbytes(&token, item, inode_get_bytes(inode));
3790         btrfs_set_token_inode_generation(&token, item,
3791                                          BTRFS_I(inode)->generation);
3792         btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode));
3793         btrfs_set_token_inode_transid(&token, item, trans->transid);
3794         btrfs_set_token_inode_rdev(&token, item, inode->i_rdev);
3795         btrfs_set_token_inode_flags(&token, item, BTRFS_I(inode)->flags);
3796         btrfs_set_token_inode_block_group(&token, item, 0);
3797 }
3798
3799 /*
3800  * copy everything in the in-memory inode into the btree.
3801  */
3802 static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
3803                                 struct btrfs_root *root,
3804                                 struct btrfs_inode *inode)
3805 {
3806         struct btrfs_inode_item *inode_item;
3807         struct btrfs_path *path;
3808         struct extent_buffer *leaf;
3809         int ret;
3810
3811         path = btrfs_alloc_path();
3812         if (!path)
3813                 return -ENOMEM;
3814
3815         ret = btrfs_lookup_inode(trans, root, path, &inode->location, 1);
3816         if (ret) {
3817                 if (ret > 0)
3818                         ret = -ENOENT;
3819                 goto failed;
3820         }
3821
3822         leaf = path->nodes[0];
3823         inode_item = btrfs_item_ptr(leaf, path->slots[0],
3824                                     struct btrfs_inode_item);
3825
3826         fill_inode_item(trans, leaf, inode_item, &inode->vfs_inode);
3827         btrfs_mark_buffer_dirty(leaf);
3828         btrfs_set_inode_last_trans(trans, inode);
3829         ret = 0;
3830 failed:
3831         btrfs_free_path(path);
3832         return ret;
3833 }
3834
3835 /*
3836  * copy everything in the in-memory inode into the btree.
3837  */
3838 noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3839                                 struct btrfs_root *root,
3840                                 struct btrfs_inode *inode)
3841 {
3842         struct btrfs_fs_info *fs_info = root->fs_info;
3843         int ret;
3844
3845         /*
3846          * If the inode is a free space inode, we can deadlock during commit
3847          * if we put it into the delayed code.
3848          *
3849          * The data relocation inode should also be directly updated
3850          * without delay
3851          */
3852         if (!btrfs_is_free_space_inode(inode)
3853             && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
3854             && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
3855                 btrfs_update_root_times(trans, root);
3856
3857                 ret = btrfs_delayed_update_inode(trans, root, inode);
3858                 if (!ret)
3859                         btrfs_set_inode_last_trans(trans, inode);
3860                 return ret;
3861         }
3862
3863         return btrfs_update_inode_item(trans, root, inode);
3864 }
3865
3866 int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3867                                 struct btrfs_root *root, struct btrfs_inode *inode)
3868 {
3869         int ret;
3870
3871         ret = btrfs_update_inode(trans, root, inode);
3872         if (ret == -ENOSPC)
3873                 return btrfs_update_inode_item(trans, root, inode);
3874         return ret;
3875 }
3876
3877 /*
3878  * unlink helper that gets used here in inode.c and in the tree logging
3879  * recovery code.  It remove a link in a directory with a given name, and
3880  * also drops the back refs in the inode to the directory
3881  */
3882 static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3883                                 struct btrfs_root *root,
3884                                 struct btrfs_inode *dir,
3885                                 struct btrfs_inode *inode,
3886                                 const char *name, int name_len)
3887 {
3888         struct btrfs_fs_info *fs_info = root->fs_info;
3889         struct btrfs_path *path;
3890         int ret = 0;
3891         struct btrfs_dir_item *di;
3892         u64 index;
3893         u64 ino = btrfs_ino(inode);
3894         u64 dir_ino = btrfs_ino(dir);
3895
3896         path = btrfs_alloc_path();
3897         if (!path) {
3898                 ret = -ENOMEM;
3899                 goto out;
3900         }
3901
3902         di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
3903                                     name, name_len, -1);
3904         if (IS_ERR_OR_NULL(di)) {
3905                 ret = di ? PTR_ERR(di) : -ENOENT;
3906                 goto err;
3907         }
3908         ret = btrfs_delete_one_dir_name(trans, root, path, di);
3909         if (ret)
3910                 goto err;
3911         btrfs_release_path(path);
3912
3913         /*
3914          * If we don't have dir index, we have to get it by looking up
3915          * the inode ref, since we get the inode ref, remove it directly,
3916          * it is unnecessary to do delayed deletion.
3917          *
3918          * But if we have dir index, needn't search inode ref to get it.
3919          * Since the inode ref is close to the inode item, it is better
3920          * that we delay to delete it, and just do this deletion when
3921          * we update the inode item.
3922          */
3923         if (inode->dir_index) {
3924                 ret = btrfs_delayed_delete_inode_ref(inode);
3925                 if (!ret) {
3926                         index = inode->dir_index;
3927                         goto skip_backref;
3928                 }
3929         }
3930
3931         ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3932                                   dir_ino, &index);
3933         if (ret) {
3934                 btrfs_info(fs_info,
3935                         "failed to delete reference to %.*s, inode %llu parent %llu",
3936                         name_len, name, ino, dir_ino);
3937                 btrfs_abort_transaction(trans, ret);
3938                 goto err;
3939         }
3940 skip_backref:
3941         ret = btrfs_delete_delayed_dir_index(trans, dir, index);
3942         if (ret) {
3943                 btrfs_abort_transaction(trans, ret);
3944                 goto err;
3945         }
3946
3947         ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3948                         dir_ino);
3949         if (ret != 0 && ret != -ENOENT) {
3950                 btrfs_abort_transaction(trans, ret);
3951                 goto err;
3952         }
3953
3954         ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3955                         index);
3956         if (ret == -ENOENT)
3957                 ret = 0;
3958         else if (ret)
3959                 btrfs_abort_transaction(trans, ret);
3960
3961         /*
3962          * If we have a pending delayed iput we could end up with the final iput
3963          * being run in btrfs-cleaner context.  If we have enough of these built
3964          * up we can end up burning a lot of time in btrfs-cleaner without any
3965          * way to throttle the unlinks.  Since we're currently holding a ref on
3966          * the inode we can run the delayed iput here without any issues as the
3967          * final iput won't be done until after we drop the ref we're currently
3968          * holding.
3969          */
3970         btrfs_run_delayed_iput(fs_info, inode);
3971 err:
3972         btrfs_free_path(path);
3973         if (ret)
3974                 goto out;
3975
3976         btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
3977         inode_inc_iversion(&inode->vfs_inode);
3978         inode_inc_iversion(&dir->vfs_inode);
3979         inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3980                 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3981         ret = btrfs_update_inode(trans, root, dir);
3982 out:
3983         return ret;
3984 }
3985
3986 int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3987                        struct btrfs_root *root,
3988                        struct btrfs_inode *dir, struct btrfs_inode *inode,
3989                        const char *name, int name_len)
3990 {
3991         int ret;
3992         ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3993         if (!ret) {
3994                 drop_nlink(&inode->vfs_inode);
3995                 ret = btrfs_update_inode(trans, root, inode);
3996         }
3997         return ret;
3998 }
3999
4000 /*
4001  * helper to start transaction for unlink and rmdir.
4002  *
4003  * unlink and rmdir are special in btrfs, they do not always free space, so
4004  * if we cannot make our reservations the normal way try and see if there is
4005  * plenty of slack room in the global reserve to migrate, otherwise we cannot
4006  * allow the unlink to occur.
4007  */
4008 static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
4009 {
4010         struct btrfs_root *root = BTRFS_I(dir)->root;
4011
4012         /*
4013          * 1 for the possible orphan item
4014          * 1 for the dir item
4015          * 1 for the dir index
4016          * 1 for the inode ref
4017          * 1 for the inode
4018          */
4019         return btrfs_start_transaction_fallback_global_rsv(root, 5);
4020 }
4021
4022 static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4023 {
4024         struct btrfs_root *root = BTRFS_I(dir)->root;
4025         struct btrfs_trans_handle *trans;
4026         struct inode *inode = d_inode(dentry);
4027         int ret;
4028
4029         trans = __unlink_start_trans(dir);
4030         if (IS_ERR(trans))
4031                 return PTR_ERR(trans);
4032
4033         btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4034                         0);
4035
4036         ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4037                         BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4038                         dentry->d_name.len);
4039         if (ret)
4040                 goto out;
4041
4042         if (inode->i_nlink == 0) {
4043                 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
4044                 if (ret)
4045                         goto out;
4046         }
4047
4048 out:
4049         btrfs_end_transaction(trans);
4050         btrfs_btree_balance_dirty(root->fs_info);
4051         return ret;
4052 }
4053
4054 static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4055                                struct inode *dir, struct dentry *dentry)
4056 {
4057         struct btrfs_root *root = BTRFS_I(dir)->root;
4058         struct btrfs_inode *inode = BTRFS_I(d_inode(dentry));
4059         struct btrfs_path *path;
4060         struct extent_buffer *leaf;
4061         struct btrfs_dir_item *di;
4062         struct btrfs_key key;
4063         const char *name = dentry->d_name.name;
4064         int name_len = dentry->d_name.len;
4065         u64 index;
4066         int ret;
4067         u64 objectid;
4068         u64 dir_ino = btrfs_ino(BTRFS_I(dir));
4069
4070         if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) {
4071                 objectid = inode->root->root_key.objectid;
4072         } else if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
4073                 objectid = inode->location.objectid;
4074         } else {
4075                 WARN_ON(1);
4076                 return -EINVAL;
4077         }
4078
4079         path = btrfs_alloc_path();
4080         if (!path)
4081                 return -ENOMEM;
4082
4083         di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
4084                                    name, name_len, -1);
4085         if (IS_ERR_OR_NULL(di)) {
4086                 ret = di ? PTR_ERR(di) : -ENOENT;
4087                 goto out;
4088         }
4089
4090         leaf = path->nodes[0];
4091         btrfs_dir_item_key_to_cpu(leaf, di, &key);
4092         WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4093         ret = btrfs_delete_one_dir_name(trans, root, path, di);
4094         if (ret) {
4095                 btrfs_abort_transaction(trans, ret);
4096                 goto out;
4097         }
4098         btrfs_release_path(path);
4099
4100         /*
4101          * This is a placeholder inode for a subvolume we didn't have a
4102          * reference to at the time of the snapshot creation.  In the meantime
4103          * we could have renamed the real subvol link into our snapshot, so
4104          * depending on btrfs_del_root_ref to return -ENOENT here is incorret.
4105          * Instead simply lookup the dir_index_item for this entry so we can
4106          * remove it.  Otherwise we know we have a ref to the root and we can
4107          * call btrfs_del_root_ref, and it _shouldn't_ fail.
4108          */
4109         if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
4110                 di = btrfs_search_dir_index_item(root, path, dir_ino,
4111                                                  name, name_len);
4112                 if (IS_ERR_OR_NULL(di)) {
4113                         if (!di)
4114                                 ret = -ENOENT;
4115                         else
4116                                 ret = PTR_ERR(di);
4117                         btrfs_abort_transaction(trans, ret);
4118                         goto out;
4119                 }
4120
4121                 leaf = path->nodes[0];
4122                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4123                 index = key.offset;
4124                 btrfs_release_path(path);
4125         } else {
4126                 ret = btrfs_del_root_ref(trans, objectid,
4127                                          root->root_key.objectid, dir_ino,
4128                                          &index, name, name_len);
4129                 if (ret) {
4130                         btrfs_abort_transaction(trans, ret);
4131                         goto out;
4132                 }
4133         }
4134
4135         ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
4136         if (ret) {
4137                 btrfs_abort_transaction(trans, ret);
4138                 goto out;
4139         }
4140
4141         btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
4142         inode_inc_iversion(dir);
4143         dir->i_mtime = dir->i_ctime = current_time(dir);
4144         ret = btrfs_update_inode_fallback(trans, root, BTRFS_I(dir));
4145         if (ret)
4146                 btrfs_abort_transaction(trans, ret);
4147 out:
4148         btrfs_free_path(path);
4149         return ret;
4150 }
4151
4152 /*
4153  * Helper to check if the subvolume references other subvolumes or if it's
4154  * default.
4155  */
4156 static noinline int may_destroy_subvol(struct btrfs_root *root)
4157 {
4158         struct btrfs_fs_info *fs_info = root->fs_info;
4159         struct btrfs_path *path;
4160         struct btrfs_dir_item *di;
4161         struct btrfs_key key;
4162         u64 dir_id;
4163         int ret;
4164
4165         path = btrfs_alloc_path();
4166         if (!path)
4167                 return -ENOMEM;
4168
4169         /* Make sure this root isn't set as the default subvol */
4170         dir_id = btrfs_super_root_dir(fs_info->super_copy);
4171         di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4172                                    dir_id, "default", 7, 0);
4173         if (di && !IS_ERR(di)) {
4174                 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4175                 if (key.objectid == root->root_key.objectid) {
4176                         ret = -EPERM;
4177                         btrfs_err(fs_info,
4178                                   "deleting default subvolume %llu is not allowed",
4179                                   key.objectid);
4180                         goto out;
4181                 }
4182                 btrfs_release_path(path);
4183         }
4184
4185         key.objectid = root->root_key.objectid;
4186         key.type = BTRFS_ROOT_REF_KEY;
4187         key.offset = (u64)-1;
4188
4189         ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4190         if (ret < 0)
4191                 goto out;
4192         BUG_ON(ret == 0);
4193
4194         ret = 0;
4195         if (path->slots[0] > 0) {
4196                 path->slots[0]--;
4197                 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4198                 if (key.objectid == root->root_key.objectid &&
4199                     key.type == BTRFS_ROOT_REF_KEY)
4200                         ret = -ENOTEMPTY;
4201         }
4202 out:
4203         btrfs_free_path(path);
4204         return ret;
4205 }
4206
4207 /* Delete all dentries for inodes belonging to the root */
4208 static void btrfs_prune_dentries(struct btrfs_root *root)
4209 {
4210         struct btrfs_fs_info *fs_info = root->fs_info;
4211         struct rb_node *node;
4212         struct rb_node *prev;
4213         struct btrfs_inode *entry;
4214         struct inode *inode;
4215         u64 objectid = 0;
4216
4217         if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4218                 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4219
4220         spin_lock(&root->inode_lock);
4221 again:
4222         node = root->inode_tree.rb_node;
4223         prev = NULL;
4224         while (node) {
4225                 prev = node;
4226                 entry = rb_entry(node, struct btrfs_inode, rb_node);
4227
4228                 if (objectid < btrfs_ino(entry))
4229                         node = node->rb_left;
4230                 else if (objectid > btrfs_ino(entry))
4231                         node = node->rb_right;
4232                 else
4233                         break;
4234         }
4235         if (!node) {
4236                 while (prev) {
4237                         entry = rb_entry(prev, struct btrfs_inode, rb_node);
4238                         if (objectid <= btrfs_ino(entry)) {
4239                                 node = prev;
4240                                 break;
4241                         }
4242                         prev = rb_next(prev);
4243                 }
4244         }
4245         while (node) {
4246                 entry = rb_entry(node, struct btrfs_inode, rb_node);
4247                 objectid = btrfs_ino(entry) + 1;
4248                 inode = igrab(&entry->vfs_inode);
4249                 if (inode) {
4250                         spin_unlock(&root->inode_lock);
4251                         if (atomic_read(&inode->i_count) > 1)
4252                                 d_prune_aliases(inode);
4253                         /*
4254                          * btrfs_drop_inode will have it removed from the inode
4255                          * cache when its usage count hits zero.
4256                          */
4257                         iput(inode);
4258                         cond_resched();
4259                         spin_lock(&root->inode_lock);
4260                         goto again;
4261                 }
4262
4263                 if (cond_resched_lock(&root->inode_lock))
4264                         goto again;
4265
4266                 node = rb_next(node);
4267         }
4268         spin_unlock(&root->inode_lock);
4269 }
4270
4271 int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4272 {
4273         struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4274         struct btrfs_root *root = BTRFS_I(dir)->root;
4275         struct inode *inode = d_inode(dentry);
4276         struct btrfs_root *dest = BTRFS_I(inode)->root;
4277         struct btrfs_trans_handle *trans;
4278         struct btrfs_block_rsv block_rsv;
4279         u64 root_flags;
4280         int ret;
4281
4282         /*
4283          * Don't allow to delete a subvolume with send in progress. This is
4284          * inside the inode lock so the error handling that has to drop the bit
4285          * again is not run concurrently.
4286          */
4287         spin_lock(&dest->root_item_lock);
4288         if (dest->send_in_progress) {
4289                 spin_unlock(&dest->root_item_lock);
4290                 btrfs_warn(fs_info,
4291                            "attempt to delete subvolume %llu during send",
4292                            dest->root_key.objectid);
4293                 return -EPERM;
4294         }
4295         root_flags = btrfs_root_flags(&dest->root_item);
4296         btrfs_set_root_flags(&dest->root_item,
4297                              root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4298         spin_unlock(&dest->root_item_lock);
4299
4300         down_write(&fs_info->subvol_sem);
4301
4302         ret = may_destroy_subvol(dest);
4303         if (ret)
4304                 goto out_up_write;
4305
4306         btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4307         /*
4308          * One for dir inode,
4309          * two for dir entries,
4310          * two for root ref/backref.
4311          */
4312         ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
4313         if (ret)
4314                 goto out_up_write;
4315
4316         trans = btrfs_start_transaction(root, 0);
4317         if (IS_ERR(trans)) {
4318                 ret = PTR_ERR(trans);
4319                 goto out_release;
4320         }
4321         trans->block_rsv = &block_rsv;
4322         trans->bytes_reserved = block_rsv.size;
4323
4324         btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4325
4326         ret = btrfs_unlink_subvol(trans, dir, dentry);
4327         if (ret) {
4328                 btrfs_abort_transaction(trans, ret);
4329                 goto out_end_trans;
4330         }
4331
4332         btrfs_record_root_in_trans(trans, dest);
4333
4334         memset(&dest->root_item.drop_progress, 0,
4335                 sizeof(dest->root_item.drop_progress));
4336         btrfs_set_root_drop_level(&dest->root_item, 0);
4337         btrfs_set_root_refs(&dest->root_item, 0);
4338
4339         if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4340                 ret = btrfs_insert_orphan_item(trans,
4341                                         fs_info->tree_root,
4342                                         dest->root_key.objectid);
4343                 if (ret) {
4344                         btrfs_abort_transaction(trans, ret);
4345                         goto out_end_trans;
4346                 }
4347         }
4348
4349         ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
4350                                   BTRFS_UUID_KEY_SUBVOL,
4351                                   dest->root_key.objectid);
4352         if (ret && ret != -ENOENT) {
4353                 btrfs_abort_transaction(trans, ret);
4354                 goto out_end_trans;
4355         }
4356         if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
4357                 ret = btrfs_uuid_tree_remove(trans,
4358                                           dest->root_item.received_uuid,
4359                                           BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4360                                           dest->root_key.objectid);
4361                 if (ret && ret != -ENOENT) {
4362                         btrfs_abort_transaction(trans, ret);
4363                         goto out_end_trans;
4364                 }
4365         }
4366
4367         free_anon_bdev(dest->anon_dev);
4368         dest->anon_dev = 0;
4369 out_end_trans:
4370         trans->block_rsv = NULL;
4371         trans->bytes_reserved = 0;
4372         ret = btrfs_end_transaction(trans);
4373         inode->i_flags |= S_DEAD;
4374 out_release:
4375         btrfs_subvolume_release_metadata(root, &block_rsv);
4376 out_up_write:
4377         up_write(&fs_info->subvol_sem);
4378         if (ret) {
4379                 spin_lock(&dest->root_item_lock);
4380                 root_flags = btrfs_root_flags(&dest->root_item);
4381                 btrfs_set_root_flags(&dest->root_item,
4382                                 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4383                 spin_unlock(&dest->root_item_lock);
4384         } else {
4385                 d_invalidate(dentry);
4386                 btrfs_prune_dentries(dest);
4387                 ASSERT(dest->send_in_progress == 0);
4388         }
4389
4390         return ret;
4391 }
4392
4393 static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4394 {
4395         struct inode *inode = d_inode(dentry);
4396         int err = 0;
4397         struct btrfs_root *root = BTRFS_I(dir)->root;
4398         struct btrfs_trans_handle *trans;
4399         u64 last_unlink_trans;
4400
4401         if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
4402                 return -ENOTEMPTY;
4403         if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
4404                 return btrfs_delete_subvolume(dir, dentry);
4405
4406         trans = __unlink_start_trans(dir);
4407         if (IS_ERR(trans))
4408                 return PTR_ERR(trans);
4409
4410         if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
4411                 err = btrfs_unlink_subvol(trans, dir, dentry);
4412                 goto out;
4413         }
4414
4415         err = btrfs_orphan_add(trans, BTRFS_I(inode));
4416         if (err)
4417                 goto out;
4418
4419         last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4420
4421         /* now the directory is empty */
4422         err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4423                         BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4424                         dentry->d_name.len);
4425         if (!err) {
4426                 btrfs_i_size_write(BTRFS_I(inode), 0);
4427                 /*
4428                  * Propagate the last_unlink_trans value of the deleted dir to
4429                  * its parent directory. This is to prevent an unrecoverable
4430                  * log tree in the case we do something like this:
4431                  * 1) create dir foo
4432                  * 2) create snapshot under dir foo
4433                  * 3) delete the snapshot
4434                  * 4) rmdir foo
4435                  * 5) mkdir foo
4436                  * 6) fsync foo or some file inside foo
4437                  */
4438                 if (last_unlink_trans >= trans->transid)
4439                         BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4440         }
4441 out:
4442         btrfs_end_transaction(trans);
4443         btrfs_btree_balance_dirty(root->fs_info);
4444
4445         return err;
4446 }
4447
4448 /*
4449  * Return this if we need to call truncate_block for the last bit of the
4450  * truncate.
4451  */
4452 #define NEED_TRUNCATE_BLOCK 1
4453
4454 /*
4455  * this can truncate away extent items, csum items and directory items.
4456  * It starts at a high offset and removes keys until it can't find
4457  * any higher than new_size
4458  *
4459  * csum items that cross the new i_size are truncated to the new size
4460  * as well.
4461  *
4462  * min_type is the minimum key type to truncate down to.  If set to 0, this
4463  * will kill all the items on this inode, including the INODE_ITEM_KEY.
4464  */
4465 int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4466                                struct btrfs_root *root,
4467                                struct btrfs_inode *inode,
4468                                u64 new_size, u32 min_type)
4469 {
4470         struct btrfs_fs_info *fs_info = root->fs_info;
4471         struct btrfs_path *path;
4472         struct extent_buffer *leaf;
4473         struct btrfs_file_extent_item *fi;
4474         struct btrfs_key key;
4475         struct btrfs_key found_key;
4476         u64 extent_start = 0;
4477         u64 extent_num_bytes = 0;
4478         u64 extent_offset = 0;
4479         u64 item_end = 0;
4480         u64 last_size = new_size;
4481         u32 found_type = (u8)-1;
4482         int found_extent;
4483         int del_item;
4484         int pending_del_nr = 0;
4485         int pending_del_slot = 0;
4486         int extent_type = -1;
4487         int ret;
4488         u64 ino = btrfs_ino(inode);
4489         u64 bytes_deleted = 0;
4490         bool be_nice = false;
4491         bool should_throttle = false;
4492         const u64 lock_start = ALIGN_DOWN(new_size, fs_info->sectorsize);
4493         struct extent_state *cached_state = NULL;
4494
4495         BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
4496
4497         /*
4498          * For non-free space inodes and non-shareable roots, we want to back
4499          * off from time to time.  This means all inodes in subvolume roots,
4500          * reloc roots, and data reloc roots.
4501          */
4502         if (!btrfs_is_free_space_inode(inode) &&
4503             test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
4504                 be_nice = true;
4505
4506         path = btrfs_alloc_path();
4507         if (!path)
4508                 return -ENOMEM;
4509         path->reada = READA_BACK;
4510
4511         if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4512                 lock_extent_bits(&inode->io_tree, lock_start, (u64)-1,
4513                                  &cached_state);
4514
4515                 /*
4516                  * We want to drop from the next block forward in case this
4517                  * new size is not block aligned since we will be keeping the
4518                  * last block of the extent just the way it is.
4519                  */
4520                 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4521                                         fs_info->sectorsize),
4522                                         (u64)-1, 0);
4523         }
4524
4525         /*
4526          * This function is also used to drop the items in the log tree before
4527          * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4528          * it is used to drop the logged items. So we shouldn't kill the delayed
4529          * items.
4530          */
4531         if (min_type == 0 && root == inode->root)
4532                 btrfs_kill_delayed_inode_items(inode);
4533
4534         key.objectid = ino;
4535         key.offset = (u64)-1;
4536         key.type = (u8)-1;
4537
4538 search_again:
4539         /*
4540          * with a 16K leaf size and 128MB extents, you can actually queue
4541          * up a huge file in a single leaf.  Most of the time that
4542          * bytes_deleted is > 0, it will be huge by the time we get here
4543          */
4544         if (be_nice && bytes_deleted > SZ_32M &&
4545             btrfs_should_end_transaction(trans)) {
4546                 ret = -EAGAIN;
4547                 goto out;
4548         }
4549
4550         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4551         if (ret < 0)
4552                 goto out;
4553
4554         if (ret > 0) {
4555                 ret = 0;
4556                 /* there are no items in the tree for us to truncate, we're
4557                  * done
4558                  */
4559                 if (path->slots[0] == 0)
4560                         goto out;
4561                 path->slots[0]--;
4562         }
4563
4564         while (1) {
4565                 u64 clear_start = 0, clear_len = 0;
4566
4567                 fi = NULL;
4568                 leaf = path->nodes[0];
4569                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4570                 found_type = found_key.type;
4571
4572                 if (found_key.objectid != ino)
4573                         break;
4574
4575                 if (found_type < min_type)
4576                         break;
4577
4578                 item_end = found_key.offset;
4579                 if (found_type == BTRFS_EXTENT_DATA_KEY) {
4580                         fi = btrfs_item_ptr(leaf, path->slots[0],
4581                                             struct btrfs_file_extent_item);
4582                         extent_type = btrfs_file_extent_type(leaf, fi);
4583                         if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
4584                                 item_end +=
4585                                     btrfs_file_extent_num_bytes(leaf, fi);
4586
4587                                 trace_btrfs_truncate_show_fi_regular(
4588                                         inode, leaf, fi, found_key.offset);
4589                         } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
4590                                 item_end += btrfs_file_extent_ram_bytes(leaf,
4591                                                                         fi);
4592
4593                                 trace_btrfs_truncate_show_fi_inline(
4594                                         inode, leaf, fi, path->slots[0],
4595                                         found_key.offset);
4596                         }
4597                         item_end--;
4598                 }
4599                 if (found_type > min_type) {
4600                         del_item = 1;
4601                 } else {
4602                         if (item_end < new_size)
4603                                 break;
4604                         if (found_key.offset >= new_size)
4605                                 del_item = 1;
4606                         else
4607                                 del_item = 0;
4608                 }
4609                 found_extent = 0;
4610                 /* FIXME, shrink the extent if the ref count is only 1 */
4611                 if (found_type != BTRFS_EXTENT_DATA_KEY)
4612                         goto delete;
4613
4614                 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
4615                         u64 num_dec;
4616
4617                         clear_start = found_key.offset;
4618                         extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
4619                         if (!del_item) {
4620                                 u64 orig_num_bytes =
4621                                         btrfs_file_extent_num_bytes(leaf, fi);
4622                                 extent_num_bytes = ALIGN(new_size -
4623                                                 found_key.offset,
4624                                                 fs_info->sectorsize);
4625                                 clear_start = ALIGN(new_size, fs_info->sectorsize);
4626                                 btrfs_set_file_extent_num_bytes(leaf, fi,
4627                                                          extent_num_bytes);
4628                                 num_dec = (orig_num_bytes -
4629                                            extent_num_bytes);
4630                                 if (test_bit(BTRFS_ROOT_SHAREABLE,
4631                                              &root->state) &&
4632                                     extent_start != 0)
4633                                         inode_sub_bytes(&inode->vfs_inode,
4634                                                         num_dec);
4635                                 btrfs_mark_buffer_dirty(leaf);
4636                         } else {
4637                                 extent_num_bytes =
4638                                         btrfs_file_extent_disk_num_bytes(leaf,
4639                                                                          fi);
4640                                 extent_offset = found_key.offset -
4641                                         btrfs_file_extent_offset(leaf, fi);
4642
4643                                 /* FIXME blocksize != 4096 */
4644                                 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
4645                                 if (extent_start != 0) {
4646                                         found_extent = 1;
4647                                         if (test_bit(BTRFS_ROOT_SHAREABLE,
4648                                                      &root->state))
4649                                                 inode_sub_bytes(&inode->vfs_inode,
4650                                                                 num_dec);
4651                                 }
4652                         }
4653                         clear_len = num_dec;
4654                 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
4655                         /*
4656                          * we can't truncate inline items that have had
4657                          * special encodings
4658                          */
4659                         if (!del_item &&
4660                             btrfs_file_extent_encryption(leaf, fi) == 0 &&
4661                             btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4662                             btrfs_file_extent_compression(leaf, fi) == 0) {
4663                                 u32 size = (u32)(new_size - found_key.offset);
4664
4665                                 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4666                                 size = btrfs_file_extent_calc_inline_size(size);
4667                                 btrfs_truncate_item(path, size, 1);
4668                         } else if (!del_item) {
4669                                 /*
4670                                  * We have to bail so the last_size is set to
4671                                  * just before this extent.
4672                                  */
4673                                 ret = NEED_TRUNCATE_BLOCK;
4674                                 break;
4675                         } else {
4676                                 /*
4677                                  * Inline extents are special, we just treat
4678                                  * them as a full sector worth in the file
4679                                  * extent tree just for simplicity sake.
4680                                  */
4681                                 clear_len = fs_info->sectorsize;
4682                         }
4683
4684                         if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
4685                                 inode_sub_bytes(&inode->vfs_inode,
4686                                                 item_end + 1 - new_size);
4687                 }
4688 delete:
4689                 /*
4690                  * We use btrfs_truncate_inode_items() to clean up log trees for
4691                  * multiple fsyncs, and in this case we don't want to clear the
4692                  * file extent range because it's just the log.
4693                  */
4694                 if (root == inode->root) {
4695                         ret = btrfs_inode_clear_file_extent_range(inode,
4696                                                   clear_start, clear_len);
4697                         if (ret) {
4698                                 btrfs_abort_transaction(trans, ret);
4699                                 break;
4700                         }
4701                 }
4702
4703                 if (del_item)
4704                         last_size = found_key.offset;
4705                 else
4706                         last_size = new_size;
4707                 if (del_item) {
4708                         if (!pending_del_nr) {
4709                                 /* no pending yet, add ourselves */
4710                                 pending_del_slot = path->slots[0];
4711                                 pending_del_nr = 1;
4712                         } else if (pending_del_nr &&
4713                                    path->slots[0] + 1 == pending_del_slot) {
4714                                 /* hop on the pending chunk */
4715                                 pending_del_nr++;
4716                                 pending_del_slot = path->slots[0];
4717                         } else {
4718                                 BUG();
4719                         }
4720                 } else {
4721                         break;
4722                 }
4723                 should_throttle = false;
4724
4725                 if (found_extent &&
4726                     root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4727                         struct btrfs_ref ref = { 0 };
4728
4729                         bytes_deleted += extent_num_bytes;
4730
4731                         btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
4732                                         extent_start, extent_num_bytes, 0);
4733                         ref.real_root = root->root_key.objectid;
4734                         btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
4735                                         ino, extent_offset);
4736                         ret = btrfs_free_extent(trans, &ref);
4737                         if (ret) {
4738                                 btrfs_abort_transaction(trans, ret);
4739                                 break;
4740                         }
4741                         if (be_nice) {
4742                                 if (btrfs_should_throttle_delayed_refs(trans))
4743                                         should_throttle = true;
4744                         }
4745                 }
4746
4747                 if (found_type == BTRFS_INODE_ITEM_KEY)
4748                         break;
4749
4750                 if (path->slots[0] == 0 ||
4751                     path->slots[0] != pending_del_slot ||
4752                     should_throttle) {
4753                         if (pending_del_nr) {
4754                                 ret = btrfs_del_items(trans, root, path,
4755                                                 pending_del_slot,
4756                                                 pending_del_nr);
4757                                 if (ret) {
4758                                         btrfs_abort_transaction(trans, ret);
4759                                         break;
4760                                 }
4761                                 pending_del_nr = 0;
4762                         }
4763                         btrfs_release_path(path);
4764
4765                         /*
4766                          * We can generate a lot of delayed refs, so we need to
4767                          * throttle every once and a while and make sure we're
4768                          * adding enough space to keep up with the work we are
4769                          * generating.  Since we hold a transaction here we
4770                          * can't flush, and we don't want to FLUSH_LIMIT because
4771                          * we could have generated too many delayed refs to
4772                          * actually allocate, so just bail if we're short and
4773                          * let the normal reservation dance happen higher up.
4774                          */
4775                         if (should_throttle) {
4776                                 ret = btrfs_delayed_refs_rsv_refill(fs_info,
4777                                                         BTRFS_RESERVE_NO_FLUSH);
4778                                 if (ret) {
4779                                         ret = -EAGAIN;
4780                                         break;
4781                                 }
4782                         }
4783                         goto search_again;
4784                 } else {
4785                         path->slots[0]--;
4786                 }
4787         }
4788 out:
4789         if (ret >= 0 && pending_del_nr) {
4790                 int err;
4791
4792                 err = btrfs_del_items(trans, root, path, pending_del_slot,
4793                                       pending_del_nr);
4794                 if (err) {
4795                         btrfs_abort_transaction(trans, err);
4796                         ret = err;
4797                 }
4798         }
4799         if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4800                 ASSERT(last_size >= new_size);
4801                 if (!ret && last_size > new_size)
4802                         last_size = new_size;
4803                 btrfs_inode_safe_disk_i_size_write(inode, last_size);
4804                 unlock_extent_cached(&inode->io_tree, lock_start, (u64)-1,
4805                                      &cached_state);
4806         }
4807
4808         btrfs_free_path(path);
4809         return ret;
4810 }
4811
4812 /*
4813  * btrfs_truncate_block - read, zero a chunk and write a block
4814  * @inode - inode that we're zeroing
4815  * @from - the offset to start zeroing
4816  * @len - the length to zero, 0 to zero the entire range respective to the
4817  *      offset
4818  * @front - zero up to the offset instead of from the offset on
4819  *
4820  * This will find the block for the "from" offset and cow the block and zero the
4821  * part we want to zero.  This is used with truncate and hole punching.
4822  */
4823 int btrfs_truncate_block(struct btrfs_inode *inode, loff_t from, loff_t len,
4824                          int front)
4825 {
4826         struct btrfs_fs_info *fs_info = inode->root->fs_info;
4827         struct address_space *mapping = inode->vfs_inode.i_mapping;
4828         struct extent_io_tree *io_tree = &inode->io_tree;
4829         struct btrfs_ordered_extent *ordered;
4830         struct extent_state *cached_state = NULL;
4831         struct extent_changeset *data_reserved = NULL;
4832         char *kaddr;
4833         bool only_release_metadata = false;
4834         u32 blocksize = fs_info->sectorsize;
4835         pgoff_t index = from >> PAGE_SHIFT;
4836         unsigned offset = from & (blocksize - 1);
4837         struct page *page;
4838         gfp_t mask = btrfs_alloc_write_mask(mapping);
4839         size_t write_bytes = blocksize;
4840         int ret = 0;
4841         u64 block_start;
4842         u64 block_end;
4843
4844         if (IS_ALIGNED(offset, blocksize) &&
4845             (!len || IS_ALIGNED(len, blocksize)))
4846                 goto out;
4847
4848         block_start = round_down(from, blocksize);
4849         block_end = block_start + blocksize - 1;
4850
4851         ret = btrfs_check_data_free_space(inode, &data_reserved, block_start,
4852                                           blocksize);
4853         if (ret < 0) {
4854                 if (btrfs_check_nocow_lock(inode, block_start, &write_bytes) > 0) {
4855                         /* For nocow case, no need to reserve data space */
4856                         only_release_metadata = true;
4857                 } else {
4858                         goto out;
4859                 }
4860         }
4861         ret = btrfs_delalloc_reserve_metadata(inode, blocksize);
4862         if (ret < 0) {
4863                 if (!only_release_metadata)
4864                         btrfs_free_reserved_data_space(inode, data_reserved,
4865                                                        block_start, blocksize);
4866                 goto out;
4867         }
4868 again:
4869         page = find_or_create_page(mapping, index, mask);
4870         if (!page) {
4871                 btrfs_delalloc_release_space(inode, data_reserved, block_start,
4872                                              blocksize, true);
4873                 btrfs_delalloc_release_extents(inode, blocksize);
4874                 ret = -ENOMEM;
4875                 goto out;
4876         }
4877         ret = set_page_extent_mapped(page);
4878         if (ret < 0)
4879                 goto out_unlock;
4880
4881         if (!PageUptodate(page)) {
4882                 ret = btrfs_readpage(NULL, page);
4883                 lock_page(page);
4884                 if (page->mapping != mapping) {
4885                         unlock_page(page);
4886                         put_page(page);
4887                         goto again;
4888                 }
4889                 if (!PageUptodate(page)) {
4890                         ret = -EIO;
4891                         goto out_unlock;
4892                 }
4893         }
4894         wait_on_page_writeback(page);
4895
4896         lock_extent_bits(io_tree, block_start, block_end, &cached_state);
4897
4898         ordered = btrfs_lookup_ordered_extent(inode, block_start);
4899         if (ordered) {
4900                 unlock_extent_cached(io_tree, block_start, block_end,
4901                                      &cached_state);
4902                 unlock_page(page);
4903                 put_page(page);
4904                 btrfs_start_ordered_extent(ordered, 1);
4905                 btrfs_put_ordered_extent(ordered);
4906                 goto again;
4907         }
4908
4909         clear_extent_bit(&inode->io_tree, block_start, block_end,
4910                          EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
4911                          0, 0, &cached_state);
4912
4913         ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
4914                                         &cached_state);
4915         if (ret) {
4916                 unlock_extent_cached(io_tree, block_start, block_end,
4917                                      &cached_state);
4918                 goto out_unlock;
4919         }
4920
4921         if (offset != blocksize) {
4922                 if (!len)
4923                         len = blocksize - offset;
4924                 kaddr = kmap(page);
4925                 if (front)
4926                         memset(kaddr + (block_start - page_offset(page)),
4927                                 0, offset);
4928                 else
4929                         memset(kaddr + (block_start - page_offset(page)) +  offset,
4930                                 0, len);
4931                 flush_dcache_page(page);
4932                 kunmap(page);
4933         }
4934         ClearPageChecked(page);
4935         set_page_dirty(page);
4936         unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
4937
4938         if (only_release_metadata)
4939                 set_extent_bit(&inode->io_tree, block_start, block_end,
4940                                EXTENT_NORESERVE, 0, NULL, NULL, GFP_NOFS, NULL);
4941
4942 out_unlock:
4943         if (ret) {
4944                 if (only_release_metadata)
4945                         btrfs_delalloc_release_metadata(inode, blocksize, true);
4946                 else
4947                         btrfs_delalloc_release_space(inode, data_reserved,
4948                                         block_start, blocksize, true);
4949         }
4950         btrfs_delalloc_release_extents(inode, blocksize);
4951         unlock_page(page);
4952         put_page(page);
4953 out:
4954         if (only_release_metadata)
4955                 btrfs_check_nocow_unlock(inode);
4956         extent_changeset_free(data_reserved);
4957         return ret;
4958 }
4959
4960 static int maybe_insert_hole(struct btrfs_root *root, struct btrfs_inode *inode,
4961                              u64 offset, u64 len)
4962 {
4963         struct btrfs_fs_info *fs_info = root->fs_info;
4964         struct btrfs_trans_handle *trans;
4965         struct btrfs_drop_extents_args drop_args = { 0 };
4966         int ret;
4967
4968         /*
4969          * Still need to make sure the inode looks like it's been updated so
4970          * that any holes get logged if we fsync.
4971          */
4972         if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4973                 inode->last_trans = fs_info->generation;
4974                 inode->last_sub_trans = root->log_transid;
4975                 inode->last_log_commit = root->last_log_commit;
4976                 return 0;
4977         }
4978
4979         /*
4980          * 1 - for the one we're dropping
4981          * 1 - for the one we're adding
4982          * 1 - for updating the inode.
4983          */
4984         trans = btrfs_start_transaction(root, 3);
4985         if (IS_ERR(trans))
4986                 return PTR_ERR(trans);
4987
4988         drop_args.start = offset;
4989         drop_args.end = offset + len;
4990         drop_args.drop_cache = true;
4991
4992         ret = btrfs_drop_extents(trans, root, inode, &drop_args);
4993         if (ret) {
4994                 btrfs_abort_transaction(trans, ret);
4995                 btrfs_end_transaction(trans);
4996                 return ret;
4997         }
4998
4999         ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
5000                         offset, 0, 0, len, 0, len, 0, 0, 0);
5001         if (ret) {
5002                 btrfs_abort_transaction(trans, ret);
5003         } else {
5004                 btrfs_update_inode_bytes(inode, 0, drop_args.bytes_found);
5005                 btrfs_update_inode(trans, root, inode);
5006         }
5007         btrfs_end_transaction(trans);
5008         return ret;
5009 }
5010
5011 /*
5012  * This function puts in dummy file extents for the area we're creating a hole
5013  * for.  So if we are truncating this file to a larger size we need to insert
5014  * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
5015  * the range between oldsize and size
5016  */
5017 int btrfs_cont_expand(struct btrfs_inode *inode, loff_t oldsize, loff_t size)
5018 {
5019         struct btrfs_root *root = inode->root;
5020         struct btrfs_fs_info *fs_info = root->fs_info;
5021         struct extent_io_tree *io_tree = &inode->io_tree;
5022         struct extent_map *em = NULL;
5023         struct extent_state *cached_state = NULL;
5024         struct extent_map_tree *em_tree = &inode->extent_tree;
5025         u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
5026         u64 block_end = ALIGN(size, fs_info->sectorsize);
5027         u64 last_byte;
5028         u64 cur_offset;
5029         u64 hole_size;
5030         int err = 0;
5031
5032         /*
5033          * If our size started in the middle of a block we need to zero out the
5034          * rest of the block before we expand the i_size, otherwise we could
5035          * expose stale data.
5036          */
5037         err = btrfs_truncate_block(inode, oldsize, 0, 0);
5038         if (err)
5039                 return err;
5040
5041         if (size <= hole_start)
5042                 return 0;
5043
5044         btrfs_lock_and_flush_ordered_range(inode, hole_start, block_end - 1,
5045                                            &cached_state);
5046         cur_offset = hole_start;
5047         while (1) {
5048                 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5049                                       block_end - cur_offset);
5050                 if (IS_ERR(em)) {
5051                         err = PTR_ERR(em);
5052                         em = NULL;
5053                         break;
5054                 }
5055                 last_byte = min(extent_map_end(em), block_end);
5056                 last_byte = ALIGN(last_byte, fs_info->sectorsize);
5057                 hole_size = last_byte - cur_offset;
5058
5059                 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
5060                         struct extent_map *hole_em;
5061
5062                         err = maybe_insert_hole(root, inode, cur_offset,
5063                                                 hole_size);
5064                         if (err)
5065                                 break;
5066
5067                         err = btrfs_inode_set_file_extent_range(inode,
5068                                                         cur_offset, hole_size);
5069                         if (err)
5070                                 break;
5071
5072                         btrfs_drop_extent_cache(inode, cur_offset,
5073                                                 cur_offset + hole_size - 1, 0);
5074                         hole_em = alloc_extent_map();
5075                         if (!hole_em) {
5076                                 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5077                                         &inode->runtime_flags);
5078                                 goto next;
5079                         }
5080                         hole_em->start = cur_offset;
5081                         hole_em->len = hole_size;
5082                         hole_em->orig_start = cur_offset;
5083
5084                         hole_em->block_start = EXTENT_MAP_HOLE;
5085                         hole_em->block_len = 0;
5086                         hole_em->orig_block_len = 0;
5087                         hole_em->ram_bytes = hole_size;
5088                         hole_em->compress_type = BTRFS_COMPRESS_NONE;
5089                         hole_em->generation = fs_info->generation;
5090
5091                         while (1) {
5092                                 write_lock(&em_tree->lock);
5093                                 err = add_extent_mapping(em_tree, hole_em, 1);
5094                                 write_unlock(&em_tree->lock);
5095                                 if (err != -EEXIST)
5096                                         break;
5097                                 btrfs_drop_extent_cache(inode, cur_offset,
5098                                                         cur_offset +
5099                                                         hole_size - 1, 0);
5100                         }
5101                         free_extent_map(hole_em);
5102                 } else {
5103                         err = btrfs_inode_set_file_extent_range(inode,
5104                                                         cur_offset, hole_size);
5105                         if (err)
5106                                 break;
5107                 }
5108 next:
5109                 free_extent_map(em);
5110                 em = NULL;
5111                 cur_offset = last_byte;
5112                 if (cur_offset >= block_end)
5113                         break;
5114         }
5115         free_extent_map(em);
5116         unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
5117         return err;
5118 }
5119
5120 static int btrfs_setsize(struct inode *inode, struct iattr *attr)
5121 {
5122         struct btrfs_root *root = BTRFS_I(inode)->root;
5123         struct btrfs_trans_handle *trans;
5124         loff_t oldsize = i_size_read(inode);
5125         loff_t newsize = attr->ia_size;
5126         int mask = attr->ia_valid;
5127         int ret;
5128
5129         /*
5130          * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5131          * special case where we need to update the times despite not having
5132          * these flags set.  For all other operations the VFS set these flags
5133          * explicitly if it wants a timestamp update.
5134          */
5135         if (newsize != oldsize) {
5136                 inode_inc_iversion(inode);
5137                 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5138                         inode->i_ctime = inode->i_mtime =
5139                                 current_time(inode);
5140         }
5141
5142         if (newsize > oldsize) {
5143                 /*
5144                  * Don't do an expanding truncate while snapshotting is ongoing.
5145                  * This is to ensure the snapshot captures a fully consistent
5146                  * state of this file - if the snapshot captures this expanding
5147                  * truncation, it must capture all writes that happened before
5148                  * this truncation.
5149                  */
5150                 btrfs_drew_write_lock(&root->snapshot_lock);
5151                 ret = btrfs_cont_expand(BTRFS_I(inode), oldsize, newsize);
5152                 if (ret) {
5153                         btrfs_drew_write_unlock(&root->snapshot_lock);
5154                         return ret;
5155                 }
5156
5157                 trans = btrfs_start_transaction(root, 1);
5158                 if (IS_ERR(trans)) {
5159                         btrfs_drew_write_unlock(&root->snapshot_lock);
5160                         return PTR_ERR(trans);
5161                 }
5162
5163                 i_size_write(inode, newsize);
5164                 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
5165                 pagecache_isize_extended(inode, oldsize, newsize);
5166                 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
5167                 btrfs_drew_write_unlock(&root->snapshot_lock);
5168                 btrfs_end_transaction(trans);
5169         } else {
5170                 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5171
5172                 if (btrfs_is_zoned(fs_info)) {
5173                         ret = btrfs_wait_ordered_range(inode,
5174                                         ALIGN(newsize, fs_info->sectorsize),
5175                                         (u64)-1);
5176                         if (ret)
5177                                 return ret;
5178                 }
5179
5180                 /*
5181                  * We're truncating a file that used to have good data down to
5182                  * zero. Make sure any new writes to the file get on disk
5183                  * on close.
5184                  */
5185                 if (newsize == 0)
5186                         set_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
5187                                 &BTRFS_I(inode)->runtime_flags);
5188
5189                 truncate_setsize(inode, newsize);
5190
5191                 inode_dio_wait(inode);
5192
5193                 ret = btrfs_truncate(inode, newsize == oldsize);
5194                 if (ret && inode->i_nlink) {
5195                         int err;
5196
5197                         /*
5198                          * Truncate failed, so fix up the in-memory size. We
5199                          * adjusted disk_i_size down as we removed extents, so
5200                          * wait for disk_i_size to be stable and then update the
5201                          * in-memory size to match.
5202                          */
5203                         err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
5204                         if (err)
5205                                 return err;
5206                         i_size_write(inode, BTRFS_I(inode)->disk_i_size);
5207                 }
5208         }
5209
5210         return ret;
5211 }
5212
5213 static int btrfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5214                          struct iattr *attr)
5215 {
5216         struct inode *inode = d_inode(dentry);
5217         struct btrfs_root *root = BTRFS_I(inode)->root;
5218         int err;
5219
5220         if (btrfs_root_readonly(root))
5221                 return -EROFS;
5222
5223         err = setattr_prepare(&init_user_ns, dentry, attr);
5224         if (err)
5225                 return err;
5226
5227         if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
5228                 err = btrfs_setsize(inode, attr);
5229                 if (err)
5230                         return err;
5231         }
5232
5233         if (attr->ia_valid) {
5234                 setattr_copy(&init_user_ns, inode, attr);
5235                 inode_inc_iversion(inode);
5236                 err = btrfs_dirty_inode(inode);
5237
5238                 if (!err && attr->ia_valid & ATTR_MODE)
5239                         err = posix_acl_chmod(&init_user_ns, inode,
5240                                               inode->i_mode);
5241         }
5242
5243         return err;
5244 }
5245
5246 /*
5247  * While truncating the inode pages during eviction, we get the VFS calling
5248  * btrfs_invalidatepage() against each page of the inode. This is slow because
5249  * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5250  * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5251  * extent_state structures over and over, wasting lots of time.
5252  *
5253  * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5254  * those expensive operations on a per page basis and do only the ordered io
5255  * finishing, while we release here the extent_map and extent_state structures,
5256  * without the excessive merging and splitting.
5257  */
5258 static void evict_inode_truncate_pages(struct inode *inode)
5259 {
5260         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5261         struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5262         struct rb_node *node;
5263
5264         ASSERT(inode->i_state & I_FREEING);
5265         truncate_inode_pages_final(&inode->i_data);
5266
5267         write_lock(&map_tree->lock);
5268         while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
5269                 struct extent_map *em;
5270
5271                 node = rb_first_cached(&map_tree->map);
5272                 em = rb_entry(node, struct extent_map, rb_node);
5273                 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5274                 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
5275                 remove_extent_mapping(map_tree, em);
5276                 free_extent_map(em);
5277                 if (need_resched()) {
5278                         write_unlock(&map_tree->lock);
5279                         cond_resched();
5280                         write_lock(&map_tree->lock);
5281                 }
5282         }
5283         write_unlock(&map_tree->lock);
5284
5285         /*
5286          * Keep looping until we have no more ranges in the io tree.
5287          * We can have ongoing bios started by readahead that have
5288          * their endio callback (extent_io.c:end_bio_extent_readpage)
5289          * still in progress (unlocked the pages in the bio but did not yet
5290          * unlocked the ranges in the io tree). Therefore this means some
5291          * ranges can still be locked and eviction started because before
5292          * submitting those bios, which are executed by a separate task (work
5293          * queue kthread), inode references (inode->i_count) were not taken
5294          * (which would be dropped in the end io callback of each bio).
5295          * Therefore here we effectively end up waiting for those bios and
5296          * anyone else holding locked ranges without having bumped the inode's
5297          * reference count - if we don't do it, when they access the inode's
5298          * io_tree to unlock a range it may be too late, leading to an
5299          * use-after-free issue.
5300          */
5301         spin_lock(&io_tree->lock);
5302         while (!RB_EMPTY_ROOT(&io_tree->state)) {
5303                 struct extent_state *state;
5304                 struct extent_state *cached_state = NULL;
5305                 u64 start;
5306                 u64 end;
5307                 unsigned state_flags;
5308
5309                 node = rb_first(&io_tree->state);
5310                 state = rb_entry(node, struct extent_state, rb_node);
5311                 start = state->start;
5312                 end = state->end;
5313                 state_flags = state->state;
5314                 spin_unlock(&io_tree->lock);
5315
5316                 lock_extent_bits(io_tree, start, end, &cached_state);
5317
5318                 /*
5319                  * If still has DELALLOC flag, the extent didn't reach disk,
5320                  * and its reserved space won't be freed by delayed_ref.
5321                  * So we need to free its reserved space here.
5322                  * (Refer to comment in btrfs_invalidatepage, case 2)
5323                  *
5324                  * Note, end is the bytenr of last byte, so we need + 1 here.
5325                  */
5326                 if (state_flags & EXTENT_DELALLOC)
5327                         btrfs_qgroup_free_data(BTRFS_I(inode), NULL, start,
5328                                                end - start + 1);
5329
5330                 clear_extent_bit(io_tree, start, end,
5331                                  EXTENT_LOCKED | EXTENT_DELALLOC |
5332                                  EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
5333                                  &cached_state);
5334
5335                 cond_resched();
5336                 spin_lock(&io_tree->lock);
5337         }
5338         spin_unlock(&io_tree->lock);
5339 }
5340
5341 static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
5342                                                         struct btrfs_block_rsv *rsv)
5343 {
5344         struct btrfs_fs_info *fs_info = root->fs_info;
5345         struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5346         struct btrfs_trans_handle *trans;
5347         u64 delayed_refs_extra = btrfs_calc_insert_metadata_size(fs_info, 1);
5348         int ret;
5349
5350         /*
5351          * Eviction should be taking place at some place safe because of our
5352          * delayed iputs.  However the normal flushing code will run delayed
5353          * iputs, so we cannot use FLUSH_ALL otherwise we'll deadlock.
5354          *
5355          * We reserve the delayed_refs_extra here again because we can't use
5356          * btrfs_start_transaction(root, 0) for the same deadlocky reason as
5357          * above.  We reserve our extra bit here because we generate a ton of
5358          * delayed refs activity by truncating.
5359          *
5360          * If we cannot make our reservation we'll attempt to steal from the
5361          * global reserve, because we really want to be able to free up space.
5362          */
5363         ret = btrfs_block_rsv_refill(root, rsv, rsv->size + delayed_refs_extra,
5364                                      BTRFS_RESERVE_FLUSH_EVICT);
5365         if (ret) {
5366                 /*
5367                  * Try to steal from the global reserve if there is space for
5368                  * it.
5369                  */
5370                 if (btrfs_check_space_for_delayed_refs(fs_info) ||
5371                     btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, 0)) {
5372                         btrfs_warn(fs_info,
5373                                    "could not allocate space for delete; will truncate on mount");
5374                         return ERR_PTR(-ENOSPC);
5375                 }
5376                 delayed_refs_extra = 0;
5377         }
5378
5379         trans = btrfs_join_transaction(root);
5380         if (IS_ERR(trans))
5381                 return trans;
5382
5383         if (delayed_refs_extra) {
5384                 trans->block_rsv = &fs_info->trans_block_rsv;
5385                 trans->bytes_reserved = delayed_refs_extra;
5386                 btrfs_block_rsv_migrate(rsv, trans->block_rsv,
5387                                         delayed_refs_extra, 1);
5388         }
5389         return trans;
5390 }
5391
5392 void btrfs_evict_inode(struct inode *inode)
5393 {
5394         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5395         struct btrfs_trans_handle *trans;
5396         struct btrfs_root *root = BTRFS_I(inode)->root;
5397         struct btrfs_block_rsv *rsv;
5398         int ret;
5399
5400         trace_btrfs_inode_evict(inode);
5401
5402         if (!root) {
5403                 clear_inode(inode);
5404                 return;
5405         }
5406
5407         evict_inode_truncate_pages(inode);
5408
5409         if (inode->i_nlink &&
5410             ((btrfs_root_refs(&root->root_item) != 0 &&
5411               root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
5412              btrfs_is_free_space_inode(BTRFS_I(inode))))
5413                 goto no_delete;
5414
5415         if (is_bad_inode(inode))
5416                 goto no_delete;
5417
5418         btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
5419
5420         if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
5421                 goto no_delete;
5422
5423         if (inode->i_nlink > 0) {
5424                 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5425                        root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
5426                 goto no_delete;
5427         }
5428
5429         ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
5430         if (ret)
5431                 goto no_delete;
5432
5433         rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
5434         if (!rsv)
5435                 goto no_delete;
5436         rsv->size = btrfs_calc_metadata_size(fs_info, 1);
5437         rsv->failfast = 1;
5438
5439         btrfs_i_size_write(BTRFS_I(inode), 0);
5440
5441         while (1) {
5442                 trans = evict_refill_and_join(root, rsv);
5443                 if (IS_ERR(trans))
5444                         goto free_rsv;
5445
5446                 trans->block_rsv = rsv;
5447
5448                 ret = btrfs_truncate_inode_items(trans, root, BTRFS_I(inode),
5449                                                  0, 0);
5450                 trans->block_rsv = &fs_info->trans_block_rsv;
5451                 btrfs_end_transaction(trans);
5452                 btrfs_btree_balance_dirty(fs_info);
5453                 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5454                         goto free_rsv;
5455                 else if (!ret)
5456                         break;
5457         }
5458
5459         /*
5460          * Errors here aren't a big deal, it just means we leave orphan items in
5461          * the tree. They will be cleaned up on the next mount. If the inode
5462          * number gets reused, cleanup deletes the orphan item without doing
5463          * anything, and unlink reuses the existing orphan item.
5464          *
5465          * If it turns out that we are dropping too many of these, we might want
5466          * to add a mechanism for retrying these after a commit.
5467          */
5468         trans = evict_refill_and_join(root, rsv);
5469         if (!IS_ERR(trans)) {
5470                 trans->block_rsv = rsv;
5471                 btrfs_orphan_del(trans, BTRFS_I(inode));
5472                 trans->block_rsv = &fs_info->trans_block_rsv;
5473                 btrfs_end_transaction(trans);
5474         }
5475
5476 free_rsv:
5477         btrfs_free_block_rsv(fs_info, rsv);
5478 no_delete:
5479         /*
5480          * If we didn't successfully delete, the orphan item will still be in
5481          * the tree and we'll retry on the next mount. Again, we might also want
5482          * to retry these periodically in the future.
5483          */
5484         btrfs_remove_delayed_node(BTRFS_I(inode));
5485         clear_inode(inode);
5486 }
5487
5488 /*
5489  * Return the key found in the dir entry in the location pointer, fill @type
5490  * with BTRFS_FT_*, and return 0.
5491  *
5492  * If no dir entries were found, returns -ENOENT.
5493  * If found a corrupted location in dir entry, returns -EUCLEAN.
5494  */
5495 static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5496                                struct btrfs_key *location, u8 *type)
5497 {
5498         const char *name = dentry->d_name.name;
5499         int namelen = dentry->d_name.len;
5500         struct btrfs_dir_item *di;
5501         struct btrfs_path *path;
5502         struct btrfs_root *root = BTRFS_I(dir)->root;
5503         int ret = 0;
5504
5505         path = btrfs_alloc_path();
5506         if (!path)
5507                 return -ENOMEM;
5508
5509         di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5510                         name, namelen, 0);
5511         if (IS_ERR_OR_NULL(di)) {
5512                 ret = di ? PTR_ERR(di) : -ENOENT;
5513                 goto out;
5514         }
5515
5516         btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
5517         if (location->type != BTRFS_INODE_ITEM_KEY &&
5518             location->type != BTRFS_ROOT_ITEM_KEY) {
5519                 ret = -EUCLEAN;
5520                 btrfs_warn(root->fs_info,
5521 "%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5522                            __func__, name, btrfs_ino(BTRFS_I(dir)),
5523                            location->objectid, location->type, location->offset);
5524         }
5525         if (!ret)
5526                 *type = btrfs_dir_type(path->nodes[0], di);
5527 out:
5528         btrfs_free_path(path);
5529         return ret;
5530 }
5531
5532 /*
5533  * when we hit a tree root in a directory, the btrfs part of the inode
5534  * needs to be changed to reflect the root directory of the tree root.  This
5535  * is kind of like crossing a mount point.
5536  */
5537 static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
5538                                     struct inode *dir,
5539                                     struct dentry *dentry,
5540                                     struct btrfs_key *location,
5541                                     struct btrfs_root **sub_root)
5542 {
5543         struct btrfs_path *path;
5544         struct btrfs_root *new_root;
5545         struct btrfs_root_ref *ref;
5546         struct extent_buffer *leaf;
5547         struct btrfs_key key;
5548         int ret;
5549         int err = 0;
5550
5551         path = btrfs_alloc_path();
5552         if (!path) {
5553                 err = -ENOMEM;
5554                 goto out;
5555         }
5556
5557         err = -ENOENT;
5558         key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5559         key.type = BTRFS_ROOT_REF_KEY;
5560         key.offset = location->objectid;
5561
5562         ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
5563         if (ret) {
5564                 if (ret < 0)
5565                         err = ret;
5566                 goto out;
5567         }
5568
5569         leaf = path->nodes[0];
5570         ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
5571         if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
5572             btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5573                 goto out;
5574
5575         ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5576                                    (unsigned long)(ref + 1),
5577                                    dentry->d_name.len);
5578         if (ret)
5579                 goto out;
5580
5581         btrfs_release_path(path);
5582
5583         new_root = btrfs_get_fs_root(fs_info, location->objectid, true);
5584         if (IS_ERR(new_root)) {
5585                 err = PTR_ERR(new_root);
5586                 goto out;
5587         }
5588
5589         *sub_root = new_root;
5590         location->objectid = btrfs_root_dirid(&new_root->root_item);
5591         location->type = BTRFS_INODE_ITEM_KEY;
5592         location->offset = 0;
5593         err = 0;
5594 out:
5595         btrfs_free_path(path);
5596         return err;
5597 }
5598
5599 static void inode_tree_add(struct inode *inode)
5600 {
5601         struct btrfs_root *root = BTRFS_I(inode)->root;
5602         struct btrfs_inode *entry;
5603         struct rb_node **p;
5604         struct rb_node *parent;
5605         struct rb_node *new = &BTRFS_I(inode)->rb_node;
5606         u64 ino = btrfs_ino(BTRFS_I(inode));
5607
5608         if (inode_unhashed(inode))
5609                 return;
5610         parent = NULL;
5611         spin_lock(&root->inode_lock);
5612         p = &root->inode_tree.rb_node;
5613         while (*p) {
5614                 parent = *p;
5615                 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5616
5617                 if (ino < btrfs_ino(entry))
5618                         p = &parent->rb_left;
5619                 else if (ino > btrfs_ino(entry))
5620                         p = &parent->rb_right;
5621                 else {
5622                         WARN_ON(!(entry->vfs_inode.i_state &
5623                                   (I_WILL_FREE | I_FREEING)));
5624                         rb_replace_node(parent, new, &root->inode_tree);
5625                         RB_CLEAR_NODE(parent);
5626                         spin_unlock(&root->inode_lock);
5627                         return;
5628                 }
5629         }
5630         rb_link_node(new, parent, p);
5631         rb_insert_color(new, &root->inode_tree);
5632         spin_unlock(&root->inode_lock);
5633 }
5634
5635 static void inode_tree_del(struct btrfs_inode *inode)
5636 {
5637         struct btrfs_root *root = inode->root;
5638         int empty = 0;
5639
5640         spin_lock(&root->inode_lock);
5641         if (!RB_EMPTY_NODE(&inode->rb_node)) {
5642                 rb_erase(&inode->rb_node, &root->inode_tree);
5643                 RB_CLEAR_NODE(&inode->rb_node);
5644                 empty = RB_EMPTY_ROOT(&root->inode_tree);
5645         }
5646         spin_unlock(&root->inode_lock);
5647
5648         if (empty && btrfs_root_refs(&root->root_item) == 0) {
5649                 spin_lock(&root->inode_lock);
5650                 empty = RB_EMPTY_ROOT(&root->inode_tree);
5651                 spin_unlock(&root->inode_lock);
5652                 if (empty)
5653                         btrfs_add_dead_root(root);
5654         }
5655 }
5656
5657
5658 static int btrfs_init_locked_inode(struct inode *inode, void *p)
5659 {
5660         struct btrfs_iget_args *args = p;
5661
5662         inode->i_ino = args->ino;
5663         BTRFS_I(inode)->location.objectid = args->ino;
5664         BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
5665         BTRFS_I(inode)->location.offset = 0;
5666         BTRFS_I(inode)->root = btrfs_grab_root(args->root);
5667         BUG_ON(args->root && !BTRFS_I(inode)->root);
5668         return 0;
5669 }
5670
5671 static int btrfs_find_actor(struct inode *inode, void *opaque)
5672 {
5673         struct btrfs_iget_args *args = opaque;
5674
5675         return args->ino == BTRFS_I(inode)->location.objectid &&
5676                 args->root == BTRFS_I(inode)->root;
5677 }
5678
5679 static struct inode *btrfs_iget_locked(struct super_block *s, u64 ino,
5680                                        struct btrfs_root *root)
5681 {
5682         struct inode *inode;
5683         struct btrfs_iget_args args;
5684         unsigned long hashval = btrfs_inode_hash(ino, root);
5685
5686         args.ino = ino;
5687         args.root = root;
5688
5689         inode = iget5_locked(s, hashval, btrfs_find_actor,
5690                              btrfs_init_locked_inode,
5691                              (void *)&args);
5692         return inode;
5693 }
5694
5695 /*
5696  * Get an inode object given its inode number and corresponding root.
5697  * Path can be preallocated to prevent recursing back to iget through
5698  * allocator. NULL is also valid but may require an additional allocation
5699  * later.
5700  */
5701 struct inode *btrfs_iget_path(struct super_block *s, u64 ino,
5702                               struct btrfs_root *root, struct btrfs_path *path)
5703 {
5704         struct inode *inode;
5705
5706         inode = btrfs_iget_locked(s, ino, root);
5707         if (!inode)
5708                 return ERR_PTR(-ENOMEM);
5709
5710         if (inode->i_state & I_NEW) {
5711                 int ret;
5712
5713                 ret = btrfs_read_locked_inode(inode, path);
5714                 if (!ret) {
5715                         inode_tree_add(inode);
5716                         unlock_new_inode(inode);
5717                 } else {
5718                         iget_failed(inode);
5719                         /*
5720                          * ret > 0 can come from btrfs_search_slot called by
5721                          * btrfs_read_locked_inode, this means the inode item
5722                          * was not found.
5723                          */
5724                         if (ret > 0)
5725                                 ret = -ENOENT;
5726                         inode = ERR_PTR(ret);
5727                 }
5728         }
5729
5730         return inode;
5731 }
5732
5733 struct inode *btrfs_iget(struct super_block *s, u64 ino, struct btrfs_root *root)
5734 {
5735         return btrfs_iget_path(s, ino, root, NULL);
5736 }
5737
5738 static struct inode *new_simple_dir(struct super_block *s,
5739                                     struct btrfs_key *key,
5740                                     struct btrfs_root *root)
5741 {
5742         struct inode *inode = new_inode(s);
5743
5744         if (!inode)
5745                 return ERR_PTR(-ENOMEM);
5746
5747         BTRFS_I(inode)->root = btrfs_grab_root(root);
5748         memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
5749         set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
5750
5751         inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
5752         /*
5753          * We only need lookup, the rest is read-only and there's no inode
5754          * associated with the dentry
5755          */
5756         inode->i_op = &simple_dir_inode_operations;
5757         inode->i_opflags &= ~IOP_XATTR;
5758         inode->i_fop = &simple_dir_operations;
5759         inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
5760         inode->i_mtime = current_time(inode);
5761         inode->i_atime = inode->i_mtime;
5762         inode->i_ctime = inode->i_mtime;
5763         BTRFS_I(inode)->i_otime = inode->i_mtime;
5764
5765         return inode;
5766 }
5767
5768 static inline u8 btrfs_inode_type(struct inode *inode)
5769 {
5770         /*
5771          * Compile-time asserts that generic FT_* types still match
5772          * BTRFS_FT_* types
5773          */
5774         BUILD_BUG_ON(BTRFS_FT_UNKNOWN != FT_UNKNOWN);
5775         BUILD_BUG_ON(BTRFS_FT_REG_FILE != FT_REG_FILE);
5776         BUILD_BUG_ON(BTRFS_FT_DIR != FT_DIR);
5777         BUILD_BUG_ON(BTRFS_FT_CHRDEV != FT_CHRDEV);
5778         BUILD_BUG_ON(BTRFS_FT_BLKDEV != FT_BLKDEV);
5779         BUILD_BUG_ON(BTRFS_FT_FIFO != FT_FIFO);
5780         BUILD_BUG_ON(BTRFS_FT_SOCK != FT_SOCK);
5781         BUILD_BUG_ON(BTRFS_FT_SYMLINK != FT_SYMLINK);
5782
5783         return fs_umode_to_ftype(inode->i_mode);
5784 }
5785
5786 struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
5787 {
5788         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
5789         struct inode *inode;
5790         struct btrfs_root *root = BTRFS_I(dir)->root;
5791         struct btrfs_root *sub_root = root;
5792         struct btrfs_key location;
5793         u8 di_type = 0;
5794         int ret = 0;
5795
5796         if (dentry->d_name.len > BTRFS_NAME_LEN)
5797                 return ERR_PTR(-ENAMETOOLONG);
5798
5799         ret = btrfs_inode_by_name(dir, dentry, &location, &di_type);
5800         if (ret < 0)
5801                 return ERR_PTR(ret);
5802
5803         if (location.type == BTRFS_INODE_ITEM_KEY) {
5804                 inode = btrfs_iget(dir->i_sb, location.objectid, root);
5805                 if (IS_ERR(inode))
5806                         return inode;
5807
5808                 /* Do extra check against inode mode with di_type */
5809                 if (btrfs_inode_type(inode) != di_type) {
5810                         btrfs_crit(fs_info,
5811 "inode mode mismatch with dir: inode mode=0%o btrfs type=%u dir type=%u",
5812                                   inode->i_mode, btrfs_inode_type(inode),
5813                                   di_type);
5814                         iput(inode);
5815                         return ERR_PTR(-EUCLEAN);
5816                 }
5817                 return inode;
5818         }
5819
5820         ret = fixup_tree_root_location(fs_info, dir, dentry,
5821                                        &location, &sub_root);
5822         if (ret < 0) {
5823                 if (ret != -ENOENT)
5824                         inode = ERR_PTR(ret);
5825                 else
5826                         inode = new_simple_dir(dir->i_sb, &location, sub_root);
5827         } else {
5828                 inode = btrfs_iget(dir->i_sb, location.objectid, sub_root);
5829         }
5830         if (root != sub_root)
5831                 btrfs_put_root(sub_root);
5832
5833         if (!IS_ERR(inode) && root != sub_root) {
5834                 down_read(&fs_info->cleanup_work_sem);
5835                 if (!sb_rdonly(inode->i_sb))
5836                         ret = btrfs_orphan_cleanup(sub_root);
5837                 up_read(&fs_info->cleanup_work_sem);
5838                 if (ret) {
5839                         iput(inode);
5840                         inode = ERR_PTR(ret);
5841                 }
5842         }
5843
5844         return inode;
5845 }
5846
5847 static int btrfs_dentry_delete(const struct dentry *dentry)
5848 {
5849         struct btrfs_root *root;
5850         struct inode *inode = d_inode(dentry);
5851
5852         if (!inode && !IS_ROOT(dentry))
5853                 inode = d_inode(dentry->d_parent);
5854
5855         if (inode) {
5856                 root = BTRFS_I(inode)->root;
5857                 if (btrfs_root_refs(&root->root_item) == 0)
5858                         return 1;
5859
5860                 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5861                         return 1;
5862         }
5863         return 0;
5864 }
5865
5866 static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
5867                                    unsigned int flags)
5868 {
5869         struct inode *inode = btrfs_lookup_dentry(dir, dentry);
5870
5871         if (inode == ERR_PTR(-ENOENT))
5872                 inode = NULL;
5873         return d_splice_alias(inode, dentry);
5874 }
5875
5876 /*
5877  * All this infrastructure exists because dir_emit can fault, and we are holding
5878  * the tree lock when doing readdir.  For now just allocate a buffer and copy
5879  * our information into that, and then dir_emit from the buffer.  This is
5880  * similar to what NFS does, only we don't keep the buffer around in pagecache
5881  * because I'm afraid I'll mess that up.  Long term we need to make filldir do
5882  * copy_to_user_inatomic so we don't have to worry about page faulting under the
5883  * tree lock.
5884  */
5885 static int btrfs_opendir(struct inode *inode, struct file *file)
5886 {
5887         struct btrfs_file_private *private;
5888
5889         private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5890         if (!private)
5891                 return -ENOMEM;
5892         private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5893         if (!private->filldir_buf) {
5894                 kfree(private);
5895                 return -ENOMEM;
5896         }
5897         file->private_data = private;
5898         return 0;
5899 }
5900
5901 struct dir_entry {
5902         u64 ino;
5903         u64 offset;
5904         unsigned type;
5905         int name_len;
5906 };
5907
5908 static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5909 {
5910         while (entries--) {
5911                 struct dir_entry *entry = addr;
5912                 char *name = (char *)(entry + 1);
5913
5914                 ctx->pos = get_unaligned(&entry->offset);
5915                 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5916                                          get_unaligned(&entry->ino),
5917                                          get_unaligned(&entry->type)))
5918                         return 1;
5919                 addr += sizeof(struct dir_entry) +
5920                         get_unaligned(&entry->name_len);
5921                 ctx->pos++;
5922         }
5923         return 0;
5924 }
5925
5926 static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
5927 {
5928         struct inode *inode = file_inode(file);
5929         struct btrfs_root *root = BTRFS_I(inode)->root;
5930         struct btrfs_file_private *private = file->private_data;
5931         struct btrfs_dir_item *di;
5932         struct btrfs_key key;
5933         struct btrfs_key found_key;
5934         struct btrfs_path *path;
5935         void *addr;
5936         struct list_head ins_list;
5937         struct list_head del_list;
5938         int ret;
5939         struct extent_buffer *leaf;
5940         int slot;
5941         char *name_ptr;
5942         int name_len;
5943         int entries = 0;
5944         int total_len = 0;
5945         bool put = false;
5946         struct btrfs_key location;
5947
5948         if (!dir_emit_dots(file, ctx))
5949                 return 0;
5950
5951         path = btrfs_alloc_path();
5952         if (!path)
5953                 return -ENOMEM;
5954
5955         addr = private->filldir_buf;
5956         path->reada = READA_FORWARD;
5957
5958         INIT_LIST_HEAD(&ins_list);
5959         INIT_LIST_HEAD(&del_list);
5960         put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
5961
5962 again:
5963         key.type = BTRFS_DIR_INDEX_KEY;
5964         key.offset = ctx->pos;
5965         key.objectid = btrfs_ino(BTRFS_I(inode));
5966
5967         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5968         if (ret < 0)
5969                 goto err;
5970
5971         while (1) {
5972                 struct dir_entry *entry;
5973
5974                 leaf = path->nodes[0];
5975                 slot = path->slots[0];
5976                 if (slot >= btrfs_header_nritems(leaf)) {
5977                         ret = btrfs_next_leaf(root, path);
5978                         if (ret < 0)
5979                                 goto err;
5980                         else if (ret > 0)
5981                                 break;
5982                         continue;
5983                 }
5984
5985                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5986
5987                 if (found_key.objectid != key.objectid)
5988                         break;
5989                 if (found_key.type != BTRFS_DIR_INDEX_KEY)
5990                         break;
5991                 if (found_key.offset < ctx->pos)
5992                         goto next;
5993                 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
5994                         goto next;
5995                 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5996                 name_len = btrfs_dir_name_len(leaf, di);
5997                 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5998                     PAGE_SIZE) {
5999                         btrfs_release_path(path);
6000                         ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6001                         if (ret)
6002                                 goto nopos;
6003                         addr = private->filldir_buf;
6004                         entries = 0;
6005                         total_len = 0;
6006                         goto again;
6007                 }
6008
6009                 entry = addr;
6010                 put_unaligned(name_len, &entry->name_len);
6011                 name_ptr = (char *)(entry + 1);
6012                 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
6013                                    name_len);
6014                 put_unaligned(fs_ftype_to_dtype(btrfs_dir_type(leaf, di)),
6015                                 &entry->type);
6016                 btrfs_dir_item_key_to_cpu(leaf, di, &location);
6017                 put_unaligned(location.objectid, &entry->ino);
6018                 put_unaligned(found_key.offset, &entry->offset);
6019                 entries++;
6020                 addr += sizeof(struct dir_entry) + name_len;
6021                 total_len += sizeof(struct dir_entry) + name_len;
6022 next:
6023                 path->slots[0]++;
6024         }
6025         btrfs_release_path(path);
6026
6027         ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6028         if (ret)
6029                 goto nopos;
6030
6031         ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
6032         if (ret)
6033                 goto nopos;
6034
6035         /*
6036          * Stop new entries from being returned after we return the last
6037          * entry.
6038          *
6039          * New directory entries are assigned a strictly increasing
6040          * offset.  This means that new entries created during readdir
6041          * are *guaranteed* to be seen in the future by that readdir.
6042          * This has broken buggy programs which operate on names as
6043          * they're returned by readdir.  Until we re-use freed offsets
6044          * we have this hack to stop new entries from being returned
6045          * under the assumption that they'll never reach this huge
6046          * offset.
6047          *
6048          * This is being careful not to overflow 32bit loff_t unless the
6049          * last entry requires it because doing so has broken 32bit apps
6050          * in the past.
6051          */
6052         if (ctx->pos >= INT_MAX)
6053                 ctx->pos = LLONG_MAX;
6054         else
6055                 ctx->pos = INT_MAX;
6056 nopos:
6057         ret = 0;
6058 err:
6059         if (put)
6060                 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
6061         btrfs_free_path(path);
6062         return ret;
6063 }
6064
6065 /*
6066  * This is somewhat expensive, updating the tree every time the
6067  * inode changes.  But, it is most likely to find the inode in cache.
6068  * FIXME, needs more benchmarking...there are no reasons other than performance
6069  * to keep or drop this code.
6070  */
6071 static int btrfs_dirty_inode(struct inode *inode)
6072 {
6073         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6074         struct btrfs_root *root = BTRFS_I(inode)->root;
6075         struct btrfs_trans_handle *trans;
6076         int ret;
6077
6078         if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
6079                 return 0;
6080
6081         trans = btrfs_join_transaction(root);
6082         if (IS_ERR(trans))
6083                 return PTR_ERR(trans);
6084
6085         ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
6086         if (ret && (ret == -ENOSPC || ret == -EDQUOT)) {
6087                 /* whoops, lets try again with the full transaction */
6088                 btrfs_end_transaction(trans);
6089                 trans = btrfs_start_transaction(root, 1);
6090                 if (IS_ERR(trans))
6091                         return PTR_ERR(trans);
6092
6093                 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
6094         }
6095         btrfs_end_transaction(trans);
6096         if (BTRFS_I(inode)->delayed_node)
6097                 btrfs_balance_delayed_items(fs_info);
6098
6099         return ret;
6100 }
6101
6102 /*
6103  * This is a copy of file_update_time.  We need this so we can return error on
6104  * ENOSPC for updating the inode in the case of file write and mmap writes.
6105  */
6106 static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
6107                              int flags)
6108 {
6109         struct btrfs_root *root = BTRFS_I(inode)->root;
6110         bool dirty = flags & ~S_VERSION;
6111
6112         if (btrfs_root_readonly(root))
6113                 return -EROFS;
6114
6115         if (flags & S_VERSION)
6116                 dirty |= inode_maybe_inc_iversion(inode, dirty);
6117         if (flags & S_CTIME)
6118                 inode->i_ctime = *now;
6119         if (flags & S_MTIME)
6120                 inode->i_mtime = *now;
6121         if (flags & S_ATIME)
6122                 inode->i_atime = *now;
6123         return dirty ? btrfs_dirty_inode(inode) : 0;
6124 }
6125
6126 /*
6127  * find the highest existing sequence number in a directory
6128  * and then set the in-memory index_cnt variable to reflect
6129  * free sequence numbers
6130  */
6131 static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
6132 {
6133         struct btrfs_root *root = inode->root;
6134         struct btrfs_key key, found_key;
6135         struct btrfs_path *path;
6136         struct extent_buffer *leaf;
6137         int ret;
6138
6139         key.objectid = btrfs_ino(inode);
6140         key.type = BTRFS_DIR_INDEX_KEY;
6141         key.offset = (u64)-1;
6142
6143         path = btrfs_alloc_path();
6144         if (!path)
6145                 return -ENOMEM;
6146
6147         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6148         if (ret < 0)
6149                 goto out;
6150         /* FIXME: we should be able to handle this */
6151         if (ret == 0)
6152                 goto out;
6153         ret = 0;
6154
6155         /*
6156          * MAGIC NUMBER EXPLANATION:
6157          * since we search a directory based on f_pos we have to start at 2
6158          * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6159          * else has to start at 2
6160          */
6161         if (path->slots[0] == 0) {
6162                 inode->index_cnt = 2;
6163                 goto out;
6164         }
6165
6166         path->slots[0]--;
6167
6168         leaf = path->nodes[0];
6169         btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6170
6171         if (found_key.objectid != btrfs_ino(inode) ||
6172             found_key.type != BTRFS_DIR_INDEX_KEY) {
6173                 inode->index_cnt = 2;
6174                 goto out;
6175         }
6176
6177         inode->index_cnt = found_key.offset + 1;
6178 out:
6179         btrfs_free_path(path);
6180         return ret;
6181 }
6182
6183 /*
6184  * helper to find a free sequence number in a given directory.  This current
6185  * code is very simple, later versions will do smarter things in the btree
6186  */
6187 int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
6188 {
6189         int ret = 0;
6190
6191         if (dir->index_cnt == (u64)-1) {
6192                 ret = btrfs_inode_delayed_dir_index_count(dir);
6193                 if (ret) {
6194                         ret = btrfs_set_inode_index_count(dir);
6195                         if (ret)
6196                                 return ret;
6197                 }
6198         }
6199
6200         *index = dir->index_cnt;
6201         dir->index_cnt++;
6202
6203         return ret;
6204 }
6205
6206 static int btrfs_insert_inode_locked(struct inode *inode)
6207 {
6208         struct btrfs_iget_args args;
6209
6210         args.ino = BTRFS_I(inode)->location.objectid;
6211         args.root = BTRFS_I(inode)->root;
6212
6213         return insert_inode_locked4(inode,
6214                    btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6215                    btrfs_find_actor, &args);
6216 }
6217
6218 /*
6219  * Inherit flags from the parent inode.
6220  *
6221  * Currently only the compression flags and the cow flags are inherited.
6222  */
6223 static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6224 {
6225         unsigned int flags;
6226
6227         if (!dir)
6228                 return;
6229
6230         flags = BTRFS_I(dir)->flags;
6231
6232         if (flags & BTRFS_INODE_NOCOMPRESS) {
6233                 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6234                 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6235         } else if (flags & BTRFS_INODE_COMPRESS) {
6236                 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6237                 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6238         }
6239
6240         if (flags & BTRFS_INODE_NODATACOW) {
6241                 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6242                 if (S_ISREG(inode->i_mode))
6243                         BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6244         }
6245
6246         btrfs_sync_inode_flags_to_i_flags(inode);
6247 }
6248
6249 static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6250                                      struct btrfs_root *root,
6251                                      struct inode *dir,
6252                                      const char *name, int name_len,
6253                                      u64 ref_objectid, u64 objectid,
6254                                      umode_t mode, u64 *index)
6255 {
6256         struct btrfs_fs_info *fs_info = root->fs_info;
6257         struct inode *inode;
6258         struct btrfs_inode_item *inode_item;
6259         struct btrfs_key *location;
6260         struct btrfs_path *path;
6261         struct btrfs_inode_ref *ref;
6262         struct btrfs_key key[2];
6263         u32 sizes[2];
6264         int nitems = name ? 2 : 1;
6265         unsigned long ptr;
6266         unsigned int nofs_flag;
6267         int ret;
6268
6269         path = btrfs_alloc_path();
6270         if (!path)
6271                 return ERR_PTR(-ENOMEM);
6272
6273         nofs_flag = memalloc_nofs_save();
6274         inode = new_inode(fs_info->sb);
6275         memalloc_nofs_restore(nofs_flag);
6276         if (!inode) {
6277                 btrfs_free_path(path);
6278                 return ERR_PTR(-ENOMEM);
6279         }
6280
6281         /*
6282          * O_TMPFILE, set link count to 0, so that after this point,
6283          * we fill in an inode item with the correct link count.
6284          */
6285         if (!name)
6286                 set_nlink(inode, 0);
6287
6288         /*
6289          * we have to initialize this early, so we can reclaim the inode
6290          * number if we fail afterwards in this function.
6291          */
6292         inode->i_ino = objectid;
6293
6294         if (dir && name) {
6295                 trace_btrfs_inode_request(dir);
6296
6297                 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
6298                 if (ret) {
6299                         btrfs_free_path(path);
6300                         iput(inode);
6301                         return ERR_PTR(ret);
6302                 }
6303         } else if (dir) {
6304                 *index = 0;
6305         }
6306         /*
6307          * index_cnt is ignored for everything but a dir,
6308          * btrfs_set_inode_index_count has an explanation for the magic
6309          * number
6310          */
6311         BTRFS_I(inode)->index_cnt = 2;
6312         BTRFS_I(inode)->dir_index = *index;
6313         BTRFS_I(inode)->root = btrfs_grab_root(root);
6314         BTRFS_I(inode)->generation = trans->transid;
6315         inode->i_generation = BTRFS_I(inode)->generation;
6316
6317         /*
6318          * We could have gotten an inode number from somebody who was fsynced
6319          * and then removed in this same transaction, so let's just set full
6320          * sync since it will be a full sync anyway and this will blow away the
6321          * old info in the log.
6322          */
6323         set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6324
6325         key[0].objectid = objectid;
6326         key[0].type = BTRFS_INODE_ITEM_KEY;
6327         key[0].offset = 0;
6328
6329         sizes[0] = sizeof(struct btrfs_inode_item);
6330
6331         if (name) {
6332                 /*
6333                  * Start new inodes with an inode_ref. This is slightly more
6334                  * efficient for small numbers of hard links since they will
6335                  * be packed into one item. Extended refs will kick in if we
6336                  * add more hard links than can fit in the ref item.
6337                  */
6338                 key[1].objectid = objectid;
6339                 key[1].type = BTRFS_INODE_REF_KEY;
6340                 key[1].offset = ref_objectid;
6341
6342                 sizes[1] = name_len + sizeof(*ref);
6343         }
6344
6345         location = &BTRFS_I(inode)->location;
6346         location->objectid = objectid;
6347         location->offset = 0;
6348         location->type = BTRFS_INODE_ITEM_KEY;
6349
6350         ret = btrfs_insert_inode_locked(inode);
6351         if (ret < 0) {
6352                 iput(inode);
6353                 goto fail;
6354         }
6355
6356         ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
6357         if (ret != 0)
6358                 goto fail_unlock;
6359
6360         inode_init_owner(&init_user_ns, inode, dir, mode);
6361         inode_set_bytes(inode, 0);
6362
6363         inode->i_mtime = current_time(inode);
6364         inode->i_atime = inode->i_mtime;
6365         inode->i_ctime = inode->i_mtime;
6366         BTRFS_I(inode)->i_otime = inode->i_mtime;
6367
6368         inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6369                                   struct btrfs_inode_item);
6370         memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
6371                              sizeof(*inode_item));
6372         fill_inode_item(trans, path->nodes[0], inode_item, inode);
6373
6374         if (name) {
6375                 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6376                                      struct btrfs_inode_ref);
6377                 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6378                 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6379                 ptr = (unsigned long)(ref + 1);
6380                 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6381         }
6382
6383         btrfs_mark_buffer_dirty(path->nodes[0]);
6384         btrfs_free_path(path);
6385
6386         btrfs_inherit_iflags(inode, dir);
6387
6388         if (S_ISREG(mode)) {
6389                 if (btrfs_test_opt(fs_info, NODATASUM))
6390                         BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6391                 if (btrfs_test_opt(fs_info, NODATACOW))
6392                         BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6393                                 BTRFS_INODE_NODATASUM;
6394         }
6395
6396         inode_tree_add(inode);
6397
6398         trace_btrfs_inode_new(inode);
6399         btrfs_set_inode_last_trans(trans, BTRFS_I(inode));
6400
6401         btrfs_update_root_times(trans, root);
6402
6403         ret = btrfs_inode_inherit_props(trans, inode, dir);
6404         if (ret)
6405                 btrfs_err(fs_info,
6406                           "error inheriting props for ino %llu (root %llu): %d",
6407                         btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
6408
6409         return inode;
6410
6411 fail_unlock:
6412         discard_new_inode(inode);
6413 fail:
6414         if (dir && name)
6415                 BTRFS_I(dir)->index_cnt--;
6416         btrfs_free_path(path);
6417         return ERR_PTR(ret);
6418 }
6419
6420 /*
6421  * utility function to add 'inode' into 'parent_inode' with
6422  * a give name and a given sequence number.
6423  * if 'add_backref' is true, also insert a backref from the
6424  * inode to the parent directory.
6425  */
6426 int btrfs_add_link(struct btrfs_trans_handle *trans,
6427                    struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
6428                    const char *name, int name_len, int add_backref, u64 index)
6429 {
6430         int ret = 0;
6431         struct btrfs_key key;
6432         struct btrfs_root *root = parent_inode->root;
6433         u64 ino = btrfs_ino(inode);
6434         u64 parent_ino = btrfs_ino(parent_inode);
6435
6436         if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6437                 memcpy(&key, &inode->root->root_key, sizeof(key));
6438         } else {
6439                 key.objectid = ino;
6440                 key.type = BTRFS_INODE_ITEM_KEY;
6441                 key.offset = 0;
6442         }
6443
6444         if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6445                 ret = btrfs_add_root_ref(trans, key.objectid,
6446                                          root->root_key.objectid, parent_ino,
6447                                          index, name, name_len);
6448         } else if (add_backref) {
6449                 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6450                                              parent_ino, index);
6451         }
6452
6453         /* Nothing to clean up yet */
6454         if (ret)
6455                 return ret;
6456
6457         ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
6458                                     btrfs_inode_type(&inode->vfs_inode), index);
6459         if (ret == -EEXIST || ret == -EOVERFLOW)
6460                 goto fail_dir_item;
6461         else if (ret) {
6462                 btrfs_abort_transaction(trans, ret);
6463                 return ret;
6464         }
6465
6466         btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
6467                            name_len * 2);
6468         inode_inc_iversion(&parent_inode->vfs_inode);
6469         /*
6470          * If we are replaying a log tree, we do not want to update the mtime
6471          * and ctime of the parent directory with the current time, since the
6472          * log replay procedure is responsible for setting them to their correct
6473          * values (the ones it had when the fsync was done).
6474          */
6475         if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags)) {
6476                 struct timespec64 now = current_time(&parent_inode->vfs_inode);
6477
6478                 parent_inode->vfs_inode.i_mtime = now;
6479                 parent_inode->vfs_inode.i_ctime = now;
6480         }
6481         ret = btrfs_update_inode(trans, root, parent_inode);
6482         if (ret)
6483                 btrfs_abort_transaction(trans, ret);
6484         return ret;
6485
6486 fail_dir_item:
6487         if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6488                 u64 local_index;
6489                 int err;
6490                 err = btrfs_del_root_ref(trans, key.objectid,
6491                                          root->root_key.objectid, parent_ino,
6492                                          &local_index, name, name_len);
6493                 if (err)
6494                         btrfs_abort_transaction(trans, err);
6495         } else if (add_backref) {
6496                 u64 local_index;
6497                 int err;
6498
6499                 err = btrfs_del_inode_ref(trans, root, name, name_len,
6500                                           ino, parent_ino, &local_index);
6501                 if (err)
6502                         btrfs_abort_transaction(trans, err);
6503         }
6504
6505         /* Return the original error code */
6506         return ret;
6507 }
6508
6509 static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
6510                             struct btrfs_inode *dir, struct dentry *dentry,
6511                             struct btrfs_inode *inode, int backref, u64 index)
6512 {
6513         int err = btrfs_add_link(trans, dir, inode,
6514                                  dentry->d_name.name, dentry->d_name.len,
6515                                  backref, index);
6516         if (err > 0)
6517                 err = -EEXIST;
6518         return err;
6519 }
6520
6521 static int btrfs_mknod(struct user_namespace *mnt_userns, struct inode *dir,
6522                        struct dentry *dentry, umode_t mode, dev_t rdev)
6523 {
6524         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
6525         struct btrfs_trans_handle *trans;
6526         struct btrfs_root *root = BTRFS_I(dir)->root;
6527         struct inode *inode = NULL;
6528         int err;
6529         u64 objectid;
6530         u64 index = 0;
6531
6532         /*
6533          * 2 for inode item and ref
6534          * 2 for dir items
6535          * 1 for xattr if selinux is on
6536          */
6537         trans = btrfs_start_transaction(root, 5);
6538         if (IS_ERR(trans))
6539                 return PTR_ERR(trans);
6540
6541         err = btrfs_get_free_objectid(root, &objectid);
6542         if (err)
6543                 goto out_unlock;
6544
6545         inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
6546                         dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6547                         mode, &index);
6548         if (IS_ERR(inode)) {
6549                 err = PTR_ERR(inode);
6550                 inode = NULL;
6551                 goto out_unlock;
6552         }
6553
6554         /*
6555         * If the active LSM wants to access the inode during
6556         * d_instantiate it needs these. Smack checks to see
6557         * if the filesystem supports xattrs by looking at the
6558         * ops vector.
6559         */
6560         inode->i_op = &btrfs_special_inode_operations;
6561         init_special_inode(inode, inode->i_mode, rdev);
6562
6563         err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6564         if (err)
6565                 goto out_unlock;
6566
6567         err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6568                         0, index);
6569         if (err)
6570                 goto out_unlock;
6571
6572         btrfs_update_inode(trans, root, BTRFS_I(inode));
6573         d_instantiate_new(dentry, inode);
6574
6575 out_unlock:
6576         btrfs_end_transaction(trans);
6577         btrfs_btree_balance_dirty(fs_info);
6578         if (err && inode) {
6579                 inode_dec_link_count(inode);
6580                 discard_new_inode(inode);
6581         }
6582         return err;
6583 }
6584
6585 static int btrfs_create(struct user_namespace *mnt_userns, struct inode *dir,
6586                         struct dentry *dentry, umode_t mode, bool excl)
6587 {
6588         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
6589         struct btrfs_trans_handle *trans;
6590         struct btrfs_root *root = BTRFS_I(dir)->root;
6591         struct inode *inode = NULL;
6592         int err;
6593         u64 objectid;
6594         u64 index = 0;
6595
6596         /*
6597          * 2 for inode item and ref
6598          * 2 for dir items
6599          * 1 for xattr if selinux is on
6600          */
6601         trans = btrfs_start_transaction(root, 5);
6602         if (IS_ERR(trans))
6603                 return PTR_ERR(trans);
6604
6605         err = btrfs_get_free_objectid(root, &objectid);
6606         if (err)
6607                 goto out_unlock;
6608
6609         inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
6610                         dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6611                         mode, &index);
6612         if (IS_ERR(inode)) {
6613                 err = PTR_ERR(inode);
6614                 inode = NULL;
6615                 goto out_unlock;
6616         }
6617         /*
6618         * If the active LSM wants to access the inode during
6619         * d_instantiate it needs these. Smack checks to see
6620         * if the filesystem supports xattrs by looking at the
6621         * ops vector.
6622         */
6623         inode->i_fop = &btrfs_file_operations;
6624         inode->i_op = &btrfs_file_inode_operations;
6625         inode->i_mapping->a_ops = &btrfs_aops;
6626
6627         err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6628         if (err)
6629                 goto out_unlock;
6630
6631         err = btrfs_update_inode(trans, root, BTRFS_I(inode));
6632         if (err)
6633                 goto out_unlock;
6634
6635         err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6636                         0, index);
6637         if (err)
6638                 goto out_unlock;
6639
6640         d_instantiate_new(dentry, inode);
6641
6642 out_unlock:
6643         btrfs_end_transaction(trans);
6644         if (err && inode) {
6645                 inode_dec_link_count(inode);
6646                 discard_new_inode(inode);
6647         }
6648         btrfs_btree_balance_dirty(fs_info);
6649         return err;
6650 }
6651
6652 static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6653                       struct dentry *dentry)
6654 {
6655         struct btrfs_trans_handle *trans = NULL;
6656         struct btrfs_root *root = BTRFS_I(dir)->root;
6657         struct inode *inode = d_inode(old_dentry);
6658         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6659         u64 index;
6660         int err;
6661         int drop_inode = 0;
6662
6663         /* do not allow sys_link's with other subvols of the same device */
6664         if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
6665                 return -EXDEV;
6666
6667         if (inode->i_nlink >= BTRFS_LINK_MAX)
6668                 return -EMLINK;
6669
6670         err = btrfs_set_inode_index(BTRFS_I(dir), &index);
6671         if (err)
6672                 goto fail;
6673
6674         /*
6675          * 2 items for inode and inode ref
6676          * 2 items for dir items
6677          * 1 item for parent inode
6678          * 1 item for orphan item deletion if O_TMPFILE
6679          */
6680         trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
6681         if (IS_ERR(trans)) {
6682                 err = PTR_ERR(trans);
6683                 trans = NULL;
6684                 goto fail;
6685         }
6686
6687         /* There are several dir indexes for this inode, clear the cache. */
6688         BTRFS_I(inode)->dir_index = 0ULL;
6689         inc_nlink(inode);
6690         inode_inc_iversion(inode);
6691         inode->i_ctime = current_time(inode);
6692         ihold(inode);
6693         set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
6694
6695         err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6696                         1, index);
6697
6698         if (err) {
6699                 drop_inode = 1;
6700         } else {
6701                 struct dentry *parent = dentry->d_parent;
6702
6703                 err = btrfs_update_inode(trans, root, BTRFS_I(inode));
6704                 if (err)
6705                         goto fail;
6706                 if (inode->i_nlink == 1) {
6707                         /*
6708                          * If new hard link count is 1, it's a file created
6709                          * with open(2) O_TMPFILE flag.
6710                          */
6711                         err = btrfs_orphan_del(trans, BTRFS_I(inode));
6712                         if (err)
6713                                 goto fail;
6714                 }
6715                 d_instantiate(dentry, inode);
6716                 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
6717         }
6718
6719 fail:
6720         if (trans)
6721                 btrfs_end_transaction(trans);
6722         if (drop_inode) {
6723                 inode_dec_link_count(inode);
6724                 iput(inode);
6725         }
6726         btrfs_btree_balance_dirty(fs_info);
6727         return err;
6728 }
6729
6730 static int btrfs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
6731                        struct dentry *dentry, umode_t mode)
6732 {
6733         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
6734         struct inode *inode = NULL;
6735         struct btrfs_trans_handle *trans;
6736         struct btrfs_root *root = BTRFS_I(dir)->root;
6737         int err = 0;
6738         u64 objectid = 0;
6739         u64 index = 0;
6740
6741         /*
6742          * 2 items for inode and ref
6743          * 2 items for dir items
6744          * 1 for xattr if selinux is on
6745          */
6746         trans = btrfs_start_transaction(root, 5);
6747         if (IS_ERR(trans))
6748                 return PTR_ERR(trans);
6749
6750         err = btrfs_get_free_objectid(root, &objectid);
6751         if (err)
6752                 goto out_fail;
6753
6754         inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
6755                         dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6756                         S_IFDIR | mode, &index);
6757         if (IS_ERR(inode)) {
6758                 err = PTR_ERR(inode);
6759                 inode = NULL;
6760                 goto out_fail;
6761         }
6762
6763         /* these must be set before we unlock the inode */
6764         inode->i_op = &btrfs_dir_inode_operations;
6765         inode->i_fop = &btrfs_dir_file_operations;
6766
6767         err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6768         if (err)
6769                 goto out_fail;
6770
6771         btrfs_i_size_write(BTRFS_I(inode), 0);
6772         err = btrfs_update_inode(trans, root, BTRFS_I(inode));
6773         if (err)
6774                 goto out_fail;
6775
6776         err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6777                         dentry->d_name.name,
6778                         dentry->d_name.len, 0, index);
6779         if (err)
6780                 goto out_fail;
6781
6782         d_instantiate_new(dentry, inode);
6783
6784 out_fail:
6785         btrfs_end_transaction(trans);
6786         if (err && inode) {
6787                 inode_dec_link_count(inode);
6788                 discard_new_inode(inode);
6789         }
6790         btrfs_btree_balance_dirty(fs_info);
6791         return err;
6792 }
6793
6794 static noinline int uncompress_inline(struct btrfs_path *path,
6795                                       struct page *page,
6796                                       size_t pg_offset, u64 extent_offset,
6797                                       struct btrfs_file_extent_item *item)
6798 {
6799         int ret;
6800         struct extent_buffer *leaf = path->nodes[0];
6801         char *tmp;
6802         size_t max_size;
6803         unsigned long inline_size;
6804         unsigned long ptr;
6805         int compress_type;
6806
6807         WARN_ON(pg_offset != 0);
6808         compress_type = btrfs_file_extent_compression(leaf, item);
6809         max_size = btrfs_file_extent_ram_bytes(leaf, item);
6810         inline_size = btrfs_file_extent_inline_item_len(leaf,
6811                                         btrfs_item_nr(path->slots[0]));
6812         tmp = kmalloc(inline_size, GFP_NOFS);
6813         if (!tmp)
6814                 return -ENOMEM;
6815         ptr = btrfs_file_extent_inline_start(item);
6816
6817         read_extent_buffer(leaf, tmp, ptr, inline_size);
6818
6819         max_size = min_t(unsigned long, PAGE_SIZE, max_size);
6820         ret = btrfs_decompress(compress_type, tmp, page,
6821                                extent_offset, inline_size, max_size);
6822
6823         /*
6824          * decompression code contains a memset to fill in any space between the end
6825          * of the uncompressed data and the end of max_size in case the decompressed
6826          * data ends up shorter than ram_bytes.  That doesn't cover the hole between
6827          * the end of an inline extent and the beginning of the next block, so we
6828          * cover that region here.
6829          */
6830
6831         if (max_size + pg_offset < PAGE_SIZE) {
6832                 char *map = kmap(page);
6833                 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6834                 kunmap(page);
6835         }
6836         kfree(tmp);
6837         return ret;
6838 }
6839
6840 /**
6841  * btrfs_get_extent - Lookup the first extent overlapping a range in a file.
6842  * @inode:      file to search in
6843  * @page:       page to read extent data into if the extent is inline
6844  * @pg_offset:  offset into @page to copy to
6845  * @start:      file offset
6846  * @len:        length of range starting at @start
6847  *
6848  * This returns the first &struct extent_map which overlaps with the given
6849  * range, reading it from the B-tree and caching it if necessary. Note that
6850  * there may be more extents which overlap the given range after the returned
6851  * extent_map.
6852  *
6853  * If @page is not NULL and the extent is inline, this also reads the extent
6854  * data directly into the page and marks the extent up to date in the io_tree.
6855  *
6856  * Return: ERR_PTR on error, non-NULL extent_map on success.
6857  */
6858 struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
6859                                     struct page *page, size_t pg_offset,
6860                                     u64 start, u64 len)
6861 {
6862         struct btrfs_fs_info *fs_info = inode->root->fs_info;
6863         int ret = 0;
6864         u64 extent_start = 0;
6865         u64 extent_end = 0;
6866         u64 objectid = btrfs_ino(inode);
6867         int extent_type = -1;
6868         struct btrfs_path *path = NULL;
6869         struct btrfs_root *root = inode->root;
6870         struct btrfs_file_extent_item *item;
6871         struct extent_buffer *leaf;
6872         struct btrfs_key found_key;
6873         struct extent_map *em = NULL;
6874         struct extent_map_tree *em_tree = &inode->extent_tree;
6875         struct extent_io_tree *io_tree = &inode->io_tree;
6876
6877         read_lock(&em_tree->lock);
6878         em = lookup_extent_mapping(em_tree, start, len);
6879         read_unlock(&em_tree->lock);
6880
6881         if (em) {
6882                 if (em->start > start || em->start + em->len <= start)
6883                         free_extent_map(em);
6884                 else if (em->block_start == EXTENT_MAP_INLINE && page)
6885                         free_extent_map(em);
6886                 else
6887                         goto out;
6888         }
6889         em = alloc_extent_map();
6890         if (!em) {
6891                 ret = -ENOMEM;
6892                 goto out;
6893         }
6894         em->start = EXTENT_MAP_HOLE;
6895         em->orig_start = EXTENT_MAP_HOLE;
6896         em->len = (u64)-1;
6897         em->block_len = (u64)-1;
6898
6899         path = btrfs_alloc_path();
6900         if (!path) {
6901                 ret = -ENOMEM;
6902                 goto out;
6903         }
6904
6905         /* Chances are we'll be called again, so go ahead and do readahead */
6906         path->reada = READA_FORWARD;
6907
6908         /*
6909          * The same explanation in load_free_space_cache applies here as well,
6910          * we only read when we're loading the free space cache, and at that
6911          * point the commit_root has everything we need.
6912          */
6913         if (btrfs_is_free_space_inode(inode)) {
6914                 path->search_commit_root = 1;
6915                 path->skip_locking = 1;
6916         }
6917
6918         ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
6919         if (ret < 0) {
6920                 goto out;
6921         } else if (ret > 0) {
6922                 if (path->slots[0] == 0)
6923                         goto not_found;
6924                 path->slots[0]--;
6925                 ret = 0;
6926         }
6927
6928         leaf = path->nodes[0];
6929         item = btrfs_item_ptr(leaf, path->slots[0],
6930                               struct btrfs_file_extent_item);
6931         btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6932         if (found_key.objectid != objectid ||
6933             found_key.type != BTRFS_EXTENT_DATA_KEY) {
6934                 /*
6935                  * If we backup past the first extent we want to move forward
6936                  * and see if there is an extent in front of us, otherwise we'll
6937                  * say there is a hole for our whole search range which can
6938                  * cause problems.
6939                  */
6940                 extent_end = start;
6941                 goto next;
6942         }
6943
6944         extent_type = btrfs_file_extent_type(leaf, item);
6945         extent_start = found_key.offset;
6946         extent_end = btrfs_file_extent_end(path);
6947         if (extent_type == BTRFS_FILE_EXTENT_REG ||
6948             extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
6949                 /* Only regular file could have regular/prealloc extent */
6950                 if (!S_ISREG(inode->vfs_inode.i_mode)) {
6951                         ret = -EUCLEAN;
6952                         btrfs_crit(fs_info,
6953                 "regular/prealloc extent found for non-regular inode %llu",
6954                                    btrfs_ino(inode));
6955                         goto out;
6956                 }
6957                 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6958                                                        extent_start);
6959         } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
6960                 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6961                                                       path->slots[0],
6962                                                       extent_start);
6963         }
6964 next:
6965         if (start >= extent_end) {
6966                 path->slots[0]++;
6967                 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6968                         ret = btrfs_next_leaf(root, path);
6969                         if (ret < 0)
6970                                 goto out;
6971                         else if (ret > 0)
6972                                 goto not_found;
6973
6974                         leaf = path->nodes[0];
6975                 }
6976                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6977                 if (found_key.objectid != objectid ||
6978                     found_key.type != BTRFS_EXTENT_DATA_KEY)
6979                         goto not_found;
6980                 if (start + len <= found_key.offset)
6981                         goto not_found;
6982                 if (start > found_key.offset)
6983                         goto next;
6984
6985                 /* New extent overlaps with existing one */
6986                 em->start = start;
6987                 em->orig_start = start;
6988                 em->len = found_key.offset - start;
6989                 em->block_start = EXTENT_MAP_HOLE;
6990                 goto insert;
6991         }
6992
6993         btrfs_extent_item_to_extent_map(inode, path, item, !page, em);
6994
6995         if (extent_type == BTRFS_FILE_EXTENT_REG ||
6996             extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
6997                 goto insert;
6998         } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
6999                 unsigned long ptr;
7000                 char *map;
7001                 size_t size;
7002                 size_t extent_offset;
7003                 size_t copy_size;
7004
7005                 if (!page)
7006                         goto out;
7007
7008                 size = btrfs_file_extent_ram_bytes(leaf, item);
7009                 extent_offset = page_offset(page) + pg_offset - extent_start;
7010                 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
7011                                   size - extent_offset);
7012                 em->start = extent_start + extent_offset;
7013                 em->len = ALIGN(copy_size, fs_info->sectorsize);
7014                 em->orig_block_len = em->len;
7015                 em->orig_start = em->start;
7016                 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
7017
7018                 if (!PageUptodate(page)) {
7019                         if (btrfs_file_extent_compression(leaf, item) !=
7020                             BTRFS_COMPRESS_NONE) {
7021                                 ret = uncompress_inline(path, page, pg_offset,
7022                                                         extent_offset, item);
7023                                 if (ret)
7024                                         goto out;
7025                         } else {
7026                                 map = kmap_local_page(page);
7027                                 read_extent_buffer(leaf, map + pg_offset, ptr,
7028                                                    copy_size);
7029                                 if (pg_offset + copy_size < PAGE_SIZE) {
7030                                         memset(map + pg_offset + copy_size, 0,
7031                                                PAGE_SIZE - pg_offset -
7032                                                copy_size);
7033                                 }
7034                                 kunmap_local(map);
7035                         }
7036                         flush_dcache_page(page);
7037                 }
7038                 set_extent_uptodate(io_tree, em->start,
7039                                     extent_map_end(em) - 1, NULL, GFP_NOFS);
7040                 goto insert;
7041         }
7042 not_found:
7043         em->start = start;
7044         em->orig_start = start;
7045         em->len = len;
7046         em->block_start = EXTENT_MAP_HOLE;
7047 insert:
7048         ret = 0;
7049         btrfs_release_path(path);
7050         if (em->start > start || extent_map_end(em) <= start) {
7051                 btrfs_err(fs_info,
7052                           "bad extent! em: [%llu %llu] passed [%llu %llu]",
7053                           em->start, em->len, start, len);
7054                 ret = -EIO;
7055                 goto out;
7056         }
7057
7058         write_lock(&em_tree->lock);
7059         ret = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
7060         write_unlock(&em_tree->lock);
7061 out:
7062         btrfs_free_path(path);
7063
7064         trace_btrfs_get_extent(root, inode, em);
7065
7066         if (ret) {
7067                 free_extent_map(em);
7068                 return ERR_PTR(ret);
7069         }
7070         return em;
7071 }
7072
7073 struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
7074                                            u64 start, u64 len)
7075 {
7076         struct extent_map *em;
7077         struct extent_map *hole_em = NULL;
7078         u64 delalloc_start = start;
7079         u64 end;
7080         u64 delalloc_len;
7081         u64 delalloc_end;
7082         int err = 0;
7083
7084         em = btrfs_get_extent(inode, NULL, 0, start, len);
7085         if (IS_ERR(em))
7086                 return em;
7087         /*
7088          * If our em maps to:
7089          * - a hole or
7090          * - a pre-alloc extent,
7091          * there might actually be delalloc bytes behind it.
7092          */
7093         if (em->block_start != EXTENT_MAP_HOLE &&
7094             !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7095                 return em;
7096         else
7097                 hole_em = em;
7098
7099         /* check to see if we've wrapped (len == -1 or similar) */
7100         end = start + len;
7101         if (end < start)
7102                 end = (u64)-1;
7103         else
7104                 end -= 1;
7105
7106         em = NULL;
7107
7108         /* ok, we didn't find anything, lets look for delalloc */
7109         delalloc_len = count_range_bits(&inode->io_tree, &delalloc_start,
7110                                  end, len, EXTENT_DELALLOC, 1);
7111         delalloc_end = delalloc_start + delalloc_len;
7112         if (delalloc_end < delalloc_start)
7113                 delalloc_end = (u64)-1;
7114
7115         /*
7116          * We didn't find anything useful, return the original results from
7117          * get_extent()
7118          */
7119         if (delalloc_start > end || delalloc_end <= start) {
7120                 em = hole_em;
7121                 hole_em = NULL;
7122                 goto out;
7123         }
7124
7125         /*
7126          * Adjust the delalloc_start to make sure it doesn't go backwards from
7127          * the start they passed in
7128          */
7129         delalloc_start = max(start, delalloc_start);
7130         delalloc_len = delalloc_end - delalloc_start;
7131
7132         if (delalloc_len > 0) {
7133                 u64 hole_start;
7134                 u64 hole_len;
7135                 const u64 hole_end = extent_map_end(hole_em);
7136
7137                 em = alloc_extent_map();
7138                 if (!em) {
7139                         err = -ENOMEM;
7140                         goto out;
7141                 }
7142
7143                 ASSERT(hole_em);
7144                 /*
7145                  * When btrfs_get_extent can't find anything it returns one
7146                  * huge hole
7147                  *
7148                  * Make sure what it found really fits our range, and adjust to
7149                  * make sure it is based on the start from the caller
7150                  */
7151                 if (hole_end <= start || hole_em->start > end) {
7152                        free_extent_map(hole_em);
7153                        hole_em = NULL;
7154                 } else {
7155                        hole_start = max(hole_em->start, start);
7156                        hole_len = hole_end - hole_start;
7157                 }
7158
7159                 if (hole_em && delalloc_start > hole_start) {
7160                         /*
7161                          * Our hole starts before our delalloc, so we have to
7162                          * return just the parts of the hole that go until the
7163                          * delalloc starts
7164                          */
7165                         em->len = min(hole_len, delalloc_start - hole_start);
7166                         em->start = hole_start;
7167                         em->orig_start = hole_start;
7168                         /*
7169                          * Don't adjust block start at all, it is fixed at
7170                          * EXTENT_MAP_HOLE
7171                          */
7172                         em->block_start = hole_em->block_start;
7173                         em->block_len = hole_len;
7174                         if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7175                                 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7176                 } else {
7177                         /*
7178                          * Hole is out of passed range or it starts after
7179                          * delalloc range
7180                          */
7181                         em->start = delalloc_start;
7182                         em->len = delalloc_len;
7183                         em->orig_start = delalloc_start;
7184                         em->block_start = EXTENT_MAP_DELALLOC;
7185                         em->block_len = delalloc_len;
7186                 }
7187         } else {
7188                 return hole_em;
7189         }
7190 out:
7191
7192         free_extent_map(hole_em);
7193         if (err) {
7194                 free_extent_map(em);
7195                 return ERR_PTR(err);
7196         }
7197         return em;
7198 }
7199
7200 static struct extent_map *btrfs_create_dio_extent(struct btrfs_inode *inode,
7201                                                   const u64 start,
7202                                                   const u64 len,
7203                                                   const u64 orig_start,
7204                                                   const u64 block_start,
7205                                                   const u64 block_len,
7206                                                   const u64 orig_block_len,
7207                                                   const u64 ram_bytes,
7208                                                   const int type)
7209 {
7210         struct extent_map *em = NULL;
7211         int ret;
7212
7213         if (type != BTRFS_ORDERED_NOCOW) {
7214                 em = create_io_em(inode, start, len, orig_start, block_start,
7215                                   block_len, orig_block_len, ram_bytes,
7216                                   BTRFS_COMPRESS_NONE, /* compress_type */
7217                                   type);
7218                 if (IS_ERR(em))
7219                         goto out;
7220         }
7221         ret = btrfs_add_ordered_extent_dio(inode, start, block_start, len,
7222                                            block_len, type);
7223         if (ret) {
7224                 if (em) {
7225                         free_extent_map(em);
7226                         btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
7227                 }
7228                 em = ERR_PTR(ret);
7229         }
7230  out:
7231
7232         return em;
7233 }
7234
7235 static struct extent_map *btrfs_new_extent_direct(struct btrfs_inode *inode,
7236                                                   u64 start, u64 len)
7237 {
7238         struct btrfs_root *root = inode->root;
7239         struct btrfs_fs_info *fs_info = root->fs_info;
7240         struct extent_map *em;
7241         struct btrfs_key ins;
7242         u64 alloc_hint;
7243         int ret;
7244
7245         alloc_hint = get_extent_allocation_hint(inode, start, len);
7246         ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
7247                                    0, alloc_hint, &ins, 1, 1);
7248         if (ret)
7249                 return ERR_PTR(ret);
7250
7251         em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7252                                      ins.objectid, ins.offset, ins.offset,
7253                                      ins.offset, BTRFS_ORDERED_REGULAR);
7254         btrfs_dec_block_group_reservations(fs_info, ins.objectid);
7255         if (IS_ERR(em))
7256                 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset,
7257                                            1);
7258
7259         return em;
7260 }
7261
7262 static bool btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
7263 {
7264         struct btrfs_block_group *block_group;
7265         bool readonly = false;
7266
7267         block_group = btrfs_lookup_block_group(fs_info, bytenr);
7268         if (!block_group || block_group->ro)
7269                 readonly = true;
7270         if (block_group)
7271                 btrfs_put_block_group(block_group);
7272         return readonly;
7273 }
7274
7275 /*
7276  * Check if we can do nocow write into the range [@offset, @offset + @len)
7277  *
7278  * @offset:     File offset
7279  * @len:        The length to write, will be updated to the nocow writeable
7280  *              range
7281  * @orig_start: (optional) Return the original file offset of the file extent
7282  * @orig_len:   (optional) Return the original on-disk length of the file extent
7283  * @ram_bytes:  (optional) Return the ram_bytes of the file extent
7284  * @strict:     if true, omit optimizations that might force us into unnecessary
7285  *              cow. e.g., don't trust generation number.
7286  *
7287  * Return:
7288  * >0   and update @len if we can do nocow write
7289  *  0   if we can't do nocow write
7290  * <0   if error happened
7291  *
7292  * NOTE: This only checks the file extents, caller is responsible to wait for
7293  *       any ordered extents.
7294  */
7295 noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
7296                               u64 *orig_start, u64 *orig_block_len,
7297                               u64 *ram_bytes, bool strict)
7298 {
7299         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7300         struct btrfs_path *path;
7301         int ret;
7302         struct extent_buffer *leaf;
7303         struct btrfs_root *root = BTRFS_I(inode)->root;
7304         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7305         struct btrfs_file_extent_item *fi;
7306         struct btrfs_key key;
7307         u64 disk_bytenr;
7308         u64 backref_offset;
7309         u64 extent_end;
7310         u64 num_bytes;
7311         int slot;
7312         int found_type;
7313         bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
7314
7315         path = btrfs_alloc_path();
7316         if (!path)
7317                 return -ENOMEM;
7318
7319         ret = btrfs_lookup_file_extent(NULL, root, path,
7320                         btrfs_ino(BTRFS_I(inode)), offset, 0);
7321         if (ret < 0)
7322                 goto out;
7323
7324         slot = path->slots[0];
7325         if (ret == 1) {
7326                 if (slot == 0) {
7327                         /* can't find the item, must cow */
7328                         ret = 0;
7329                         goto out;
7330                 }
7331                 slot--;
7332         }
7333         ret = 0;
7334         leaf = path->nodes[0];
7335         btrfs_item_key_to_cpu(leaf, &key, slot);
7336         if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
7337             key.type != BTRFS_EXTENT_DATA_KEY) {
7338                 /* not our file or wrong item type, must cow */
7339                 goto out;
7340         }
7341
7342         if (key.offset > offset) {
7343                 /* Wrong offset, must cow */
7344                 goto out;
7345         }
7346
7347         fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7348         found_type = btrfs_file_extent_type(leaf, fi);
7349         if (found_type != BTRFS_FILE_EXTENT_REG &&
7350             found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7351                 /* not a regular extent, must cow */
7352                 goto out;
7353         }
7354
7355         if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7356                 goto out;
7357
7358         extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7359         if (extent_end <= offset)
7360                 goto out;
7361
7362         disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7363         if (disk_bytenr == 0)
7364                 goto out;
7365
7366         if (btrfs_file_extent_compression(leaf, fi) ||
7367             btrfs_file_extent_encryption(leaf, fi) ||
7368             btrfs_file_extent_other_encoding(leaf, fi))
7369                 goto out;
7370
7371         /*
7372          * Do the same check as in btrfs_cross_ref_exist but without the
7373          * unnecessary search.
7374          */
7375         if (!strict &&
7376             (btrfs_file_extent_generation(leaf, fi) <=
7377              btrfs_root_last_snapshot(&root->root_item)))
7378                 goto out;
7379
7380         backref_offset = btrfs_file_extent_offset(leaf, fi);
7381
7382         if (orig_start) {
7383                 *orig_start = key.offset - backref_offset;
7384                 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7385                 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7386         }
7387
7388         if (btrfs_extent_readonly(fs_info, disk_bytenr))
7389                 goto out;
7390
7391         num_bytes = min(offset + *len, extent_end) - offset;
7392         if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7393                 u64 range_end;
7394
7395                 range_end = round_up(offset + num_bytes,
7396                                      root->fs_info->sectorsize) - 1;
7397                 ret = test_range_bit(io_tree, offset, range_end,
7398                                      EXTENT_DELALLOC, 0, NULL);
7399                 if (ret) {
7400                         ret = -EAGAIN;
7401                         goto out;
7402                 }
7403         }
7404
7405         btrfs_release_path(path);
7406
7407         /*
7408          * look for other files referencing this extent, if we
7409          * find any we must cow
7410          */
7411
7412         ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
7413                                     key.offset - backref_offset, disk_bytenr,
7414                                     strict);
7415         if (ret) {
7416                 ret = 0;
7417                 goto out;
7418         }
7419
7420         /*
7421          * adjust disk_bytenr and num_bytes to cover just the bytes
7422          * in this extent we are about to write.  If there
7423          * are any csums in that range we have to cow in order
7424          * to keep the csums correct
7425          */
7426         disk_bytenr += backref_offset;
7427         disk_bytenr += offset - key.offset;
7428         if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7429                 goto out;
7430         /*
7431          * all of the above have passed, it is safe to overwrite this extent
7432          * without cow
7433          */
7434         *len = num_bytes;
7435         ret = 1;
7436 out:
7437         btrfs_free_path(path);
7438         return ret;
7439 }
7440
7441 static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7442                               struct extent_state **cached_state, bool writing)
7443 {
7444         struct btrfs_ordered_extent *ordered;
7445         int ret = 0;
7446
7447         while (1) {
7448                 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7449                                  cached_state);
7450                 /*
7451                  * We're concerned with the entire range that we're going to be
7452                  * doing DIO to, so we need to make sure there's no ordered
7453                  * extents in this range.
7454                  */
7455                 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
7456                                                      lockend - lockstart + 1);
7457
7458                 /*
7459                  * We need to make sure there are no buffered pages in this
7460                  * range either, we could have raced between the invalidate in
7461                  * generic_file_direct_write and locking the extent.  The
7462                  * invalidate needs to happen so that reads after a write do not
7463                  * get stale data.
7464                  */
7465                 if (!ordered &&
7466                     (!writing || !filemap_range_has_page(inode->i_mapping,
7467                                                          lockstart, lockend)))
7468                         break;
7469
7470                 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7471                                      cached_state);
7472
7473                 if (ordered) {
7474                         /*
7475                          * If we are doing a DIO read and the ordered extent we
7476                          * found is for a buffered write, we can not wait for it
7477                          * to complete and retry, because if we do so we can
7478                          * deadlock with concurrent buffered writes on page
7479                          * locks. This happens only if our DIO read covers more
7480                          * than one extent map, if at this point has already
7481                          * created an ordered extent for a previous extent map
7482                          * and locked its range in the inode's io tree, and a
7483                          * concurrent write against that previous extent map's
7484                          * range and this range started (we unlock the ranges
7485                          * in the io tree only when the bios complete and
7486                          * buffered writes always lock pages before attempting
7487                          * to lock range in the io tree).
7488                          */
7489                         if (writing ||
7490                             test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7491                                 btrfs_start_ordered_extent(ordered, 1);
7492                         else
7493                                 ret = -ENOTBLK;
7494                         btrfs_put_ordered_extent(ordered);
7495                 } else {
7496                         /*
7497                          * We could trigger writeback for this range (and wait
7498                          * for it to complete) and then invalidate the pages for
7499                          * this range (through invalidate_inode_pages2_range()),
7500                          * but that can lead us to a deadlock with a concurrent
7501                          * call to readahead (a buffered read or a defrag call
7502                          * triggered a readahead) on a page lock due to an
7503                          * ordered dio extent we created before but did not have
7504                          * yet a corresponding bio submitted (whence it can not
7505                          * complete), which makes readahead wait for that
7506                          * ordered extent to complete while holding a lock on
7507                          * that page.
7508                          */
7509                         ret = -ENOTBLK;
7510                 }
7511
7512                 if (ret)
7513                         break;
7514
7515                 cond_resched();
7516         }
7517
7518         return ret;
7519 }
7520
7521 /* The callers of this must take lock_extent() */
7522 static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
7523                                        u64 len, u64 orig_start, u64 block_start,
7524                                        u64 block_len, u64 orig_block_len,
7525                                        u64 ram_bytes, int compress_type,
7526                                        int type)
7527 {
7528         struct extent_map_tree *em_tree;
7529         struct extent_map *em;
7530         int ret;
7531
7532         ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7533                type == BTRFS_ORDERED_COMPRESSED ||
7534                type == BTRFS_ORDERED_NOCOW ||
7535                type == BTRFS_ORDERED_REGULAR);
7536
7537         em_tree = &inode->extent_tree;
7538         em = alloc_extent_map();
7539         if (!em)
7540                 return ERR_PTR(-ENOMEM);
7541
7542         em->start = start;
7543         em->orig_start = orig_start;
7544         em->len = len;
7545         em->block_len = block_len;
7546         em->block_start = block_start;
7547         em->orig_block_len = orig_block_len;
7548         em->ram_bytes = ram_bytes;
7549         em->generation = -1;
7550         set_bit(EXTENT_FLAG_PINNED, &em->flags);
7551         if (type == BTRFS_ORDERED_PREALLOC) {
7552                 set_bit(EXTENT_FLAG_FILLING, &em->flags);
7553         } else if (type == BTRFS_ORDERED_COMPRESSED) {
7554                 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7555                 em->compress_type = compress_type;
7556         }
7557
7558         do {
7559                 btrfs_drop_extent_cache(inode, em->start,
7560                                         em->start + em->len - 1, 0);
7561                 write_lock(&em_tree->lock);
7562                 ret = add_extent_mapping(em_tree, em, 1);
7563                 write_unlock(&em_tree->lock);
7564                 /*
7565                  * The caller has taken lock_extent(), who could race with us
7566                  * to add em?
7567                  */
7568         } while (ret == -EEXIST);
7569
7570         if (ret) {
7571                 free_extent_map(em);
7572                 return ERR_PTR(ret);
7573         }
7574
7575         /* em got 2 refs now, callers needs to do free_extent_map once. */
7576         return em;
7577 }
7578
7579
7580 static int btrfs_get_blocks_direct_write(struct extent_map **map,
7581                                          struct inode *inode,
7582                                          struct btrfs_dio_data *dio_data,
7583                                          u64 start, u64 len)
7584 {
7585         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7586         struct extent_map *em = *map;
7587         int ret = 0;
7588
7589         /*
7590          * We don't allocate a new extent in the following cases
7591          *
7592          * 1) The inode is marked as NODATACOW. In this case we'll just use the
7593          * existing extent.
7594          * 2) The extent is marked as PREALLOC. We're good to go here and can
7595          * just use the extent.
7596          *
7597          */
7598         if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7599             ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7600              em->block_start != EXTENT_MAP_HOLE)) {
7601                 int type;
7602                 u64 block_start, orig_start, orig_block_len, ram_bytes;
7603
7604                 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7605                         type = BTRFS_ORDERED_PREALLOC;
7606                 else
7607                         type = BTRFS_ORDERED_NOCOW;
7608                 len = min(len, em->len - (start - em->start));
7609                 block_start = em->block_start + (start - em->start);
7610
7611                 if (can_nocow_extent(inode, start, &len, &orig_start,
7612                                      &orig_block_len, &ram_bytes, false) == 1 &&
7613                     btrfs_inc_nocow_writers(fs_info, block_start)) {
7614                         struct extent_map *em2;
7615
7616                         em2 = btrfs_create_dio_extent(BTRFS_I(inode), start, len,
7617                                                       orig_start, block_start,
7618                                                       len, orig_block_len,
7619                                                       ram_bytes, type);
7620                         btrfs_dec_nocow_writers(fs_info, block_start);
7621                         if (type == BTRFS_ORDERED_PREALLOC) {
7622                                 free_extent_map(em);
7623                                 *map = em = em2;
7624                         }
7625
7626                         if (em2 && IS_ERR(em2)) {
7627                                 ret = PTR_ERR(em2);
7628                                 goto out;
7629                         }
7630                         /*
7631                          * For inode marked NODATACOW or extent marked PREALLOC,
7632                          * use the existing or preallocated extent, so does not
7633                          * need to adjust btrfs_space_info's bytes_may_use.
7634                          */
7635                         btrfs_free_reserved_data_space_noquota(fs_info, len);
7636                         goto skip_cow;
7637                 }
7638         }
7639
7640         /* this will cow the extent */
7641         free_extent_map(em);
7642         *map = em = btrfs_new_extent_direct(BTRFS_I(inode), start, len);
7643         if (IS_ERR(em)) {
7644                 ret = PTR_ERR(em);
7645                 goto out;
7646         }
7647
7648         len = min(len, em->len - (start - em->start));
7649
7650 skip_cow:
7651         /*
7652          * Need to update the i_size under the extent lock so buffered
7653          * readers will get the updated i_size when we unlock.
7654          */
7655         if (start + len > i_size_read(inode))
7656                 i_size_write(inode, start + len);
7657
7658         dio_data->reserve -= len;
7659 out:
7660         return ret;
7661 }
7662
7663 static int btrfs_dio_iomap_begin(struct inode *inode, loff_t start,
7664                 loff_t length, unsigned int flags, struct iomap *iomap,
7665                 struct iomap *srcmap)
7666 {
7667         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7668         struct extent_map *em;
7669         struct extent_state *cached_state = NULL;
7670         struct btrfs_dio_data *dio_data = NULL;
7671         u64 lockstart, lockend;
7672         const bool write = !!(flags & IOMAP_WRITE);
7673         int ret = 0;
7674         u64 len = length;
7675         bool unlock_extents = false;
7676
7677         if (!write)
7678                 len = min_t(u64, len, fs_info->sectorsize);
7679
7680         lockstart = start;
7681         lockend = start + len - 1;
7682
7683         /*
7684          * The generic stuff only does filemap_write_and_wait_range, which
7685          * isn't enough if we've written compressed pages to this area, so we
7686          * need to flush the dirty pages again to make absolutely sure that any
7687          * outstanding dirty pages are on disk.
7688          */
7689         if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
7690                      &BTRFS_I(inode)->runtime_flags)) {
7691                 ret = filemap_fdatawrite_range(inode->i_mapping, start,
7692                                                start + length - 1);
7693                 if (ret)
7694                         return ret;
7695         }
7696
7697         dio_data = kzalloc(sizeof(*dio_data), GFP_NOFS);
7698         if (!dio_data)
7699                 return -ENOMEM;
7700
7701         dio_data->length = length;
7702         if (write) {
7703                 dio_data->reserve = round_up(length, fs_info->sectorsize);
7704                 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode),
7705                                 &dio_data->data_reserved,
7706                                 start, dio_data->reserve);
7707                 if (ret) {
7708                         extent_changeset_free(dio_data->data_reserved);
7709                         kfree(dio_data);
7710                         return ret;
7711                 }
7712         }
7713         iomap->private = dio_data;
7714
7715
7716         /*
7717          * If this errors out it's because we couldn't invalidate pagecache for
7718          * this range and we need to fallback to buffered.
7719          */
7720         if (lock_extent_direct(inode, lockstart, lockend, &cached_state, write)) {
7721                 ret = -ENOTBLK;
7722                 goto err;
7723         }
7724
7725         em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
7726         if (IS_ERR(em)) {
7727                 ret = PTR_ERR(em);
7728                 goto unlock_err;
7729         }
7730
7731         /*
7732          * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7733          * io.  INLINE is special, and we could probably kludge it in here, but
7734          * it's still buffered so for safety lets just fall back to the generic
7735          * buffered path.
7736          *
7737          * For COMPRESSED we _have_ to read the entire extent in so we can
7738          * decompress it, so there will be buffering required no matter what we
7739          * do, so go ahead and fallback to buffered.
7740          *
7741          * We return -ENOTBLK because that's what makes DIO go ahead and go back
7742          * to buffered IO.  Don't blame me, this is the price we pay for using
7743          * the generic code.
7744          */
7745         if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7746             em->block_start == EXTENT_MAP_INLINE) {
7747                 free_extent_map(em);
7748                 ret = -ENOTBLK;
7749                 goto unlock_err;
7750         }
7751
7752         len = min(len, em->len - (start - em->start));
7753         if (write) {
7754                 ret = btrfs_get_blocks_direct_write(&em, inode, dio_data,
7755                                                     start, len);
7756                 if (ret < 0)
7757                         goto unlock_err;
7758                 unlock_extents = true;
7759                 /* Recalc len in case the new em is smaller than requested */
7760                 len = min(len, em->len - (start - em->start));
7761         } else {
7762                 /*
7763                  * We need to unlock only the end area that we aren't using.
7764                  * The rest is going to be unlocked by the endio routine.
7765                  */
7766                 lockstart = start + len;
7767                 if (lockstart < lockend)
7768                         unlock_extents = true;
7769         }
7770
7771         if (unlock_extents)
7772                 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
7773                                      lockstart, lockend, &cached_state);
7774         else
7775                 free_extent_state(cached_state);
7776
7777         /*
7778          * Translate extent map information to iomap.
7779          * We trim the extents (and move the addr) even though iomap code does
7780          * that, since we have locked only the parts we are performing I/O in.
7781          */
7782         if ((em->block_start == EXTENT_MAP_HOLE) ||
7783             (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) && !write)) {
7784                 iomap->addr = IOMAP_NULL_ADDR;
7785                 iomap->type = IOMAP_HOLE;
7786         } else {
7787                 iomap->addr = em->block_start + (start - em->start);
7788                 iomap->type = IOMAP_MAPPED;
7789         }
7790         iomap->offset = start;
7791         iomap->bdev = fs_info->fs_devices->latest_bdev;
7792         iomap->length = len;
7793
7794         if (write && btrfs_use_zone_append(BTRFS_I(inode), em))
7795                 iomap->flags |= IOMAP_F_ZONE_APPEND;
7796
7797         free_extent_map(em);
7798
7799         return 0;
7800
7801 unlock_err:
7802         unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7803                              &cached_state);
7804 err:
7805         if (dio_data) {
7806                 btrfs_delalloc_release_space(BTRFS_I(inode),
7807                                 dio_data->data_reserved, start,
7808                                 dio_data->reserve, true);
7809                 btrfs_delalloc_release_extents(BTRFS_I(inode), dio_data->reserve);
7810                 extent_changeset_free(dio_data->data_reserved);
7811                 kfree(dio_data);
7812         }
7813         return ret;
7814 }
7815
7816 static int btrfs_dio_iomap_end(struct inode *inode, loff_t pos, loff_t length,
7817                 ssize_t written, unsigned int flags, struct iomap *iomap)
7818 {
7819         int ret = 0;
7820         struct btrfs_dio_data *dio_data = iomap->private;
7821         size_t submitted = dio_data->submitted;
7822         const bool write = !!(flags & IOMAP_WRITE);
7823
7824         if (!write && (iomap->type == IOMAP_HOLE)) {
7825                 /* If reading from a hole, unlock and return */
7826                 unlock_extent(&BTRFS_I(inode)->io_tree, pos, pos + length - 1);
7827                 goto out;
7828         }
7829
7830         if (submitted < length) {
7831                 pos += submitted;
7832                 length -= submitted;
7833                 if (write)
7834                         __endio_write_update_ordered(BTRFS_I(inode), pos,
7835                                         length, false);
7836                 else
7837                         unlock_extent(&BTRFS_I(inode)->io_tree, pos,
7838                                       pos + length - 1);
7839                 ret = -ENOTBLK;
7840         }
7841
7842         if (write) {
7843                 if (dio_data->reserve)
7844                         btrfs_delalloc_release_space(BTRFS_I(inode),
7845                                         dio_data->data_reserved, pos,
7846                                         dio_data->reserve, true);
7847                 btrfs_delalloc_release_extents(BTRFS_I(inode), dio_data->length);
7848                 extent_changeset_free(dio_data->data_reserved);
7849         }
7850 out:
7851         kfree(dio_data);
7852         iomap->private = NULL;
7853
7854         return ret;
7855 }
7856
7857 static void btrfs_dio_private_put(struct btrfs_dio_private *dip)
7858 {
7859         /*
7860          * This implies a barrier so that stores to dio_bio->bi_status before
7861          * this and loads of dio_bio->bi_status after this are fully ordered.
7862          */
7863         if (!refcount_dec_and_test(&dip->refs))
7864                 return;
7865
7866         if (btrfs_op(dip->dio_bio) == BTRFS_MAP_WRITE) {
7867                 __endio_write_update_ordered(BTRFS_I(dip->inode),
7868                                              dip->logical_offset,
7869                                              dip->bytes,
7870                                              !dip->dio_bio->bi_status);
7871         } else {
7872                 unlock_extent(&BTRFS_I(dip->inode)->io_tree,
7873                               dip->logical_offset,
7874                               dip->logical_offset + dip->bytes - 1);
7875         }
7876
7877         bio_endio(dip->dio_bio);
7878         kfree(dip);
7879 }
7880
7881 static blk_status_t submit_dio_repair_bio(struct inode *inode, struct bio *bio,
7882                                           int mirror_num,
7883                                           unsigned long bio_flags)
7884 {
7885         struct btrfs_dio_private *dip = bio->bi_private;
7886         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7887         blk_status_t ret;
7888
7889         BUG_ON(bio_op(bio) == REQ_OP_WRITE);
7890
7891         ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
7892         if (ret)
7893                 return ret;
7894
7895         refcount_inc(&dip->refs);
7896         ret = btrfs_map_bio(fs_info, bio, mirror_num);
7897         if (ret)
7898                 refcount_dec(&dip->refs);
7899         return ret;
7900 }
7901
7902 static blk_status_t btrfs_check_read_dio_bio(struct inode *inode,
7903                                              struct btrfs_io_bio *io_bio,
7904                                              const bool uptodate)
7905 {
7906         struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
7907         const u32 sectorsize = fs_info->sectorsize;
7908         struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
7909         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7910         const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
7911         struct bio_vec bvec;
7912         struct bvec_iter iter;
7913         u64 start = io_bio->logical;
7914         u32 bio_offset = 0;
7915         blk_status_t err = BLK_STS_OK;
7916
7917         __bio_for_each_segment(bvec, &io_bio->bio, iter, io_bio->iter) {
7918                 unsigned int i, nr_sectors, pgoff;
7919
7920                 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7921                 pgoff = bvec.bv_offset;
7922                 for (i = 0; i < nr_sectors; i++) {
7923                         ASSERT(pgoff < PAGE_SIZE);
7924                         if (uptodate &&
7925                             (!csum || !check_data_csum(inode, io_bio,
7926                                                        bio_offset, bvec.bv_page,
7927                                                        pgoff, start))) {
7928                                 clean_io_failure(fs_info, failure_tree, io_tree,
7929                                                  start, bvec.bv_page,
7930                                                  btrfs_ino(BTRFS_I(inode)),
7931                                                  pgoff);
7932                         } else {
7933                                 blk_status_t status;
7934
7935                                 ASSERT((start - io_bio->logical) < UINT_MAX);
7936                                 status = btrfs_submit_read_repair(inode,
7937                                                         &io_bio->bio,
7938                                                         start - io_bio->logical,
7939                                                         bvec.bv_page, pgoff,
7940                                                         start,
7941                                                         start + sectorsize - 1,
7942                                                         io_bio->mirror_num,
7943                                                         submit_dio_repair_bio);
7944                                 if (status)
7945                                         err = status;
7946                         }
7947                         start += sectorsize;
7948                         ASSERT(bio_offset + sectorsize > bio_offset);
7949                         bio_offset += sectorsize;
7950                         pgoff += sectorsize;
7951                 }
7952         }
7953         return err;
7954 }
7955
7956 static void __endio_write_update_ordered(struct btrfs_inode *inode,
7957                                          const u64 offset, const u64 bytes,
7958                                          const bool uptodate)
7959 {
7960         struct btrfs_fs_info *fs_info = inode->root->fs_info;
7961         struct btrfs_ordered_extent *ordered = NULL;
7962         struct btrfs_workqueue *wq;
7963         u64 ordered_offset = offset;
7964         u64 ordered_bytes = bytes;
7965         u64 last_offset;
7966
7967         if (btrfs_is_free_space_inode(inode))
7968                 wq = fs_info->endio_freespace_worker;
7969         else
7970                 wq = fs_info->endio_write_workers;
7971
7972         while (ordered_offset < offset + bytes) {
7973                 last_offset = ordered_offset;
7974                 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
7975                                                          &ordered_offset,
7976                                                          ordered_bytes,
7977                                                          uptodate)) {
7978                         btrfs_init_work(&ordered->work, finish_ordered_fn, NULL,
7979                                         NULL);
7980                         btrfs_queue_work(wq, &ordered->work);
7981                 }
7982
7983                 /* No ordered extent found in the range, exit */
7984                 if (ordered_offset == last_offset)
7985                         return;
7986                 /*
7987                  * Our bio might span multiple ordered extents. In this case
7988                  * we keep going until we have accounted the whole dio.
7989                  */
7990                 if (ordered_offset < offset + bytes) {
7991                         ordered_bytes = offset + bytes - ordered_offset;
7992                         ordered = NULL;
7993                 }
7994         }
7995 }
7996
7997 static blk_status_t btrfs_submit_bio_start_direct_io(struct inode *inode,
7998                                                      struct bio *bio,
7999                                                      u64 dio_file_offset)
8000 {
8001         return btrfs_csum_one_bio(BTRFS_I(inode), bio, dio_file_offset, 1);
8002 }
8003
8004 static void btrfs_end_dio_bio(struct bio *bio)
8005 {
8006         struct btrfs_dio_private *dip = bio->bi_private;
8007         blk_status_t err = bio->bi_status;
8008
8009         if (err)
8010                 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
8011                            "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
8012                            btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8013                            bio->bi_opf, bio->bi_iter.bi_sector,
8014                            bio->bi_iter.bi_size, err);
8015
8016         if (bio_op(bio) == REQ_OP_READ) {
8017                 err = btrfs_check_read_dio_bio(dip->inode, btrfs_io_bio(bio),
8018                                                !err);
8019         }
8020
8021         if (err)
8022                 dip->dio_bio->bi_status = err;
8023
8024         btrfs_record_physical_zoned(dip->inode, dip->logical_offset, bio);
8025
8026         bio_put(bio);
8027         btrfs_dio_private_put(dip);
8028 }
8029
8030 static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8031                 struct inode *inode, u64 file_offset, int async_submit)
8032 {
8033         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8034         struct btrfs_dio_private *dip = bio->bi_private;
8035         bool write = btrfs_op(bio) == BTRFS_MAP_WRITE;
8036         blk_status_t ret;
8037
8038         /* Check btrfs_submit_bio_hook() for rules about async submit. */
8039         if (async_submit)
8040                 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8041
8042         if (!write) {
8043                 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
8044                 if (ret)
8045                         goto err;
8046         }
8047
8048         if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
8049                 goto map;
8050
8051         if (write && async_submit) {
8052                 ret = btrfs_wq_submit_bio(inode, bio, 0, 0, file_offset,
8053                                           btrfs_submit_bio_start_direct_io);
8054                 goto err;
8055         } else if (write) {
8056                 /*
8057                  * If we aren't doing async submit, calculate the csum of the
8058                  * bio now.
8059                  */
8060                 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, file_offset, 1);
8061                 if (ret)
8062                         goto err;
8063         } else {
8064                 u64 csum_offset;
8065
8066                 csum_offset = file_offset - dip->logical_offset;
8067                 csum_offset >>= fs_info->sectorsize_bits;
8068                 csum_offset *= fs_info->csum_size;
8069                 btrfs_io_bio(bio)->csum = dip->csums + csum_offset;
8070         }
8071 map:
8072         ret = btrfs_map_bio(fs_info, bio, 0);
8073 err:
8074         return ret;
8075 }
8076
8077 /*
8078  * If this succeeds, the btrfs_dio_private is responsible for cleaning up locked
8079  * or ordered extents whether or not we submit any bios.
8080  */
8081 static struct btrfs_dio_private *btrfs_create_dio_private(struct bio *dio_bio,
8082                                                           struct inode *inode,
8083                                                           loff_t file_offset)
8084 {
8085         const bool write = (btrfs_op(dio_bio) == BTRFS_MAP_WRITE);
8086         const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
8087         size_t dip_size;
8088         struct btrfs_dio_private *dip;
8089
8090         dip_size = sizeof(*dip);
8091         if (!write && csum) {
8092                 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8093                 size_t nblocks;
8094
8095                 nblocks = dio_bio->bi_iter.bi_size >> fs_info->sectorsize_bits;
8096                 dip_size += fs_info->csum_size * nblocks;
8097         }
8098
8099         dip = kzalloc(dip_size, GFP_NOFS);
8100         if (!dip)
8101                 return NULL;
8102
8103         dip->inode = inode;
8104         dip->logical_offset = file_offset;
8105         dip->bytes = dio_bio->bi_iter.bi_size;
8106         dip->disk_bytenr = dio_bio->bi_iter.bi_sector << 9;
8107         dip->dio_bio = dio_bio;
8108         refcount_set(&dip->refs, 1);
8109         return dip;
8110 }
8111
8112 static blk_qc_t btrfs_submit_direct(struct inode *inode, struct iomap *iomap,
8113                 struct bio *dio_bio, loff_t file_offset)
8114 {
8115         const bool write = (btrfs_op(dio_bio) == BTRFS_MAP_WRITE);
8116         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8117         const bool raid56 = (btrfs_data_alloc_profile(fs_info) &
8118                              BTRFS_BLOCK_GROUP_RAID56_MASK);
8119         struct btrfs_dio_private *dip;
8120         struct bio *bio;
8121         u64 start_sector;
8122         int async_submit = 0;
8123         u64 submit_len;
8124         int clone_offset = 0;
8125         int clone_len;
8126         u64 logical;
8127         int ret;
8128         blk_status_t status;
8129         struct btrfs_io_geometry geom;
8130         struct btrfs_dio_data *dio_data = iomap->private;
8131         struct extent_map *em = NULL;
8132
8133         dip = btrfs_create_dio_private(dio_bio, inode, file_offset);
8134         if (!dip) {
8135                 if (!write) {
8136                         unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8137                                 file_offset + dio_bio->bi_iter.bi_size - 1);
8138                 }
8139                 dio_bio->bi_status = BLK_STS_RESOURCE;
8140                 bio_endio(dio_bio);
8141                 return BLK_QC_T_NONE;
8142         }
8143
8144         if (!write) {
8145                 /*
8146                  * Load the csums up front to reduce csum tree searches and
8147                  * contention when submitting bios.
8148                  *
8149                  * If we have csums disabled this will do nothing.
8150                  */
8151                 status = btrfs_lookup_bio_sums(inode, dio_bio, dip->csums);
8152                 if (status != BLK_STS_OK)
8153                         goto out_err;
8154         }
8155
8156         start_sector = dio_bio->bi_iter.bi_sector;
8157         submit_len = dio_bio->bi_iter.bi_size;
8158
8159         do {
8160                 logical = start_sector << 9;
8161                 em = btrfs_get_chunk_map(fs_info, logical, submit_len);
8162                 if (IS_ERR(em)) {
8163                         status = errno_to_blk_status(PTR_ERR(em));
8164                         em = NULL;
8165                         goto out_err_em;
8166                 }
8167                 ret = btrfs_get_io_geometry(fs_info, em, btrfs_op(dio_bio),
8168                                             logical, submit_len, &geom);
8169                 if (ret) {
8170                         status = errno_to_blk_status(ret);
8171                         goto out_err_em;
8172                 }
8173                 ASSERT(geom.len <= INT_MAX);
8174
8175                 clone_len = min_t(int, submit_len, geom.len);
8176
8177                 /*
8178                  * This will never fail as it's passing GPF_NOFS and
8179                  * the allocation is backed by btrfs_bioset.
8180                  */
8181                 bio = btrfs_bio_clone_partial(dio_bio, clone_offset, clone_len);
8182                 bio->bi_private = dip;
8183                 bio->bi_end_io = btrfs_end_dio_bio;
8184                 btrfs_io_bio(bio)->logical = file_offset;
8185
8186                 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
8187                         status = extract_ordered_extent(BTRFS_I(inode), bio,
8188                                                         file_offset);
8189                         if (status) {
8190                                 bio_put(bio);
8191                                 goto out_err;
8192                         }
8193                 }
8194
8195                 ASSERT(submit_len >= clone_len);
8196                 submit_len -= clone_len;
8197
8198                 /*
8199                  * Increase the count before we submit the bio so we know
8200                  * the end IO handler won't happen before we increase the
8201                  * count. Otherwise, the dip might get freed before we're
8202                  * done setting it up.
8203                  *
8204                  * We transfer the initial reference to the last bio, so we
8205                  * don't need to increment the reference count for the last one.
8206                  */
8207                 if (submit_len > 0) {
8208                         refcount_inc(&dip->refs);
8209                         /*
8210                          * If we are submitting more than one bio, submit them
8211                          * all asynchronously. The exception is RAID 5 or 6, as
8212                          * asynchronous checksums make it difficult to collect
8213                          * full stripe writes.
8214                          */
8215                         if (!raid56)
8216                                 async_submit = 1;
8217                 }
8218
8219                 status = btrfs_submit_dio_bio(bio, inode, file_offset,
8220                                                 async_submit);
8221                 if (status) {
8222                         bio_put(bio);
8223                         if (submit_len > 0)
8224                                 refcount_dec(&dip->refs);
8225                         goto out_err_em;
8226                 }
8227
8228                 dio_data->submitted += clone_len;
8229                 clone_offset += clone_len;
8230                 start_sector += clone_len >> 9;
8231                 file_offset += clone_len;
8232
8233                 free_extent_map(em);
8234         } while (submit_len > 0);
8235         return BLK_QC_T_NONE;
8236
8237 out_err_em:
8238         free_extent_map(em);
8239 out_err:
8240         dip->dio_bio->bi_status = status;
8241         btrfs_dio_private_put(dip);
8242
8243         return BLK_QC_T_NONE;
8244 }
8245
8246 const struct iomap_ops btrfs_dio_iomap_ops = {
8247         .iomap_begin            = btrfs_dio_iomap_begin,
8248         .iomap_end              = btrfs_dio_iomap_end,
8249 };
8250
8251 const struct iomap_dio_ops btrfs_dio_ops = {
8252         .submit_io              = btrfs_submit_direct,
8253 };
8254
8255 static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8256                         u64 start, u64 len)
8257 {
8258         int     ret;
8259
8260         ret = fiemap_prep(inode, fieinfo, start, &len, 0);
8261         if (ret)
8262                 return ret;
8263
8264         return extent_fiemap(BTRFS_I(inode), fieinfo, start, len);
8265 }
8266
8267 int btrfs_readpage(struct file *file, struct page *page)
8268 {
8269         struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
8270         u64 start = page_offset(page);
8271         u64 end = start + PAGE_SIZE - 1;
8272         unsigned long bio_flags = 0;
8273         struct bio *bio = NULL;
8274         int ret;
8275
8276         btrfs_lock_and_flush_ordered_range(inode, start, end, NULL);
8277
8278         ret = btrfs_do_readpage(page, NULL, &bio, &bio_flags, 0, NULL);
8279         if (bio)
8280                 ret = submit_one_bio(bio, 0, bio_flags);
8281         return ret;
8282 }
8283
8284 static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8285 {
8286         struct inode *inode = page->mapping->host;
8287         int ret;
8288
8289         if (current->flags & PF_MEMALLOC) {
8290                 redirty_page_for_writepage(wbc, page);
8291                 unlock_page(page);
8292                 return 0;
8293         }
8294
8295         /*
8296          * If we are under memory pressure we will call this directly from the
8297          * VM, we need to make sure we have the inode referenced for the ordered
8298          * extent.  If not just return like we didn't do anything.
8299          */
8300         if (!igrab(inode)) {
8301                 redirty_page_for_writepage(wbc, page);
8302                 return AOP_WRITEPAGE_ACTIVATE;
8303         }
8304         ret = extent_write_full_page(page, wbc);
8305         btrfs_add_delayed_iput(inode);
8306         return ret;
8307 }
8308
8309 static int btrfs_writepages(struct address_space *mapping,
8310                             struct writeback_control *wbc)
8311 {
8312         return extent_writepages(mapping, wbc);
8313 }
8314
8315 static void btrfs_readahead(struct readahead_control *rac)
8316 {
8317         extent_readahead(rac);
8318 }
8319
8320 static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8321 {
8322         int ret = try_release_extent_mapping(page, gfp_flags);
8323         if (ret == 1)
8324                 clear_page_extent_mapped(page);
8325         return ret;
8326 }
8327
8328 static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8329 {
8330         if (PageWriteback(page) || PageDirty(page))
8331                 return 0;
8332         return __btrfs_releasepage(page, gfp_flags);
8333 }
8334
8335 #ifdef CONFIG_MIGRATION
8336 static int btrfs_migratepage(struct address_space *mapping,
8337                              struct page *newpage, struct page *page,
8338                              enum migrate_mode mode)
8339 {
8340         int ret;
8341
8342         ret = migrate_page_move_mapping(mapping, newpage, page, 0);
8343         if (ret != MIGRATEPAGE_SUCCESS)
8344                 return ret;
8345
8346         if (page_has_private(page))
8347                 attach_page_private(newpage, detach_page_private(page));
8348
8349         if (PagePrivate2(page)) {
8350                 ClearPagePrivate2(page);
8351                 SetPagePrivate2(newpage);
8352         }
8353
8354         if (mode != MIGRATE_SYNC_NO_COPY)
8355                 migrate_page_copy(newpage, page);
8356         else
8357                 migrate_page_states(newpage, page);
8358         return MIGRATEPAGE_SUCCESS;
8359 }
8360 #endif
8361
8362 static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8363                                  unsigned int length)
8364 {
8365         struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
8366         struct extent_io_tree *tree = &inode->io_tree;
8367         struct btrfs_ordered_extent *ordered;
8368         struct extent_state *cached_state = NULL;
8369         u64 page_start = page_offset(page);
8370         u64 page_end = page_start + PAGE_SIZE - 1;
8371         u64 start;
8372         u64 end;
8373         int inode_evicting = inode->vfs_inode.i_state & I_FREEING;
8374         bool found_ordered = false;
8375         bool completed_ordered = false;
8376
8377         /*
8378          * we have the page locked, so new writeback can't start,
8379          * and the dirty bit won't be cleared while we are here.
8380          *
8381          * Wait for IO on this page so that we can safely clear
8382          * the PagePrivate2 bit and do ordered accounting
8383          */
8384         wait_on_page_writeback(page);
8385
8386         if (offset) {
8387                 btrfs_releasepage(page, GFP_NOFS);
8388                 return;
8389         }
8390
8391         if (!inode_evicting)
8392                 lock_extent_bits(tree, page_start, page_end, &cached_state);
8393
8394         start = page_start;
8395 again:
8396         ordered = btrfs_lookup_ordered_range(inode, start, page_end - start + 1);
8397         if (ordered) {
8398                 found_ordered = true;
8399                 end = min(page_end,
8400                           ordered->file_offset + ordered->num_bytes - 1);
8401                 /*
8402                  * IO on this page will never be started, so we need to account
8403                  * for any ordered extents now. Don't clear EXTENT_DELALLOC_NEW
8404                  * here, must leave that up for the ordered extent completion.
8405                  */
8406                 if (!inode_evicting)
8407                         clear_extent_bit(tree, start, end,
8408                                          EXTENT_DELALLOC |
8409                                          EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8410                                          EXTENT_DEFRAG, 1, 0, &cached_state);
8411                 /*
8412                  * whoever cleared the private bit is responsible
8413                  * for the finish_ordered_io
8414                  */
8415                 if (TestClearPagePrivate2(page)) {
8416                         struct btrfs_ordered_inode_tree *tree;
8417
8418                         tree = &inode->ordered_tree;
8419
8420                         spin_lock_irq(&tree->lock);
8421                         set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
8422                         ordered->truncated_len = min(ordered->truncated_len,
8423                                                      start - ordered->file_offset);
8424                         spin_unlock_irq(&tree->lock);
8425
8426                         if (btrfs_dec_test_ordered_pending(inode, &ordered,
8427                                                            start,
8428                                                            end - start + 1, 1)) {
8429                                 btrfs_finish_ordered_io(ordered);
8430                                 completed_ordered = true;
8431                         }
8432                 }
8433                 btrfs_put_ordered_extent(ordered);
8434                 if (!inode_evicting) {
8435                         cached_state = NULL;
8436                         lock_extent_bits(tree, start, end,
8437                                          &cached_state);
8438                 }
8439
8440                 start = end + 1;
8441                 if (start < page_end)
8442                         goto again;
8443         }
8444
8445         /*
8446          * Qgroup reserved space handler
8447          * Page here will be either
8448          * 1) Already written to disk or ordered extent already submitted
8449          *    Then its QGROUP_RESERVED bit in io_tree is already cleaned.
8450          *    Qgroup will be handled by its qgroup_record then.
8451          *    btrfs_qgroup_free_data() call will do nothing here.
8452          *
8453          * 2) Not written to disk yet
8454          *    Then btrfs_qgroup_free_data() call will clear the QGROUP_RESERVED
8455          *    bit of its io_tree, and free the qgroup reserved data space.
8456          *    Since the IO will never happen for this page.
8457          */
8458         btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
8459         if (!inode_evicting) {
8460                 bool delete = true;
8461
8462                 /*
8463                  * If there's an ordered extent for this range and we have not
8464                  * finished it ourselves, we must leave EXTENT_DELALLOC_NEW set
8465                  * in the range for the ordered extent completion. We must also
8466                  * not delete the range, otherwise we would lose that bit (and
8467                  * any other bits set in the range). Make sure EXTENT_UPTODATE
8468                  * is cleared if we don't delete, otherwise it can lead to
8469                  * corruptions if the i_size is extented later.
8470                  */
8471                 if (found_ordered && !completed_ordered)
8472                         delete = false;
8473                 clear_extent_bit(tree, page_start, page_end, EXTENT_LOCKED |
8474                                  EXTENT_DELALLOC | EXTENT_UPTODATE |
8475                                  EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1,
8476                                  delete, &cached_state);
8477
8478                 __btrfs_releasepage(page, GFP_NOFS);
8479         }
8480
8481         ClearPageChecked(page);
8482         clear_page_extent_mapped(page);
8483 }
8484
8485 /*
8486  * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8487  * called from a page fault handler when a page is first dirtied. Hence we must
8488  * be careful to check for EOF conditions here. We set the page up correctly
8489  * for a written page which means we get ENOSPC checking when writing into
8490  * holes and correct delalloc and unwritten extent mapping on filesystems that
8491  * support these features.
8492  *
8493  * We are not allowed to take the i_mutex here so we have to play games to
8494  * protect against truncate races as the page could now be beyond EOF.  Because
8495  * truncate_setsize() writes the inode size before removing pages, once we have
8496  * the page lock we can determine safely if the page is beyond EOF. If it is not
8497  * beyond EOF, then the page is guaranteed safe against truncation until we
8498  * unlock the page.
8499  */
8500 vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
8501 {
8502         struct page *page = vmf->page;
8503         struct inode *inode = file_inode(vmf->vma->vm_file);
8504         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8505         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8506         struct btrfs_ordered_extent *ordered;
8507         struct extent_state *cached_state = NULL;
8508         struct extent_changeset *data_reserved = NULL;
8509         char *kaddr;
8510         unsigned long zero_start;
8511         loff_t size;
8512         vm_fault_t ret;
8513         int ret2;
8514         int reserved = 0;
8515         u64 reserved_space;
8516         u64 page_start;
8517         u64 page_end;
8518         u64 end;
8519
8520         reserved_space = PAGE_SIZE;
8521
8522         sb_start_pagefault(inode->i_sb);
8523         page_start = page_offset(page);
8524         page_end = page_start + PAGE_SIZE - 1;
8525         end = page_end;
8526
8527         /*
8528          * Reserving delalloc space after obtaining the page lock can lead to
8529          * deadlock. For example, if a dirty page is locked by this function
8530          * and the call to btrfs_delalloc_reserve_space() ends up triggering
8531          * dirty page write out, then the btrfs_writepage() function could
8532          * end up waiting indefinitely to get a lock on the page currently
8533          * being processed by btrfs_page_mkwrite() function.
8534          */
8535         ret2 = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
8536                                             page_start, reserved_space);
8537         if (!ret2) {
8538                 ret2 = file_update_time(vmf->vma->vm_file);
8539                 reserved = 1;
8540         }
8541         if (ret2) {
8542                 ret = vmf_error(ret2);
8543                 if (reserved)
8544                         goto out;
8545                 goto out_noreserve;
8546         }
8547
8548         ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
8549 again:
8550         down_read(&BTRFS_I(inode)->i_mmap_lock);
8551         lock_page(page);
8552         size = i_size_read(inode);
8553
8554         if ((page->mapping != inode->i_mapping) ||
8555             (page_start >= size)) {
8556                 /* page got truncated out from underneath us */
8557                 goto out_unlock;
8558         }
8559         wait_on_page_writeback(page);
8560
8561         lock_extent_bits(io_tree, page_start, page_end, &cached_state);
8562         ret2 = set_page_extent_mapped(page);
8563         if (ret2 < 0) {
8564                 ret = vmf_error(ret2);
8565                 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
8566                 goto out_unlock;
8567         }
8568
8569         /*
8570          * we can't set the delalloc bits if there are pending ordered
8571          * extents.  Drop our locks and wait for them to finish
8572          */
8573         ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8574                         PAGE_SIZE);
8575         if (ordered) {
8576                 unlock_extent_cached(io_tree, page_start, page_end,
8577                                      &cached_state);
8578                 unlock_page(page);
8579                 up_read(&BTRFS_I(inode)->i_mmap_lock);
8580                 btrfs_start_ordered_extent(ordered, 1);
8581                 btrfs_put_ordered_extent(ordered);
8582                 goto again;
8583         }
8584
8585         if (page->index == ((size - 1) >> PAGE_SHIFT)) {
8586                 reserved_space = round_up(size - page_start,
8587                                           fs_info->sectorsize);
8588                 if (reserved_space < PAGE_SIZE) {
8589                         end = page_start + reserved_space - 1;
8590                         btrfs_delalloc_release_space(BTRFS_I(inode),
8591                                         data_reserved, page_start,
8592                                         PAGE_SIZE - reserved_space, true);
8593                 }
8594         }
8595
8596         /*
8597          * page_mkwrite gets called when the page is firstly dirtied after it's
8598          * faulted in, but write(2) could also dirty a page and set delalloc
8599          * bits, thus in this case for space account reason, we still need to
8600          * clear any delalloc bits within this page range since we have to
8601          * reserve data&meta space before lock_page() (see above comments).
8602          */
8603         clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
8604                           EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8605                           EXTENT_DEFRAG, 0, 0, &cached_state);
8606
8607         ret2 = btrfs_set_extent_delalloc(BTRFS_I(inode), page_start, end, 0,
8608                                         &cached_state);
8609         if (ret2) {
8610                 unlock_extent_cached(io_tree, page_start, page_end,
8611                                      &cached_state);
8612                 ret = VM_FAULT_SIGBUS;
8613                 goto out_unlock;
8614         }
8615
8616         /* page is wholly or partially inside EOF */
8617         if (page_start + PAGE_SIZE > size)
8618                 zero_start = offset_in_page(size);
8619         else
8620                 zero_start = PAGE_SIZE;
8621
8622         if (zero_start != PAGE_SIZE) {
8623                 kaddr = kmap(page);
8624                 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
8625                 flush_dcache_page(page);
8626                 kunmap(page);
8627         }
8628         ClearPageChecked(page);
8629         set_page_dirty(page);
8630         SetPageUptodate(page);
8631
8632         btrfs_set_inode_last_sub_trans(BTRFS_I(inode));
8633
8634         unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
8635         up_read(&BTRFS_I(inode)->i_mmap_lock);
8636
8637         btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
8638         sb_end_pagefault(inode->i_sb);
8639         extent_changeset_free(data_reserved);
8640         return VM_FAULT_LOCKED;
8641
8642 out_unlock:
8643         unlock_page(page);
8644         up_read(&BTRFS_I(inode)->i_mmap_lock);
8645 out:
8646         btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
8647         btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved, page_start,
8648                                      reserved_space, (ret != 0));
8649 out_noreserve:
8650         sb_end_pagefault(inode->i_sb);
8651         extent_changeset_free(data_reserved);
8652         return ret;
8653 }
8654
8655 static int btrfs_truncate(struct inode *inode, bool skip_writeback)
8656 {
8657         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8658         struct btrfs_root *root = BTRFS_I(inode)->root;
8659         struct btrfs_block_rsv *rsv;
8660         int ret;
8661         struct btrfs_trans_handle *trans;
8662         u64 mask = fs_info->sectorsize - 1;
8663         u64 min_size = btrfs_calc_metadata_size(fs_info, 1);
8664
8665         if (!skip_writeback) {
8666                 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8667                                                (u64)-1);
8668                 if (ret)
8669                         return ret;
8670         }
8671
8672         /*
8673          * Yes ladies and gentlemen, this is indeed ugly.  We have a couple of
8674          * things going on here:
8675          *
8676          * 1) We need to reserve space to update our inode.
8677          *
8678          * 2) We need to have something to cache all the space that is going to
8679          * be free'd up by the truncate operation, but also have some slack
8680          * space reserved in case it uses space during the truncate (thank you
8681          * very much snapshotting).
8682          *
8683          * And we need these to be separate.  The fact is we can use a lot of
8684          * space doing the truncate, and we have no earthly idea how much space
8685          * we will use, so we need the truncate reservation to be separate so it
8686          * doesn't end up using space reserved for updating the inode.  We also
8687          * need to be able to stop the transaction and start a new one, which
8688          * means we need to be able to update the inode several times, and we
8689          * have no idea of knowing how many times that will be, so we can't just
8690          * reserve 1 item for the entirety of the operation, so that has to be
8691          * done separately as well.
8692          *
8693          * So that leaves us with
8694          *
8695          * 1) rsv - for the truncate reservation, which we will steal from the
8696          * transaction reservation.
8697          * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
8698          * updating the inode.
8699          */
8700         rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
8701         if (!rsv)
8702                 return -ENOMEM;
8703         rsv->size = min_size;
8704         rsv->failfast = 1;
8705
8706         /*
8707          * 1 for the truncate slack space
8708          * 1 for updating the inode.
8709          */
8710         trans = btrfs_start_transaction(root, 2);
8711         if (IS_ERR(trans)) {
8712                 ret = PTR_ERR(trans);
8713                 goto out;
8714         }
8715
8716         /* Migrate the slack space for the truncate to our reserve */
8717         ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
8718                                       min_size, false);
8719         BUG_ON(ret);
8720
8721         /*
8722          * So if we truncate and then write and fsync we normally would just
8723          * write the extents that changed, which is a problem if we need to
8724          * first truncate that entire inode.  So set this flag so we write out
8725          * all of the extents in the inode to the sync log so we're completely
8726          * safe.
8727          */
8728         set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
8729         trans->block_rsv = rsv;
8730
8731         while (1) {
8732                 ret = btrfs_truncate_inode_items(trans, root, BTRFS_I(inode),
8733                                                  inode->i_size,
8734                                                  BTRFS_EXTENT_DATA_KEY);
8735                 trans->block_rsv = &fs_info->trans_block_rsv;
8736                 if (ret != -ENOSPC && ret != -EAGAIN)
8737                         break;
8738
8739                 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
8740                 if (ret)
8741                         break;
8742
8743                 btrfs_end_transaction(trans);
8744                 btrfs_btree_balance_dirty(fs_info);
8745
8746                 trans = btrfs_start_transaction(root, 2);
8747                 if (IS_ERR(trans)) {
8748                         ret = PTR_ERR(trans);
8749                         trans = NULL;
8750                         break;
8751                 }
8752
8753                 btrfs_block_rsv_release(fs_info, rsv, -1, NULL);
8754                 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
8755                                               rsv, min_size, false);
8756                 BUG_ON(ret);    /* shouldn't happen */
8757                 trans->block_rsv = rsv;
8758         }
8759
8760         /*
8761          * We can't call btrfs_truncate_block inside a trans handle as we could
8762          * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
8763          * we've truncated everything except the last little bit, and can do
8764          * btrfs_truncate_block and then update the disk_i_size.
8765          */
8766         if (ret == NEED_TRUNCATE_BLOCK) {
8767                 btrfs_end_transaction(trans);
8768                 btrfs_btree_balance_dirty(fs_info);
8769
8770                 ret = btrfs_truncate_block(BTRFS_I(inode), inode->i_size, 0, 0);
8771                 if (ret)
8772                         goto out;
8773                 trans = btrfs_start_transaction(root, 1);
8774                 if (IS_ERR(trans)) {
8775                         ret = PTR_ERR(trans);
8776                         goto out;
8777                 }
8778                 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
8779         }
8780
8781         if (trans) {
8782                 int ret2;
8783
8784                 trans->block_rsv = &fs_info->trans_block_rsv;
8785                 ret2 = btrfs_update_inode(trans, root, BTRFS_I(inode));
8786                 if (ret2 && !ret)
8787                         ret = ret2;
8788
8789                 ret2 = btrfs_end_transaction(trans);
8790                 if (ret2 && !ret)
8791                         ret = ret2;
8792                 btrfs_btree_balance_dirty(fs_info);
8793         }
8794 out:
8795         btrfs_free_block_rsv(fs_info, rsv);
8796
8797         return ret;
8798 }
8799
8800 /*
8801  * create a new subvolume directory/inode (helper for the ioctl).
8802  */
8803 int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
8804                              struct btrfs_root *new_root,
8805                              struct btrfs_root *parent_root)
8806 {
8807         struct inode *inode;
8808         int err;
8809         u64 index = 0;
8810         u64 ino;
8811
8812         err = btrfs_get_free_objectid(new_root, &ino);
8813         if (err < 0)
8814                 return err;
8815
8816         inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, ino, ino,
8817                                 S_IFDIR | (~current_umask() & S_IRWXUGO),
8818                                 &index);
8819         if (IS_ERR(inode))
8820                 return PTR_ERR(inode);
8821         inode->i_op = &btrfs_dir_inode_operations;
8822         inode->i_fop = &btrfs_dir_file_operations;
8823
8824         set_nlink(inode, 1);
8825         btrfs_i_size_write(BTRFS_I(inode), 0);
8826         unlock_new_inode(inode);
8827
8828         err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8829         if (err)
8830                 btrfs_err(new_root->fs_info,
8831                           "error inheriting subvolume %llu properties: %d",
8832                           new_root->root_key.objectid, err);
8833
8834         err = btrfs_update_inode(trans, new_root, BTRFS_I(inode));
8835
8836         iput(inode);
8837         return err;
8838 }
8839
8840 struct inode *btrfs_alloc_inode(struct super_block *sb)
8841 {
8842         struct btrfs_fs_info *fs_info = btrfs_sb(sb);
8843         struct btrfs_inode *ei;
8844         struct inode *inode;
8845
8846         ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
8847         if (!ei)
8848                 return NULL;
8849
8850         ei->root = NULL;
8851         ei->generation = 0;
8852         ei->last_trans = 0;
8853         ei->last_sub_trans = 0;
8854         ei->logged_trans = 0;
8855         ei->delalloc_bytes = 0;
8856         ei->new_delalloc_bytes = 0;
8857         ei->defrag_bytes = 0;
8858         ei->disk_i_size = 0;
8859         ei->flags = 0;
8860         ei->csum_bytes = 0;
8861         ei->index_cnt = (u64)-1;
8862         ei->dir_index = 0;
8863         ei->last_unlink_trans = 0;
8864         ei->last_reflink_trans = 0;
8865         ei->last_log_commit = 0;
8866
8867         spin_lock_init(&ei->lock);
8868         ei->outstanding_extents = 0;
8869         if (sb->s_magic != BTRFS_TEST_MAGIC)
8870                 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
8871                                               BTRFS_BLOCK_RSV_DELALLOC);
8872         ei->runtime_flags = 0;
8873         ei->prop_compress = BTRFS_COMPRESS_NONE;
8874         ei->defrag_compress = BTRFS_COMPRESS_NONE;
8875
8876         ei->delayed_node = NULL;
8877
8878         ei->i_otime.tv_sec = 0;
8879         ei->i_otime.tv_nsec = 0;
8880
8881         inode = &ei->vfs_inode;
8882         extent_map_tree_init(&ei->extent_tree);
8883         extent_io_tree_init(fs_info, &ei->io_tree, IO_TREE_INODE_IO, inode);
8884         extent_io_tree_init(fs_info, &ei->io_failure_tree,
8885                             IO_TREE_INODE_IO_FAILURE, inode);
8886         extent_io_tree_init(fs_info, &ei->file_extent_tree,
8887                             IO_TREE_INODE_FILE_EXTENT, inode);
8888         ei->io_tree.track_uptodate = true;
8889         ei->io_failure_tree.track_uptodate = true;
8890         atomic_set(&ei->sync_writers, 0);
8891         mutex_init(&ei->log_mutex);
8892         btrfs_ordered_inode_tree_init(&ei->ordered_tree);
8893         INIT_LIST_HEAD(&ei->delalloc_inodes);
8894         INIT_LIST_HEAD(&ei->delayed_iput);
8895         RB_CLEAR_NODE(&ei->rb_node);
8896         init_rwsem(&ei->i_mmap_lock);
8897
8898         return inode;
8899 }
8900
8901 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
8902 void btrfs_test_destroy_inode(struct inode *inode)
8903 {
8904         btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
8905         kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8906 }
8907 #endif
8908
8909 void btrfs_free_inode(struct inode *inode)
8910 {
8911         kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8912 }
8913
8914 void btrfs_destroy_inode(struct inode *vfs_inode)
8915 {
8916         struct btrfs_ordered_extent *ordered;
8917         struct btrfs_inode *inode = BTRFS_I(vfs_inode);
8918         struct btrfs_root *root = inode->root;
8919
8920         WARN_ON(!hlist_empty(&vfs_inode->i_dentry));
8921         WARN_ON(vfs_inode->i_data.nrpages);
8922         WARN_ON(inode->block_rsv.reserved);
8923         WARN_ON(inode->block_rsv.size);
8924         WARN_ON(inode->outstanding_extents);
8925         WARN_ON(inode->delalloc_bytes);
8926         WARN_ON(inode->new_delalloc_bytes);
8927         WARN_ON(inode->csum_bytes);
8928         WARN_ON(inode->defrag_bytes);
8929
8930         /*
8931          * This can happen where we create an inode, but somebody else also
8932          * created the same inode and we need to destroy the one we already
8933          * created.
8934          */
8935         if (!root)
8936                 return;
8937
8938         while (1) {
8939                 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
8940                 if (!ordered)
8941                         break;
8942                 else {
8943                         btrfs_err(root->fs_info,
8944                                   "found ordered extent %llu %llu on inode cleanup",
8945                                   ordered->file_offset, ordered->num_bytes);
8946                         btrfs_remove_ordered_extent(inode, ordered);
8947                         btrfs_put_ordered_extent(ordered);
8948                         btrfs_put_ordered_extent(ordered);
8949                 }
8950         }
8951         btrfs_qgroup_check_reserved_leak(inode);
8952         inode_tree_del(inode);
8953         btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
8954         btrfs_inode_clear_file_extent_range(inode, 0, (u64)-1);
8955         btrfs_put_root(inode->root);
8956 }
8957
8958 int btrfs_drop_inode(struct inode *inode)
8959 {
8960         struct btrfs_root *root = BTRFS_I(inode)->root;
8961
8962         if (root == NULL)
8963                 return 1;
8964
8965         /* the snap/subvol tree is on deleting */
8966         if (btrfs_root_refs(&root->root_item) == 0)
8967                 return 1;
8968         else
8969                 return generic_drop_inode(inode);
8970 }
8971
8972 static void init_once(void *foo)
8973 {
8974         struct btrfs_inode *ei = (struct btrfs_inode *) foo;
8975
8976         inode_init_once(&ei->vfs_inode);
8977 }
8978
8979 void __cold btrfs_destroy_cachep(void)
8980 {
8981         /*
8982          * Make sure all delayed rcu free inodes are flushed before we
8983          * destroy cache.
8984          */
8985         rcu_barrier();
8986         kmem_cache_destroy(btrfs_inode_cachep);
8987         kmem_cache_destroy(btrfs_trans_handle_cachep);
8988         kmem_cache_destroy(btrfs_path_cachep);
8989         kmem_cache_destroy(btrfs_free_space_cachep);
8990         kmem_cache_destroy(btrfs_free_space_bitmap_cachep);
8991 }
8992
8993 int __init btrfs_init_cachep(void)
8994 {
8995         btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
8996                         sizeof(struct btrfs_inode), 0,
8997                         SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
8998                         init_once);
8999         if (!btrfs_inode_cachep)
9000                 goto fail;
9001
9002         btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
9003                         sizeof(struct btrfs_trans_handle), 0,
9004                         SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
9005         if (!btrfs_trans_handle_cachep)
9006                 goto fail;
9007
9008         btrfs_path_cachep = kmem_cache_create("btrfs_path",
9009                         sizeof(struct btrfs_path), 0,
9010                         SLAB_MEM_SPREAD, NULL);
9011         if (!btrfs_path_cachep)
9012                 goto fail;
9013
9014         btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
9015                         sizeof(struct btrfs_free_space), 0,
9016                         SLAB_MEM_SPREAD, NULL);
9017         if (!btrfs_free_space_cachep)
9018                 goto fail;
9019
9020         btrfs_free_space_bitmap_cachep = kmem_cache_create("btrfs_free_space_bitmap",
9021                                                         PAGE_SIZE, PAGE_SIZE,
9022                                                         SLAB_MEM_SPREAD, NULL);
9023         if (!btrfs_free_space_bitmap_cachep)
9024                 goto fail;
9025
9026         return 0;
9027 fail:
9028         btrfs_destroy_cachep();
9029         return -ENOMEM;
9030 }
9031
9032 static int btrfs_getattr(struct user_namespace *mnt_userns,
9033                          const struct path *path, struct kstat *stat,
9034                          u32 request_mask, unsigned int flags)
9035 {
9036         u64 delalloc_bytes;
9037         u64 inode_bytes;
9038         struct inode *inode = d_inode(path->dentry);
9039         u32 blocksize = inode->i_sb->s_blocksize;
9040         u32 bi_flags = BTRFS_I(inode)->flags;
9041
9042         stat->result_mask |= STATX_BTIME;
9043         stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9044         stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9045         if (bi_flags & BTRFS_INODE_APPEND)
9046                 stat->attributes |= STATX_ATTR_APPEND;
9047         if (bi_flags & BTRFS_INODE_COMPRESS)
9048                 stat->attributes |= STATX_ATTR_COMPRESSED;
9049         if (bi_flags & BTRFS_INODE_IMMUTABLE)
9050                 stat->attributes |= STATX_ATTR_IMMUTABLE;
9051         if (bi_flags & BTRFS_INODE_NODUMP)
9052                 stat->attributes |= STATX_ATTR_NODUMP;
9053
9054         stat->attributes_mask |= (STATX_ATTR_APPEND |
9055                                   STATX_ATTR_COMPRESSED |
9056                                   STATX_ATTR_IMMUTABLE |
9057                                   STATX_ATTR_NODUMP);
9058
9059         generic_fillattr(&init_user_ns, inode, stat);
9060         stat->dev = BTRFS_I(inode)->root->anon_dev;
9061
9062         spin_lock(&BTRFS_I(inode)->lock);
9063         delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
9064         inode_bytes = inode_get_bytes(inode);
9065         spin_unlock(&BTRFS_I(inode)->lock);
9066         stat->blocks = (ALIGN(inode_bytes, blocksize) +
9067                         ALIGN(delalloc_bytes, blocksize)) >> 9;
9068         return 0;
9069 }
9070
9071 static int btrfs_rename_exchange(struct inode *old_dir,
9072                               struct dentry *old_dentry,
9073                               struct inode *new_dir,
9074                               struct dentry *new_dentry)
9075 {
9076         struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
9077         struct btrfs_trans_handle *trans;
9078         struct btrfs_root *root = BTRFS_I(old_dir)->root;
9079         struct btrfs_root *dest = BTRFS_I(new_dir)->root;
9080         struct inode *new_inode = new_dentry->d_inode;
9081         struct inode *old_inode = old_dentry->d_inode;
9082         struct timespec64 ctime = current_time(old_inode);
9083         u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9084         u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
9085         u64 old_idx = 0;
9086         u64 new_idx = 0;
9087         int ret;
9088         int ret2;
9089         bool root_log_pinned = false;
9090         bool dest_log_pinned = false;
9091
9092         /* we only allow rename subvolume link between subvolumes */
9093         if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9094                 return -EXDEV;
9095
9096         /* close the race window with snapshot create/destroy ioctl */
9097         if (old_ino == BTRFS_FIRST_FREE_OBJECTID ||
9098             new_ino == BTRFS_FIRST_FREE_OBJECTID)
9099                 down_read(&fs_info->subvol_sem);
9100
9101         /*
9102          * We want to reserve the absolute worst case amount of items.  So if
9103          * both inodes are subvols and we need to unlink them then that would
9104          * require 4 item modifications, but if they are both normal inodes it
9105          * would require 5 item modifications, so we'll assume their normal
9106          * inodes.  So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9107          * should cover the worst case number of items we'll modify.
9108          */
9109         trans = btrfs_start_transaction(root, 12);
9110         if (IS_ERR(trans)) {
9111                 ret = PTR_ERR(trans);
9112                 goto out_notrans;
9113         }
9114
9115         if (dest != root)
9116                 btrfs_record_root_in_trans(trans, dest);
9117
9118         /*
9119          * We need to find a free sequence number both in the source and
9120          * in the destination directory for the exchange.
9121          */
9122         ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
9123         if (ret)
9124                 goto out_fail;
9125         ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
9126         if (ret)
9127                 goto out_fail;
9128
9129         BTRFS_I(old_inode)->dir_index = 0ULL;
9130         BTRFS_I(new_inode)->dir_index = 0ULL;
9131
9132         /* Reference for the source. */
9133         if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9134                 /* force full log commit if subvolume involved. */
9135                 btrfs_set_log_full_commit(trans);
9136         } else {
9137                 btrfs_pin_log_trans(root);
9138                 root_log_pinned = true;
9139                 ret = btrfs_insert_inode_ref(trans, dest,
9140                                              new_dentry->d_name.name,
9141                                              new_dentry->d_name.len,
9142                                              old_ino,
9143                                              btrfs_ino(BTRFS_I(new_dir)),
9144                                              old_idx);
9145                 if (ret)
9146                         goto out_fail;
9147         }
9148
9149         /* And now for the dest. */
9150         if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9151                 /* force full log commit if subvolume involved. */
9152                 btrfs_set_log_full_commit(trans);
9153         } else {
9154                 btrfs_pin_log_trans(dest);
9155                 dest_log_pinned = true;
9156                 ret = btrfs_insert_inode_ref(trans, root,
9157                                              old_dentry->d_name.name,
9158                                              old_dentry->d_name.len,
9159                                              new_ino,
9160                                              btrfs_ino(BTRFS_I(old_dir)),
9161                                              new_idx);
9162                 if (ret)
9163                         goto out_fail;
9164         }
9165
9166         /* Update inode version and ctime/mtime. */
9167         inode_inc_iversion(old_dir);
9168         inode_inc_iversion(new_dir);
9169         inode_inc_iversion(old_inode);
9170         inode_inc_iversion(new_inode);
9171         old_dir->i_ctime = old_dir->i_mtime = ctime;
9172         new_dir->i_ctime = new_dir->i_mtime = ctime;
9173         old_inode->i_ctime = ctime;
9174         new_inode->i_ctime = ctime;
9175
9176         if (old_dentry->d_parent != new_dentry->d_parent) {
9177                 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9178                                 BTRFS_I(old_inode), 1);
9179                 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9180                                 BTRFS_I(new_inode), 1);
9181         }
9182
9183         /* src is a subvolume */
9184         if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9185                 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
9186         } else { /* src is an inode */
9187                 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9188                                            BTRFS_I(old_dentry->d_inode),
9189                                            old_dentry->d_name.name,
9190                                            old_dentry->d_name.len);
9191                 if (!ret)
9192                         ret = btrfs_update_inode(trans, root, BTRFS_I(old_inode));
9193         }
9194         if (ret) {
9195                 btrfs_abort_transaction(trans, ret);
9196                 goto out_fail;
9197         }
9198
9199         /* dest is a subvolume */
9200         if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9201                 ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
9202         } else { /* dest is an inode */
9203                 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9204                                            BTRFS_I(new_dentry->d_inode),
9205                                            new_dentry->d_name.name,
9206                                            new_dentry->d_name.len);
9207                 if (!ret)
9208                         ret = btrfs_update_inode(trans, dest, BTRFS_I(new_inode));
9209         }
9210         if (ret) {
9211                 btrfs_abort_transaction(trans, ret);
9212                 goto out_fail;
9213         }
9214
9215         ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
9216                              new_dentry->d_name.name,
9217                              new_dentry->d_name.len, 0, old_idx);
9218         if (ret) {
9219                 btrfs_abort_transaction(trans, ret);
9220                 goto out_fail;
9221         }
9222
9223         ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
9224                              old_dentry->d_name.name,
9225                              old_dentry->d_name.len, 0, new_idx);
9226         if (ret) {
9227                 btrfs_abort_transaction(trans, ret);
9228                 goto out_fail;
9229         }
9230
9231         if (old_inode->i_nlink == 1)
9232                 BTRFS_I(old_inode)->dir_index = old_idx;
9233         if (new_inode->i_nlink == 1)
9234                 BTRFS_I(new_inode)->dir_index = new_idx;
9235
9236         if (root_log_pinned) {
9237                 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9238                                    new_dentry->d_parent);
9239                 btrfs_end_log_trans(root);
9240                 root_log_pinned = false;
9241         }
9242         if (dest_log_pinned) {
9243                 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9244                                    old_dentry->d_parent);
9245                 btrfs_end_log_trans(dest);
9246                 dest_log_pinned = false;
9247         }
9248 out_fail:
9249         /*
9250          * If we have pinned a log and an error happened, we unpin tasks
9251          * trying to sync the log and force them to fallback to a transaction
9252          * commit if the log currently contains any of the inodes involved in
9253          * this rename operation (to ensure we do not persist a log with an
9254          * inconsistent state for any of these inodes or leading to any
9255          * inconsistencies when replayed). If the transaction was aborted, the
9256          * abortion reason is propagated to userspace when attempting to commit
9257          * the transaction. If the log does not contain any of these inodes, we
9258          * allow the tasks to sync it.
9259          */
9260         if (ret && (root_log_pinned || dest_log_pinned)) {
9261                 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9262                     btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9263                     btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
9264                     (new_inode &&
9265                      btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
9266                         btrfs_set_log_full_commit(trans);
9267
9268                 if (root_log_pinned) {
9269                         btrfs_end_log_trans(root);
9270                         root_log_pinned = false;
9271                 }
9272                 if (dest_log_pinned) {
9273                         btrfs_end_log_trans(dest);
9274                         dest_log_pinned = false;
9275                 }
9276         }
9277         ret2 = btrfs_end_transaction(trans);
9278         ret = ret ? ret : ret2;
9279 out_notrans:
9280         if (new_ino == BTRFS_FIRST_FREE_OBJECTID ||
9281             old_ino == BTRFS_FIRST_FREE_OBJECTID)
9282                 up_read(&fs_info->subvol_sem);
9283
9284         return ret;
9285 }
9286
9287 static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9288                                      struct btrfs_root *root,
9289                                      struct inode *dir,
9290                                      struct dentry *dentry)
9291 {
9292         int ret;
9293         struct inode *inode;
9294         u64 objectid;
9295         u64 index;
9296
9297         ret = btrfs_get_free_objectid(root, &objectid);
9298         if (ret)
9299                 return ret;
9300
9301         inode = btrfs_new_inode(trans, root, dir,
9302                                 dentry->d_name.name,
9303                                 dentry->d_name.len,
9304                                 btrfs_ino(BTRFS_I(dir)),
9305                                 objectid,
9306                                 S_IFCHR | WHITEOUT_MODE,
9307                                 &index);
9308
9309         if (IS_ERR(inode)) {
9310                 ret = PTR_ERR(inode);
9311                 return ret;
9312         }
9313
9314         inode->i_op = &btrfs_special_inode_operations;
9315         init_special_inode(inode, inode->i_mode,
9316                 WHITEOUT_DEV);
9317
9318         ret = btrfs_init_inode_security(trans, inode, dir,
9319                                 &dentry->d_name);
9320         if (ret)
9321                 goto out;
9322
9323         ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9324                                 BTRFS_I(inode), 0, index);
9325         if (ret)
9326                 goto out;
9327
9328         ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
9329 out:
9330         unlock_new_inode(inode);
9331         if (ret)
9332                 inode_dec_link_count(inode);
9333         iput(inode);
9334
9335         return ret;
9336 }
9337
9338 static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
9339                            struct inode *new_dir, struct dentry *new_dentry,
9340                            unsigned int flags)
9341 {
9342         struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
9343         struct btrfs_trans_handle *trans;
9344         unsigned int trans_num_items;
9345         struct btrfs_root *root = BTRFS_I(old_dir)->root;
9346         struct btrfs_root *dest = BTRFS_I(new_dir)->root;
9347         struct inode *new_inode = d_inode(new_dentry);
9348         struct inode *old_inode = d_inode(old_dentry);
9349         u64 index = 0;
9350         int ret;
9351         int ret2;
9352         u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9353         bool log_pinned = false;
9354
9355         if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
9356                 return -EPERM;
9357
9358         /* we only allow rename subvolume link between subvolumes */
9359         if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9360                 return -EXDEV;
9361
9362         if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
9363             (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
9364                 return -ENOTEMPTY;
9365
9366         if (S_ISDIR(old_inode->i_mode) && new_inode &&
9367             new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
9368                 return -ENOTEMPTY;
9369
9370
9371         /* check for collisions, even if the  name isn't there */
9372         ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
9373                              new_dentry->d_name.name,
9374                              new_dentry->d_name.len);
9375
9376         if (ret) {
9377                 if (ret == -EEXIST) {
9378                         /* we shouldn't get
9379                          * eexist without a new_inode */
9380                         if (WARN_ON(!new_inode)) {
9381                                 return ret;
9382                         }
9383                 } else {
9384                         /* maybe -EOVERFLOW */
9385                         return ret;
9386                 }
9387         }
9388         ret = 0;
9389
9390         /*
9391          * we're using rename to replace one file with another.  Start IO on it
9392          * now so  we don't add too much work to the end of the transaction
9393          */
9394         if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
9395                 filemap_flush(old_inode->i_mapping);
9396
9397         /* close the racy window with snapshot create/destroy ioctl */
9398         if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
9399                 down_read(&fs_info->subvol_sem);
9400         /*
9401          * We want to reserve the absolute worst case amount of items.  So if
9402          * both inodes are subvols and we need to unlink them then that would
9403          * require 4 item modifications, but if they are both normal inodes it
9404          * would require 5 item modifications, so we'll assume they are normal
9405          * inodes.  So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9406          * should cover the worst case number of items we'll modify.
9407          * If our rename has the whiteout flag, we need more 5 units for the
9408          * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9409          * when selinux is enabled).
9410          */
9411         trans_num_items = 11;
9412         if (flags & RENAME_WHITEOUT)
9413                 trans_num_items += 5;
9414         trans = btrfs_start_transaction(root, trans_num_items);
9415         if (IS_ERR(trans)) {
9416                 ret = PTR_ERR(trans);
9417                 goto out_notrans;
9418         }
9419
9420         if (dest != root)
9421                 btrfs_record_root_in_trans(trans, dest);
9422
9423         ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
9424         if (ret)
9425                 goto out_fail;
9426
9427         BTRFS_I(old_inode)->dir_index = 0ULL;
9428         if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
9429                 /* force full log commit if subvolume involved. */
9430                 btrfs_set_log_full_commit(trans);
9431         } else {
9432                 btrfs_pin_log_trans(root);
9433                 log_pinned = true;
9434                 ret = btrfs_insert_inode_ref(trans, dest,
9435                                              new_dentry->d_name.name,
9436                                              new_dentry->d_name.len,
9437                                              old_ino,
9438                                              btrfs_ino(BTRFS_I(new_dir)), index);
9439                 if (ret)
9440                         goto out_fail;
9441         }
9442
9443         inode_inc_iversion(old_dir);
9444         inode_inc_iversion(new_dir);
9445         inode_inc_iversion(old_inode);
9446         old_dir->i_ctime = old_dir->i_mtime =
9447         new_dir->i_ctime = new_dir->i_mtime =
9448         old_inode->i_ctime = current_time(old_dir);
9449
9450         if (old_dentry->d_parent != new_dentry->d_parent)
9451                 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9452                                 BTRFS_I(old_inode), 1);
9453
9454         if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
9455                 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
9456         } else {
9457                 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9458                                         BTRFS_I(d_inode(old_dentry)),
9459                                         old_dentry->d_name.name,
9460                                         old_dentry->d_name.len);
9461                 if (!ret)
9462                         ret = btrfs_update_inode(trans, root, BTRFS_I(old_inode));
9463         }
9464         if (ret) {
9465                 btrfs_abort_transaction(trans, ret);
9466                 goto out_fail;
9467         }
9468
9469         if (new_inode) {
9470                 inode_inc_iversion(new_inode);
9471                 new_inode->i_ctime = current_time(new_inode);
9472                 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
9473                              BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9474                         ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
9475                         BUG_ON(new_inode->i_nlink == 0);
9476                 } else {
9477                         ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9478                                                  BTRFS_I(d_inode(new_dentry)),
9479                                                  new_dentry->d_name.name,
9480                                                  new_dentry->d_name.len);
9481                 }
9482                 if (!ret && new_inode->i_nlink == 0)
9483                         ret = btrfs_orphan_add(trans,
9484                                         BTRFS_I(d_inode(new_dentry)));
9485                 if (ret) {
9486                         btrfs_abort_transaction(trans, ret);
9487                         goto out_fail;
9488                 }
9489         }
9490
9491         ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
9492                              new_dentry->d_name.name,
9493                              new_dentry->d_name.len, 0, index);
9494         if (ret) {
9495                 btrfs_abort_transaction(trans, ret);
9496                 goto out_fail;
9497         }
9498
9499         if (old_inode->i_nlink == 1)
9500                 BTRFS_I(old_inode)->dir_index = index;
9501
9502         if (log_pinned) {
9503                 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9504                                    new_dentry->d_parent);
9505                 btrfs_end_log_trans(root);
9506                 log_pinned = false;
9507         }
9508
9509         if (flags & RENAME_WHITEOUT) {
9510                 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9511                                                 old_dentry);
9512
9513                 if (ret) {
9514                         btrfs_abort_transaction(trans, ret);
9515                         goto out_fail;
9516                 }
9517         }
9518 out_fail:
9519         /*
9520          * If we have pinned the log and an error happened, we unpin tasks
9521          * trying to sync the log and force them to fallback to a transaction
9522          * commit if the log currently contains any of the inodes involved in
9523          * this rename operation (to ensure we do not persist a log with an
9524          * inconsistent state for any of these inodes or leading to any
9525          * inconsistencies when replayed). If the transaction was aborted, the
9526          * abortion reason is propagated to userspace when attempting to commit
9527          * the transaction. If the log does not contain any of these inodes, we
9528          * allow the tasks to sync it.
9529          */
9530         if (ret && log_pinned) {
9531                 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9532                     btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9533                     btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
9534                     (new_inode &&
9535                      btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
9536                         btrfs_set_log_full_commit(trans);
9537
9538                 btrfs_end_log_trans(root);
9539                 log_pinned = false;
9540         }
9541         ret2 = btrfs_end_transaction(trans);
9542         ret = ret ? ret : ret2;
9543 out_notrans:
9544         if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
9545                 up_read(&fs_info->subvol_sem);
9546
9547         return ret;
9548 }
9549
9550 static int btrfs_rename2(struct user_namespace *mnt_userns, struct inode *old_dir,
9551                          struct dentry *old_dentry, struct inode *new_dir,
9552                          struct dentry *new_dentry, unsigned int flags)
9553 {
9554         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
9555                 return -EINVAL;
9556
9557         if (flags & RENAME_EXCHANGE)
9558                 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9559                                           new_dentry);
9560
9561         return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
9562 }
9563
9564 struct btrfs_delalloc_work {
9565         struct inode *inode;
9566         struct completion completion;
9567         struct list_head list;
9568         struct btrfs_work work;
9569 };
9570
9571 static void btrfs_run_delalloc_work(struct btrfs_work *work)
9572 {
9573         struct btrfs_delalloc_work *delalloc_work;
9574         struct inode *inode;
9575
9576         delalloc_work = container_of(work, struct btrfs_delalloc_work,
9577                                      work);
9578         inode = delalloc_work->inode;
9579         filemap_flush(inode->i_mapping);
9580         if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9581                                 &BTRFS_I(inode)->runtime_flags))
9582                 filemap_flush(inode->i_mapping);
9583
9584         iput(inode);
9585         complete(&delalloc_work->completion);
9586 }
9587
9588 static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
9589 {
9590         struct btrfs_delalloc_work *work;
9591
9592         work = kmalloc(sizeof(*work), GFP_NOFS);
9593         if (!work)
9594                 return NULL;
9595
9596         init_completion(&work->completion);
9597         INIT_LIST_HEAD(&work->list);
9598         work->inode = inode;
9599         btrfs_init_work(&work->work, btrfs_run_delalloc_work, NULL, NULL);
9600
9601         return work;
9602 }
9603
9604 /*
9605  * some fairly slow code that needs optimization. This walks the list
9606  * of all the inodes with pending delalloc and forces them to disk.
9607  */
9608 static int start_delalloc_inodes(struct btrfs_root *root,
9609                                  struct writeback_control *wbc, bool snapshot,
9610                                  bool in_reclaim_context)
9611 {
9612         struct btrfs_inode *binode;
9613         struct inode *inode;
9614         struct btrfs_delalloc_work *work, *next;
9615         struct list_head works;
9616         struct list_head splice;
9617         int ret = 0;
9618         bool full_flush = wbc->nr_to_write == LONG_MAX;
9619
9620         INIT_LIST_HEAD(&works);
9621         INIT_LIST_HEAD(&splice);
9622
9623         mutex_lock(&root->delalloc_mutex);
9624         spin_lock(&root->delalloc_lock);
9625         list_splice_init(&root->delalloc_inodes, &splice);
9626         while (!list_empty(&splice)) {
9627                 binode = list_entry(splice.next, struct btrfs_inode,
9628                                     delalloc_inodes);
9629
9630                 list_move_tail(&binode->delalloc_inodes,
9631                                &root->delalloc_inodes);
9632
9633                 if (in_reclaim_context &&
9634                     test_bit(BTRFS_INODE_NO_DELALLOC_FLUSH, &binode->runtime_flags))
9635                         continue;
9636
9637                 inode = igrab(&binode->vfs_inode);
9638                 if (!inode) {
9639                         cond_resched_lock(&root->delalloc_lock);
9640                         continue;
9641                 }
9642                 spin_unlock(&root->delalloc_lock);
9643
9644                 if (snapshot)
9645                         set_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
9646                                 &binode->runtime_flags);
9647                 if (full_flush) {
9648                         work = btrfs_alloc_delalloc_work(inode);
9649                         if (!work) {
9650                                 iput(inode);
9651                                 ret = -ENOMEM;
9652                                 goto out;
9653                         }
9654                         list_add_tail(&work->list, &works);
9655                         btrfs_queue_work(root->fs_info->flush_workers,
9656                                          &work->work);
9657                 } else {
9658                         ret = sync_inode(inode, wbc);
9659                         if (!ret &&
9660                             test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9661                                      &BTRFS_I(inode)->runtime_flags))
9662                                 ret = sync_inode(inode, wbc);
9663                         btrfs_add_delayed_iput(inode);
9664                         if (ret || wbc->nr_to_write <= 0)
9665                                 goto out;
9666                 }
9667                 cond_resched();
9668                 spin_lock(&root->delalloc_lock);
9669         }
9670         spin_unlock(&root->delalloc_lock);
9671
9672 out:
9673         list_for_each_entry_safe(work, next, &works, list) {
9674                 list_del_init(&work->list);
9675                 wait_for_completion(&work->completion);
9676                 kfree(work);
9677         }
9678
9679         if (!list_empty(&splice)) {
9680                 spin_lock(&root->delalloc_lock);
9681                 list_splice_tail(&splice, &root->delalloc_inodes);
9682                 spin_unlock(&root->delalloc_lock);
9683         }
9684         mutex_unlock(&root->delalloc_mutex);
9685         return ret;
9686 }
9687
9688 int btrfs_start_delalloc_snapshot(struct btrfs_root *root)
9689 {
9690         struct writeback_control wbc = {
9691                 .nr_to_write = LONG_MAX,
9692                 .sync_mode = WB_SYNC_NONE,
9693                 .range_start = 0,
9694                 .range_end = LLONG_MAX,
9695         };
9696         struct btrfs_fs_info *fs_info = root->fs_info;
9697
9698         if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
9699                 return -EROFS;
9700
9701         return start_delalloc_inodes(root, &wbc, true, false);
9702 }
9703
9704 int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, long nr,
9705                                bool in_reclaim_context)
9706 {
9707         struct writeback_control wbc = {
9708                 .nr_to_write = nr,
9709                 .sync_mode = WB_SYNC_NONE,
9710                 .range_start = 0,
9711                 .range_end = LLONG_MAX,
9712         };
9713         struct btrfs_root *root;
9714         struct list_head splice;
9715         int ret;
9716
9717         if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
9718                 return -EROFS;
9719
9720         INIT_LIST_HEAD(&splice);
9721
9722         mutex_lock(&fs_info->delalloc_root_mutex);
9723         spin_lock(&fs_info->delalloc_root_lock);
9724         list_splice_init(&fs_info->delalloc_roots, &splice);
9725         while (!list_empty(&splice)) {
9726                 /*
9727                  * Reset nr_to_write here so we know that we're doing a full
9728                  * flush.
9729                  */
9730                 if (nr == LONG_MAX)
9731                         wbc.nr_to_write = LONG_MAX;
9732
9733                 root = list_first_entry(&splice, struct btrfs_root,
9734                                         delalloc_root);
9735                 root = btrfs_grab_root(root);
9736                 BUG_ON(!root);
9737                 list_move_tail(&root->delalloc_root,
9738                                &fs_info->delalloc_roots);
9739                 spin_unlock(&fs_info->delalloc_root_lock);
9740
9741                 ret = start_delalloc_inodes(root, &wbc, false, in_reclaim_context);
9742                 btrfs_put_root(root);
9743                 if (ret < 0 || wbc.nr_to_write <= 0)
9744                         goto out;
9745                 spin_lock(&fs_info->delalloc_root_lock);
9746         }
9747         spin_unlock(&fs_info->delalloc_root_lock);
9748
9749         ret = 0;
9750 out:
9751         if (!list_empty(&splice)) {
9752                 spin_lock(&fs_info->delalloc_root_lock);
9753                 list_splice_tail(&splice, &fs_info->delalloc_roots);
9754                 spin_unlock(&fs_info->delalloc_root_lock);
9755         }
9756         mutex_unlock(&fs_info->delalloc_root_mutex);
9757         return ret;
9758 }
9759
9760 static int btrfs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
9761                          struct dentry *dentry, const char *symname)
9762 {
9763         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
9764         struct btrfs_trans_handle *trans;
9765         struct btrfs_root *root = BTRFS_I(dir)->root;
9766         struct btrfs_path *path;
9767         struct btrfs_key key;
9768         struct inode *inode = NULL;
9769         int err;
9770         u64 objectid;
9771         u64 index = 0;
9772         int name_len;
9773         int datasize;
9774         unsigned long ptr;
9775         struct btrfs_file_extent_item *ei;
9776         struct extent_buffer *leaf;
9777
9778         name_len = strlen(symname);
9779         if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
9780                 return -ENAMETOOLONG;
9781
9782         /*
9783          * 2 items for inode item and ref
9784          * 2 items for dir items
9785          * 1 item for updating parent inode item
9786          * 1 item for the inline extent item
9787          * 1 item for xattr if selinux is on
9788          */
9789         trans = btrfs_start_transaction(root, 7);
9790         if (IS_ERR(trans))
9791                 return PTR_ERR(trans);
9792
9793         err = btrfs_get_free_objectid(root, &objectid);
9794         if (err)
9795                 goto out_unlock;
9796
9797         inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9798                                 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
9799                                 objectid, S_IFLNK|S_IRWXUGO, &index);
9800         if (IS_ERR(inode)) {
9801                 err = PTR_ERR(inode);
9802                 inode = NULL;
9803                 goto out_unlock;
9804         }
9805
9806         /*
9807         * If the active LSM wants to access the inode during
9808         * d_instantiate it needs these. Smack checks to see
9809         * if the filesystem supports xattrs by looking at the
9810         * ops vector.
9811         */
9812         inode->i_fop = &btrfs_file_operations;
9813         inode->i_op = &btrfs_file_inode_operations;
9814         inode->i_mapping->a_ops = &btrfs_aops;
9815
9816         err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9817         if (err)
9818                 goto out_unlock;
9819
9820         path = btrfs_alloc_path();
9821         if (!path) {
9822                 err = -ENOMEM;
9823                 goto out_unlock;
9824         }
9825         key.objectid = btrfs_ino(BTRFS_I(inode));
9826         key.offset = 0;
9827         key.type = BTRFS_EXTENT_DATA_KEY;
9828         datasize = btrfs_file_extent_calc_inline_size(name_len);
9829         err = btrfs_insert_empty_item(trans, root, path, &key,
9830                                       datasize);
9831         if (err) {
9832                 btrfs_free_path(path);
9833                 goto out_unlock;
9834         }
9835         leaf = path->nodes[0];
9836         ei = btrfs_item_ptr(leaf, path->slots[0],
9837                             struct btrfs_file_extent_item);
9838         btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9839         btrfs_set_file_extent_type(leaf, ei,
9840                                    BTRFS_FILE_EXTENT_INLINE);
9841         btrfs_set_file_extent_encryption(leaf, ei, 0);
9842         btrfs_set_file_extent_compression(leaf, ei, 0);
9843         btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9844         btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9845
9846         ptr = btrfs_file_extent_inline_start(ei);
9847         write_extent_buffer(leaf, symname, ptr, name_len);
9848         btrfs_mark_buffer_dirty(leaf);
9849         btrfs_free_path(path);
9850
9851         inode->i_op = &btrfs_symlink_inode_operations;
9852         inode_nohighmem(inode);
9853         inode_set_bytes(inode, name_len);
9854         btrfs_i_size_write(BTRFS_I(inode), name_len);
9855         err = btrfs_update_inode(trans, root, BTRFS_I(inode));
9856         /*
9857          * Last step, add directory indexes for our symlink inode. This is the
9858          * last step to avoid extra cleanup of these indexes if an error happens
9859          * elsewhere above.
9860          */
9861         if (!err)
9862                 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9863                                 BTRFS_I(inode), 0, index);
9864         if (err)
9865                 goto out_unlock;
9866
9867         d_instantiate_new(dentry, inode);
9868
9869 out_unlock:
9870         btrfs_end_transaction(trans);
9871         if (err && inode) {
9872                 inode_dec_link_count(inode);
9873                 discard_new_inode(inode);
9874         }
9875         btrfs_btree_balance_dirty(fs_info);
9876         return err;
9877 }
9878
9879 static struct btrfs_trans_handle *insert_prealloc_file_extent(
9880                                        struct btrfs_trans_handle *trans_in,
9881                                        struct btrfs_inode *inode,
9882                                        struct btrfs_key *ins,
9883                                        u64 file_offset)
9884 {
9885         struct btrfs_file_extent_item stack_fi;
9886         struct btrfs_replace_extent_info extent_info;
9887         struct btrfs_trans_handle *trans = trans_in;
9888         struct btrfs_path *path;
9889         u64 start = ins->objectid;
9890         u64 len = ins->offset;
9891         int qgroup_released;
9892         int ret;
9893
9894         memset(&stack_fi, 0, sizeof(stack_fi));
9895
9896         btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_PREALLOC);
9897         btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, start);
9898         btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi, len);
9899         btrfs_set_stack_file_extent_num_bytes(&stack_fi, len);
9900         btrfs_set_stack_file_extent_ram_bytes(&stack_fi, len);
9901         btrfs_set_stack_file_extent_compression(&stack_fi, BTRFS_COMPRESS_NONE);
9902         /* Encryption and other encoding is reserved and all 0 */
9903
9904         qgroup_released = btrfs_qgroup_release_data(inode, file_offset, len);
9905         if (qgroup_released < 0)
9906                 return ERR_PTR(qgroup_released);
9907
9908         if (trans) {
9909                 ret = insert_reserved_file_extent(trans, inode,
9910                                                   file_offset, &stack_fi,
9911                                                   true, qgroup_released);
9912                 if (ret)
9913                         goto free_qgroup;
9914                 return trans;
9915         }
9916
9917         extent_info.disk_offset = start;
9918         extent_info.disk_len = len;
9919         extent_info.data_offset = 0;
9920         extent_info.data_len = len;
9921         extent_info.file_offset = file_offset;
9922         extent_info.extent_buf = (char *)&stack_fi;
9923         extent_info.is_new_extent = true;
9924         extent_info.qgroup_reserved = qgroup_released;
9925         extent_info.insertions = 0;
9926
9927         path = btrfs_alloc_path();
9928         if (!path) {
9929                 ret = -ENOMEM;
9930                 goto free_qgroup;
9931         }
9932
9933         ret = btrfs_replace_file_extents(inode, path, file_offset,
9934                                      file_offset + len - 1, &extent_info,
9935                                      &trans);
9936         btrfs_free_path(path);
9937         if (ret)
9938                 goto free_qgroup;
9939         return trans;
9940
9941 free_qgroup:
9942         /*
9943          * We have released qgroup data range at the beginning of the function,
9944          * and normally qgroup_released bytes will be freed when committing
9945          * transaction.
9946          * But if we error out early, we have to free what we have released
9947          * or we leak qgroup data reservation.
9948          */
9949         btrfs_qgroup_free_refroot(inode->root->fs_info,
9950                         inode->root->root_key.objectid, qgroup_released,
9951                         BTRFS_QGROUP_RSV_DATA);
9952         return ERR_PTR(ret);
9953 }
9954
9955 static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
9956                                        u64 start, u64 num_bytes, u64 min_size,
9957                                        loff_t actual_len, u64 *alloc_hint,
9958                                        struct btrfs_trans_handle *trans)
9959 {
9960         struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
9961         struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
9962         struct extent_map *em;
9963         struct btrfs_root *root = BTRFS_I(inode)->root;
9964         struct btrfs_key ins;
9965         u64 cur_offset = start;
9966         u64 clear_offset = start;
9967         u64 i_size;
9968         u64 cur_bytes;
9969         u64 last_alloc = (u64)-1;
9970         int ret = 0;
9971         bool own_trans = true;
9972         u64 end = start + num_bytes - 1;
9973
9974         if (trans)
9975                 own_trans = false;
9976         while (num_bytes > 0) {
9977                 cur_bytes = min_t(u64, num_bytes, SZ_256M);
9978                 cur_bytes = max(cur_bytes, min_size);
9979                 /*
9980                  * If we are severely fragmented we could end up with really
9981                  * small allocations, so if the allocator is returning small
9982                  * chunks lets make its job easier by only searching for those
9983                  * sized chunks.
9984                  */
9985                 cur_bytes = min(cur_bytes, last_alloc);
9986                 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
9987                                 min_size, 0, *alloc_hint, &ins, 1, 0);
9988                 if (ret)
9989                         break;
9990
9991                 /*
9992                  * We've reserved this space, and thus converted it from
9993                  * ->bytes_may_use to ->bytes_reserved.  Any error that happens
9994                  * from here on out we will only need to clear our reservation
9995                  * for the remaining unreserved area, so advance our
9996                  * clear_offset by our extent size.
9997                  */
9998                 clear_offset += ins.offset;
9999
10000                 last_alloc = ins.offset;
10001                 trans = insert_prealloc_file_extent(trans, BTRFS_I(inode),
10002                                                     &ins, cur_offset);
10003                 /*
10004                  * Now that we inserted the prealloc extent we can finally
10005                  * decrement the number of reservations in the block group.
10006                  * If we did it before, we could race with relocation and have
10007                  * relocation miss the reserved extent, making it fail later.
10008                  */
10009                 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
10010                 if (IS_ERR(trans)) {
10011                         ret = PTR_ERR(trans);
10012                         btrfs_free_reserved_extent(fs_info, ins.objectid,
10013                                                    ins.offset, 0);
10014                         break;
10015                 }
10016
10017                 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
10018                                         cur_offset + ins.offset -1, 0);
10019
10020                 em = alloc_extent_map();
10021                 if (!em) {
10022                         set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10023                                 &BTRFS_I(inode)->runtime_flags);
10024                         goto next;
10025                 }
10026
10027                 em->start = cur_offset;
10028                 em->orig_start = cur_offset;
10029                 em->len = ins.offset;
10030                 em->block_start = ins.objectid;
10031                 em->block_len = ins.offset;
10032                 em->orig_block_len = ins.offset;
10033                 em->ram_bytes = ins.offset;
10034                 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10035                 em->generation = trans->transid;
10036
10037                 while (1) {
10038                         write_lock(&em_tree->lock);
10039                         ret = add_extent_mapping(em_tree, em, 1);
10040                         write_unlock(&em_tree->lock);
10041                         if (ret != -EEXIST)
10042                                 break;
10043                         btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
10044                                                 cur_offset + ins.offset - 1,
10045                                                 0);
10046                 }
10047                 free_extent_map(em);
10048 next:
10049                 num_bytes -= ins.offset;
10050                 cur_offset += ins.offset;
10051                 *alloc_hint = ins.objectid + ins.offset;
10052
10053                 inode_inc_iversion(inode);
10054                 inode->i_ctime = current_time(inode);
10055                 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
10056                 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
10057                     (actual_len > inode->i_size) &&
10058                     (cur_offset > inode->i_size)) {
10059                         if (cur_offset > actual_len)
10060                                 i_size = actual_len;
10061                         else
10062                                 i_size = cur_offset;
10063                         i_size_write(inode, i_size);
10064                         btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
10065                 }
10066
10067                 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
10068
10069                 if (ret) {
10070                         btrfs_abort_transaction(trans, ret);
10071                         if (own_trans)
10072                                 btrfs_end_transaction(trans);
10073                         break;
10074                 }
10075
10076                 if (own_trans) {
10077                         btrfs_end_transaction(trans);
10078                         trans = NULL;
10079                 }
10080         }
10081         if (clear_offset < end)
10082                 btrfs_free_reserved_data_space(BTRFS_I(inode), NULL, clear_offset,
10083                         end - clear_offset + 1);
10084         return ret;
10085 }
10086
10087 int btrfs_prealloc_file_range(struct inode *inode, int mode,
10088                               u64 start, u64 num_bytes, u64 min_size,
10089                               loff_t actual_len, u64 *alloc_hint)
10090 {
10091         return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10092                                            min_size, actual_len, alloc_hint,
10093                                            NULL);
10094 }
10095
10096 int btrfs_prealloc_file_range_trans(struct inode *inode,
10097                                     struct btrfs_trans_handle *trans, int mode,
10098                                     u64 start, u64 num_bytes, u64 min_size,
10099                                     loff_t actual_len, u64 *alloc_hint)
10100 {
10101         return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10102                                            min_size, actual_len, alloc_hint, trans);
10103 }
10104
10105 static int btrfs_set_page_dirty(struct page *page)
10106 {
10107         return __set_page_dirty_nobuffers(page);
10108 }
10109
10110 static int btrfs_permission(struct user_namespace *mnt_userns,
10111                             struct inode *inode, int mask)
10112 {
10113         struct btrfs_root *root = BTRFS_I(inode)->root;
10114         umode_t mode = inode->i_mode;
10115
10116         if (mask & MAY_WRITE &&
10117             (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10118                 if (btrfs_root_readonly(root))
10119                         return -EROFS;
10120                 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10121                         return -EACCES;
10122         }
10123         return generic_permission(&init_user_ns, inode, mask);
10124 }
10125
10126 static int btrfs_tmpfile(struct user_namespace *mnt_userns, struct inode *dir,
10127                          struct dentry *dentry, umode_t mode)
10128 {
10129         struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
10130         struct btrfs_trans_handle *trans;
10131         struct btrfs_root *root = BTRFS_I(dir)->root;
10132         struct inode *inode = NULL;
10133         u64 objectid;
10134         u64 index;
10135         int ret = 0;
10136
10137         /*
10138          * 5 units required for adding orphan entry
10139          */
10140         trans = btrfs_start_transaction(root, 5);
10141         if (IS_ERR(trans))
10142                 return PTR_ERR(trans);
10143
10144         ret = btrfs_get_free_objectid(root, &objectid);
10145         if (ret)
10146                 goto out;
10147
10148         inode = btrfs_new_inode(trans, root, dir, NULL, 0,
10149                         btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
10150         if (IS_ERR(inode)) {
10151                 ret = PTR_ERR(inode);
10152                 inode = NULL;
10153                 goto out;
10154         }
10155
10156         inode->i_fop = &btrfs_file_operations;
10157         inode->i_op = &btrfs_file_inode_operations;
10158
10159         inode->i_mapping->a_ops = &btrfs_aops;
10160
10161         ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10162         if (ret)
10163                 goto out;
10164
10165         ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
10166         if (ret)
10167                 goto out;
10168         ret = btrfs_orphan_add(trans, BTRFS_I(inode));
10169         if (ret)
10170                 goto out;
10171
10172         /*
10173          * We set number of links to 0 in btrfs_new_inode(), and here we set
10174          * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10175          * through:
10176          *
10177          *    d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10178          */
10179         set_nlink(inode, 1);
10180         d_tmpfile(dentry, inode);
10181         unlock_new_inode(inode);
10182         mark_inode_dirty(inode);
10183 out:
10184         btrfs_end_transaction(trans);
10185         if (ret && inode)
10186                 discard_new_inode(inode);
10187         btrfs_btree_balance_dirty(fs_info);
10188         return ret;
10189 }
10190
10191 void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
10192 {
10193         struct inode *inode = tree->private_data;
10194         unsigned long index = start >> PAGE_SHIFT;
10195         unsigned long end_index = end >> PAGE_SHIFT;
10196         struct page *page;
10197
10198         while (index <= end_index) {
10199                 page = find_get_page(inode->i_mapping, index);
10200                 ASSERT(page); /* Pages should be in the extent_io_tree */
10201                 set_page_writeback(page);
10202                 put_page(page);
10203                 index++;
10204         }
10205 }
10206
10207 #ifdef CONFIG_SWAP
10208 /*
10209  * Add an entry indicating a block group or device which is pinned by a
10210  * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
10211  * negative errno on failure.
10212  */
10213 static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr,
10214                                   bool is_block_group)
10215 {
10216         struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10217         struct btrfs_swapfile_pin *sp, *entry;
10218         struct rb_node **p;
10219         struct rb_node *parent = NULL;
10220
10221         sp = kmalloc(sizeof(*sp), GFP_NOFS);
10222         if (!sp)
10223                 return -ENOMEM;
10224         sp->ptr = ptr;
10225         sp->inode = inode;
10226         sp->is_block_group = is_block_group;
10227         sp->bg_extent_count = 1;
10228
10229         spin_lock(&fs_info->swapfile_pins_lock);
10230         p = &fs_info->swapfile_pins.rb_node;
10231         while (*p) {
10232                 parent = *p;
10233                 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
10234                 if (sp->ptr < entry->ptr ||
10235                     (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
10236                         p = &(*p)->rb_left;
10237                 } else if (sp->ptr > entry->ptr ||
10238                            (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
10239                         p = &(*p)->rb_right;
10240                 } else {
10241                         if (is_block_group)
10242                                 entry->bg_extent_count++;
10243                         spin_unlock(&fs_info->swapfile_pins_lock);
10244                         kfree(sp);
10245                         return 1;
10246                 }
10247         }
10248         rb_link_node(&sp->node, parent, p);
10249         rb_insert_color(&sp->node, &fs_info->swapfile_pins);
10250         spin_unlock(&fs_info->swapfile_pins_lock);
10251         return 0;
10252 }
10253
10254 /* Free all of the entries pinned by this swapfile. */
10255 static void btrfs_free_swapfile_pins(struct inode *inode)
10256 {
10257         struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10258         struct btrfs_swapfile_pin *sp;
10259         struct rb_node *node, *next;
10260
10261         spin_lock(&fs_info->swapfile_pins_lock);
10262         node = rb_first(&fs_info->swapfile_pins);
10263         while (node) {
10264                 next = rb_next(node);
10265                 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
10266                 if (sp->inode == inode) {
10267                         rb_erase(&sp->node, &fs_info->swapfile_pins);
10268                         if (sp->is_block_group) {
10269                                 btrfs_dec_block_group_swap_extents(sp->ptr,
10270                                                            sp->bg_extent_count);
10271                                 btrfs_put_block_group(sp->ptr);
10272                         }
10273                         kfree(sp);
10274                 }
10275                 node = next;
10276         }
10277         spin_unlock(&fs_info->swapfile_pins_lock);
10278 }
10279
10280 struct btrfs_swap_info {
10281         u64 start;
10282         u64 block_start;
10283         u64 block_len;
10284         u64 lowest_ppage;
10285         u64 highest_ppage;
10286         unsigned long nr_pages;
10287         int nr_extents;
10288 };
10289
10290 static int btrfs_add_swap_extent(struct swap_info_struct *sis,
10291                                  struct btrfs_swap_info *bsi)
10292 {
10293         unsigned long nr_pages;
10294         u64 first_ppage, first_ppage_reported, next_ppage;
10295         int ret;
10296
10297         first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT;
10298         next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len,
10299                                 PAGE_SIZE) >> PAGE_SHIFT;
10300
10301         if (first_ppage >= next_ppage)
10302                 return 0;
10303         nr_pages = next_ppage - first_ppage;
10304
10305         first_ppage_reported = first_ppage;
10306         if (bsi->start == 0)
10307                 first_ppage_reported++;
10308         if (bsi->lowest_ppage > first_ppage_reported)
10309                 bsi->lowest_ppage = first_ppage_reported;
10310         if (bsi->highest_ppage < (next_ppage - 1))
10311                 bsi->highest_ppage = next_ppage - 1;
10312
10313         ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage);
10314         if (ret < 0)
10315                 return ret;
10316         bsi->nr_extents += ret;
10317         bsi->nr_pages += nr_pages;
10318         return 0;
10319 }
10320
10321 static void btrfs_swap_deactivate(struct file *file)
10322 {
10323         struct inode *inode = file_inode(file);
10324
10325         btrfs_free_swapfile_pins(inode);
10326         atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles);
10327 }
10328
10329 static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10330                                sector_t *span)
10331 {
10332         struct inode *inode = file_inode(file);
10333         struct btrfs_root *root = BTRFS_I(inode)->root;
10334         struct btrfs_fs_info *fs_info = root->fs_info;
10335         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
10336         struct extent_state *cached_state = NULL;
10337         struct extent_map *em = NULL;
10338         struct btrfs_device *device = NULL;
10339         struct btrfs_swap_info bsi = {
10340                 .lowest_ppage = (sector_t)-1ULL,
10341         };
10342         int ret = 0;
10343         u64 isize;
10344         u64 start;
10345
10346         /*
10347          * If the swap file was just created, make sure delalloc is done. If the
10348          * file changes again after this, the user is doing something stupid and
10349          * we don't really care.
10350          */
10351         ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
10352         if (ret)
10353                 return ret;
10354
10355         /*
10356          * The inode is locked, so these flags won't change after we check them.
10357          */
10358         if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) {
10359                 btrfs_warn(fs_info, "swapfile must not be compressed");
10360                 return -EINVAL;
10361         }
10362         if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) {
10363                 btrfs_warn(fs_info, "swapfile must not be copy-on-write");
10364                 return -EINVAL;
10365         }
10366         if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
10367                 btrfs_warn(fs_info, "swapfile must not be checksummed");
10368                 return -EINVAL;
10369         }
10370
10371         /*
10372          * Balance or device remove/replace/resize can move stuff around from
10373          * under us. The exclop protection makes sure they aren't running/won't
10374          * run concurrently while we are mapping the swap extents, and
10375          * fs_info->swapfile_pins prevents them from running while the swap
10376          * file is active and moving the extents. Note that this also prevents
10377          * a concurrent device add which isn't actually necessary, but it's not
10378          * really worth the trouble to allow it.
10379          */
10380         if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_SWAP_ACTIVATE)) {
10381                 btrfs_warn(fs_info,
10382            "cannot activate swapfile while exclusive operation is running");
10383                 return -EBUSY;
10384         }
10385
10386         /*
10387          * Prevent snapshot creation while we are activating the swap file.
10388          * We do not want to race with snapshot creation. If snapshot creation
10389          * already started before we bumped nr_swapfiles from 0 to 1 and
10390          * completes before the first write into the swap file after it is
10391          * activated, than that write would fallback to COW.
10392          */
10393         if (!btrfs_drew_try_write_lock(&root->snapshot_lock)) {
10394                 btrfs_exclop_finish(fs_info);
10395                 btrfs_warn(fs_info,
10396            "cannot activate swapfile because snapshot creation is in progress");
10397                 return -EINVAL;
10398         }
10399         /*
10400          * Snapshots can create extents which require COW even if NODATACOW is
10401          * set. We use this counter to prevent snapshots. We must increment it
10402          * before walking the extents because we don't want a concurrent
10403          * snapshot to run after we've already checked the extents.
10404          */
10405         atomic_inc(&root->nr_swapfiles);
10406
10407         isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize);
10408
10409         lock_extent_bits(io_tree, 0, isize - 1, &cached_state);
10410         start = 0;
10411         while (start < isize) {
10412                 u64 logical_block_start, physical_block_start;
10413                 struct btrfs_block_group *bg;
10414                 u64 len = isize - start;
10415
10416                 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
10417                 if (IS_ERR(em)) {
10418                         ret = PTR_ERR(em);
10419                         goto out;
10420                 }
10421
10422                 if (em->block_start == EXTENT_MAP_HOLE) {
10423                         btrfs_warn(fs_info, "swapfile must not have holes");
10424                         ret = -EINVAL;
10425                         goto out;
10426                 }
10427                 if (em->block_start == EXTENT_MAP_INLINE) {
10428                         /*
10429                          * It's unlikely we'll ever actually find ourselves
10430                          * here, as a file small enough to fit inline won't be
10431                          * big enough to store more than the swap header, but in
10432                          * case something changes in the future, let's catch it
10433                          * here rather than later.
10434                          */
10435                         btrfs_warn(fs_info, "swapfile must not be inline");
10436                         ret = -EINVAL;
10437                         goto out;
10438                 }
10439                 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
10440                         btrfs_warn(fs_info, "swapfile must not be compressed");
10441                         ret = -EINVAL;
10442                         goto out;
10443                 }
10444
10445                 logical_block_start = em->block_start + (start - em->start);
10446                 len = min(len, em->len - (start - em->start));
10447                 free_extent_map(em);
10448                 em = NULL;
10449
10450                 ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL, true);
10451                 if (ret < 0) {
10452                         goto out;
10453                 } else if (ret) {
10454                         ret = 0;
10455                 } else {
10456                         btrfs_warn(fs_info,
10457                                    "swapfile must not be copy-on-write");
10458                         ret = -EINVAL;
10459                         goto out;
10460                 }
10461
10462                 em = btrfs_get_chunk_map(fs_info, logical_block_start, len);
10463                 if (IS_ERR(em)) {
10464                         ret = PTR_ERR(em);
10465                         goto out;
10466                 }
10467
10468                 if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
10469                         btrfs_warn(fs_info,
10470                                    "swapfile must have single data profile");
10471                         ret = -EINVAL;
10472                         goto out;
10473                 }
10474
10475                 if (device == NULL) {
10476                         device = em->map_lookup->stripes[0].dev;
10477                         ret = btrfs_add_swapfile_pin(inode, device, false);
10478                         if (ret == 1)
10479                                 ret = 0;
10480                         else if (ret)
10481                                 goto out;
10482                 } else if (device != em->map_lookup->stripes[0].dev) {
10483                         btrfs_warn(fs_info, "swapfile must be on one device");
10484                         ret = -EINVAL;
10485                         goto out;
10486                 }
10487
10488                 physical_block_start = (em->map_lookup->stripes[0].physical +
10489                                         (logical_block_start - em->start));
10490                 len = min(len, em->len - (logical_block_start - em->start));
10491                 free_extent_map(em);
10492                 em = NULL;
10493
10494                 bg = btrfs_lookup_block_group(fs_info, logical_block_start);
10495                 if (!bg) {
10496                         btrfs_warn(fs_info,
10497                            "could not find block group containing swapfile");
10498                         ret = -EINVAL;
10499                         goto out;
10500                 }
10501
10502                 if (!btrfs_inc_block_group_swap_extents(bg)) {
10503                         btrfs_warn(fs_info,
10504                            "block group for swapfile at %llu is read-only%s",
10505                            bg->start,
10506                            atomic_read(&fs_info->scrubs_running) ?
10507                                        " (scrub running)" : "");
10508                         btrfs_put_block_group(bg);
10509                         ret = -EINVAL;
10510                         goto out;
10511                 }
10512
10513                 ret = btrfs_add_swapfile_pin(inode, bg, true);
10514                 if (ret) {
10515                         btrfs_put_block_group(bg);
10516                         if (ret == 1)
10517                                 ret = 0;
10518                         else
10519                                 goto out;
10520                 }
10521
10522                 if (bsi.block_len &&
10523                     bsi.block_start + bsi.block_len == physical_block_start) {
10524                         bsi.block_len += len;
10525                 } else {
10526                         if (bsi.block_len) {
10527                                 ret = btrfs_add_swap_extent(sis, &bsi);
10528                                 if (ret)
10529                                         goto out;
10530                         }
10531                         bsi.start = start;
10532                         bsi.block_start = physical_block_start;
10533                         bsi.block_len = len;
10534                 }
10535
10536                 start += len;
10537         }
10538
10539         if (bsi.block_len)
10540                 ret = btrfs_add_swap_extent(sis, &bsi);
10541
10542 out:
10543         if (!IS_ERR_OR_NULL(em))
10544                 free_extent_map(em);
10545
10546         unlock_extent_cached(io_tree, 0, isize - 1, &cached_state);
10547
10548         if (ret)
10549                 btrfs_swap_deactivate(file);
10550
10551         btrfs_drew_write_unlock(&root->snapshot_lock);
10552
10553         btrfs_exclop_finish(fs_info);
10554
10555         if (ret)
10556                 return ret;
10557
10558         if (device)
10559                 sis->bdev = device->bdev;
10560         *span = bsi.highest_ppage - bsi.lowest_ppage + 1;
10561         sis->max = bsi.nr_pages;
10562         sis->pages = bsi.nr_pages - 1;
10563         sis->highest_bit = bsi.nr_pages - 1;
10564         return bsi.nr_extents;
10565 }
10566 #else
10567 static void btrfs_swap_deactivate(struct file *file)
10568 {
10569 }
10570
10571 static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10572                                sector_t *span)
10573 {
10574         return -EOPNOTSUPP;
10575 }
10576 #endif
10577
10578 /*
10579  * Update the number of bytes used in the VFS' inode. When we replace extents in
10580  * a range (clone, dedupe, fallocate's zero range), we must update the number of
10581  * bytes used by the inode in an atomic manner, so that concurrent stat(2) calls
10582  * always get a correct value.
10583  */
10584 void btrfs_update_inode_bytes(struct btrfs_inode *inode,
10585                               const u64 add_bytes,
10586                               const u64 del_bytes)
10587 {
10588         if (add_bytes == del_bytes)
10589                 return;
10590
10591         spin_lock(&inode->lock);
10592         if (del_bytes > 0)
10593                 inode_sub_bytes(&inode->vfs_inode, del_bytes);
10594         if (add_bytes > 0)
10595                 inode_add_bytes(&inode->vfs_inode, add_bytes);
10596         spin_unlock(&inode->lock);
10597 }
10598
10599 static const struct inode_operations btrfs_dir_inode_operations = {
10600         .getattr        = btrfs_getattr,
10601         .lookup         = btrfs_lookup,
10602         .create         = btrfs_create,
10603         .unlink         = btrfs_unlink,
10604         .link           = btrfs_link,
10605         .mkdir          = btrfs_mkdir,
10606         .rmdir          = btrfs_rmdir,
10607         .rename         = btrfs_rename2,
10608         .symlink        = btrfs_symlink,
10609         .setattr        = btrfs_setattr,
10610         .mknod          = btrfs_mknod,
10611         .listxattr      = btrfs_listxattr,
10612         .permission     = btrfs_permission,
10613         .get_acl        = btrfs_get_acl,
10614         .set_acl        = btrfs_set_acl,
10615         .update_time    = btrfs_update_time,
10616         .tmpfile        = btrfs_tmpfile,
10617 };
10618
10619 static const struct file_operations btrfs_dir_file_operations = {
10620         .llseek         = generic_file_llseek,
10621         .read           = generic_read_dir,
10622         .iterate_shared = btrfs_real_readdir,
10623         .open           = btrfs_opendir,
10624         .unlocked_ioctl = btrfs_ioctl,
10625 #ifdef CONFIG_COMPAT
10626         .compat_ioctl   = btrfs_compat_ioctl,
10627 #endif
10628         .release        = btrfs_release_file,
10629         .fsync          = btrfs_sync_file,
10630 };
10631
10632 /*
10633  * btrfs doesn't support the bmap operation because swapfiles
10634  * use bmap to make a mapping of extents in the file.  They assume
10635  * these extents won't change over the life of the file and they
10636  * use the bmap result to do IO directly to the drive.
10637  *
10638  * the btrfs bmap call would return logical addresses that aren't
10639  * suitable for IO and they also will change frequently as COW
10640  * operations happen.  So, swapfile + btrfs == corruption.
10641  *
10642  * For now we're avoiding this by dropping bmap.
10643  */
10644 static const struct address_space_operations btrfs_aops = {
10645         .readpage       = btrfs_readpage,
10646         .writepage      = btrfs_writepage,
10647         .writepages     = btrfs_writepages,
10648         .readahead      = btrfs_readahead,
10649         .direct_IO      = noop_direct_IO,
10650         .invalidatepage = btrfs_invalidatepage,
10651         .releasepage    = btrfs_releasepage,
10652 #ifdef CONFIG_MIGRATION
10653         .migratepage    = btrfs_migratepage,
10654 #endif
10655         .set_page_dirty = btrfs_set_page_dirty,
10656         .error_remove_page = generic_error_remove_page,
10657         .swap_activate  = btrfs_swap_activate,
10658         .swap_deactivate = btrfs_swap_deactivate,
10659 };
10660
10661 static const struct inode_operations btrfs_file_inode_operations = {
10662         .getattr        = btrfs_getattr,
10663         .setattr        = btrfs_setattr,
10664         .listxattr      = btrfs_listxattr,
10665         .permission     = btrfs_permission,
10666         .fiemap         = btrfs_fiemap,
10667         .get_acl        = btrfs_get_acl,
10668         .set_acl        = btrfs_set_acl,
10669         .update_time    = btrfs_update_time,
10670 };
10671 static const struct inode_operations btrfs_special_inode_operations = {
10672         .getattr        = btrfs_getattr,
10673         .setattr        = btrfs_setattr,
10674         .permission     = btrfs_permission,
10675         .listxattr      = btrfs_listxattr,
10676         .get_acl        = btrfs_get_acl,
10677         .set_acl        = btrfs_set_acl,
10678         .update_time    = btrfs_update_time,
10679 };
10680 static const struct inode_operations btrfs_symlink_inode_operations = {
10681         .get_link       = page_get_link,
10682         .getattr        = btrfs_getattr,
10683         .setattr        = btrfs_setattr,
10684         .permission     = btrfs_permission,
10685         .listxattr      = btrfs_listxattr,
10686         .update_time    = btrfs_update_time,
10687 };
10688
10689 const struct dentry_operations btrfs_dentry_operations = {
10690         .d_delete       = btrfs_dentry_delete,
10691 };