blob: 07dd8aa4f708b4cf5980d1fac000f16211aab96c [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason8f18cf12008-04-25 16:53:30 -04006#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -05007#include <linux/bio.h>
David Sterba55e20bd2020-06-09 19:56:06 +02008#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -04009#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040010#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>
Chris Mason39279cc2007-06-12 06:35:45 -040016#include <linux/backing-dev.h>
Chris Mason39279cc2007-06-12 06:35:45 -040017#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040018#include <linux/compat.h>
Josef Bacik5103e942007-11-16 11:45:54 -050019#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040020#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040021#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020023#include <linux/ratelimit.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000024#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050025#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040026#include <linux/posix_acl_xattr.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080027#include <linux/uio.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040028#include <linux/magic.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050029#include <linux/iversion.h>
Omar Sandovaled46ff32016-11-03 10:28:14 -070030#include <linux/swap.h>
Roman Gushchinf8e66082020-03-04 16:57:35 -080031#include <linux/migrate.h>
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +030032#include <linux/sched/mm.h>
David Sterba92d32172018-04-16 21:10:14 +020033#include <asm/unaligned.h>
David Sterba602cbe92019-08-21 18:48:25 +020034#include "misc.h"
Chris Mason39279cc2007-06-12 06:35:45 -040035#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040040#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040041#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040042#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020043#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040044#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050045#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050046#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080047#include "inode-map.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000048#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080049#include "qgroup.h"
Josef Bacik86736342019-06-19 15:12:00 -040050#include "delalloc-space.h"
Josef Bacikaac00232019-06-20 15:37:44 -040051#include "block-group.h"
Filipe Manana467dc472020-05-27 11:16:07 +010052#include "space-info.h"
Chris Mason39279cc2007-06-12 06:35:45 -040053
54struct btrfs_iget_args {
David Sterba0202e832020-05-15 19:35:59 +020055 u64 ino;
Chris Mason39279cc2007-06-12 06:35:45 -040056 struct btrfs_root *root;
57};
58
Filipe Mananaf28a4922015-12-08 19:23:20 +000059struct btrfs_dio_data {
Filipe Mananaf28a4922015-12-08 19:23:20 +000060 u64 reserve;
David Sterba55e20bd2020-06-09 19:56:06 +020061 u64 unsubmitted_oe_range_start;
62 u64 unsubmitted_oe_range_end;
63 int overwrite;
Filipe Mananaf28a4922015-12-08 19:23:20 +000064};
65
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070066static const struct inode_operations btrfs_dir_inode_operations;
67static const struct inode_operations btrfs_symlink_inode_operations;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070068static const struct inode_operations btrfs_special_inode_operations;
69static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070070static const struct address_space_operations btrfs_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070071static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010072static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040073
74static struct kmem_cache *btrfs_inode_cachep;
75struct kmem_cache *btrfs_trans_handle_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040076struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050077struct kmem_cache *btrfs_free_space_cachep;
Christophe Leroy3acd4852019-08-21 15:05:55 +000078struct kmem_cache *btrfs_free_space_bitmap_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040079
Eric Sandeen3972f262013-01-12 02:57:22 +000080static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Filipe Manana213e8c52018-02-06 20:40:31 +000081static int btrfs_truncate(struct inode *inode, bool skip_writeback);
Josef Bacik5fd02042012-05-02 14:00:54 -040082static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Nikolay Borisov6e26c442020-06-03 08:55:14 +030083static noinline int cow_file_range(struct btrfs_inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -050084 struct page *locked_page,
Nikolay Borisov74e91942019-07-17 16:18:16 +030085 u64 start, u64 end, int *page_started,
Nikolay Borisov330a5822019-07-17 16:18:17 +030086 unsigned long *nr_written, int unlock);
Nikolay Borisov4b67c112020-06-03 08:55:05 +030087static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
88 u64 len, u64 orig_start, u64 block_start,
Liu Bo6f9994d2017-01-31 07:50:22 -080089 u64 block_len, u64 orig_block_len,
90 u64 ram_bytes, int compress_type,
91 int type);
Josef Bacik7b128762008-07-24 12:17:14 -040092
Nikolay Borisovb672b5c2020-06-03 08:55:24 +030093static void __endio_write_update_ordered(struct btrfs_inode *inode,
Qu Wenruo524272602017-03-08 10:25:52 +080094 const u64 offset, const u64 bytes,
95 const bool uptodate);
96
97/*
98 * Cleanup all submitted ordered extents in specified range to handle errors
Andrea Gelmini52042d82018-11-28 12:05:13 +010099 * from the btrfs_run_delalloc_range() callback.
Qu Wenruo524272602017-03-08 10:25:52 +0800100 *
101 * NOTE: caller must ensure that when an error happens, it can not call
102 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
103 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
104 * to be released, which we want to happen only when finishing the ordered
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200105 * extent (btrfs_finish_ordered_io()).
Qu Wenruo524272602017-03-08 10:25:52 +0800106 */
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300107static inline void btrfs_cleanup_ordered_extents(struct btrfs_inode *inode,
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200108 struct page *locked_page,
109 u64 offset, u64 bytes)
Qu Wenruo524272602017-03-08 10:25:52 +0800110{
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900111 unsigned long index = offset >> PAGE_SHIFT;
112 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200113 u64 page_start = page_offset(locked_page);
114 u64 page_end = page_start + PAGE_SIZE - 1;
115
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900116 struct page *page;
117
118 while (index <= end_index) {
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300119 page = find_get_page(inode->vfs_inode.i_mapping, index);
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900120 index++;
121 if (!page)
122 continue;
123 ClearPagePrivate2(page);
124 put_page(page);
125 }
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200126
127 /*
128 * In case this page belongs to the delalloc range being instantiated
129 * then skip it, since the first page of a range is going to be
130 * properly cleaned up by the caller of run_delalloc_range
131 */
132 if (page_start >= offset && page_end <= (offset + bytes - 1)) {
133 offset += PAGE_SIZE;
134 bytes -= PAGE_SIZE;
135 }
136
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300137 return __endio_write_update_ordered(inode, offset, bytes, false);
Qu Wenruo524272602017-03-08 10:25:52 +0800138}
139
Eric Sandeen48a3b632013-04-25 20:41:01 +0000140static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400141
Josef Bacik6a3891c2015-03-16 17:38:52 -0400142#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
143void btrfs_test_inode_set_ops(struct inode *inode)
144{
145 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
146}
147#endif
148
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000149static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500150 struct inode *inode, struct inode *dir,
151 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500152{
153 int err;
154
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000155 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500156 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500157 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500158 return err;
159}
160
Chris Masond352ac62008-09-29 15:18:18 -0400161/*
Chris Masonc8b97812008-10-29 14:49:59 -0400162 * this does all the hard work for inserting an inline extent into
163 * the btree. The caller should have done a btrfs_drop_extents so that
164 * no overlapping inline items exist in the btree
165 */
Chris Mason40f76582014-05-21 13:35:51 -0700166static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000167 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct btrfs_root *root, struct inode *inode,
169 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000170 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400171 struct page **compressed_pages)
172{
Chris Masonc8b97812008-10-29 14:49:59 -0400173 struct extent_buffer *leaf;
174 struct page *page = NULL;
175 char *kaddr;
176 unsigned long ptr;
177 struct btrfs_file_extent_item *ei;
Chris Masonc8b97812008-10-29 14:49:59 -0400178 int ret;
179 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400180 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400181
Jia-Ju Bai982f1f5d2019-07-27 16:51:13 +0800182 ASSERT((compressed_size > 0 && compressed_pages) ||
183 (compressed_size == 0 && !compressed_pages));
184
Li Zefanfe3f5662011-03-28 08:30:38 +0000185 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400186 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400187
Chris Masonc8b97812008-10-29 14:49:59 -0400188 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000189
190 if (!extent_inserted) {
191 struct btrfs_key key;
192 size_t datasize;
193
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200194 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000195 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200196 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000197
198 datasize = btrfs_file_extent_calc_inline_size(cur_size);
199 path->leave_spinning = 1;
200 ret = btrfs_insert_empty_item(trans, root, path, &key,
201 datasize);
David Sterba79b4f4c2017-06-15 19:09:51 +0200202 if (ret)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000203 goto fail;
Chris Masonc8b97812008-10-29 14:49:59 -0400204 }
205 leaf = path->nodes[0];
206 ei = btrfs_item_ptr(leaf, path->slots[0],
207 struct btrfs_file_extent_item);
208 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
209 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
210 btrfs_set_file_extent_encryption(leaf, ei, 0);
211 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
212 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
213 ptr = btrfs_file_extent_inline_start(ei);
214
Li Zefan261507a02010-12-17 14:21:50 +0800215 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400216 struct page *cpage;
217 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500218 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400219 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500220 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300221 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400222
Cong Wang7ac687d2011-11-25 23:14:28 +0800223 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400224 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800225 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400226
227 i++;
228 ptr += cur_size;
229 compressed_size -= cur_size;
230 }
231 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800232 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400233 } else {
234 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300235 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400236 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800237 kaddr = kmap_atomic(page);
Johannes Thumshirn70730172018-12-05 15:23:03 +0100238 offset = offset_in_page(start);
Chris Masonc8b97812008-10-29 14:49:59 -0400239 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800240 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300241 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400242 }
243 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000244 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400245
Yan, Zhengc2167752009-11-12 09:34:21 +0000246 /*
Josef Bacik9ddc9592020-01-17 09:02:22 -0500247 * We align size to sectorsize for inline extents just for simplicity
248 * sake.
249 */
250 size = ALIGN(size, root->fs_info->sectorsize);
251 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start, size);
252 if (ret)
253 goto fail;
254
255 /*
Yan, Zhengc2167752009-11-12 09:34:21 +0000256 * we're an inline extent, so nobody can
257 * extend the file past i_size without locking
258 * a page we already have locked.
259 *
260 * We must do any isize and inode updates
261 * before we unlock the pages. Otherwise we
262 * could end up racing with unlink.
263 */
Chris Masonc8b97812008-10-29 14:49:59 -0400264 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100265 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000266
Chris Masonc8b97812008-10-29 14:49:59 -0400267fail:
David Sterba79b4f4c2017-06-15 19:09:51 +0200268 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400269}
270
271
272/*
273 * conditionally insert an inline extent into the file. This
274 * does the checks required to make sure the data is small enough
275 * to fit as an inline extent.
276 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300277static noinline int cow_file_range_inline(struct btrfs_inode *inode, u64 start,
Josef Bacik00361582013-08-14 14:02:47 -0400278 u64 end, size_t compressed_size,
279 int compress_type,
280 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400281{
Nikolay Borisova0349402020-06-03 08:55:12 +0300282 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400283 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400284 struct btrfs_trans_handle *trans;
Nikolay Borisova0349402020-06-03 08:55:12 +0300285 u64 isize = i_size_read(&inode->vfs_inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400286 u64 actual_end = min(end + 1, isize);
287 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400288 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400289 u64 data_len = inline_len;
290 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000291 struct btrfs_path *path;
292 int extent_inserted = 0;
293 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400294
295 if (compressed_size)
296 data_len = compressed_size;
297
298 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400299 actual_end > fs_info->sectorsize ||
300 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400301 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400302 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400303 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400304 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400305 return 1;
306 }
307
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000308 path = btrfs_alloc_path();
309 if (!path)
310 return -ENOMEM;
311
Josef Bacik00361582013-08-14 14:02:47 -0400312 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000313 if (IS_ERR(trans)) {
314 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400315 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000316 }
Nikolay Borisova0349402020-06-03 08:55:12 +0300317 trans->block_rsv = &inode->block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400318
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000319 if (compressed_size && compressed_pages)
320 extent_item_size = btrfs_file_extent_calc_inline_size(
321 compressed_size);
322 else
323 extent_item_size = btrfs_file_extent_calc_inline_size(
324 inline_len);
325
Nikolay Borisova0349402020-06-03 08:55:12 +0300326 ret = __btrfs_drop_extents(trans, root, inode, path, start, aligned_end,
327 NULL, 1, 1, extent_item_size,
328 &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400329 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400330 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400331 goto out;
332 }
Chris Masonc8b97812008-10-29 14:49:59 -0400333
334 if (isize > actual_end)
335 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000336 ret = insert_inline_extent(trans, path, extent_inserted,
Nikolay Borisova0349402020-06-03 08:55:12 +0300337 root, &inode->vfs_inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400338 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000339 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400340 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400341 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400342 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400343 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400344 ret = 1;
345 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100346 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400347
Nikolay Borisova0349402020-06-03 08:55:12 +0300348 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
349 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400350out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800351 /*
352 * Don't forget to free the reserved space, as for inlined extent
353 * it won't count as data extent, free them directly here.
354 * And at reserve time, it's always aligned to page size, so
355 * just free one page here.
356 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300357 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000358 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400359 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400360 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400361}
362
Chris Mason771ed682008-11-06 22:02:51 -0500363struct async_extent {
364 u64 start;
365 u64 ram_size;
366 u64 compressed_size;
367 struct page **pages;
368 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800369 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500370 struct list_head list;
371};
372
Nikolay Borisov97db1202019-03-12 17:20:24 +0200373struct async_chunk {
Chris Mason771ed682008-11-06 22:02:51 -0500374 struct inode *inode;
Chris Mason771ed682008-11-06 22:02:51 -0500375 struct page *locked_page;
376 u64 start;
377 u64 end;
Liu Bof82b7352017-10-23 23:18:16 -0600378 unsigned int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500379 struct list_head extents;
Chris Masonec39f762019-07-10 12:28:17 -0700380 struct cgroup_subsys_state *blkcg_css;
Chris Mason771ed682008-11-06 22:02:51 -0500381 struct btrfs_work work;
Nikolay Borisov97db1202019-03-12 17:20:24 +0200382 atomic_t *pending;
Chris Mason771ed682008-11-06 22:02:51 -0500383};
384
Nikolay Borisov97db1202019-03-12 17:20:24 +0200385struct async_cow {
386 /* Number of chunks in flight; must be first in the structure */
387 atomic_t num_chunks;
388 struct async_chunk chunks[];
389};
390
391static noinline int add_async_extent(struct async_chunk *cow,
Chris Mason771ed682008-11-06 22:02:51 -0500392 u64 start, u64 ram_size,
393 u64 compressed_size,
394 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800395 unsigned long nr_pages,
396 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500397{
398 struct async_extent *async_extent;
399
400 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100401 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500402 async_extent->start = start;
403 async_extent->ram_size = ram_size;
404 async_extent->compressed_size = compressed_size;
405 async_extent->pages = pages;
406 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800407 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500408 list_add_tail(&async_extent->list, &cow->extents);
409 return 0;
410}
411
Qu Wenruo42c16da2019-07-01 05:12:46 +0000412/*
413 * Check if the inode has flags compatible with compression
414 */
Nikolay Borisov99c88dc2020-06-03 08:55:26 +0300415static inline bool inode_can_compress(struct btrfs_inode *inode)
Qu Wenruo42c16da2019-07-01 05:12:46 +0000416{
Nikolay Borisov99c88dc2020-06-03 08:55:26 +0300417 if (inode->flags & BTRFS_INODE_NODATACOW ||
418 inode->flags & BTRFS_INODE_NODATASUM)
Qu Wenruo42c16da2019-07-01 05:12:46 +0000419 return false;
420 return true;
421}
422
423/*
424 * Check if the inode needs to be submitted to compression, based on mount
425 * options, defragmentation, properties or heuristics.
426 */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300427static inline int inode_need_compress(struct btrfs_inode *inode, u64 start,
428 u64 end)
Wang Shilongf79707b2014-07-17 11:44:09 +0800429{
Nikolay Borisov808a1292020-06-03 08:55:27 +0300430 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Wang Shilongf79707b2014-07-17 11:44:09 +0800431
Nikolay Borisov808a1292020-06-03 08:55:27 +0300432 if (!inode_can_compress(inode)) {
Qu Wenruo42c16da2019-07-01 05:12:46 +0000433 WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG),
434 KERN_ERR "BTRFS: unexpected compression for ino %llu\n",
Nikolay Borisov808a1292020-06-03 08:55:27 +0300435 btrfs_ino(inode));
Qu Wenruo42c16da2019-07-01 05:12:46 +0000436 return 0;
437 }
Wang Shilongf79707b2014-07-17 11:44:09 +0800438 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400439 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800440 return 1;
David Sterbaeec63c62017-07-17 19:41:31 +0200441 /* defrag ioctl */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300442 if (inode->defrag_compress)
David Sterbaeec63c62017-07-17 19:41:31 +0200443 return 1;
Wang Shilongf79707b2014-07-17 11:44:09 +0800444 /* bad compression ratios */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300445 if (inode->flags & BTRFS_INODE_NOCOMPRESS)
Wang Shilongf79707b2014-07-17 11:44:09 +0800446 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400447 if (btrfs_test_opt(fs_info, COMPRESS) ||
Nikolay Borisov808a1292020-06-03 08:55:27 +0300448 inode->flags & BTRFS_INODE_COMPRESS ||
449 inode->prop_compress)
450 return btrfs_compress_heuristic(&inode->vfs_inode, start, end);
Wang Shilongf79707b2014-07-17 11:44:09 +0800451 return 0;
452}
453
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200454static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800455 u64 start, u64 end, u64 num_bytes, u64 small_write)
456{
457 /* If this is a small write inside eof, kick off a defrag */
458 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200459 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800460 btrfs_add_inode_defrag(NULL, inode);
461}
462
Chris Masonc8b97812008-10-29 14:49:59 -0400463/*
Chris Mason771ed682008-11-06 22:02:51 -0500464 * we create compressed extents in two phases. The first
465 * phase compresses a range of pages that have already been
466 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400467 *
Chris Mason771ed682008-11-06 22:02:51 -0500468 * This is done inside an ordered work queue, and the compression
469 * is spread across many cpus. The actual IO submission is step
470 * two, and the ordered work queue takes care of making sure that
471 * happens in the same order things were put onto the queue by
472 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400473 *
Chris Mason771ed682008-11-06 22:02:51 -0500474 * If this code finds it can't get good compression, it puts an
475 * entry onto the work queue to write the uncompressed bytes. This
476 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300477 * are written in the same order that the flusher thread sent them
478 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400479 */
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300480static noinline int compress_file_range(struct async_chunk *async_chunk)
Chris Masonb888db22007-08-27 16:49:44 -0400481{
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200482 struct inode *inode = async_chunk->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400483 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400484 u64 blocksize = fs_info->sectorsize;
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200485 u64 start = async_chunk->start;
486 u64 end = async_chunk->end;
Chris Masonc8b97812008-10-29 14:49:59 -0400487 u64 actual_end;
Josef Bacikd98da492019-10-11 09:03:54 -0400488 u64 i_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400489 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400490 struct page **pages = NULL;
491 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400492 unsigned long total_compressed = 0;
493 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400494 int i;
495 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400496 int compress_type = fs_info->compress_type;
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300497 int compressed_extents = 0;
Chris Mason4adaa612013-03-26 13:07:00 -0400498 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400499
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200500 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
501 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400502
Josef Bacikd98da492019-10-11 09:03:54 -0400503 /*
504 * We need to save i_size before now because it could change in between
505 * us evaluating the size and assigning it. This is because we lock and
506 * unlock the page in truncate and fallocate, and then modify the i_size
507 * later on.
508 *
509 * The barriers are to emulate READ_ONCE, remove that once i_size_read
510 * does that for us.
511 */
512 barrier();
513 i_size = i_size_read(inode);
514 barrier();
515 actual_end = min_t(u64, i_size, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400516again:
517 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300518 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100519 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
520 nr_pages = min_t(unsigned long, nr_pages,
521 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400522
Chris Masonf03d9301f2009-02-04 09:31:06 -0500523 /*
524 * we don't want to send crud past the end of i_size through
525 * compression, that's just a waste of CPU time. So, if the
526 * end of the file is before the start of our current
527 * requested range of bytes, we bail out to the uncompressed
528 * cleanup code that can deal with all of this.
529 *
530 * It isn't really the fastest way to fix things, but this is a
531 * very uncommon corner.
532 */
533 if (actual_end <= start)
534 goto cleanup_and_bail_uncompressed;
535
Chris Masonc8b97812008-10-29 14:49:59 -0400536 total_compressed = actual_end - start;
537
Shilong Wang4bcbb332014-10-07 18:44:35 -0400538 /*
539 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400540 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400541 */
542 if (total_compressed <= blocksize &&
543 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
544 goto cleanup_and_bail_uncompressed;
545
David Sterba069eac72017-02-14 19:36:54 +0100546 total_compressed = min_t(unsigned long, total_compressed,
547 BTRFS_MAX_UNCOMPRESSED);
Chris Masonc8b97812008-10-29 14:49:59 -0400548 total_in = 0;
549 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400550
Chris Mason771ed682008-11-06 22:02:51 -0500551 /*
552 * we do compression for mount -o compress and when the
553 * inode has not been flagged as nocompress. This flag can
554 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400555 */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300556 if (inode_need_compress(BTRFS_I(inode), start, end)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400557 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100558 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800559 if (!pages) {
560 /* just bail out to the uncompressed code */
Filipe Manana3527a012018-10-13 00:37:25 +0100561 nr_pages = 0;
Li Zefan560f7d72011-09-08 10:22:01 +0800562 goto cont;
563 }
Chris Mason179e29e2007-11-01 11:28:41 -0400564
David Sterbaeec63c62017-07-17 19:41:31 +0200565 if (BTRFS_I(inode)->defrag_compress)
566 compress_type = BTRFS_I(inode)->defrag_compress;
567 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200568 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800569
Chris Mason4adaa612013-03-26 13:07:00 -0400570 /*
571 * we need to call clear_page_dirty_for_io on each
572 * page in the range. Otherwise applications with the file
573 * mmap'd can wander in and change the page contents while
574 * we are compressing them.
575 *
576 * If the compression fails for any reason, we set the pages
577 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300578 *
579 * Note that the remaining part is redirtied, the start pointer
580 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400581 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300582 if (!redirty) {
583 extent_range_clear_dirty_for_io(inode, start, end);
584 redirty = 1;
585 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200586
587 /* Compression level is applied here and only here */
588 ret = btrfs_compress_pages(
589 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800590 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100591 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100592 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800593 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100594 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400595
596 if (!ret) {
Johannes Thumshirn70730172018-12-05 15:23:03 +0100597 unsigned long offset = offset_in_page(total_compressed);
David Sterba4d3a8002017-02-14 19:04:07 +0100598 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400599 char *kaddr;
600
601 /* zero the tail end of the last page, we might be
602 * sending it down to disk
603 */
604 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800605 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400606 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300607 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800608 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400609 }
610 will_compress = 1;
611 }
612 }
Li Zefan560f7d72011-09-08 10:22:01 +0800613cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400614 if (start == 0) {
615 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300616 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400617 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500618 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400619 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300620 ret = cow_file_range_inline(BTRFS_I(inode), start, end,
621 0, BTRFS_COMPRESS_NONE,
622 NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400623 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500624 /* try making a compressed inline extent */
Nikolay Borisova0349402020-06-03 08:55:12 +0300625 ret = cow_file_range_inline(BTRFS_I(inode), start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000626 total_compressed,
627 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400628 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100629 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400630 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400631 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
632 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100633 unsigned long page_error_op;
634
Filipe Mananae6eb4312014-10-10 10:45:12 +0100635 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400636
Chris Mason771ed682008-11-06 22:02:51 -0500637 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100638 * inline extent creation worked or returned error,
639 * we don't need to create any more async work items.
640 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400641 *
642 * We use DO_ACCOUNTING here because we need the
643 * delalloc_release_metadata to be done _after_ we drop
644 * our outstanding extent for clearing delalloc for this
645 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500646 */
Nikolay Borisovad7ff172020-06-03 08:55:06 +0300647 extent_clear_unlock_delalloc(BTRFS_I(inode), start, end,
648 NULL,
Nikolay Borisov74e91942019-07-17 16:18:16 +0300649 clear_flags,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800650 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400651 PAGE_CLEAR_DIRTY |
652 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100653 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400654 PAGE_END_WRITEBACK);
Nikolay Borisovcecc8d92019-07-17 14:41:45 +0300655
656 for (i = 0; i < nr_pages; i++) {
657 WARN_ON(pages[i]->mapping);
658 put_page(pages[i]);
659 }
660 kfree(pages);
661
662 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400663 }
664 }
665
666 if (will_compress) {
667 /*
668 * we aren't doing an inline extent round the compressed size
669 * up to a block size boundary so the allocator does sane
670 * things
671 */
Qu Wenruofda28322013-02-26 08:10:22 +0000672 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400673
674 /*
675 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300676 * win, compare the page count read with the blocks on disk,
677 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400678 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300679 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300680 if (total_compressed + blocksize <= total_in) {
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300681 compressed_extents++;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700682
683 /*
684 * The async work queues will take care of doing actual
685 * allocation on disk for these compressed pages, and
686 * will submit them to the elevator.
687 */
Nikolay Borisovb5326272019-03-12 17:20:25 +0200688 add_async_extent(async_chunk, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100689 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700690 compress_type);
691
Timofey Titovets11708622017-10-03 18:06:01 +0300692 if (start + total_in < end) {
693 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700694 pages = NULL;
695 cond_resched();
696 goto again;
697 }
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300698 return compressed_extents;
Chris Masonc8b97812008-10-29 14:49:59 -0400699 }
700 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700701 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400702 /*
703 * the compression code ran but failed to make things smaller,
704 * free any pages it allocated and our page pointer array
705 */
David Sterba4d3a8002017-02-14 19:04:07 +0100706 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400707 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300708 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400709 }
710 kfree(pages);
711 pages = NULL;
712 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100713 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400714
715 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400716 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200717 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500718 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500719 }
Chris Masonc8b97812008-10-29 14:49:59 -0400720 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500721cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700722 /*
723 * No compression, but we still need to write the pages in the file
724 * we've been given so far. redirty the locked page if it corresponds
725 * to our extent and set things up for the async work queue to run
726 * cow_file_range to do the normal delalloc dance.
727 */
Chris Mason1d53c9e2019-07-10 12:28:16 -0700728 if (async_chunk->locked_page &&
729 (page_offset(async_chunk->locked_page) >= start &&
730 page_offset(async_chunk->locked_page)) <= end) {
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200731 __set_page_dirty_nobuffers(async_chunk->locked_page);
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700732 /* unlocked later on in the async handlers */
Chris Mason1d53c9e2019-07-10 12:28:16 -0700733 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700734
735 if (redirty)
736 extent_range_redirty_for_io(inode, start, end);
Nikolay Borisovb5326272019-03-12 17:20:25 +0200737 add_async_extent(async_chunk, start, end - start + 1, 0, NULL, 0,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700738 BTRFS_COMPRESS_NONE);
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300739 compressed_extents++;
Chris Mason771ed682008-11-06 22:02:51 -0500740
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300741 return compressed_extents;
Chris Mason771ed682008-11-06 22:02:51 -0500742}
Chris Mason771ed682008-11-06 22:02:51 -0500743
Filipe Manana40ae8372014-10-06 22:14:24 +0100744static void free_async_extent_pages(struct async_extent *async_extent)
745{
746 int i;
747
748 if (!async_extent->pages)
749 return;
750
751 for (i = 0; i < async_extent->nr_pages; i++) {
752 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300753 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100754 }
755 kfree(async_extent->pages);
756 async_extent->nr_pages = 0;
757 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500758}
759
760/*
761 * phase two of compressed writeback. This is the ordered portion
762 * of the code, which only gets called in the order the work was
763 * queued. We walk all the async extents created by compress_file_range
764 * and send them down to the disk.
765 */
Nikolay Borisovb5326272019-03-12 17:20:25 +0200766static noinline void submit_compressed_extents(struct async_chunk *async_chunk)
Chris Mason771ed682008-11-06 22:02:51 -0500767{
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300768 struct btrfs_inode *inode = BTRFS_I(async_chunk->inode);
769 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason771ed682008-11-06 22:02:51 -0500770 struct async_extent *async_extent;
771 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500772 struct btrfs_key ins;
773 struct extent_map *em;
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300774 struct btrfs_root *root = inode->root;
775 struct extent_io_tree *io_tree = &inode->io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500776 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500777
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500778again:
Nikolay Borisovb5326272019-03-12 17:20:25 +0200779 while (!list_empty(&async_chunk->extents)) {
780 async_extent = list_entry(async_chunk->extents.next,
Chris Mason771ed682008-11-06 22:02:51 -0500781 struct async_extent, list);
782 list_del(&async_extent->list);
783
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500784retry:
Nikolay Borisov74475552019-03-12 17:20:30 +0200785 lock_extent(io_tree, async_extent->start,
786 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500787 /* did the compression code fall back to uncompressed IO? */
788 if (!async_extent->pages) {
789 int page_started = 0;
790 unsigned long nr_written = 0;
791
Chris Mason771ed682008-11-06 22:02:51 -0500792 /* allocate blocks */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300793 ret = cow_file_range(inode, async_chunk->locked_page,
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500794 async_extent->start,
795 async_extent->start +
796 async_extent->ram_size - 1,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300797 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500798
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100799 /* JDM XXX */
800
Chris Mason771ed682008-11-06 22:02:51 -0500801 /*
802 * if page_started, cow_file_range inserted an
803 * inline extent and took care of all the unlocking
804 * and IO for us. Otherwise, we need to submit
805 * all those pages down to the drive.
806 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500807 if (!page_started && !ret)
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300808 extent_write_locked_range(&inode->vfs_inode,
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200809 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500810 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500811 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500812 WB_SYNC_ALL);
Chris Mason1d53c9e2019-07-10 12:28:16 -0700813 else if (ret && async_chunk->locked_page)
Nikolay Borisovb5326272019-03-12 17:20:25 +0200814 unlock_page(async_chunk->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500815 kfree(async_extent);
816 cond_resched();
817 continue;
818 }
819
Wang Xiaoguang18513092016-07-25 15:51:40 +0800820 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500821 async_extent->compressed_size,
822 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800823 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500824 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100825 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500826
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400827 if (ret == -ENOSPC) {
828 unlock_extent(io_tree, async_extent->start,
829 async_extent->start +
830 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800831
832 /*
833 * we need to redirty the pages if we decide to
834 * fallback to uncompressed IO, otherwise we
835 * will not submit these pages down to lower
836 * layers.
837 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300838 extent_range_redirty_for_io(&inode->vfs_inode,
Liu Boce620032014-07-24 22:48:05 +0800839 async_extent->start,
840 async_extent->start +
841 async_extent->ram_size - 1);
842
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100843 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400844 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500845 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500846 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000847 /*
848 * here we're doing allocation and writeback of the
849 * compressed pages
850 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300851 em = create_io_em(inode, async_extent->start,
Liu Bo6f9994d2017-01-31 07:50:22 -0800852 async_extent->ram_size, /* len */
853 async_extent->start, /* orig_start */
854 ins.objectid, /* block_start */
855 ins.offset, /* block_len */
856 ins.offset, /* orig_block_len */
857 async_extent->ram_size, /* ram_bytes */
858 async_extent->compress_type,
859 BTRFS_ORDERED_COMPRESSED);
860 if (IS_ERR(em))
861 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500862 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800863 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500864
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300865 ret = btrfs_add_ordered_extent_compress(inode,
Li Zefan261507a02010-12-17 14:21:50 +0800866 async_extent->start,
867 ins.objectid,
868 async_extent->ram_size,
869 ins.offset,
870 BTRFS_ORDERED_COMPRESSED,
871 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100872 if (ret) {
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300873 btrfs_drop_extent_cache(inode, async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100874 async_extent->start +
875 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500876 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100877 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400878 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500879
Chris Mason771ed682008-11-06 22:02:51 -0500880 /*
881 * clear dirty, set writeback and unlock the pages.
882 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300883 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400884 async_extent->start +
885 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400886 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
887 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400888 PAGE_SET_WRITEBACK);
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300889 if (btrfs_submit_compressed_write(inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500890 async_extent->ram_size,
891 ins.objectid,
892 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600893 async_extent->nr_pages,
Chris Masonec39f762019-07-10 12:28:17 -0700894 async_chunk->write_flags,
895 async_chunk->blkcg_css)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100896 struct page *p = async_extent->pages[0];
897 const u64 start = async_extent->start;
898 const u64 end = start + async_extent->ram_size - 1;
899
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300900 p->mapping = inode->vfs_inode.i_mapping;
Nikolay Borisovc6297322018-11-08 10:18:08 +0200901 btrfs_writepage_endio_finish_ordered(p, start, end, 0);
Nikolay Borisov7087a9d2018-11-01 14:09:48 +0200902
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100903 p->mapping = NULL;
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300904 extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100905 PAGE_END_WRITEBACK |
906 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100907 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100908 }
Chris Mason771ed682008-11-06 22:02:51 -0500909 alloc_hint = ins.objectid + ins.offset;
910 kfree(async_extent);
911 cond_resched();
912 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100913 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500914out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400915 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400916 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100917out_free:
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300918 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500919 async_extent->start +
920 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400921 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100922 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400923 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
924 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100925 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
926 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100927 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100928 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500929 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500930}
931
Nikolay Borisov43c69842020-06-03 08:55:02 +0300932static u64 get_extent_allocation_hint(struct btrfs_inode *inode, u64 start,
Josef Bacik4b46fce2010-05-23 11:00:55 -0400933 u64 num_bytes)
934{
Nikolay Borisov43c69842020-06-03 08:55:02 +0300935 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400936 struct extent_map *em;
937 u64 alloc_hint = 0;
938
939 read_lock(&em_tree->lock);
940 em = search_extent_mapping(em_tree, start, num_bytes);
941 if (em) {
942 /*
943 * if block start isn't an actual block number then find the
944 * first block in this inode and use that as a hint. If that
945 * block is also bogus then just don't worry about it.
946 */
947 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
948 free_extent_map(em);
949 em = search_extent_mapping(em_tree, 0, 0);
950 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
951 alloc_hint = em->block_start;
952 if (em)
953 free_extent_map(em);
954 } else {
955 alloc_hint = em->block_start;
956 free_extent_map(em);
957 }
958 }
959 read_unlock(&em_tree->lock);
960
961 return alloc_hint;
962}
963
Chris Mason771ed682008-11-06 22:02:51 -0500964/*
965 * when extent_io.c finds a delayed allocation range in the file,
966 * the call backs end up in this code. The basic idea is to
967 * allocate extents on disk for the range, and create ordered data structs
968 * in ram to track those extents.
969 *
970 * locked_page is the page that writepage had locked already. We use
971 * it to make sure we don't do extra locks or unlocks.
972 *
973 * *page_started is set to one if we unlock locked_page and do everything
974 * required to start IO on it. It may be clean and already done with
975 * IO when we return.
976 */
Nikolay Borisov6e26c442020-06-03 08:55:14 +0300977static noinline int cow_file_range(struct btrfs_inode *inode,
Josef Bacik00361582013-08-14 14:02:47 -0400978 struct page *locked_page,
Nikolay Borisov74e91942019-07-17 16:18:16 +0300979 u64 start, u64 end, int *page_started,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300980 unsigned long *nr_written, int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500981{
Nikolay Borisov6e26c442020-06-03 08:55:14 +0300982 struct btrfs_root *root = inode->root;
983 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason771ed682008-11-06 22:02:51 -0500984 u64 alloc_hint = 0;
985 u64 num_bytes;
986 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +0000987 u64 cur_alloc_size = 0;
Filipe Manana432cd2a2020-06-08 13:32:55 +0100988 u64 min_alloc_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400989 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500990 struct btrfs_key ins;
991 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000992 unsigned clear_bits;
993 unsigned long page_ops;
994 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500995 int ret = 0;
996
Nikolay Borisov6e26c442020-06-03 08:55:14 +0300997 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400998 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500999 ret = -EINVAL;
1000 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -04001001 }
Chris Mason771ed682008-11-06 22:02:51 -05001002
Qu Wenruofda28322013-02-26 08:10:22 +00001003 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -05001004 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +08001005 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -05001006
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001007 inode_should_defrag(inode, start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001008
Chris Mason771ed682008-11-06 22:02:51 -05001009 if (start == 0) {
1010 /* lets try to make an inline extent */
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001011 ret = cow_file_range_inline(inode, start, end, 0,
Nikolay Borisovd02c0e22018-03-02 09:43:15 +02001012 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -05001013 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -04001014 /*
1015 * We use DO_ACCOUNTING here because we need the
1016 * delalloc_release_metadata to be run _after_ we drop
1017 * our outstanding extent for clearing delalloc for this
1018 * range.
1019 */
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001020 extent_clear_unlock_delalloc(inode, start, end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -04001021 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -04001022 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1023 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001024 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1025 PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -05001026 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001027 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05001028 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -05001029 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001030 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001031 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -05001032 }
1033 }
Chris Masonc8b97812008-10-29 14:49:59 -04001034
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001035 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
1036 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -04001037
Filipe Manana432cd2a2020-06-08 13:32:55 +01001038 /*
1039 * Relocation relies on the relocated extents to have exactly the same
1040 * size as the original extents. Normally writeback for relocation data
1041 * extents follows a NOCOW path because relocation preallocates the
1042 * extents. However, due to an operation such as scrub turning a block
1043 * group to RO mode, it may fallback to COW mode, so we must make sure
1044 * an extent allocated during COW has exactly the requested size and can
1045 * not be split into smaller extents, otherwise relocation breaks and
1046 * fails during the stage where it updates the bytenr of file extent
1047 * items.
1048 */
1049 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1050 min_alloc_size = num_bytes;
1051 else
1052 min_alloc_size = fs_info->sectorsize;
1053
Anand Jain3752d222018-02-15 12:29:38 +08001054 while (num_bytes > 0) {
1055 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001056 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Filipe Manana432cd2a2020-06-08 13:32:55 +01001057 min_alloc_size, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001058 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001059 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001060 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001061 cur_alloc_size = ins.offset;
1062 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001063
Chris Mason771ed682008-11-06 22:02:51 -05001064 ram_size = ins.offset;
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001065 em = create_io_em(inode, start, ins.offset, /* len */
Liu Bo6f9994d2017-01-31 07:50:22 -08001066 start, /* orig_start */
1067 ins.objectid, /* block_start */
1068 ins.offset, /* block_len */
1069 ins.offset, /* orig_block_len */
1070 ram_size, /* ram_bytes */
1071 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001072 BTRFS_ORDERED_REGULAR /* type */);
Su Yue090a127a2018-05-30 16:48:56 +08001073 if (IS_ERR(em)) {
1074 ret = PTR_ERR(em);
Liu Boace68ba2013-04-22 10:53:47 +00001075 goto out_reserve;
Su Yue090a127a2018-05-30 16:48:56 +08001076 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001077 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001078
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001079 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
1080 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001081 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001082 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001083
Yan Zheng17d217f2008-12-12 10:03:38 -05001084 if (root->root_key.objectid ==
1085 BTRFS_DATA_RELOC_TREE_OBJECTID) {
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001086 ret = btrfs_reloc_clone_csums(inode, start,
Yan Zheng17d217f2008-12-12 10:03:38 -05001087 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001088 /*
1089 * Only drop cache here, and process as normal.
1090 *
1091 * We must not allow extent_clear_unlock_delalloc()
1092 * at out_unlock label to free meta of this ordered
1093 * extent, as its meta should be freed by
1094 * btrfs_finish_ordered_io().
1095 *
1096 * So we must continue until @start is increased to
1097 * skip current ordered extent.
1098 */
Josef Bacik00361582013-08-14 14:02:47 -04001099 if (ret)
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001100 btrfs_drop_extent_cache(inode, start,
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001101 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001102 }
1103
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001104 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001105
Chris Masonc8b97812008-10-29 14:49:59 -04001106 /* we're not doing compressed IO, don't unlock the first
1107 * page (which the caller expects to stay locked), don't
1108 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001109 *
1110 * Do set the Private2 bit so we know this page was properly
1111 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001112 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001113 page_ops = unlock ? PAGE_UNLOCK : 0;
1114 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001115
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001116 extent_clear_unlock_delalloc(inode, start, start + ram_size - 1,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001117 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001118 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001119 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001120 if (num_bytes < cur_alloc_size)
1121 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001122 else
Anand Jain3752d222018-02-15 12:29:38 +08001123 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001124 alloc_hint = ins.objectid + ins.offset;
1125 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001126 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001127
1128 /*
1129 * btrfs_reloc_clone_csums() error, since start is increased
1130 * extent_clear_unlock_delalloc() at out_unlock label won't
1131 * free metadata of current ordered extent, we're OK to exit.
1132 */
1133 if (ret)
1134 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001135 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001136out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001137 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001138
Filipe Mananad9f85962014-08-25 10:43:00 +01001139out_drop_extent_cache:
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001140 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001141out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001142 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001143 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001144out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001145 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1146 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001147 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1148 PAGE_END_WRITEBACK;
1149 /*
1150 * If we reserved an extent for our delalloc range (or a subrange) and
1151 * failed to create the respective ordered extent, then it means that
1152 * when we reserved the extent we decremented the extent's size from
1153 * the data space_info's bytes_may_use counter and incremented the
1154 * space_info's bytes_reserved counter by the same amount. We must make
1155 * sure extent_clear_unlock_delalloc() does not try to decrement again
1156 * the data space_info's bytes_may_use counter, therefore we do not pass
1157 * it the flag EXTENT_CLEAR_DATA_RESV.
1158 */
1159 if (extent_reserved) {
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001160 extent_clear_unlock_delalloc(inode, start,
Filipe Mananae2c8e922020-05-27 11:15:53 +01001161 start + cur_alloc_size - 1,
Filipe Mananaa315e682017-03-06 23:04:20 +00001162 locked_page,
1163 clear_bits,
1164 page_ops);
1165 start += cur_alloc_size;
1166 if (start >= end)
1167 goto out;
1168 }
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001169 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001170 clear_bits | EXTENT_CLEAR_DATA_RESV,
1171 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001172 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001173}
Chris Masonc8b97812008-10-29 14:49:59 -04001174
Chris Mason771ed682008-11-06 22:02:51 -05001175/*
1176 * work queue call back to started compression on a file and pages
1177 */
1178static noinline void async_cow_start(struct btrfs_work *work)
1179{
Nikolay Borisovb5326272019-03-12 17:20:25 +02001180 struct async_chunk *async_chunk;
Nikolay Borisovac3e9932019-07-17 14:41:44 +03001181 int compressed_extents;
Chris Mason771ed682008-11-06 22:02:51 -05001182
Nikolay Borisovb5326272019-03-12 17:20:25 +02001183 async_chunk = container_of(work, struct async_chunk, work);
Chris Mason771ed682008-11-06 22:02:51 -05001184
Nikolay Borisovac3e9932019-07-17 14:41:44 +03001185 compressed_extents = compress_file_range(async_chunk);
1186 if (compressed_extents == 0) {
Nikolay Borisovb5326272019-03-12 17:20:25 +02001187 btrfs_add_delayed_iput(async_chunk->inode);
1188 async_chunk->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001189 }
Chris Mason771ed682008-11-06 22:02:51 -05001190}
1191
1192/*
1193 * work queue call back to submit previously compressed pages
1194 */
1195static noinline void async_cow_submit(struct btrfs_work *work)
1196{
Nikolay Borisovc5a68ae2019-03-12 17:20:26 +02001197 struct async_chunk *async_chunk = container_of(work, struct async_chunk,
1198 work);
1199 struct btrfs_fs_info *fs_info = btrfs_work_owner(work);
Chris Mason771ed682008-11-06 22:02:51 -05001200 unsigned long nr_pages;
1201
Nikolay Borisovb5326272019-03-12 17:20:25 +02001202 nr_pages = (async_chunk->end - async_chunk->start + PAGE_SIZE) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001203 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001204
David Sterba093258e2018-02-26 16:15:17 +01001205 /* atomic_sub_return implies a barrier */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001206 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
David Sterba093258e2018-02-26 16:15:17 +01001207 5 * SZ_1M)
1208 cond_wake_up_nomb(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001209
Nikolay Borisov4546d172019-01-03 10:50:03 +02001210 /*
Nikolay Borisovb5326272019-03-12 17:20:25 +02001211 * ->inode could be NULL if async_chunk_start has failed to compress,
Nikolay Borisov4546d172019-01-03 10:50:03 +02001212 * in which case we don't have anything to submit, yet we need to
1213 * always adjust ->async_delalloc_pages as its paired with the init
1214 * happening in cow_file_range_async
1215 */
Nikolay Borisovb5326272019-03-12 17:20:25 +02001216 if (async_chunk->inode)
1217 submit_compressed_extents(async_chunk);
Chris Mason771ed682008-11-06 22:02:51 -05001218}
Chris Masonc8b97812008-10-29 14:49:59 -04001219
Chris Mason771ed682008-11-06 22:02:51 -05001220static noinline void async_cow_free(struct btrfs_work *work)
1221{
Nikolay Borisovb5326272019-03-12 17:20:25 +02001222 struct async_chunk *async_chunk;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001223
Nikolay Borisovb5326272019-03-12 17:20:25 +02001224 async_chunk = container_of(work, struct async_chunk, work);
1225 if (async_chunk->inode)
1226 btrfs_add_delayed_iput(async_chunk->inode);
Chris Masonec39f762019-07-10 12:28:17 -07001227 if (async_chunk->blkcg_css)
1228 css_put(async_chunk->blkcg_css);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001229 /*
1230 * Since the pointer to 'pending' is at the beginning of the array of
Nikolay Borisovb5326272019-03-12 17:20:25 +02001231 * async_chunk's, freeing it ensures the whole array has been freed.
Nikolay Borisov97db1202019-03-12 17:20:24 +02001232 */
Nikolay Borisovb5326272019-03-12 17:20:25 +02001233 if (atomic_dec_and_test(async_chunk->pending))
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001234 kvfree(async_chunk->pending);
Chris Mason771ed682008-11-06 22:02:51 -05001235}
1236
Nikolay Borisov751b6432020-06-03 08:55:22 +03001237static int cow_file_range_async(struct btrfs_inode *inode,
Chris Masonec39f762019-07-10 12:28:17 -07001238 struct writeback_control *wbc,
1239 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001240 u64 start, u64 end, int *page_started,
David Sterbafac07d22019-10-29 18:28:57 +01001241 unsigned long *nr_written)
Chris Mason771ed682008-11-06 22:02:51 -05001242{
Nikolay Borisov751b6432020-06-03 08:55:22 +03001243 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masonec39f762019-07-10 12:28:17 -07001244 struct cgroup_subsys_state *blkcg_css = wbc_blkcg_css(wbc);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001245 struct async_cow *ctx;
1246 struct async_chunk *async_chunk;
Chris Mason771ed682008-11-06 22:02:51 -05001247 unsigned long nr_pages;
1248 u64 cur_end;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001249 u64 num_chunks = DIV_ROUND_UP(end - start, SZ_512K);
1250 int i;
1251 bool should_compress;
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001252 unsigned nofs_flag;
David Sterbafac07d22019-10-29 18:28:57 +01001253 const unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Mason771ed682008-11-06 22:02:51 -05001254
Nikolay Borisov751b6432020-06-03 08:55:22 +03001255 unlock_extent(&inode->io_tree, start, end);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001256
Nikolay Borisov751b6432020-06-03 08:55:22 +03001257 if (inode->flags & BTRFS_INODE_NOCOMPRESS &&
Nikolay Borisov97db1202019-03-12 17:20:24 +02001258 !btrfs_test_opt(fs_info, FORCE_COMPRESS)) {
1259 num_chunks = 1;
1260 should_compress = false;
1261 } else {
1262 should_compress = true;
1263 }
1264
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001265 nofs_flag = memalloc_nofs_save();
1266 ctx = kvmalloc(struct_size(ctx, chunks, num_chunks), GFP_KERNEL);
1267 memalloc_nofs_restore(nofs_flag);
1268
Nikolay Borisov97db1202019-03-12 17:20:24 +02001269 if (!ctx) {
1270 unsigned clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC |
1271 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1272 EXTENT_DO_ACCOUNTING;
1273 unsigned long page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1274 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
1275 PAGE_SET_ERROR;
1276
Nikolay Borisov751b6432020-06-03 08:55:22 +03001277 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1278 clear_bits, page_ops);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001279 return -ENOMEM;
1280 }
1281
1282 async_chunk = ctx->chunks;
1283 atomic_set(&ctx->num_chunks, num_chunks);
1284
1285 for (i = 0; i < num_chunks; i++) {
1286 if (should_compress)
1287 cur_end = min(end, start + SZ_512K - 1);
1288 else
1289 cur_end = end;
1290
Nikolay Borisovbd4691a2019-01-03 10:50:01 +02001291 /*
1292 * igrab is called higher up in the call chain, take only the
1293 * lightweight reference for the callback lifetime
1294 */
Nikolay Borisov751b6432020-06-03 08:55:22 +03001295 ihold(&inode->vfs_inode);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001296 async_chunk[i].pending = &ctx->num_chunks;
Nikolay Borisov751b6432020-06-03 08:55:22 +03001297 async_chunk[i].inode = &inode->vfs_inode;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001298 async_chunk[i].start = start;
1299 async_chunk[i].end = cur_end;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001300 async_chunk[i].write_flags = write_flags;
1301 INIT_LIST_HEAD(&async_chunk[i].extents);
Chris Mason771ed682008-11-06 22:02:51 -05001302
Chris Mason1d53c9e2019-07-10 12:28:16 -07001303 /*
1304 * The locked_page comes all the way from writepage and its
1305 * the original page we were actually given. As we spread
1306 * this large delalloc region across multiple async_chunk
1307 * structs, only the first struct needs a pointer to locked_page
1308 *
1309 * This way we don't need racey decisions about who is supposed
1310 * to unlock it.
1311 */
1312 if (locked_page) {
Chris Masonec39f762019-07-10 12:28:17 -07001313 /*
1314 * Depending on the compressibility, the pages might or
1315 * might not go through async. We want all of them to
1316 * be accounted against wbc once. Let's do it here
1317 * before the paths diverge. wbc accounting is used
1318 * only for foreign writeback detection and doesn't
1319 * need full accuracy. Just account the whole thing
1320 * against the first page.
1321 */
1322 wbc_account_cgroup_owner(wbc, locked_page,
1323 cur_end - start);
Chris Mason1d53c9e2019-07-10 12:28:16 -07001324 async_chunk[i].locked_page = locked_page;
1325 locked_page = NULL;
1326 } else {
1327 async_chunk[i].locked_page = NULL;
1328 }
1329
Chris Masonec39f762019-07-10 12:28:17 -07001330 if (blkcg_css != blkcg_root_css) {
1331 css_get(blkcg_css);
1332 async_chunk[i].blkcg_css = blkcg_css;
1333 } else {
1334 async_chunk[i].blkcg_css = NULL;
1335 }
1336
Omar Sandovala0cac0e2019-09-16 11:30:57 -07001337 btrfs_init_work(&async_chunk[i].work, async_cow_start,
1338 async_cow_submit, async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001339
Nikolay Borisov97db1202019-03-12 17:20:24 +02001340 nr_pages = DIV_ROUND_UP(cur_end - start, PAGE_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001341 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001342
Nikolay Borisov97db1202019-03-12 17:20:24 +02001343 btrfs_queue_work(fs_info->delalloc_workers, &async_chunk[i].work);
Chris Mason771ed682008-11-06 22:02:51 -05001344
Chris Mason771ed682008-11-06 22:02:51 -05001345 *nr_written += nr_pages;
1346 start = cur_end + 1;
1347 }
1348 *page_started = 1;
1349 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001350}
1351
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001352static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001353 u64 bytenr, u64 num_bytes)
1354{
1355 int ret;
1356 struct btrfs_ordered_sum *sums;
1357 LIST_HEAD(list);
1358
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001359 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001360 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001361 if (ret == 0 && list_empty(&list))
1362 return 0;
1363
1364 while (!list_empty(&list)) {
1365 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1366 list_del(&sums->list);
1367 kfree(sums);
1368 }
Liu Bo58113752018-01-31 17:09:13 -07001369 if (ret < 0)
1370 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001371 return 1;
1372}
1373
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001374static int fallback_to_cow(struct btrfs_inode *inode, struct page *locked_page,
Filipe Manana467dc472020-05-27 11:16:07 +01001375 const u64 start, const u64 end,
1376 int *page_started, unsigned long *nr_written)
1377{
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001378 const bool is_space_ino = btrfs_is_free_space_inode(inode);
1379 const bool is_reloc_ino = (inode->root->root_key.objectid ==
Filipe Manana6bd335b2020-06-08 13:33:05 +01001380 BTRFS_DATA_RELOC_TREE_OBJECTID);
Filipe Manana2166e5e2020-05-27 11:16:19 +01001381 const u64 range_bytes = end + 1 - start;
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001382 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana467dc472020-05-27 11:16:07 +01001383 u64 range_start = start;
1384 u64 count;
1385
1386 /*
1387 * If EXTENT_NORESERVE is set it means that when the buffered write was
1388 * made we had not enough available data space and therefore we did not
1389 * reserve data space for it, since we though we could do NOCOW for the
1390 * respective file range (either there is prealloc extent or the inode
1391 * has the NOCOW bit set).
1392 *
1393 * However when we need to fallback to COW mode (because for example the
1394 * block group for the corresponding extent was turned to RO mode by a
1395 * scrub or relocation) we need to do the following:
1396 *
1397 * 1) We increment the bytes_may_use counter of the data space info.
1398 * If COW succeeds, it allocates a new data extent and after doing
1399 * that it decrements the space info's bytes_may_use counter and
1400 * increments its bytes_reserved counter by the same amount (we do
1401 * this at btrfs_add_reserved_bytes()). So we need to increment the
1402 * bytes_may_use counter to compensate (when space is reserved at
1403 * buffered write time, the bytes_may_use counter is incremented);
1404 *
1405 * 2) We clear the EXTENT_NORESERVE bit from the range. We do this so
1406 * that if the COW path fails for any reason, it decrements (through
1407 * extent_clear_unlock_delalloc()) the bytes_may_use counter of the
1408 * data space info, which we incremented in the step above.
Filipe Manana2166e5e2020-05-27 11:16:19 +01001409 *
1410 * If we need to fallback to cow and the inode corresponds to a free
Filipe Manana6bd335b2020-06-08 13:33:05 +01001411 * space cache inode or an inode of the data relocation tree, we must
1412 * also increment bytes_may_use of the data space_info for the same
1413 * reason. Space caches and relocated data extents always get a prealloc
Filipe Manana2166e5e2020-05-27 11:16:19 +01001414 * extent for them, however scrub or balance may have set the block
Filipe Manana6bd335b2020-06-08 13:33:05 +01001415 * group that contains that extent to RO mode and therefore force COW
1416 * when starting writeback.
Filipe Manana467dc472020-05-27 11:16:07 +01001417 */
Filipe Manana2166e5e2020-05-27 11:16:19 +01001418 count = count_range_bits(io_tree, &range_start, end, range_bytes,
Filipe Manana467dc472020-05-27 11:16:07 +01001419 EXTENT_NORESERVE, 0);
Filipe Manana6bd335b2020-06-08 13:33:05 +01001420 if (count > 0 || is_space_ino || is_reloc_ino) {
1421 u64 bytes = count;
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001422 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana467dc472020-05-27 11:16:07 +01001423 struct btrfs_space_info *sinfo = fs_info->data_sinfo;
1424
Filipe Manana6bd335b2020-06-08 13:33:05 +01001425 if (is_space_ino || is_reloc_ino)
1426 bytes = range_bytes;
1427
Filipe Manana467dc472020-05-27 11:16:07 +01001428 spin_lock(&sinfo->lock);
Filipe Manana2166e5e2020-05-27 11:16:19 +01001429 btrfs_space_info_update_bytes_may_use(fs_info, sinfo, bytes);
Filipe Manana467dc472020-05-27 11:16:07 +01001430 spin_unlock(&sinfo->lock);
1431
Filipe Manana2166e5e2020-05-27 11:16:19 +01001432 if (count > 0)
1433 clear_extent_bit(io_tree, start, end, EXTENT_NORESERVE,
1434 0, 0, NULL);
Filipe Manana467dc472020-05-27 11:16:07 +01001435 }
1436
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001437 return cow_file_range(inode, locked_page, start, end, page_started,
1438 nr_written, 1);
Filipe Manana467dc472020-05-27 11:16:07 +01001439}
1440
Chris Masond352ac62008-09-29 15:18:18 -04001441/*
1442 * when nowcow writeback call back. This checks for snapshots or COW copies
1443 * of the extents that exist in the file, and COWs the file as required.
1444 *
1445 * If no cow copies or snapshots exist, we write directly to the existing
1446 * blocks on disk
1447 */
Nikolay Borisov968322c2020-06-03 08:55:21 +03001448static noinline int run_delalloc_nocow(struct btrfs_inode *inode,
Chris Mason7f366cf2009-03-12 20:12:45 -04001449 struct page *locked_page,
Nikolay Borisov3e024842019-08-21 10:42:03 +03001450 const u64 start, const u64 end,
1451 int *page_started, int force,
1452 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001453{
Nikolay Borisov968322c2020-06-03 08:55:21 +03001454 struct btrfs_fs_info *fs_info = inode->root->fs_info;
1455 struct btrfs_root *root = inode->root;
Chris Masonbe20aa92007-12-17 20:14:01 -05001456 struct btrfs_path *path;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001457 u64 cow_start = (u64)-1;
1458 u64 cur_offset = start;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001459 int ret;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001460 bool check_prev = true;
Nikolay Borisov968322c2020-06-03 08:55:21 +03001461 const bool freespace_inode = btrfs_is_free_space_inode(inode);
1462 u64 ino = btrfs_ino(inode);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001463 bool nocow = false;
1464 u64 disk_bytenr = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001465
1466 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001467 if (!path) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001468 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001469 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001470 EXTENT_DO_ACCOUNTING |
1471 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001472 PAGE_CLEAR_DIRTY |
1473 PAGE_SET_WRITEBACK |
1474 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001475 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001476 }
Li Zefan82d59022011-04-20 10:33:24 +08001477
Yan Zheng80ff3852008-10-30 14:20:02 -04001478 while (1) {
Nikolay Borisov3e024842019-08-21 10:42:03 +03001479 struct btrfs_key found_key;
1480 struct btrfs_file_extent_item *fi;
1481 struct extent_buffer *leaf;
1482 u64 extent_end;
1483 u64 extent_offset;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001484 u64 num_bytes = 0;
1485 u64 disk_num_bytes;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001486 u64 ram_bytes;
1487 int extent_type;
Nikolay Borisov762bf092019-08-22 17:24:20 +03001488
1489 nocow = false;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001490
Liu Boe4c3b2d2017-01-30 12:25:28 -08001491 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001492 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001493 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001494 goto error;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001495
1496 /*
1497 * If there is no extent for our range when doing the initial
1498 * search, then go back to the previous slot as it will be the
1499 * one containing the search offset
1500 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001501 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1502 leaf = path->nodes[0];
1503 btrfs_item_key_to_cpu(leaf, &found_key,
1504 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001505 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001506 found_key.type == BTRFS_EXTENT_DATA_KEY)
1507 path->slots[0]--;
1508 }
Nikolay Borisov3e024842019-08-21 10:42:03 +03001509 check_prev = false;
Yan Zheng80ff3852008-10-30 14:20:02 -04001510next_slot:
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001511 /* Go to next leaf if we have exhausted the current one */
Yan Zheng80ff3852008-10-30 14:20:02 -04001512 leaf = path->nodes[0];
1513 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1514 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001515 if (ret < 0) {
1516 if (cow_start != (u64)-1)
1517 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001518 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001519 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001520 if (ret > 0)
1521 break;
1522 leaf = path->nodes[0];
1523 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001524
Yan Zheng80ff3852008-10-30 14:20:02 -04001525 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001526
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001527 /* Didn't find anything for our INO */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001528 if (found_key.objectid > ino)
1529 break;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001530 /*
1531 * Keep searching until we find an EXTENT_ITEM or there are no
1532 * more extents for this inode
1533 */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001534 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1535 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1536 path->slots[0]++;
1537 goto next_slot;
1538 }
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001539
1540 /* Found key is not EXTENT_DATA_KEY or starts after req range */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001541 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001542 found_key.offset > end)
1543 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001544
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001545 /*
1546 * If the found extent starts after requested offset, then
1547 * adjust extent_end to be right before this extent begins
1548 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001549 if (found_key.offset > cur_offset) {
1550 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001551 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001552 goto out_check;
1553 }
Chris Masonc31f8832008-01-08 15:46:31 -05001554
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001555 /*
1556 * Found extent which begins before our range and potentially
1557 * intersect it
1558 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001559 fi = btrfs_item_ptr(leaf, path->slots[0],
1560 struct btrfs_file_extent_item);
1561 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001562
Josef Bacikcc95bef2013-04-04 14:31:27 -04001563 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001564 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1565 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001566 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001567 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001568 extent_end = found_key.offset +
1569 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001570 disk_num_bytes =
1571 btrfs_file_extent_disk_num_bytes(leaf, fi);
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001572 /*
Filipe Mananade7999a2019-12-11 09:01:40 +00001573 * If the extent we got ends before our current offset,
1574 * skip to the next extent.
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001575 */
Filipe Mananade7999a2019-12-11 09:01:40 +00001576 if (extent_end <= cur_offset) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001577 path->slots[0]++;
1578 goto next_slot;
1579 }
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001580 /* Skip holes */
Yan Zheng17d217f2008-12-12 10:03:38 -05001581 if (disk_bytenr == 0)
1582 goto out_check;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001583 /* Skip compressed/encrypted/encoded extents */
Yan Zheng80ff3852008-10-30 14:20:02 -04001584 if (btrfs_file_extent_compression(leaf, fi) ||
1585 btrfs_file_extent_encryption(leaf, fi) ||
1586 btrfs_file_extent_other_encoding(leaf, fi))
1587 goto out_check;
Ethan Lien78d42952018-05-17 14:58:29 +08001588 /*
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001589 * If extent is created before the last volume's snapshot
1590 * this implies the extent is shared, hence we can't do
1591 * nocow. This is the same check as in
1592 * btrfs_cross_ref_exist but without calling
1593 * btrfs_search_slot.
Ethan Lien78d42952018-05-17 14:58:29 +08001594 */
Nikolay Borisov3e024842019-08-21 10:42:03 +03001595 if (!freespace_inode &&
Lu Fengqi27a7ff52018-11-29 17:31:32 +08001596 btrfs_file_extent_generation(leaf, fi) <=
Ethan Lien78d42952018-05-17 14:58:29 +08001597 btrfs_root_last_snapshot(&root->root_item))
1598 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001599 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1600 goto out_check;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001601 /* If extent is RO, we must COW it */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001602 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001603 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001604 ret = btrfs_cross_ref_exist(root, ino,
1605 found_key.offset -
1606 extent_offset, disk_bytenr);
1607 if (ret) {
1608 /*
1609 * ret could be -EIO if the above fails to read
1610 * metadata.
1611 */
1612 if (ret < 0) {
1613 if (cow_start != (u64)-1)
1614 cur_offset = cow_start;
1615 goto error;
1616 }
1617
Nikolay Borisov3e024842019-08-21 10:42:03 +03001618 WARN_ON_ONCE(freespace_inode);
Yan Zheng17d217f2008-12-12 10:03:38 -05001619 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001620 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001621 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001622 disk_bytenr += cur_offset - found_key.offset;
1623 num_bytes = min(end + 1, extent_end) - cur_offset;
1624 /*
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001625 * If there are pending snapshots for this root, we
1626 * fall into common COW way
Wang Shilonge9894fd2014-03-27 11:12:25 +08001627 */
Nikolay Borisov3e024842019-08-21 10:42:03 +03001628 if (!freespace_inode && atomic_read(&root->snapshot_force_cow))
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001629 goto out_check;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001630 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001631 * force cow if csum exists in the range.
1632 * this ensure that csum for a given extent are
1633 * either valid or do not exist.
1634 */
Liu Bo58113752018-01-31 17:09:13 -07001635 ret = csum_exist_in_range(fs_info, disk_bytenr,
1636 num_bytes);
1637 if (ret) {
Liu Bo58113752018-01-31 17:09:13 -07001638 /*
1639 * ret could be -EIO if the above fails to read
1640 * metadata.
1641 */
1642 if (ret < 0) {
1643 if (cow_start != (u64)-1)
1644 cur_offset = cow_start;
1645 goto error;
1646 }
Nikolay Borisov3e024842019-08-21 10:42:03 +03001647 WARN_ON_ONCE(freespace_inode);
Yan Zheng17d217f2008-12-12 10:03:38 -05001648 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001649 }
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001650 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001651 goto out_check;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001652 nocow = true;
Yan Zheng80ff3852008-10-30 14:20:02 -04001653 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Nikolay Borisove8e21002019-08-22 17:25:23 +03001654 extent_end = found_key.offset + ram_bytes;
1655 extent_end = ALIGN(extent_end, fs_info->sectorsize);
Nikolay Borisov922f0512019-08-05 17:47:06 +03001656 /* Skip extents outside of our requested range */
1657 if (extent_end <= start) {
1658 path->slots[0]++;
1659 goto next_slot;
1660 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001661 } else {
Nikolay Borisove8e21002019-08-22 17:25:23 +03001662 /* If this triggers then we have a memory corruption */
Arnd Bergmann290342f2019-03-25 14:02:25 +01001663 BUG();
Yan Zheng80ff3852008-10-30 14:20:02 -04001664 }
1665out_check:
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001666 /*
1667 * If nocow is false then record the beginning of the range
1668 * that needs to be COWed
1669 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001670 if (!nocow) {
1671 if (cow_start == (u64)-1)
1672 cow_start = cur_offset;
1673 cur_offset = extent_end;
1674 if (cur_offset > end)
1675 break;
1676 path->slots[0]++;
1677 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001678 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001679
David Sterbab3b4aa72011-04-21 01:20:15 +02001680 btrfs_release_path(path);
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001681
1682 /*
1683 * COW range from cow_start to found_key.offset - 1. As the key
1684 * will contain the beginning of the first extent that can be
1685 * NOCOW, following one which needs to be COW'ed
1686 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001687 if (cow_start != (u64)-1) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001688 ret = fallback_to_cow(inode, locked_page,
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001689 cow_start, found_key.offset - 1,
Filipe Manana467dc472020-05-27 11:16:07 +01001690 page_started, nr_written);
Josef Bacik230ed392020-07-06 09:14:12 -04001691 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001692 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001693 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001694 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001695
Yan Zhengd899e052008-10-30 14:25:28 -04001696 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001697 u64 orig_start = found_key.offset - extent_offset;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001698 struct extent_map *em;
Liu Bo6f9994d2017-01-31 07:50:22 -08001699
Nikolay Borisov968322c2020-06-03 08:55:21 +03001700 em = create_io_em(inode, cur_offset, num_bytes,
Liu Bo6f9994d2017-01-31 07:50:22 -08001701 orig_start,
1702 disk_bytenr, /* block_start */
1703 num_bytes, /* block_len */
1704 disk_num_bytes, /* orig_block_len */
1705 ram_bytes, BTRFS_COMPRESS_NONE,
1706 BTRFS_ORDERED_PREALLOC);
1707 if (IS_ERR(em)) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001708 ret = PTR_ERR(em);
1709 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001710 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001711 free_extent_map(em);
Nikolay Borisov968322c2020-06-03 08:55:21 +03001712 ret = btrfs_add_ordered_extent(inode, cur_offset,
Nikolay Borisovbb55f622019-08-05 17:47:05 +03001713 disk_bytenr, num_bytes,
1714 num_bytes,
1715 BTRFS_ORDERED_PREALLOC);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001716 if (ret) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001717 btrfs_drop_extent_cache(inode, cur_offset,
Nikolay Borisov762bf092019-08-22 17:24:20 +03001718 cur_offset + num_bytes - 1,
1719 0);
1720 goto error;
1721 }
Yan Zhengd899e052008-10-30 14:25:28 -04001722 } else {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001723 ret = btrfs_add_ordered_extent(inode, cur_offset,
Nikolay Borisovbb55f622019-08-05 17:47:05 +03001724 disk_bytenr, num_bytes,
1725 num_bytes,
1726 BTRFS_ORDERED_NOCOW);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001727 if (ret)
1728 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001729 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001730
Filipe Mananaf78c4362016-05-09 13:15:41 +01001731 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001732 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001733 nocow = false;
Chris Mason771ed682008-11-06 22:02:51 -05001734
Yan, Zhengefa56462010-05-16 10:49:59 -04001735 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001736 BTRFS_DATA_RELOC_TREE_OBJECTID)
1737 /*
1738 * Error handled later, as we must prevent
1739 * extent_clear_unlock_delalloc() in error handler
1740 * from freeing metadata of created ordered extent.
1741 */
Nikolay Borisov968322c2020-06-03 08:55:21 +03001742 ret = btrfs_reloc_clone_csums(inode, cur_offset,
Yan, Zhengefa56462010-05-16 10:49:59 -04001743 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001744
Nikolay Borisov968322c2020-06-03 08:55:21 +03001745 extent_clear_unlock_delalloc(inode, cur_offset,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001746 cur_offset + num_bytes - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -04001747 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001748 EXTENT_DELALLOC |
1749 EXTENT_CLEAR_DATA_RESV,
1750 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1751
Yan Zheng80ff3852008-10-30 14:20:02 -04001752 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001753
1754 /*
1755 * btrfs_reloc_clone_csums() error, now we're OK to call error
1756 * handler, as metadata for created ordered extent will only
1757 * be freed by btrfs_finish_ordered_io().
1758 */
1759 if (ret)
1760 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001761 if (cur_offset > end)
1762 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001763 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001764 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001765
Robbie Ko506481b2018-10-30 18:04:04 +08001766 if (cur_offset <= end && cow_start == (u64)-1)
Yan Zheng80ff3852008-10-30 14:20:02 -04001767 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001768
Yan Zheng80ff3852008-10-30 14:20:02 -04001769 if (cow_start != (u64)-1) {
Robbie Ko506481b2018-10-30 18:04:04 +08001770 cur_offset = end;
Nikolay Borisov968322c2020-06-03 08:55:21 +03001771 ret = fallback_to_cow(inode, locked_page, cow_start, end,
1772 page_started, nr_written);
Josef Bacikd788a342013-10-25 16:55:08 -04001773 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001774 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001775 }
1776
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001777error:
Nikolay Borisov762bf092019-08-22 17:24:20 +03001778 if (nocow)
1779 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1780
Josef Bacik17ca04a2012-05-31 15:58:55 -04001781 if (ret && cur_offset < end)
Nikolay Borisov968322c2020-06-03 08:55:21 +03001782 extent_clear_unlock_delalloc(inode, cur_offset, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001783 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001784 EXTENT_DELALLOC | EXTENT_DEFRAG |
1785 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1786 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001787 PAGE_SET_WRITEBACK |
1788 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001789 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001790 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001791}
1792
Nikolay Borisov0c494222020-06-03 08:55:28 +03001793static inline int need_force_cow(struct btrfs_inode *inode, u64 start, u64 end)
Wang Shilong47059d92014-07-03 18:22:07 +08001794{
1795
Nikolay Borisov0c494222020-06-03 08:55:28 +03001796 if (!(inode->flags & BTRFS_INODE_NODATACOW) &&
1797 !(inode->flags & BTRFS_INODE_PREALLOC))
Wang Shilong47059d92014-07-03 18:22:07 +08001798 return 0;
1799
1800 /*
1801 * @defrag_bytes is a hint value, no spinlock held here,
1802 * if is not zero, it means the file is defragging.
1803 * Force cow if given extent needs to be defragged.
1804 */
Nikolay Borisov0c494222020-06-03 08:55:28 +03001805 if (inode->defrag_bytes &&
1806 test_range_bit(&inode->io_tree, start, end, EXTENT_DEFRAG, 0, NULL))
Wang Shilong47059d92014-07-03 18:22:07 +08001807 return 1;
1808
1809 return 0;
1810}
1811
Chris Masond352ac62008-09-29 15:18:18 -04001812/*
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001813 * Function to process delayed allocation (create CoW) for ranges which are
1814 * being touched for the first time.
Chris Masond352ac62008-09-29 15:18:18 -04001815 */
Nikolay Borisov98456b92020-06-03 08:55:29 +03001816int btrfs_run_delalloc_range(struct btrfs_inode *inode, struct page *locked_page,
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001817 u64 start, u64 end, int *page_started, unsigned long *nr_written,
1818 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001819{
Chris Masonbe20aa92007-12-17 20:14:01 -05001820 int ret;
Nikolay Borisov98456b92020-06-03 08:55:29 +03001821 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001822
Nikolay Borisov98456b92020-06-03 08:55:29 +03001823 if (inode->flags & BTRFS_INODE_NODATACOW && !force_cow) {
1824 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001825 page_started, 1, nr_written);
Nikolay Borisov98456b92020-06-03 08:55:29 +03001826 } else if (inode->flags & BTRFS_INODE_PREALLOC && !force_cow) {
1827 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001828 page_started, 0, nr_written);
Nikolay Borisov98456b92020-06-03 08:55:29 +03001829 } else if (!inode_can_compress(inode) ||
1830 !inode_need_compress(inode, start, end)) {
1831 ret = cow_file_range(inode, locked_page, start, end,
1832 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001833 } else {
Nikolay Borisov98456b92020-06-03 08:55:29 +03001834 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, &inode->runtime_flags);
1835 ret = cow_file_range_async(inode, wbc, locked_page, start, end,
David Sterbafac07d22019-10-29 18:28:57 +01001836 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001837 }
Qu Wenruo524272602017-03-08 10:25:52 +08001838 if (ret)
Nikolay Borisov98456b92020-06-03 08:55:29 +03001839 btrfs_cleanup_ordered_extents(inode, locked_page, start,
Nikolay Borisovd1051d62018-11-21 17:10:52 +02001840 end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001841 return ret;
1842}
1843
Nikolay Borisovabbb55f2018-11-01 14:09:53 +02001844void btrfs_split_delalloc_extent(struct inode *inode,
1845 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001846{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001847 u64 size;
1848
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001849 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001850 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001851 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001852
Josef Bacikdcab6a32015-02-11 15:08:59 -05001853 size = orig->end - orig->start + 1;
1854 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001855 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001856 u64 new_size;
1857
1858 /*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001859 * See the explanation in btrfs_merge_delalloc_extent, the same
Josef Bacikba117212015-03-13 15:01:24 -04001860 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001861 */
1862 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001863 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001864 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001865 num_extents += count_max_extents(new_size);
1866 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001867 return;
1868 }
1869
Josef Bacik9e0baf62011-07-15 15:16:44 +00001870 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001871 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001872 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001873}
1874
1875/*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001876 * Handle merged delayed allocation extents so we can keep track of new extents
1877 * that are just merged onto old extents, such as when we are doing sequential
1878 * writes, so we can properly account for the metadata space we'll need.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001879 */
Nikolay Borisov5c848192018-11-01 14:09:52 +02001880void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1881 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001882{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001883 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001884 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001885
Josef Bacik9ed74f22009-09-11 16:12:44 -04001886 /* not delalloc, ignore it */
1887 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001888 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001889
Josef Bacik8461a3d2015-03-13 15:12:08 -04001890 if (new->start > other->start)
1891 new_size = new->end - other->start + 1;
1892 else
1893 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001894
1895 /* we're not bigger than the max, unreserve the space and go */
1896 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1897 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001898 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001899 spin_unlock(&BTRFS_I(inode)->lock);
1900 return;
1901 }
1902
1903 /*
Josef Bacikba117212015-03-13 15:01:24 -04001904 * We have to add up either side to figure out how many extents were
1905 * accounted for before we merged into one big extent. If the number of
1906 * extents we accounted for is <= the amount we need for the new range
1907 * then we can return, otherwise drop. Think of it like this
1908 *
1909 * [ 4k][MAX_SIZE]
1910 *
1911 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1912 * need 2 outstanding extents, on one side we have 1 and the other side
1913 * we have 1 so they are == and we can return. But in this case
1914 *
1915 * [MAX_SIZE+4k][MAX_SIZE+4k]
1916 *
1917 * Each range on their own accounts for 2 extents, but merged together
1918 * they are only 3 extents worth of accounting, so we need to drop in
1919 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001920 */
Josef Bacikba117212015-03-13 15:01:24 -04001921 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001922 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001923 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001924 num_extents += count_max_extents(old_size);
1925 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001926 return;
1927
Josef Bacik9e0baf62011-07-15 15:16:44 +00001928 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001929 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001930 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001931}
1932
Miao Xieeb73c1b2013-05-15 07:48:22 +00001933static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1934 struct inode *inode)
1935{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001936 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1937
Miao Xieeb73c1b2013-05-15 07:48:22 +00001938 spin_lock(&root->delalloc_lock);
1939 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1940 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1941 &root->delalloc_inodes);
1942 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1943 &BTRFS_I(inode)->runtime_flags);
1944 root->nr_delalloc_inodes++;
1945 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001946 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001947 BUG_ON(!list_empty(&root->delalloc_root));
1948 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001949 &fs_info->delalloc_roots);
1950 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001951 }
1952 }
1953 spin_unlock(&root->delalloc_lock);
1954}
1955
Nikolay Borisov2b877332018-04-27 12:21:51 +03001956
1957void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1958 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001959{
David Sterba3ffbd682018-06-29 10:56:42 +02001960 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001961
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001962 if (!list_empty(&inode->delalloc_inodes)) {
1963 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001964 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001965 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001966 root->nr_delalloc_inodes--;
1967 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03001968 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001969 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001970 BUG_ON(list_empty(&root->delalloc_root));
1971 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001972 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001973 }
1974 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03001975}
1976
1977static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1978 struct btrfs_inode *inode)
1979{
1980 spin_lock(&root->delalloc_lock);
1981 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001982 spin_unlock(&root->delalloc_lock);
1983}
1984
Chris Masond352ac62008-09-29 15:18:18 -04001985/*
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001986 * Properly track delayed allocation bytes in the inode and to maintain the
1987 * list of inodes that have pending delalloc work to be done.
Chris Masond352ac62008-09-29 15:18:18 -04001988 */
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001989void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
1990 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001991{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001992 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1993
Wang Shilong47059d92014-07-03 18:22:07 +08001994 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1995 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001996 /*
1997 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001998 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001999 * bit, which is only set or cleared with irqs on
2000 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002001 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05002002 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002003 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04002004 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002005 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04002006
Josef Bacik8b62f872017-10-19 14:15:55 -04002007 spin_lock(&BTRFS_I(inode)->lock);
2008 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
2009 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00002010
Josef Bacik6a3891c2015-03-16 17:38:52 -04002011 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002012 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04002013 return;
2014
Nikolay Borisov104b4e52017-06-20 21:01:20 +03002015 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
2016 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00002017 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002018 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08002019 if (*bits & EXTENT_DEFRAG)
2020 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00002021 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00002022 &BTRFS_I(inode)->runtime_flags))
2023 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00002024 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05002025 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002026
2027 if (!(state->state & EXTENT_DELALLOC_NEW) &&
2028 (*bits & EXTENT_DELALLOC_NEW)) {
2029 spin_lock(&BTRFS_I(inode)->lock);
2030 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
2031 state->start;
2032 spin_unlock(&BTRFS_I(inode)->lock);
2033 }
Chris Mason291d6732008-01-29 15:55:23 -05002034}
2035
Chris Masond352ac62008-09-29 15:18:18 -04002036/*
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002037 * Once a range is no longer delalloc this function ensures that proper
2038 * accounting happens.
Chris Masond352ac62008-09-29 15:18:18 -04002039 */
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002040void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
2041 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05002042{
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002043 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
2044 struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08002045 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01002046 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08002047
Filipe Manana4a4b9642017-07-27 19:52:55 +01002048 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
2049 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002050 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01002051 spin_unlock(&inode->lock);
2052 }
Wang Shilong47059d92014-07-03 18:22:07 +08002053
Chris Mason75eff682008-12-15 15:54:40 -05002054 /*
2055 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00002056 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05002057 * bit, which is only set or cleared with irqs on
2058 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002059 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002060 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06002061 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04002062
Josef Bacik8b62f872017-10-19 14:15:55 -04002063 spin_lock(&inode->lock);
2064 btrfs_mod_outstanding_extents(inode, -num_extents);
2065 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002066
Josef Bacikb6d08f02013-09-27 14:57:43 -04002067 /*
2068 * We don't reserve metadata space for space cache inodes so we
Andrea Gelmini52042d82018-11-28 12:05:13 +01002069 * don't need to call delalloc_release_metadata if there is an
Josef Bacikb6d08f02013-09-27 14:57:43 -04002070 * error.
2071 */
Filipe Mananaa315e682017-03-06 23:04:20 +00002072 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002073 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08002074 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002075
Josef Bacik6a3891c2015-03-16 17:38:52 -04002076 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002077 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04002078 return;
2079
Filipe Mananaa315e682017-03-06 23:04:20 +00002080 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
2081 do_list && !(state->state & EXTENT_NORESERVE) &&
2082 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov9db5d512020-06-03 08:55:38 +03002083 btrfs_free_reserved_data_space_noquota(fs_info, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002084
Nikolay Borisov104b4e52017-06-20 21:01:20 +03002085 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
2086 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002087 spin_lock(&inode->lock);
2088 inode->delalloc_bytes -= len;
2089 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00002090 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02002091 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00002092 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002093 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05002094 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002095
2096 if ((state->state & EXTENT_DELALLOC_NEW) &&
2097 (*bits & EXTENT_DELALLOC_NEW)) {
2098 spin_lock(&inode->lock);
2099 ASSERT(inode->new_delalloc_bytes >= len);
2100 inode->new_delalloc_bytes -= len;
2101 spin_unlock(&inode->lock);
2102 }
Chris Mason291d6732008-01-29 15:55:23 -05002103}
2104
Chris Masond352ac62008-09-29 15:18:18 -04002105/*
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002106 * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit
2107 * in a chunk's stripe. This function ensures that bios do not span a
2108 * stripe/chunk
Liu Bo6f034ec2016-06-22 18:31:49 -07002109 *
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002110 * @page - The page we are about to add to the bio
2111 * @size - size we want to add to the bio
2112 * @bio - bio we want to ensure is smaller than a stripe
2113 * @bio_flags - flags of the bio
2114 *
2115 * return 1 if page cannot be added to the bio
2116 * return 0 if page can be added to the bio
Liu Bo6f034ec2016-06-22 18:31:49 -07002117 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04002118 */
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002119int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
2120 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04002121{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002122 struct inode *inode = page->mapping->host;
2123 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002124 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04002125 u64 length = 0;
2126 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04002127 int ret;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03002128 struct btrfs_io_geometry geom;
Chris Mason239b14b2008-03-24 15:02:07 -04002129
Chris Mason771ed682008-11-06 22:02:51 -05002130 if (bio_flags & EXTENT_BIO_COMPRESSED)
2131 return 0;
2132
Kent Overstreet4f024f32013-10-11 15:44:27 -07002133 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04002134 map_length = length;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03002135 ret = btrfs_get_io_geometry(fs_info, btrfs_op(bio), logical, map_length,
2136 &geom);
Liu Bo6f034ec2016-06-22 18:31:49 -07002137 if (ret < 0)
2138 return ret;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03002139
2140 if (geom.len < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04002141 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04002142 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04002143}
2144
Chris Masond352ac62008-09-29 15:18:18 -04002145/*
2146 * in order to insert checksums into the metadata in large chunks,
2147 * we wait until bio submission time. All the pages in the bio are
2148 * checksummed and sums are attached onto the ordered extent record.
2149 *
2150 * At IO completion time the cums attached on the ordered extent record
2151 * are inserted into the btree
2152 */
David Sterbad0ee3932018-03-08 14:35:48 +01002153static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002154 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05002155{
Josef Bacikc6100a42017-05-05 11:57:13 -04002156 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002157 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04002158
Nikolay Borisovbd242a02020-06-03 08:55:07 +03002159 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002160 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05002161 return 0;
2162}
Chris Masone0156402008-04-16 11:15:20 -04002163
Chris Mason4a69a412008-11-06 22:03:00 -05002164/*
Chris Masoncad321a2008-12-17 14:51:42 -05002165 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06002166 * on write, or reading the csums from the tree before a read.
2167 *
2168 * Rules about async/sync submit,
2169 * a) read: sync submit
2170 *
2171 * b) write without checksum: sync submit
2172 *
2173 * c) write with checksum:
2174 * c-1) if bio is issued by fsync: sync submit
2175 * (sync_writers != 0)
2176 *
2177 * c-2) if root is reloc root: sync submit
2178 * (only in case of buffered IO)
2179 *
2180 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04002181 */
Nikolay Borisova56b1c72019-04-10 17:24:39 +03002182static blk_status_t btrfs_submit_bio_hook(struct inode *inode, struct bio *bio,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002183 int mirror_num,
2184 unsigned long bio_flags)
2185
Chris Mason44b8bd72008-04-16 11:14:51 -04002186{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002187 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04002188 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302189 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002190 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002191 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05002192 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04002193
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002194 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05002195
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002196 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302197 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04002198
Mike Christie37226b22016-06-05 14:31:52 -05002199 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002200 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04002201 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002202 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04002203
Chris Masond20f7042008-12-08 16:58:54 -05002204 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01002205 ret = btrfs_submit_compressed_read(inode, bio,
2206 mirror_num,
2207 bio_flags);
2208 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002209 } else if (!skip_sum) {
Omar Sandovaldb72e472019-12-10 10:37:35 -08002210 ret = btrfs_lookup_bio_sums(inode, bio, (u64)-1, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002211 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002212 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002213 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04002214 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05002215 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002216 /* csum items have already been cloned */
2217 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2218 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002219 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04002220 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
Nikolay Borisove7681162019-04-10 17:24:41 +03002221 0, inode, btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01002222 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002223 } else if (!skip_sum) {
Nikolay Borisovbd242a02020-06-03 08:55:07 +03002224 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002225 if (ret)
2226 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002227 }
2228
Chris Mason0b86a832008-03-24 15:01:56 -04002229mapit:
Chris Mason08635ba2019-07-10 12:28:14 -07002230 ret = btrfs_map_bio(fs_info, bio, mirror_num);
Stefan Behrens61891922012-11-05 18:51:52 +01002231
2232out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002233 if (ret) {
2234 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002235 bio_endio(bio);
2236 }
Stefan Behrens61891922012-11-05 18:51:52 +01002237 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002238}
Chris Mason6885f302008-02-20 16:11:05 -05002239
Chris Masond352ac62008-09-29 15:18:18 -04002240/*
2241 * given a list of ordered sums record them in the inode. This happens
2242 * at IO completion time based on sums calculated at bio submission time.
2243 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002244static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002245 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002246{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002247 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002248 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002249
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002250 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002251 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002252 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002253 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002254 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002255 if (ret)
2256 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002257 }
2258 return 0;
2259}
2260
Nikolay Borisovc2566f22020-06-03 08:55:35 +03002261int btrfs_set_extent_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002262 unsigned int extra_bits,
Nikolay Borisov330a5822019-07-17 16:18:17 +03002263 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04002264{
Johannes Thumshirnfdb1e122018-12-05 15:23:04 +01002265 WARN_ON(PAGE_ALIGNED(end));
Nikolay Borisovc2566f22020-06-03 08:55:35 +03002266 return set_extent_delalloc(&inode->io_tree, start, end, extra_bits,
2267 cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002268}
2269
Chris Masond352ac62008-09-29 15:18:18 -04002270/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002271struct btrfs_writepage_fixup {
2272 struct page *page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002273 struct inode *inode;
Chris Mason247e7432008-07-17 12:53:51 -04002274 struct btrfs_work work;
2275};
2276
Christoph Hellwigb2950862008-12-02 09:54:17 -05002277static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002278{
2279 struct btrfs_writepage_fixup *fixup;
2280 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002281 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002282 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002283 struct page *page;
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002284 struct btrfs_inode *inode;
Chris Mason247e7432008-07-17 12:53:51 -04002285 u64 page_start;
2286 u64 page_end;
Chris Mason25f3c502020-01-21 11:51:42 -05002287 int ret = 0;
Josef Bacikf4b13632020-01-21 14:34:52 -05002288 bool free_delalloc_space = true;
Chris Mason247e7432008-07-17 12:53:51 -04002289
2290 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2291 page = fixup->page;
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002292 inode = BTRFS_I(fixup->inode);
Josef Bacikf4b13632020-01-21 14:34:52 -05002293 page_start = page_offset(page);
2294 page_end = page_offset(page) + PAGE_SIZE - 1;
2295
2296 /*
2297 * This is similar to page_mkwrite, we need to reserve the space before
2298 * we take the page lock.
2299 */
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002300 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
2301 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002302again:
Chris Mason247e7432008-07-17 12:53:51 -04002303 lock_page(page);
Chris Mason247e7432008-07-17 12:53:51 -04002304
Chris Mason25f3c502020-01-21 11:51:42 -05002305 /*
2306 * Before we queued this fixup, we took a reference on the page.
2307 * page->mapping may go NULL, but it shouldn't be moved to a different
2308 * address space.
2309 */
Josef Bacikf4b13632020-01-21 14:34:52 -05002310 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2311 /*
2312 * Unfortunately this is a little tricky, either
2313 *
2314 * 1) We got here and our page had already been dealt with and
2315 * we reserved our space, thus ret == 0, so we need to just
2316 * drop our space reservation and bail. This can happen the
2317 * first time we come into the fixup worker, or could happen
2318 * while waiting for the ordered extent.
2319 * 2) Our page was already dealt with, but we happened to get an
2320 * ENOSPC above from the btrfs_delalloc_reserve_space. In
2321 * this case we obviously don't have anything to release, but
2322 * because the page was already dealt with we don't want to
2323 * mark the page with an error, so make sure we're resetting
2324 * ret to 0. This is why we have this check _before_ the ret
2325 * check, because we do not want to have a surprise ENOSPC
2326 * when the page was already properly dealt with.
2327 */
2328 if (!ret) {
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002329 btrfs_delalloc_release_extents(inode, PAGE_SIZE);
2330 btrfs_delalloc_release_space(inode, data_reserved,
Josef Bacikf4b13632020-01-21 14:34:52 -05002331 page_start, PAGE_SIZE,
2332 true);
2333 }
2334 ret = 0;
Chris Mason25f3c502020-01-21 11:51:42 -05002335 goto out_page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002336 }
Chris Mason25f3c502020-01-21 11:51:42 -05002337
2338 /*
Josef Bacikf4b13632020-01-21 14:34:52 -05002339 * We can't mess with the page state unless it is locked, so now that
2340 * it is locked bail if we failed to make our space reservation.
Chris Mason25f3c502020-01-21 11:51:42 -05002341 */
Josef Bacikf4b13632020-01-21 14:34:52 -05002342 if (ret)
2343 goto out_page;
Chris Mason247e7432008-07-17 12:53:51 -04002344
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002345 lock_extent_bits(&inode->io_tree, page_start, page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002346
2347 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002348 if (PagePrivate2(page))
Josef Bacikf4b13632020-01-21 14:34:52 -05002349 goto out_reserved;
Chris Mason4a096752008-07-21 10:29:44 -04002350
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002351 ordered = btrfs_lookup_ordered_range(inode, page_start, PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002352 if (ordered) {
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002353 unlock_extent_cached(&inode->io_tree, page_start, page_end,
2354 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002355 unlock_page(page);
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002356 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002357 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002358 goto again;
2359 }
Chris Mason247e7432008-07-17 12:53:51 -04002360
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002361 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03002362 &cached_state);
Chris Mason25f3c502020-01-21 11:51:42 -05002363 if (ret)
Filipe Manana53687002019-10-09 17:43:59 +01002364 goto out_reserved;
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002365
Chris Mason25f3c502020-01-21 11:51:42 -05002366 /*
2367 * Everything went as planned, we're now the owner of a dirty page with
2368 * delayed allocation bits set and space reserved for our COW
2369 * destination.
2370 *
2371 * The page was dirty when we started, nothing should have cleaned it.
2372 */
2373 BUG_ON(!PageDirty(page));
Josef Bacikf4b13632020-01-21 14:34:52 -05002374 free_delalloc_space = false;
Filipe Manana53687002019-10-09 17:43:59 +01002375out_reserved:
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002376 btrfs_delalloc_release_extents(inode, PAGE_SIZE);
Josef Bacikf4b13632020-01-21 14:34:52 -05002377 if (free_delalloc_space)
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002378 btrfs_delalloc_release_space(inode, data_reserved, page_start,
2379 PAGE_SIZE, true);
2380 unlock_extent_cached(&inode->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002381 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002382out_page:
Chris Mason25f3c502020-01-21 11:51:42 -05002383 if (ret) {
2384 /*
2385 * We hit ENOSPC or other errors. Update the mapping and page
2386 * to reflect the errors and clean the page.
2387 */
2388 mapping_set_error(page->mapping, ret);
2389 end_extent_writepage(page, ret, page_start, page_end);
2390 clear_page_dirty_for_io(page);
2391 SetPageError(page);
2392 }
2393 ClearPageChecked(page);
Chris Mason247e7432008-07-17 12:53:51 -04002394 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002395 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002396 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002397 extent_changeset_free(data_reserved);
Josef Bacikf4b13632020-01-21 14:34:52 -05002398 /*
2399 * As a precaution, do a delayed iput in case it would be the last iput
2400 * that could need flushing space. Recursing back to fixup worker would
2401 * deadlock.
2402 */
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002403 btrfs_add_delayed_iput(&inode->vfs_inode);
Chris Mason247e7432008-07-17 12:53:51 -04002404}
2405
2406/*
2407 * There are a few paths in the higher layers of the kernel that directly
2408 * set the page dirty bit without asking the filesystem if it is a
2409 * good idea. This causes problems because we want to make sure COW
2410 * properly happens and the data=ordered rules are followed.
2411 *
Chris Masonc8b97812008-10-29 14:49:59 -04002412 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002413 * hasn't been properly setup for IO. We kick off an async process
2414 * to fix it up. The async helper will wait for ordered extents, set
2415 * the delalloc bit and make it safe to write the page.
2416 */
Nikolay Borisovd75855b2018-11-01 14:09:47 +02002417int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002418{
2419 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002420 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002421 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002422
Chris Mason8b62b722009-09-02 16:53:46 -04002423 /* this page is properly in the ordered list */
2424 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002425 return 0;
2426
Chris Mason25f3c502020-01-21 11:51:42 -05002427 /*
2428 * PageChecked is set below when we create a fixup worker for this page,
2429 * don't try to create another one if we're already PageChecked()
2430 *
2431 * The extent_io writepage code will redirty the page if we send back
2432 * EAGAIN.
2433 */
Chris Mason247e7432008-07-17 12:53:51 -04002434 if (PageChecked(page))
2435 return -EAGAIN;
2436
2437 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2438 if (!fixup)
2439 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002440
Josef Bacikf4b13632020-01-21 14:34:52 -05002441 /*
2442 * We are already holding a reference to this inode from
2443 * write_cache_pages. We need to hold it because the space reservation
2444 * takes place outside of the page lock, and we can't trust
2445 * page->mapping outside of the page lock.
2446 */
2447 ihold(inode);
Chris Mason247e7432008-07-17 12:53:51 -04002448 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002449 get_page(page);
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002450 btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002451 fixup->page = page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002452 fixup->inode = inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002453 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Chris Mason25f3c502020-01-21 11:51:42 -05002454
2455 return -EAGAIN;
Chris Mason247e7432008-07-17 12:53:51 -04002456}
2457
Yan Zhengd899e052008-10-30 14:25:28 -04002458static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
Nikolay Borisovc553f942020-06-03 08:55:19 +03002459 struct btrfs_inode *inode, u64 file_pos,
Qu Wenruo9729f102020-06-10 09:04:41 +08002460 struct btrfs_file_extent_item *stack_fi,
2461 u64 qgroup_reserved)
Yan Zhengd899e052008-10-30 14:25:28 -04002462{
Nikolay Borisovc553f942020-06-03 08:55:19 +03002463 struct btrfs_root *root = inode->root;
Yan Zhengd899e052008-10-30 14:25:28 -04002464 struct btrfs_path *path;
2465 struct extent_buffer *leaf;
2466 struct btrfs_key ins;
Qu Wenruo203f44c52020-06-10 09:04:40 +08002467 u64 disk_num_bytes = btrfs_stack_file_extent_disk_num_bytes(stack_fi);
2468 u64 disk_bytenr = btrfs_stack_file_extent_disk_bytenr(stack_fi);
2469 u64 num_bytes = btrfs_stack_file_extent_num_bytes(stack_fi);
2470 u64 ram_bytes = btrfs_stack_file_extent_ram_bytes(stack_fi);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002471 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002472 int ret;
2473
2474 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002475 if (!path)
2476 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002477
Chris Masona1ed8352009-09-11 12:27:37 -04002478 /*
2479 * we may be replacing one extent in the tree with another.
2480 * The new extent is pinned in the extent map, and we don't want
2481 * to drop it from the cache until it is completely in the btree.
2482 *
2483 * So, tell btrfs_drop_extents to leave this extent in the cache.
2484 * the caller is expected to unpin it and allow it to be merged
2485 * with the others.
2486 */
Nikolay Borisovc553f942020-06-03 08:55:19 +03002487 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002488 file_pos + num_bytes, NULL, 0,
Qu Wenruo203f44c52020-06-10 09:04:40 +08002489 1, sizeof(*stack_fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002490 if (ret)
2491 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002492
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002493 if (!extent_inserted) {
Nikolay Borisovc553f942020-06-03 08:55:19 +03002494 ins.objectid = btrfs_ino(inode);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002495 ins.offset = file_pos;
2496 ins.type = BTRFS_EXTENT_DATA_KEY;
2497
2498 path->leave_spinning = 1;
2499 ret = btrfs_insert_empty_item(trans, root, path, &ins,
Qu Wenruo203f44c52020-06-10 09:04:40 +08002500 sizeof(*stack_fi));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002501 if (ret)
2502 goto out;
2503 }
Yan Zhengd899e052008-10-30 14:25:28 -04002504 leaf = path->nodes[0];
Qu Wenruo203f44c52020-06-10 09:04:40 +08002505 btrfs_set_stack_file_extent_generation(stack_fi, trans->transid);
2506 write_extent_buffer(leaf, stack_fi,
2507 btrfs_item_ptr_offset(leaf, path->slots[0]),
2508 sizeof(struct btrfs_file_extent_item));
Chris Masonb9473432009-03-13 11:00:37 -04002509
Yan Zhengd899e052008-10-30 14:25:28 -04002510 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002511 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002512
Nikolay Borisovc553f942020-06-03 08:55:19 +03002513 inode_add_bytes(&inode->vfs_inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002514
2515 ins.objectid = disk_bytenr;
2516 ins.offset = disk_num_bytes;
2517 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002518
Nikolay Borisovc553f942020-06-03 08:55:19 +03002519 ret = btrfs_inode_set_file_extent_range(inode, file_pos, ram_bytes);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002520 if (ret)
2521 goto out;
2522
Nikolay Borisovc553f942020-06-03 08:55:19 +03002523 ret = btrfs_alloc_reserved_file_extent(trans, root, btrfs_ino(inode),
Qu Wenruo9729f102020-06-10 09:04:41 +08002524 file_pos, qgroup_reserved, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002525out:
Yan Zhengd899e052008-10-30 14:25:28 -04002526 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002527
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002528 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002529}
2530
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002531static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002532 u64 start, u64 len)
2533{
David Sterba32da53862019-10-29 19:20:18 +01002534 struct btrfs_block_group *cache;
Miao Xiee570fd22014-06-19 10:42:50 +08002535
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002536 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002537 ASSERT(cache);
2538
2539 spin_lock(&cache->lock);
2540 cache->delalloc_bytes -= len;
2541 spin_unlock(&cache->lock);
2542
2543 btrfs_put_block_group(cache);
2544}
2545
Qu Wenruo203f44c52020-06-10 09:04:40 +08002546static int insert_ordered_extent_file_extent(struct btrfs_trans_handle *trans,
2547 struct inode *inode,
2548 struct btrfs_ordered_extent *oe)
2549{
2550 struct btrfs_file_extent_item stack_fi;
2551 u64 logical_len;
2552
2553 memset(&stack_fi, 0, sizeof(stack_fi));
2554 btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_REG);
2555 btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, oe->disk_bytenr);
2556 btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi,
2557 oe->disk_num_bytes);
2558 if (test_bit(BTRFS_ORDERED_TRUNCATED, &oe->flags))
2559 logical_len = oe->truncated_len;
2560 else
2561 logical_len = oe->num_bytes;
2562 btrfs_set_stack_file_extent_num_bytes(&stack_fi, logical_len);
2563 btrfs_set_stack_file_extent_ram_bytes(&stack_fi, logical_len);
2564 btrfs_set_stack_file_extent_compression(&stack_fi, oe->compress_type);
2565 /* Encryption and other encoding is reserved and all 0 */
2566
Nikolay Borisovc553f942020-06-03 08:55:19 +03002567 return insert_reserved_file_extent(trans, BTRFS_I(inode), oe->file_offset,
Qu Wenruo7dbeaad2020-06-10 09:04:43 +08002568 &stack_fi, oe->qgroup_rsv);
Qu Wenruo203f44c52020-06-10 09:04:40 +08002569}
2570
2571/*
2572 * As ordered data IO finishes, this gets called so we can finish
Chris Masond352ac62008-09-29 15:18:18 -04002573 * an ordered extent if the range of bytes in the file it covers are
2574 * fully written.
2575 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002576static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002577{
Josef Bacik5fd02042012-05-02 14:00:54 -04002578 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002579 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002580 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002581 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002582 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002583 struct extent_state *cached_state = NULL;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002584 u64 start, end;
Li Zefan261507a02010-12-17 14:21:50 +08002585 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002586 int ret = 0;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002587 u64 logical_len = ordered_extent->num_bytes;
Nikolay Borisov8d510122019-10-08 20:43:06 +03002588 bool freespace_inode;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002589 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002590 bool range_locked = false;
2591 bool clear_new_delalloc_bytes = false;
Josef Bacik49940bd2018-10-11 15:54:21 -04002592 bool clear_reserved_extent = true;
Omar Sandoval313facc2019-12-02 17:34:18 -08002593 unsigned int clear_bits;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002594
Omar Sandovalbffe6332019-12-02 17:34:19 -08002595 start = ordered_extent->file_offset;
2596 end = start + ordered_extent->num_bytes - 1;
2597
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002598 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2599 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2600 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2601 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002602
Nikolay Borisov8d510122019-10-08 20:43:06 +03002603 freespace_inode = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002604
Josef Bacik5fd02042012-05-02 14:00:54 -04002605 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2606 ret = -EIO;
2607 goto out;
2608 }
2609
Omar Sandovalbffe6332019-12-02 17:34:19 -08002610 btrfs_free_io_failure_record(BTRFS_I(inode), start, end);
Miao Xief6124962014-09-12 18:44:04 +08002611
Josef Bacik77cef2e2013-08-29 13:57:21 -04002612 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2613 truncated = true;
2614 logical_len = ordered_extent->truncated_len;
2615 /* Truncated the entire extent, don't bother adding */
2616 if (!logical_len)
2617 goto out;
2618 }
2619
Yan, Zhengc2167752009-11-12 09:34:21 +00002620 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002621 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002622
Josef Bacikd923afe2020-01-17 09:02:23 -05002623 btrfs_inode_safe_disk_i_size_write(inode, 0);
Nikolay Borisov8d510122019-10-08 20:43:06 +03002624 if (freespace_inode)
2625 trans = btrfs_join_transaction_spacecache(root);
Josef Bacik6c760c02012-11-09 10:53:21 -05002626 else
2627 trans = btrfs_join_transaction(root);
2628 if (IS_ERR(trans)) {
2629 ret = PTR_ERR(trans);
2630 trans = NULL;
2631 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002632 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04002633 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002634 ret = btrfs_update_inode_fallback(trans, root, inode);
2635 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002636 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002637 goto out;
2638 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002639
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002640 range_locked = true;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002641 lock_extent_bits(io_tree, start, end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002642
Nikolay Borisov8d510122019-10-08 20:43:06 +03002643 if (freespace_inode)
2644 trans = btrfs_join_transaction_spacecache(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002645 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002646 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002647 if (IS_ERR(trans)) {
2648 ret = PTR_ERR(trans);
2649 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002650 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002651 }
Chris Masona79b7d42014-05-22 16:18:52 -07002652
Josef Bacik69fe2d72017-10-19 14:15:57 -04002653 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002654
Chris Masonc8b97812008-10-29 14:49:59 -04002655 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002656 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002657 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002658 BUG_ON(compress_type);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02002659 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04002660 ordered_extent->file_offset,
2661 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002662 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002663 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002664 BUG_ON(root == fs_info->tree_root);
Qu Wenruo203f44c52020-06-10 09:04:40 +08002665 ret = insert_ordered_extent_file_extent(trans, inode,
2666 ordered_extent);
Josef Bacik49940bd2018-10-11 15:54:21 -04002667 if (!ret) {
2668 clear_reserved_extent = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002669 btrfs_release_delalloc_bytes(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08002670 ordered_extent->disk_bytenr,
2671 ordered_extent->disk_num_bytes);
Josef Bacik49940bd2018-10-11 15:54:21 -04002672 }
Yan Zhengd899e052008-10-30 14:25:28 -04002673 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002674 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
Omar Sandovalbffe6332019-12-02 17:34:19 -08002675 ordered_extent->file_offset,
2676 ordered_extent->num_bytes, trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002677 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002678 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002679 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002680 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002681
Nikolay Borisovac01f262018-01-08 10:59:43 +02002682 ret = add_pending_csums(trans, inode, &ordered_extent->list);
2683 if (ret) {
2684 btrfs_abort_transaction(trans, ret);
2685 goto out;
2686 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002687
Josef Bacikd923afe2020-01-17 09:02:23 -05002688 btrfs_inode_safe_disk_i_size_write(inode, 0);
Josef Bacik6c760c02012-11-09 10:53:21 -05002689 ret = btrfs_update_inode_fallback(trans, root, inode);
2690 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002691 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002692 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002693 }
2694 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00002695out:
Omar Sandoval313facc2019-12-02 17:34:18 -08002696 clear_bits = EXTENT_DEFRAG;
2697 if (range_locked)
2698 clear_bits |= EXTENT_LOCKED;
2699 if (clear_new_delalloc_bytes)
2700 clear_bits |= EXTENT_DELALLOC_NEW;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002701 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits,
2702 (clear_bits & EXTENT_LOCKED) ? 1 : 0, 0,
Omar Sandoval313facc2019-12-02 17:34:18 -08002703 &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002704
Miao Xiea698d0752012-09-20 01:51:59 -06002705 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002706 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002707
Josef Bacik77cef2e2013-08-29 13:57:21 -04002708 if (ret || truncated) {
Omar Sandovalbffe6332019-12-02 17:34:19 -08002709 u64 unwritten_start = start;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002710
2711 if (truncated)
Omar Sandovalbffe6332019-12-02 17:34:19 -08002712 unwritten_start += logical_len;
2713 clear_extent_uptodate(io_tree, unwritten_start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04002714
2715 /* Drop the cache for the part of the extent we didn't write. */
Omar Sandovalbffe6332019-12-02 17:34:19 -08002716 btrfs_drop_extent_cache(BTRFS_I(inode), unwritten_start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04002717
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002718 /*
2719 * If the ordered extent had an IOERR or something else went
2720 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04002721 * back to the allocator. We only free the extent in the
2722 * truncated case if we didn't write out the extent at all.
Josef Bacik49940bd2018-10-11 15:54:21 -04002723 *
2724 * If we made it past insert_reserved_file_extent before we
2725 * errored out then we don't need to do this as the accounting
2726 * has already been done.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002727 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04002728 if ((ret || !logical_len) &&
Josef Bacik49940bd2018-10-11 15:54:21 -04002729 clear_reserved_extent &&
Josef Bacik77cef2e2013-08-29 13:57:21 -04002730 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02002731 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
2732 /*
2733 * Discard the range before returning it back to the
2734 * free space pool
2735 */
Dennis Zhou46b27f52019-12-13 16:22:11 -08002736 if (ret && btrfs_test_opt(fs_info, DISCARD_SYNC))
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02002737 btrfs_discard_extent(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08002738 ordered_extent->disk_bytenr,
2739 ordered_extent->disk_num_bytes,
2740 NULL);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002741 btrfs_free_reserved_extent(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08002742 ordered_extent->disk_bytenr,
2743 ordered_extent->disk_num_bytes, 1);
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02002744 }
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002745 }
2746
Josef Bacik5fd02042012-05-02 14:00:54 -04002747 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002748 * This needs to be done to make sure anybody waiting knows we are done
2749 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002750 */
2751 btrfs_remove_ordered_extent(inode, ordered_extent);
2752
Chris Masone6dcd2d2008-07-17 12:53:50 -04002753 /* once for us */
2754 btrfs_put_ordered_extent(ordered_extent);
2755 /* once for the tree */
2756 btrfs_put_ordered_extent(ordered_extent);
2757
Josef Bacik5fd02042012-05-02 14:00:54 -04002758 return ret;
2759}
2760
2761static void finish_ordered_fn(struct btrfs_work *work)
2762{
2763 struct btrfs_ordered_extent *ordered_extent;
2764 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2765 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002766}
2767
Nikolay Borisovc6297322018-11-08 10:18:08 +02002768void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start,
2769 u64 end, int uptodate)
Chris Mason211f90e2008-07-18 11:56:15 -04002770{
Josef Bacik5fd02042012-05-02 14:00:54 -04002771 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002772 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04002773 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08002774 struct btrfs_workqueue *wq;
Josef Bacik5fd02042012-05-02 14:00:54 -04002775
liubo1abe9b82011-03-24 11:18:59 +00002776 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2777
Chris Mason8b62b722009-09-02 16:53:46 -04002778 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002779 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2780 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01002781 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04002782
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002783 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002784 wq = fs_info->endio_freespace_worker;
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002785 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002786 wq = fs_info->endio_write_workers;
Josef Bacik5fd02042012-05-02 14:00:54 -04002787
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002788 btrfs_init_work(&ordered_extent->work, finish_ordered_fn, NULL, NULL);
Liu Bo9e0af232014-08-15 23:36:53 +08002789 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04002790}
2791
Omar Sandoval47df7762020-04-16 14:46:17 -07002792static int check_data_csum(struct inode *inode, struct btrfs_io_bio *io_bio,
2793 int icsum, struct page *page, int pgoff, u64 start,
2794 size_t len)
Miao Xiedc380ae2014-09-12 18:43:55 +08002795{
Johannes Thumshirnd5178572019-06-03 16:58:57 +02002796 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2797 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Miao Xiedc380ae2014-09-12 18:43:55 +08002798 char *kaddr;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02002799 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2800 u8 *csum_expected;
2801 u8 csum[BTRFS_CSUM_SIZE];
Miao Xiedc380ae2014-09-12 18:43:55 +08002802
Johannes Thumshirnd5178572019-06-03 16:58:57 +02002803 csum_expected = ((u8 *)io_bio->csum) + icsum * csum_size;
Miao Xiedc380ae2014-09-12 18:43:55 +08002804
2805 kaddr = kmap_atomic(page);
Johannes Thumshirnd5178572019-06-03 16:58:57 +02002806 shash->tfm = fs_info->csum_shash;
2807
Eric Biggersfd080012020-04-30 23:51:59 -07002808 crypto_shash_digest(shash, kaddr + pgoff, len, csum);
Johannes Thumshirnd5178572019-06-03 16:58:57 +02002809
2810 if (memcmp(csum, csum_expected, csum_size))
Miao Xiedc380ae2014-09-12 18:43:55 +08002811 goto zeroit;
2812
2813 kunmap_atomic(kaddr);
2814 return 0;
2815zeroit:
Johannes Thumshirnea41d6b2019-06-03 16:58:58 +02002816 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
2817 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08002818 memset(kaddr + pgoff, 1, len);
2819 flush_dcache_page(page);
2820 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08002821 return -EIO;
2822}
2823
Chris Masond352ac62008-09-29 15:18:18 -04002824/*
Chris Masond352ac62008-09-29 15:18:18 -04002825 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002826 * if there's a match, we allow the bio to finish. If not, the code in
2827 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002828 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002829static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
2830 u64 phy_offset, struct page *page,
2831 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002832{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002833 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04002834 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002835 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04002836 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002837
Chris Masond20f7042008-12-08 16:58:54 -05002838 if (PageChecked(page)) {
2839 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08002840 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05002841 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002842
2843 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08002844 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05002845
Yan Zheng17d217f2008-12-12 10:03:38 -05002846 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002847 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02002848 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05002849 return 0;
2850 }
2851
Miao Xiefacc8a222013-07-25 19:22:34 +08002852 phy_offset >>= inode->i_sb->s_blocksize_bits;
Omar Sandoval47df7762020-04-16 14:46:17 -07002853 return check_data_csum(inode, io_bio, phy_offset, page, offset, start,
2854 (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04002855}
Chris Masonb888db22007-08-27 16:49:44 -04002856
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02002857/*
2858 * btrfs_add_delayed_iput - perform a delayed iput on @inode
2859 *
2860 * @inode: The inode we want to perform iput on
2861 *
2862 * This function uses the generic vfs_inode::i_count to track whether we should
2863 * just decrement it (in case it's > 1) or if this is the last iput then link
2864 * the inode to the delayed iput machinery. Delayed iputs are processed at
2865 * transaction commit time/superblock commit/cleaner kthread.
2866 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002867void btrfs_add_delayed_iput(struct inode *inode)
2868{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002869 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01002870 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002871
2872 if (atomic_add_unless(&inode->i_count, -1, 1))
2873 return;
2874
Josef Bacik034f7842018-12-03 11:06:52 -05002875 atomic_inc(&fs_info->nr_delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002876 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02002877 ASSERT(list_empty(&binode->delayed_iput));
2878 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002879 spin_unlock(&fs_info->delayed_iput_lock);
Josef Bacikfd340d02019-01-11 10:21:02 -05002880 if (!test_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags))
2881 wake_up_process(fs_info->cleaner_kthread);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002882}
2883
Josef Bacik63611e72019-06-18 10:59:18 -04002884static void run_delayed_iput_locked(struct btrfs_fs_info *fs_info,
2885 struct btrfs_inode *inode)
2886{
2887 list_del_init(&inode->delayed_iput);
2888 spin_unlock(&fs_info->delayed_iput_lock);
2889 iput(&inode->vfs_inode);
2890 if (atomic_dec_and_test(&fs_info->nr_delayed_iputs))
2891 wake_up(&fs_info->delayed_iputs_wait);
2892 spin_lock(&fs_info->delayed_iput_lock);
2893}
2894
2895static void btrfs_run_delayed_iput(struct btrfs_fs_info *fs_info,
2896 struct btrfs_inode *inode)
2897{
2898 if (!list_empty(&inode->delayed_iput)) {
2899 spin_lock(&fs_info->delayed_iput_lock);
2900 if (!list_empty(&inode->delayed_iput))
2901 run_delayed_iput_locked(fs_info, inode);
2902 spin_unlock(&fs_info->delayed_iput_lock);
2903 }
2904}
2905
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002906void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002907{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002908
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002909 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01002910 while (!list_empty(&fs_info->delayed_iputs)) {
2911 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002912
David Sterba8089fe62015-11-19 14:15:51 +01002913 inode = list_first_entry(&fs_info->delayed_iputs,
2914 struct btrfs_inode, delayed_iput);
Josef Bacik63611e72019-06-18 10:59:18 -04002915 run_delayed_iput_locked(fs_info, inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002916 }
David Sterba8089fe62015-11-19 14:15:51 +01002917 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002918}
2919
Josef Bacik034f7842018-12-03 11:06:52 -05002920/**
2921 * btrfs_wait_on_delayed_iputs - wait on the delayed iputs to be done running
2922 * @fs_info - the fs_info for this fs
2923 * @return - EINTR if we were killed, 0 if nothing's pending
2924 *
2925 * This will wait on any delayed iputs that are currently running with KILLABLE
2926 * set. Once they are all done running we will return, unless we are killed in
2927 * which case we return EINTR. This helps in user operations like fallocate etc
2928 * that might get blocked on the iputs.
2929 */
2930int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info)
2931{
2932 int ret = wait_event_killable(fs_info->delayed_iputs_wait,
2933 atomic_read(&fs_info->nr_delayed_iputs) == 0);
2934 if (ret)
2935 return -EINTR;
2936 return 0;
2937}
2938
Yan, Zhengd68fc572010-05-16 10:49:58 -04002939/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07002940 * This creates an orphan entry for the given inode in case something goes wrong
2941 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04002942 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02002943int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07002944 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04002945{
Yan, Zhengd68fc572010-05-16 10:49:58 -04002946 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002947
Omar Sandoval27919062018-05-11 13:13:37 -07002948 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
2949 if (ret && ret != -EEXIST) {
2950 btrfs_abort_transaction(trans, ret);
2951 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002952 }
2953
Yan, Zhengd68fc572010-05-16 10:49:58 -04002954 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002955}
2956
2957/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07002958 * We have done the delete so we can go ahead and remove the orphan item for
2959 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04002960 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00002961static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02002962 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04002963{
Omar Sandoval27919062018-05-11 13:13:37 -07002964 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002965}
2966
2967/*
2968 * this cleans up any orphans that may be left on the list from the last use
2969 * of this root.
2970 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002971int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002972{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002973 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04002974 struct btrfs_path *path;
2975 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002976 struct btrfs_key key, found_key;
2977 struct btrfs_trans_handle *trans;
2978 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002979 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07002980 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002981
Yan, Zhengd68fc572010-05-16 10:49:58 -04002982 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002983 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002984
2985 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002986 if (!path) {
2987 ret = -ENOMEM;
2988 goto out;
2989 }
David Sterbae4058b52015-11-27 16:31:35 +01002990 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04002991
2992 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02002993 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04002994 key.offset = (u64)-1;
2995
Josef Bacik7b128762008-07-24 12:17:14 -04002996 while (1) {
2997 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002998 if (ret < 0)
2999 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003000
3001 /*
3002 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003003 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003004 * find the key and see if we have stuff that matches
3005 */
3006 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003007 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003008 if (path->slots[0] == 0)
3009 break;
3010 path->slots[0]--;
3011 }
3012
3013 /* pull out the item */
3014 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003015 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3016
3017 /* make sure the item matches what we want */
3018 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3019 break;
David Sterba962a2982014-06-04 18:41:45 +02003020 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003021 break;
3022
3023 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003024 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003025
3026 /*
3027 * this is where we are basically btrfs_lookup, without the
3028 * crossing root thing. we store the inode number in the
3029 * offset of the orphan item.
3030 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003031
3032 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003033 btrfs_err(fs_info,
3034 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003035 ret = -EINVAL;
3036 goto out;
3037 }
3038
3039 last_objectid = found_key.offset;
3040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003041 found_key.objectid = found_key.offset;
3042 found_key.type = BTRFS_INODE_ITEM_KEY;
3043 found_key.offset = 0;
David Sterba0202e832020-05-15 19:35:59 +02003044 inode = btrfs_iget(fs_info->sb, last_objectid, root);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303045 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003046 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003047 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003048
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003049 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003050 struct btrfs_root *dead_root;
3051 struct btrfs_fs_info *fs_info = root->fs_info;
3052 int is_dead_root = 0;
3053
3054 /*
3055 * this is an orphan in the tree root. Currently these
3056 * could come from 2 sources:
3057 * a) a snapshot deletion in progress
3058 * b) a free space cache inode
3059 * We need to distinguish those two, as the snapshot
3060 * orphan must not get deleted.
3061 * find_dead_roots already ran before us, so if this
3062 * is a snapshot deletion, we should find the root
Robbie Koa619b3c2020-05-07 10:54:40 +08003063 * in the fs_roots radix tree.
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003064 */
Robbie Koa619b3c2020-05-07 10:54:40 +08003065
3066 spin_lock(&fs_info->fs_roots_radix_lock);
3067 dead_root = radix_tree_lookup(&fs_info->fs_roots_radix,
3068 (unsigned long)found_key.objectid);
3069 if (dead_root && btrfs_root_refs(&dead_root->root_item) == 0)
3070 is_dead_root = 1;
3071 spin_unlock(&fs_info->fs_roots_radix_lock);
3072
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003073 if (is_dead_root) {
3074 /* prevent this orphan from being found again */
3075 key.offset = found_key.objectid - 1;
3076 continue;
3077 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003078
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003079 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003080
Josef Bacika8c9e572011-09-21 16:55:59 -04003081 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003082 * If we have an inode with links, there are a couple of
3083 * possibilities. Old kernels (before v3.12) used to create an
3084 * orphan item for truncate indicating that there were possibly
3085 * extent items past i_size that needed to be deleted. In v3.12,
3086 * truncate was changed to update i_size in sync with the extent
3087 * items, but the (useless) orphan item was still created. Since
3088 * v4.18, we don't create the orphan item for truncate at all.
3089 *
3090 * So, this item could mean that we need to do a truncate, but
3091 * only if this filesystem was last used on a pre-v3.12 kernel
3092 * and was not cleanly unmounted. The odds of that are quite
3093 * slim, and it's a pain to do the truncate now, so just delete
3094 * the orphan item.
3095 *
3096 * It's also possible that this orphan item was supposed to be
3097 * deleted but wasn't. The inode number may have been reused,
3098 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003099 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003100 if (ret == -ENOENT || inode->i_nlink) {
3101 if (!ret)
3102 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003103 trans = btrfs_start_transaction(root, 1);
3104 if (IS_ERR(trans)) {
3105 ret = PTR_ERR(trans);
3106 goto out;
3107 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003108 btrfs_debug(fs_info, "auto deleting %Lu",
3109 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003110 ret = btrfs_del_orphan_item(trans, root,
3111 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003112 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003113 if (ret)
3114 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003115 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003116 }
Josef Bacik7b128762008-07-24 12:17:14 -04003117
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003118 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003119
3120 /* this will do delete_inode and everything for us */
3121 iput(inode);
3122 }
Miao Xie3254c872011-11-10 20:45:05 -05003123 /* release the path since we're done with it */
3124 btrfs_release_path(path);
3125
Yan, Zhengd68fc572010-05-16 10:49:58 -04003126 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3127
Omar Sandovala575cee2018-05-11 13:13:38 -07003128 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003129 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003130 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003131 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003132 }
Josef Bacik7b128762008-07-24 12:17:14 -04003133
3134 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003135 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003136
3137out:
3138 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003139 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003140 btrfs_free_path(path);
3141 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003142}
3143
Chris Masond352ac62008-09-29 15:18:18 -04003144/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003145 * very simple check to peek ahead in the leaf looking for xattrs. If we
3146 * don't find any xattrs, we know there can't be any acls.
3147 *
3148 * slot is the slot the inode is in, objectid is the objectid of the inode
3149 */
3150static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003151 int slot, u64 objectid,
3152 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003153{
3154 u32 nritems = btrfs_header_nritems(leaf);
3155 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003156 static u64 xattr_access = 0;
3157 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003158 int scanned = 0;
3159
Josef Bacikf23b5a52013-06-19 10:16:26 -04003160 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003161 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3162 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3163 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3164 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003165 }
3166
Chris Mason46a53cc2009-04-27 11:47:50 -04003167 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003168 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003169 while (slot < nritems) {
3170 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3171
3172 /* we found a different objectid, there must not be acls */
3173 if (found_key.objectid != objectid)
3174 return 0;
3175
3176 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003177 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003178 if (*first_xattr_slot == -1)
3179 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003180 if (found_key.offset == xattr_access ||
3181 found_key.offset == xattr_default)
3182 return 1;
3183 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003184
3185 /*
3186 * we found a key greater than an xattr key, there can't
3187 * be any acls later on
3188 */
3189 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3190 return 0;
3191
3192 slot++;
3193 scanned++;
3194
3195 /*
3196 * it goes inode, inode backrefs, xattrs, extents,
3197 * so if there are a ton of hard links to an inode there can
3198 * be a lot of backrefs. Don't waste time searching too hard,
3199 * this is just an optimization
3200 */
3201 if (scanned >= 8)
3202 break;
3203 }
3204 /* we hit the end of the leaf before we found an xattr or
3205 * something larger than an xattr. We have to assume the inode
3206 * has acls
3207 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003208 if (*first_xattr_slot == -1)
3209 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003210 return 1;
3211}
3212
3213/*
Chris Masond352ac62008-09-29 15:18:18 -04003214 * read an inode from the btree into the in-memory inode
3215 */
Filipe Manana4222ea72018-10-24 10:13:03 +01003216static int btrfs_read_locked_inode(struct inode *inode,
3217 struct btrfs_path *in_path)
Chris Mason39279cc2007-06-12 06:35:45 -04003218{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003219 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Filipe Manana4222ea72018-10-24 10:13:03 +01003220 struct btrfs_path *path = in_path;
Chris Mason5f39d392007-10-15 16:14:19 -04003221 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003222 struct btrfs_inode_item *inode_item;
3223 struct btrfs_root *root = BTRFS_I(inode)->root;
3224 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003225 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003226 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003227 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003228 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003229 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003230 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003231
3232 ret = btrfs_fill_inode(inode, &rdev);
3233 if (!ret)
3234 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003235
Filipe Manana4222ea72018-10-24 10:13:03 +01003236 if (!path) {
3237 path = btrfs_alloc_path();
3238 if (!path)
3239 return -ENOMEM;
3240 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003241
Chris Mason39279cc2007-06-12 06:35:45 -04003242 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003243
Chris Mason39279cc2007-06-12 06:35:45 -04003244 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003245 if (ret) {
Filipe Manana4222ea72018-10-24 10:13:03 +01003246 if (path != in_path)
3247 btrfs_free_path(path);
Al Virof5b3a412018-07-29 23:04:51 +01003248 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003249 }
Chris Mason39279cc2007-06-12 06:35:45 -04003250
Chris Mason5f39d392007-10-15 16:14:19 -04003251 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003252
3253 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003254 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003255
Chris Mason5f39d392007-10-15 16:14:19 -04003256 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3257 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003258 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003259 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003260 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3261 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003262 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Josef Bacik41a2ee72020-01-17 09:02:21 -05003263 btrfs_inode_set_file_extent_range(BTRFS_I(inode), 0,
3264 round_up(i_size_read(inode), fs_info->sectorsize));
Chris Mason5f39d392007-10-15 16:14:19 -04003265
David Sterbaa937b972014-12-12 17:39:12 +01003266 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3267 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003268
David Sterbaa937b972014-12-12 17:39:12 +01003269 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3270 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003271
David Sterbaa937b972014-12-12 17:39:12 +01003272 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3273 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003274
chandan r9cc97d62012-07-04 12:48:07 +05303275 BTRFS_I(inode)->i_otime.tv_sec =
3276 btrfs_timespec_sec(leaf, &inode_item->otime);
3277 BTRFS_I(inode)->i_otime.tv_nsec =
3278 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003279
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003280 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003281 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003282 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3283
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003284 inode_set_iversion_queried(inode,
3285 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003286 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003287 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003288 rdev = btrfs_inode_rdev(leaf, inode_item);
3289
Josef Bacikaec74772008-07-24 12:12:38 -04003290 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003291 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003292
3293cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003294 /*
3295 * If we were modified in the current generation and evicted from memory
3296 * and then re-read we need to do a full sync since we don't have any
3297 * idea about which extents were modified before we were evicted from
3298 * cache.
3299 *
3300 * This is required for both inode re-read from disk and delayed inode
3301 * in delayed_nodes_tree.
3302 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003303 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003304 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3305 &BTRFS_I(inode)->runtime_flags);
3306
Filipe Mananabde6c242015-07-24 00:00:19 +01003307 /*
3308 * We don't persist the id of the transaction where an unlink operation
3309 * against the inode was last made. So here we assume the inode might
3310 * have been evicted, and therefore the exact value of last_unlink_trans
3311 * lost, and set it to last_trans to avoid metadata inconsistencies
3312 * between the inode and its parent if the inode is fsync'ed and the log
3313 * replayed. For example, in the scenario:
3314 *
3315 * touch mydir/foo
3316 * ln mydir/foo mydir/bar
3317 * sync
3318 * unlink mydir/bar
3319 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3320 * xfs_io -c fsync mydir/foo
3321 * <power failure>
3322 * mount fs, triggers fsync log replay
3323 *
3324 * We must make sure that when we fsync our inode foo we also log its
3325 * parent inode, otherwise after log replay the parent still has the
3326 * dentry with the "bar" name but our inode foo has a link count of 1
3327 * and doesn't have an inode ref with the name "bar" anymore.
3328 *
3329 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003330 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003331 * transaction commits on fsync if our inode is a directory, or if our
3332 * inode is not a directory, logging its parent unnecessarily.
3333 */
3334 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3335
Miao Xie67de1172013-12-26 13:07:06 +08003336 path->slots[0]++;
3337 if (inode->i_nlink != 1 ||
3338 path->slots[0] >= btrfs_header_nritems(leaf))
3339 goto cache_acl;
3340
3341 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003342 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003343 goto cache_acl;
3344
3345 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3346 if (location.type == BTRFS_INODE_REF_KEY) {
3347 struct btrfs_inode_ref *ref;
3348
3349 ref = (struct btrfs_inode_ref *)ptr;
3350 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3351 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3352 struct btrfs_inode_extref *extref;
3353
3354 extref = (struct btrfs_inode_extref *)ptr;
3355 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3356 extref);
3357 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003358cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003359 /*
3360 * try to precache a NULL acl entry for files that don't have
3361 * any xattrs or acls
3362 */
Li Zefan33345d012011-04-20 10:31:50 +08003363 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003364 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003365 if (first_xattr_slot != -1) {
3366 path->slots[0] = first_xattr_slot;
3367 ret = btrfs_load_inode_props(inode, path);
3368 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003369 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003370 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003371 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003372 root->root_key.objectid, ret);
3373 }
Filipe Manana4222ea72018-10-24 10:13:03 +01003374 if (path != in_path)
3375 btrfs_free_path(path);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003376
Al Viro72c04902009-06-24 16:58:48 -04003377 if (!maybe_acls)
3378 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003379
Chris Mason39279cc2007-06-12 06:35:45 -04003380 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003381 case S_IFREG:
3382 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003383 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003384 inode->i_fop = &btrfs_file_operations;
3385 inode->i_op = &btrfs_file_inode_operations;
3386 break;
3387 case S_IFDIR:
3388 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003389 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003390 break;
3391 case S_IFLNK:
3392 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003393 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003394 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003395 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003396 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003397 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003398 init_special_inode(inode, inode->i_mode, rdev);
3399 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003400 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003401
David Sterba7b6a2212018-03-26 18:40:21 +02003402 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003403 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003404}
3405
Chris Masond352ac62008-09-29 15:18:18 -04003406/*
3407 * given a leaf and an inode, copy the inode fields into the leaf
3408 */
Chris Masone02119d2008-09-05 16:13:11 -04003409static void fill_inode_item(struct btrfs_trans_handle *trans,
3410 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003411 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003412 struct inode *inode)
3413{
Liu Bo51fab692012-12-27 09:01:21 +00003414 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003415
David Sterbac82f8232019-08-09 17:48:21 +02003416 btrfs_init_map_token(&token, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003417
David Sterbacc4c13d2020-04-29 02:15:56 +02003418 btrfs_set_token_inode_uid(&token, item, i_uid_read(inode));
3419 btrfs_set_token_inode_gid(&token, item, i_gid_read(inode));
3420 btrfs_set_token_inode_size(&token, item, BTRFS_I(inode)->disk_i_size);
3421 btrfs_set_token_inode_mode(&token, item, inode->i_mode);
3422 btrfs_set_token_inode_nlink(&token, item, inode->i_nlink);
Chris Mason5f39d392007-10-15 16:14:19 -04003423
David Sterbacc4c13d2020-04-29 02:15:56 +02003424 btrfs_set_token_timespec_sec(&token, &item->atime,
3425 inode->i_atime.tv_sec);
3426 btrfs_set_token_timespec_nsec(&token, &item->atime,
3427 inode->i_atime.tv_nsec);
Chris Mason5f39d392007-10-15 16:14:19 -04003428
David Sterbacc4c13d2020-04-29 02:15:56 +02003429 btrfs_set_token_timespec_sec(&token, &item->mtime,
3430 inode->i_mtime.tv_sec);
3431 btrfs_set_token_timespec_nsec(&token, &item->mtime,
3432 inode->i_mtime.tv_nsec);
Liu Bo51fab692012-12-27 09:01:21 +00003433
David Sterbacc4c13d2020-04-29 02:15:56 +02003434 btrfs_set_token_timespec_sec(&token, &item->ctime,
3435 inode->i_ctime.tv_sec);
3436 btrfs_set_token_timespec_nsec(&token, &item->ctime,
3437 inode->i_ctime.tv_nsec);
Liu Bo51fab692012-12-27 09:01:21 +00003438
David Sterbacc4c13d2020-04-29 02:15:56 +02003439 btrfs_set_token_timespec_sec(&token, &item->otime,
3440 BTRFS_I(inode)->i_otime.tv_sec);
3441 btrfs_set_token_timespec_nsec(&token, &item->otime,
3442 BTRFS_I(inode)->i_otime.tv_nsec);
chandan r9cc97d62012-07-04 12:48:07 +05303443
David Sterbacc4c13d2020-04-29 02:15:56 +02003444 btrfs_set_token_inode_nbytes(&token, item, inode_get_bytes(inode));
3445 btrfs_set_token_inode_generation(&token, item,
3446 BTRFS_I(inode)->generation);
3447 btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode));
3448 btrfs_set_token_inode_transid(&token, item, trans->transid);
3449 btrfs_set_token_inode_rdev(&token, item, inode->i_rdev);
3450 btrfs_set_token_inode_flags(&token, item, BTRFS_I(inode)->flags);
3451 btrfs_set_token_inode_block_group(&token, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003452}
3453
Chris Masond352ac62008-09-29 15:18:18 -04003454/*
3455 * copy everything in the in-memory inode into the btree.
3456 */
Chris Mason21151332011-11-10 20:39:08 -05003457static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003458 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003459{
3460 struct btrfs_inode_item *inode_item;
3461 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003462 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003463 int ret;
3464
3465 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003466 if (!path)
3467 return -ENOMEM;
3468
Chris Masonb9473432009-03-13 11:00:37 -04003469 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003470 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3471 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003472 if (ret) {
3473 if (ret > 0)
3474 ret = -ENOENT;
3475 goto failed;
3476 }
3477
Chris Mason5f39d392007-10-15 16:14:19 -04003478 leaf = path->nodes[0];
3479 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003480 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003481
Chris Masone02119d2008-09-05 16:13:11 -04003482 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003483 btrfs_mark_buffer_dirty(leaf);
Nikolay Borisovd9094412020-06-05 10:41:13 +03003484 btrfs_set_inode_last_trans(trans, BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04003485 ret = 0;
3486failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003487 btrfs_free_path(path);
3488 return ret;
3489}
3490
Chris Masond352ac62008-09-29 15:18:18 -04003491/*
Chris Mason21151332011-11-10 20:39:08 -05003492 * copy everything in the in-memory inode into the btree.
3493 */
3494noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3495 struct btrfs_root *root, struct inode *inode)
3496{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003497 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003498 int ret;
3499
3500 /*
3501 * If the inode is a free space inode, we can deadlock during commit
3502 * if we put it into the delayed code.
3503 *
3504 * The data relocation inode should also be directly updated
3505 * without delay
3506 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003507 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003508 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003509 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003510 btrfs_update_root_times(trans, root);
3511
Chris Mason21151332011-11-10 20:39:08 -05003512 ret = btrfs_delayed_update_inode(trans, root, inode);
3513 if (!ret)
Nikolay Borisovd9094412020-06-05 10:41:13 +03003514 btrfs_set_inode_last_trans(trans, BTRFS_I(inode));
Chris Mason21151332011-11-10 20:39:08 -05003515 return ret;
3516 }
3517
3518 return btrfs_update_inode_item(trans, root, inode);
3519}
3520
Josef Bacikbe6aef62012-10-22 15:43:12 -04003521noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3522 struct btrfs_root *root,
3523 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003524{
3525 int ret;
3526
3527 ret = btrfs_update_inode(trans, root, inode);
3528 if (ret == -ENOSPC)
3529 return btrfs_update_inode_item(trans, root, inode);
3530 return ret;
3531}
3532
3533/*
Chris Masond352ac62008-09-29 15:18:18 -04003534 * unlink helper that gets used here in inode.c and in the tree logging
3535 * recovery code. It remove a link in a directory with a given name, and
3536 * also drops the back refs in the inode to the directory
3537 */
Al Viro92986792011-03-04 17:14:37 +00003538static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3539 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003540 struct btrfs_inode *dir,
3541 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003542 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003543{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003544 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003545 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003546 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003547 struct btrfs_dir_item *di;
Josef Bacikaec74772008-07-24 12:12:38 -04003548 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003549 u64 ino = btrfs_ino(inode);
3550 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003551
3552 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003553 if (!path) {
3554 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003555 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003556 }
3557
Chris Masonb9473432009-03-13 11:00:37 -04003558 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003559 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003560 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08003561 if (IS_ERR_OR_NULL(di)) {
3562 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003563 goto err;
3564 }
Chris Mason39279cc2007-06-12 06:35:45 -04003565 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003566 if (ret)
3567 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003568 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003569
Miao Xie67de1172013-12-26 13:07:06 +08003570 /*
3571 * If we don't have dir index, we have to get it by looking up
3572 * the inode ref, since we get the inode ref, remove it directly,
3573 * it is unnecessary to do delayed deletion.
3574 *
3575 * But if we have dir index, needn't search inode ref to get it.
3576 * Since the inode ref is close to the inode item, it is better
3577 * that we delay to delete it, and just do this deletion when
3578 * we update the inode item.
3579 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003580 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08003581 ret = btrfs_delayed_delete_inode_ref(inode);
3582 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003583 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003584 goto skip_backref;
3585 }
3586 }
3587
Li Zefan33345d012011-04-20 10:31:50 +08003588 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3589 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003590 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003591 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003592 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003593 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003594 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003595 goto err;
3596 }
Miao Xie67de1172013-12-26 13:07:06 +08003597skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08003598 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003599 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003600 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003601 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003602 }
Chris Mason39279cc2007-06-12 06:35:45 -04003603
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003604 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3605 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003606 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003607 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003608 goto err;
3609 }
Chris Masone02119d2008-09-05 16:13:11 -04003610
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003611 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3612 index);
Chris Mason6418c962010-10-30 07:34:24 -04003613 if (ret == -ENOENT)
3614 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003615 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003616 btrfs_abort_transaction(trans, ret);
Josef Bacik63611e72019-06-18 10:59:18 -04003617
3618 /*
3619 * If we have a pending delayed iput we could end up with the final iput
3620 * being run in btrfs-cleaner context. If we have enough of these built
3621 * up we can end up burning a lot of time in btrfs-cleaner without any
3622 * way to throttle the unlinks. Since we're currently holding a ref on
3623 * the inode we can run the delayed iput here without any issues as the
3624 * final iput won't be done until after we drop the ref we're currently
3625 * holding.
3626 */
3627 btrfs_run_delayed_iput(fs_info, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003628err:
3629 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003630 if (ret)
3631 goto out;
3632
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003633 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003634 inode_inc_iversion(&inode->vfs_inode);
3635 inode_inc_iversion(&dir->vfs_inode);
3636 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3637 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3638 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003639out:
Chris Mason39279cc2007-06-12 06:35:45 -04003640 return ret;
3641}
3642
Al Viro92986792011-03-04 17:14:37 +00003643int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3644 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003645 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003646 const char *name, int name_len)
3647{
3648 int ret;
3649 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3650 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003651 drop_nlink(&inode->vfs_inode);
3652 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00003653 }
3654 return ret;
3655}
Yan, Zhenga22285a2010-05-16 10:48:46 -04003656
3657/*
3658 * helper to start transaction for unlink and rmdir.
3659 *
Josef Bacikd52be812013-05-29 14:54:47 -04003660 * unlink and rmdir are special in btrfs, they do not always free space, so
3661 * if we cannot make our reservations the normal way try and see if there is
3662 * plenty of slack room in the global reserve to migrate, otherwise we cannot
3663 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04003664 */
Josef Bacikd52be812013-05-29 14:54:47 -04003665static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003666{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003667 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003668
Josef Bacike70bea52011-10-11 14:18:24 -04003669 /*
3670 * 1 for the possible orphan item
3671 * 1 for the dir item
3672 * 1 for the dir index
3673 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04003674 * 1 for the inode
3675 */
Josef Bacik7f9fe612020-03-13 15:58:05 -04003676 return btrfs_start_transaction_fallback_global_rsv(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003677}
3678
Chris Mason39279cc2007-06-12 06:35:45 -04003679static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3680{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003681 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003682 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00003683 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003684 int ret;
3685
Josef Bacikd52be812013-05-29 14:54:47 -04003686 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003687 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003688 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003689
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003690 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
3691 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04003692
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003693 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
3694 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
3695 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003696 if (ret)
3697 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003698
Yan, Zhenga22285a2010-05-16 10:48:46 -04003699 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003700 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00003701 if (ret)
3702 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003703 }
Josef Bacik7b128762008-07-24 12:17:14 -04003704
Tsutomu Itohb5324022011-07-19 07:27:20 +00003705out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003706 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003707 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04003708 return ret;
3709}
3710
Misono Tomohirof60a2362018-04-18 11:34:52 +09003711static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Josef Bacik045d3962019-12-18 17:20:27 -05003712 struct inode *dir, struct dentry *dentry)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003713{
Lu Fengqi401b3b12018-08-01 11:32:30 +08003714 struct btrfs_root *root = BTRFS_I(dir)->root;
Josef Bacik045d3962019-12-18 17:20:27 -05003715 struct btrfs_inode *inode = BTRFS_I(d_inode(dentry));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003716 struct btrfs_path *path;
3717 struct extent_buffer *leaf;
3718 struct btrfs_dir_item *di;
3719 struct btrfs_key key;
Josef Bacik045d3962019-12-18 17:20:27 -05003720 const char *name = dentry->d_name.name;
3721 int name_len = dentry->d_name.len;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003722 u64 index;
3723 int ret;
Josef Bacik045d3962019-12-18 17:20:27 -05003724 u64 objectid;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003725 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003726
Josef Bacik045d3962019-12-18 17:20:27 -05003727 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) {
3728 objectid = inode->root->root_key.objectid;
3729 } else if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
3730 objectid = inode->location.objectid;
3731 } else {
3732 WARN_ON(1);
3733 return -EINVAL;
3734 }
3735
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003736 path = btrfs_alloc_path();
3737 if (!path)
3738 return -ENOMEM;
3739
Li Zefan33345d012011-04-20 10:31:50 +08003740 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003741 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003742 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08003743 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003744 goto out;
3745 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003746
3747 leaf = path->nodes[0];
3748 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3749 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3750 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003751 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003752 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003753 goto out;
3754 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003755 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003756
Josef Bacikd49d3282019-12-18 17:20:28 -05003757 /*
3758 * This is a placeholder inode for a subvolume we didn't have a
3759 * reference to at the time of the snapshot creation. In the meantime
3760 * we could have renamed the real subvol link into our snapshot, so
3761 * depending on btrfs_del_root_ref to return -ENOENT here is incorret.
3762 * Instead simply lookup the dir_index_item for this entry so we can
3763 * remove it. Otherwise we know we have a ref to the root and we can
3764 * call btrfs_del_root_ref, and it _shouldn't_ fail.
3765 */
3766 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
Li Zefan33345d012011-04-20 10:31:50 +08003767 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003768 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003769 if (IS_ERR_OR_NULL(di)) {
3770 if (!di)
3771 ret = -ENOENT;
3772 else
3773 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04003774 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003775 goto out;
3776 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003777
3778 leaf = path->nodes[0];
3779 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003780 index = key.offset;
Josef Bacikd49d3282019-12-18 17:20:28 -05003781 btrfs_release_path(path);
3782 } else {
3783 ret = btrfs_del_root_ref(trans, objectid,
3784 root->root_key.objectid, dir_ino,
3785 &index, name, name_len);
3786 if (ret) {
3787 btrfs_abort_transaction(trans, ret);
3788 goto out;
3789 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003790 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003791
Lu Fengqi9add2942018-08-01 11:32:26 +08003792 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003793 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003794 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003795 goto out;
3796 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003797
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003798 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003799 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003800 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06003801 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003802 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003803 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003804out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003805 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003806 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003807}
3808
Misono Tomohiroec42f162018-04-18 11:34:13 +09003809/*
3810 * Helper to check if the subvolume references other subvolumes or if it's
3811 * default.
3812 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09003813static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09003814{
3815 struct btrfs_fs_info *fs_info = root->fs_info;
3816 struct btrfs_path *path;
3817 struct btrfs_dir_item *di;
3818 struct btrfs_key key;
3819 u64 dir_id;
3820 int ret;
3821
3822 path = btrfs_alloc_path();
3823 if (!path)
3824 return -ENOMEM;
3825
3826 /* Make sure this root isn't set as the default subvol */
3827 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3828 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
3829 dir_id, "default", 7, 0);
3830 if (di && !IS_ERR(di)) {
3831 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
3832 if (key.objectid == root->root_key.objectid) {
3833 ret = -EPERM;
3834 btrfs_err(fs_info,
3835 "deleting default subvolume %llu is not allowed",
3836 key.objectid);
3837 goto out;
3838 }
3839 btrfs_release_path(path);
3840 }
3841
3842 key.objectid = root->root_key.objectid;
3843 key.type = BTRFS_ROOT_REF_KEY;
3844 key.offset = (u64)-1;
3845
3846 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
3847 if (ret < 0)
3848 goto out;
3849 BUG_ON(ret == 0);
3850
3851 ret = 0;
3852 if (path->slots[0] > 0) {
3853 path->slots[0]--;
3854 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3855 if (key.objectid == root->root_key.objectid &&
3856 key.type == BTRFS_ROOT_REF_KEY)
3857 ret = -ENOTEMPTY;
3858 }
3859out:
3860 btrfs_free_path(path);
3861 return ret;
3862}
3863
Nikolay Borisov20a68002018-04-27 14:36:24 +03003864/* Delete all dentries for inodes belonging to the root */
3865static void btrfs_prune_dentries(struct btrfs_root *root)
3866{
3867 struct btrfs_fs_info *fs_info = root->fs_info;
3868 struct rb_node *node;
3869 struct rb_node *prev;
3870 struct btrfs_inode *entry;
3871 struct inode *inode;
3872 u64 objectid = 0;
3873
3874 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
3875 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3876
3877 spin_lock(&root->inode_lock);
3878again:
3879 node = root->inode_tree.rb_node;
3880 prev = NULL;
3881 while (node) {
3882 prev = node;
3883 entry = rb_entry(node, struct btrfs_inode, rb_node);
3884
David Sterba37508512018-06-29 10:56:40 +02003885 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03003886 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02003887 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03003888 node = node->rb_right;
3889 else
3890 break;
3891 }
3892 if (!node) {
3893 while (prev) {
3894 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02003895 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03003896 node = prev;
3897 break;
3898 }
3899 prev = rb_next(prev);
3900 }
3901 }
3902 while (node) {
3903 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02003904 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03003905 inode = igrab(&entry->vfs_inode);
3906 if (inode) {
3907 spin_unlock(&root->inode_lock);
3908 if (atomic_read(&inode->i_count) > 1)
3909 d_prune_aliases(inode);
3910 /*
3911 * btrfs_drop_inode will have it removed from the inode
3912 * cache when its usage count hits zero.
3913 */
3914 iput(inode);
3915 cond_resched();
3916 spin_lock(&root->inode_lock);
3917 goto again;
3918 }
3919
3920 if (cond_resched_lock(&root->inode_lock))
3921 goto again;
3922
3923 node = rb_next(node);
3924 }
3925 spin_unlock(&root->inode_lock);
3926}
3927
Misono Tomohirof60a2362018-04-18 11:34:52 +09003928int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
3929{
3930 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
3931 struct btrfs_root *root = BTRFS_I(dir)->root;
3932 struct inode *inode = d_inode(dentry);
3933 struct btrfs_root *dest = BTRFS_I(inode)->root;
3934 struct btrfs_trans_handle *trans;
3935 struct btrfs_block_rsv block_rsv;
3936 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09003937 int ret;
3938 int err;
3939
3940 /*
3941 * Don't allow to delete a subvolume with send in progress. This is
3942 * inside the inode lock so the error handling that has to drop the bit
3943 * again is not run concurrently.
3944 */
3945 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08003946 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09003947 spin_unlock(&dest->root_item_lock);
3948 btrfs_warn(fs_info,
3949 "attempt to delete subvolume %llu during send",
3950 dest->root_key.objectid);
3951 return -EPERM;
3952 }
Lu Fengqia7176f72018-08-04 21:10:53 +08003953 root_flags = btrfs_root_flags(&dest->root_item);
3954 btrfs_set_root_flags(&dest->root_item,
3955 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
3956 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003957
3958 down_write(&fs_info->subvol_sem);
3959
3960 err = may_destroy_subvol(dest);
3961 if (err)
3962 goto out_up_write;
3963
3964 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
3965 /*
3966 * One for dir inode,
3967 * two for dir entries,
3968 * two for root ref/backref.
3969 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +08003970 err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003971 if (err)
3972 goto out_up_write;
3973
3974 trans = btrfs_start_transaction(root, 0);
3975 if (IS_ERR(trans)) {
3976 err = PTR_ERR(trans);
3977 goto out_release;
3978 }
3979 trans->block_rsv = &block_rsv;
3980 trans->bytes_reserved = block_rsv.size;
3981
3982 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
3983
Josef Bacik045d3962019-12-18 17:20:27 -05003984 ret = btrfs_unlink_subvol(trans, dir, dentry);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003985 if (ret) {
3986 err = ret;
3987 btrfs_abort_transaction(trans, ret);
3988 goto out_end_trans;
3989 }
3990
3991 btrfs_record_root_in_trans(trans, dest);
3992
3993 memset(&dest->root_item.drop_progress, 0,
3994 sizeof(dest->root_item.drop_progress));
3995 dest->root_item.drop_level = 0;
3996 btrfs_set_root_refs(&dest->root_item, 0);
3997
3998 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
3999 ret = btrfs_insert_orphan_item(trans,
4000 fs_info->tree_root,
4001 dest->root_key.objectid);
4002 if (ret) {
4003 btrfs_abort_transaction(trans, ret);
4004 err = ret;
4005 goto out_end_trans;
4006 }
4007 }
4008
Lu Fengqid1957792018-05-29 15:01:54 +08004009 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004010 BTRFS_UUID_KEY_SUBVOL,
4011 dest->root_key.objectid);
4012 if (ret && ret != -ENOENT) {
4013 btrfs_abort_transaction(trans, ret);
4014 err = ret;
4015 goto out_end_trans;
4016 }
4017 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004018 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004019 dest->root_item.received_uuid,
4020 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4021 dest->root_key.objectid);
4022 if (ret && ret != -ENOENT) {
4023 btrfs_abort_transaction(trans, ret);
4024 err = ret;
4025 goto out_end_trans;
4026 }
4027 }
4028
4029out_end_trans:
4030 trans->block_rsv = NULL;
4031 trans->bytes_reserved = 0;
4032 ret = btrfs_end_transaction(trans);
4033 if (ret && !err)
4034 err = ret;
4035 inode->i_flags |= S_DEAD;
4036out_release:
4037 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
4038out_up_write:
4039 up_write(&fs_info->subvol_sem);
4040 if (err) {
4041 spin_lock(&dest->root_item_lock);
4042 root_flags = btrfs_root_flags(&dest->root_item);
4043 btrfs_set_root_flags(&dest->root_item,
4044 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4045 spin_unlock(&dest->root_item_lock);
4046 } else {
4047 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004048 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004049 ASSERT(dest->send_in_progress == 0);
4050
4051 /* the last ref */
4052 if (dest->ino_cache_inode) {
4053 iput(dest->ino_cache_inode);
4054 dest->ino_cache_inode = NULL;
4055 }
4056 }
4057
4058 return err;
4059}
4060
Chris Mason39279cc2007-06-12 06:35:45 -04004061static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4062{
David Howells2b0143b2015-03-17 22:25:59 +00004063 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004064 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004065 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004066 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004067 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004068
David Sterbab3ae2442012-09-13 16:04:34 -06004069 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004070 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004071 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004072 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004073
Josef Bacikd52be812013-05-29 14:54:47 -04004074 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004075 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004076 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004077
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004078 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05004079 err = btrfs_unlink_subvol(trans, dir, dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004080 goto out;
4081 }
4082
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004083 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004084 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004085 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004086
Filipe Manana44f714d2016-06-06 16:11:13 +01004087 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4088
Chris Mason39279cc2007-06-12 06:35:45 -04004089 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004090 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4091 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4092 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004093 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004094 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004095 /*
4096 * Propagate the last_unlink_trans value of the deleted dir to
4097 * its parent directory. This is to prevent an unrecoverable
4098 * log tree in the case we do something like this:
4099 * 1) create dir foo
4100 * 2) create snapshot under dir foo
4101 * 3) delete the snapshot
4102 * 4) rmdir foo
4103 * 5) mkdir foo
4104 * 6) fsync foo or some file inside foo
4105 */
4106 if (last_unlink_trans >= trans->transid)
4107 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4108 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004109out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004110 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004111 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004112
Chris Mason39279cc2007-06-12 06:35:45 -04004113 return err;
4114}
4115
Josef Bacikddfae632017-10-19 14:16:02 -04004116/*
4117 * Return this if we need to call truncate_block for the last bit of the
4118 * truncate.
4119 */
4120#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004121
Chris Mason323ac952008-10-01 19:05:46 -04004122/*
Chris Mason39279cc2007-06-12 06:35:45 -04004123 * this can truncate away extent items, csum items and directory items.
4124 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004125 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004126 *
4127 * csum items that cross the new i_size are truncated to the new size
4128 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004129 *
4130 * min_type is the minimum key type to truncate down to. If set to 0, this
4131 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004132 */
Yan, Zheng80825102009-11-12 09:35:36 +00004133int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4134 struct btrfs_root *root,
4135 struct inode *inode,
4136 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004137{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004138 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004139 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004140 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004141 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004142 struct btrfs_key key;
4143 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004144 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004145 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004146 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004147 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004148 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004149 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004150 int found_extent;
4151 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004152 int pending_del_nr = 0;
4153 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004154 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004155 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004156 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004157 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004158 bool be_nice = false;
4159 bool should_throttle = false;
Filipe Manana28553fa2020-02-07 12:23:09 +00004160 const u64 lock_start = ALIGN_DOWN(new_size, fs_info->sectorsize);
4161 struct extent_state *cached_state = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00004162
4163 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004164
Chris Mason28ed1342014-12-17 09:41:04 -08004165 /*
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004166 * For non-free space inodes and non-shareable roots, we want to back
4167 * off from time to time. This means all inodes in subvolume roots,
4168 * reloc roots, and data reloc roots.
Chris Mason28ed1342014-12-17 09:41:04 -08004169 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004170 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004171 test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004172 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004173
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004174 path = btrfs_alloc_path();
4175 if (!path)
4176 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004177 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004178
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004179 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Filipe Mananaa5ae50d2020-02-20 13:29:49 +00004180 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, (u64)-1,
4181 &cached_state);
Filipe Manana28553fa2020-02-07 12:23:09 +00004182
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004183 /*
4184 * We want to drop from the next block forward in case this
4185 * new size is not block aligned since we will be keeping the
4186 * last block of the extent just the way it is.
4187 */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004188 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004189 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004190 (u64)-1, 0);
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004191 }
Yan, Zheng80825102009-11-12 09:35:36 +00004192
Miao Xie16cdcec2011-04-22 18:12:22 +08004193 /*
4194 * This function is also used to drop the items in the log tree before
4195 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
Andrea Gelmini52042d82018-11-28 12:05:13 +01004196 * it is used to drop the logged items. So we shouldn't kill the delayed
Miao Xie16cdcec2011-04-22 18:12:22 +08004197 * items.
4198 */
4199 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004200 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004201
Li Zefan33345d012011-04-20 10:31:50 +08004202 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004203 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004204 key.type = (u8)-1;
4205
Chris Mason85e21ba2008-01-29 15:11:36 -05004206search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004207 /*
4208 * with a 16K leaf size and 128MB extents, you can actually queue
4209 * up a huge file in a single leaf. Most of the time that
4210 * bytes_deleted is > 0, it will be huge by the time we get here
4211 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004212 if (be_nice && bytes_deleted > SZ_32M &&
4213 btrfs_should_end_transaction(trans)) {
4214 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004215 goto out;
4216 }
Chris Masond3977122009-01-05 21:25:51 -05004217
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004218 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4219 if (ret < 0)
4220 goto out;
4221
Chris Mason85e21ba2008-01-29 15:11:36 -05004222 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004223 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004224 /* there are no items in the tree for us to truncate, we're
4225 * done
4226 */
Yan, Zheng80825102009-11-12 09:35:36 +00004227 if (path->slots[0] == 0)
4228 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004229 path->slots[0]--;
4230 }
4231
Chris Masond3977122009-01-05 21:25:51 -05004232 while (1) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05004233 u64 clear_start = 0, clear_len = 0;
4234
Chris Mason39279cc2007-06-12 06:35:45 -04004235 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004236 leaf = path->nodes[0];
4237 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004238 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004239
Li Zefan33345d012011-04-20 10:31:50 +08004240 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004241 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004242
Chris Mason85e21ba2008-01-29 15:11:36 -05004243 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004244 break;
4245
Chris Mason5f39d392007-10-15 16:14:19 -04004246 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004247 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004248 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004249 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004250 extent_type = btrfs_file_extent_type(leaf, fi);
4251 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004252 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004253 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004254
4255 trace_btrfs_truncate_show_fi_regular(
4256 BTRFS_I(inode), leaf, fi,
4257 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004258 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004259 item_end += btrfs_file_extent_ram_bytes(leaf,
4260 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004261
4262 trace_btrfs_truncate_show_fi_inline(
4263 BTRFS_I(inode), leaf, fi, path->slots[0],
4264 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004265 }
Yan008630c2007-11-07 13:31:09 -05004266 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004267 }
Yan, Zheng80825102009-11-12 09:35:36 +00004268 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004269 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004270 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004271 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004272 break;
4273 if (found_key.offset >= new_size)
4274 del_item = 1;
4275 else
4276 del_item = 0;
4277 }
Chris Mason39279cc2007-06-12 06:35:45 -04004278 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004279 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004280 if (found_type != BTRFS_EXTENT_DATA_KEY)
4281 goto delete;
4282
4283 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004284 u64 num_dec;
Josef Bacik9ddc9592020-01-17 09:02:22 -05004285
4286 clear_start = found_key.offset;
Chris Masondb945352007-10-15 16:15:53 -04004287 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004288 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004289 u64 orig_num_bytes =
4290 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004291 extent_num_bytes = ALIGN(new_size -
4292 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004293 fs_info->sectorsize);
Josef Bacik9ddc9592020-01-17 09:02:22 -05004294 clear_start = ALIGN(new_size, fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004295 btrfs_set_file_extent_num_bytes(leaf, fi,
4296 extent_num_bytes);
4297 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004298 extent_num_bytes);
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004299 if (test_bit(BTRFS_ROOT_SHAREABLE,
Miao Xie27cdeb72014-04-02 19:51:05 +08004300 &root->state) &&
4301 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004302 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004303 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004304 } else {
Chris Masondb945352007-10-15 16:15:53 -04004305 extent_num_bytes =
4306 btrfs_file_extent_disk_num_bytes(leaf,
4307 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004308 extent_offset = found_key.offset -
4309 btrfs_file_extent_offset(leaf, fi);
4310
Chris Mason39279cc2007-06-12 06:35:45 -04004311 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004312 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004313 if (extent_start != 0) {
4314 found_extent = 1;
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004315 if (test_bit(BTRFS_ROOT_SHAREABLE,
Miao Xie27cdeb72014-04-02 19:51:05 +08004316 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004317 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004318 }
4319 }
Josef Bacik9ddc9592020-01-17 09:02:22 -05004320 clear_len = num_dec;
Chris Mason90692182008-02-08 13:49:28 -05004321 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004322 /*
4323 * we can't truncate inline items that have had
4324 * special encodings
4325 */
4326 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004327 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004328 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4329 btrfs_file_extent_compression(leaf, fi) == 0) {
4330 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004331
Josef Bacikddfae632017-10-19 14:16:02 -04004332 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4333 size = btrfs_file_extent_calc_inline_size(size);
David Sterba78ac4f92019-03-20 14:49:12 +01004334 btrfs_truncate_item(path, size, 1);
Josef Bacikddfae632017-10-19 14:16:02 -04004335 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004336 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004337 * We have to bail so the last_size is set to
4338 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004339 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004340 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004341 break;
Josef Bacik9ddc9592020-01-17 09:02:22 -05004342 } else {
4343 /*
4344 * Inline extents are special, we just treat
4345 * them as a full sector worth in the file
4346 * extent tree just for simplicity sake.
4347 */
4348 clear_len = fs_info->sectorsize;
Chris Mason90692182008-02-08 13:49:28 -05004349 }
Josef Bacikddfae632017-10-19 14:16:02 -04004350
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004351 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Josef Bacikddfae632017-10-19 14:16:02 -04004352 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004353 }
Chris Mason179e29e2007-11-01 11:28:41 -04004354delete:
Josef Bacik9ddc9592020-01-17 09:02:22 -05004355 /*
4356 * We use btrfs_truncate_inode_items() to clean up log trees for
4357 * multiple fsyncs, and in this case we don't want to clear the
4358 * file extent range because it's just the log.
4359 */
4360 if (root == BTRFS_I(inode)->root) {
4361 ret = btrfs_inode_clear_file_extent_range(BTRFS_I(inode),
4362 clear_start, clear_len);
4363 if (ret) {
4364 btrfs_abort_transaction(trans, ret);
4365 break;
4366 }
4367 }
4368
Josef Bacikddfae632017-10-19 14:16:02 -04004369 if (del_item)
4370 last_size = found_key.offset;
4371 else
4372 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004373 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004374 if (!pending_del_nr) {
4375 /* no pending yet, add ourselves */
4376 pending_del_slot = path->slots[0];
4377 pending_del_nr = 1;
4378 } else if (pending_del_nr &&
4379 path->slots[0] + 1 == pending_del_slot) {
4380 /* hop on the pending chunk */
4381 pending_del_nr++;
4382 pending_del_slot = path->slots[0];
4383 } else {
Chris Masond3977122009-01-05 21:25:51 -05004384 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004385 }
Chris Mason39279cc2007-06-12 06:35:45 -04004386 } else {
4387 break;
4388 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004389 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004390
Miao Xie27cdeb72014-04-02 19:51:05 +08004391 if (found_extent &&
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004392 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08004393 struct btrfs_ref ref = { 0 };
4394
Chris Mason28ed1342014-12-17 09:41:04 -08004395 bytes_deleted += extent_num_bytes;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08004396
4397 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
4398 extent_start, extent_num_bytes, 0);
4399 ref.real_root = root->root_key.objectid;
4400 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
4401 ino, extent_offset);
4402 ret = btrfs_free_extent(trans, &ref);
Omar Sandoval05522102018-05-11 13:13:31 -07004403 if (ret) {
4404 btrfs_abort_transaction(trans, ret);
4405 break;
4406 }
Chris Mason28f75a02015-02-04 06:59:29 -08004407 if (be_nice) {
Lu Fengqi7c861622018-10-11 13:40:36 +08004408 if (btrfs_should_throttle_delayed_refs(trans))
Thomas Meyer897ca812017-10-07 16:02:21 +02004409 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004410 }
Chris Mason39279cc2007-06-12 06:35:45 -04004411 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004412
Yan, Zheng80825102009-11-12 09:35:36 +00004413 if (found_type == BTRFS_INODE_ITEM_KEY)
4414 break;
4415
4416 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004417 path->slots[0] != pending_del_slot ||
Josef Bacik28bad212018-12-03 10:20:38 -05004418 should_throttle) {
Yan, Zheng80825102009-11-12 09:35:36 +00004419 if (pending_del_nr) {
4420 ret = btrfs_del_items(trans, root, path,
4421 pending_del_slot,
4422 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004423 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004424 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004425 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004426 }
Yan, Zheng80825102009-11-12 09:35:36 +00004427 pending_del_nr = 0;
4428 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004429 btrfs_release_path(path);
Josef Bacik28bad212018-12-03 10:20:38 -05004430
Chris Mason28f75a02015-02-04 06:59:29 -08004431 /*
Josef Bacik28bad212018-12-03 10:20:38 -05004432 * We can generate a lot of delayed refs, so we need to
4433 * throttle every once and a while and make sure we're
4434 * adding enough space to keep up with the work we are
4435 * generating. Since we hold a transaction here we
4436 * can't flush, and we don't want to FLUSH_LIMIT because
4437 * we could have generated too many delayed refs to
4438 * actually allocate, so just bail if we're short and
4439 * let the normal reservation dance happen higher up.
Chris Mason28f75a02015-02-04 06:59:29 -08004440 */
Josef Bacik28bad212018-12-03 10:20:38 -05004441 if (should_throttle) {
4442 ret = btrfs_delayed_refs_rsv_refill(fs_info,
4443 BTRFS_RESERVE_NO_FLUSH);
4444 if (ret) {
4445 ret = -EAGAIN;
4446 break;
4447 }
Chris Mason28f75a02015-02-04 06:59:29 -08004448 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004449 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004450 } else {
4451 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004452 }
Chris Mason39279cc2007-06-12 06:35:45 -04004453 }
Yan, Zheng80825102009-11-12 09:35:36 +00004454out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004455 if (ret >= 0 && pending_del_nr) {
4456 int err;
4457
4458 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004459 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004460 if (err) {
4461 btrfs_abort_transaction(trans, err);
4462 ret = err;
4463 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004464 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004465 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4466 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004467 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004468 last_size = new_size;
Josef Bacikd923afe2020-01-17 09:02:23 -05004469 btrfs_inode_safe_disk_i_size_write(inode, last_size);
Filipe Mananaa5ae50d2020-02-20 13:29:49 +00004470 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start,
4471 (u64)-1, &cached_state);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004472 }
Chris Mason28ed1342014-12-17 09:41:04 -08004473
Chris Mason39279cc2007-06-12 06:35:45 -04004474 btrfs_free_path(path);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004475 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004476}
4477
Chris Masona52d9a82007-08-27 16:49:44 -04004478/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304479 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004480 * @inode - inode that we're zeroing
4481 * @from - the offset to start zeroing
4482 * @len - the length to zero, 0 to zero the entire range respective to the
4483 * offset
4484 * @front - zero up to the offset instead of from the offset on
4485 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304486 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004487 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004488 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304489int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004490 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004491{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004492 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004493 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004494 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4495 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004496 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004497 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004498 char *kaddr;
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004499 bool only_release_metadata = false;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004500 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004501 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304502 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004503 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004504 gfp_t mask = btrfs_alloc_write_mask(mapping);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004505 size_t write_bytes = blocksize;
Chris Masona52d9a82007-08-27 16:49:44 -04004506 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304507 u64 block_start;
4508 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004509
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004510 if (IS_ALIGNED(offset, blocksize) &&
4511 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004512 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304513
Josef Bacik8b62f872017-10-19 14:15:55 -04004514 block_start = round_down(from, blocksize);
4515 block_end = block_start + blocksize - 1;
4516
Nikolay Borisov36ea6f32020-06-03 08:55:41 +03004517 ret = btrfs_check_data_free_space(BTRFS_I(inode), &data_reserved,
4518 block_start, blocksize);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004519 if (ret < 0) {
Qu Wenruo38d37aa2020-06-24 07:23:52 +08004520 if (btrfs_check_nocow_lock(BTRFS_I(inode), block_start,
4521 &write_bytes) > 0) {
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004522 /* For nocow case, no need to reserve data space */
4523 only_release_metadata = true;
4524 } else {
4525 goto out;
4526 }
4527 }
4528 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), blocksize);
4529 if (ret < 0) {
4530 if (!only_release_metadata)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03004531 btrfs_free_reserved_data_space(BTRFS_I(inode),
4532 data_reserved, block_start, blocksize);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004533 goto out;
4534 }
Chris Mason211c17f2008-05-15 09:13:45 -04004535again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004536 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004537 if (!page) {
Nikolay Borisov86d52922020-06-03 08:55:40 +03004538 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08004539 block_start, blocksize, true);
Qu Wenruo8702ba92019-10-14 14:34:51 +08004540 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004541 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004542 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004543 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004544
Chris Masona52d9a82007-08-27 16:49:44 -04004545 if (!PageUptodate(page)) {
4546 ret = btrfs_readpage(NULL, page);
4547 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004548 if (page->mapping != mapping) {
4549 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004550 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004551 goto again;
4552 }
Chris Masona52d9a82007-08-27 16:49:44 -04004553 if (!PageUptodate(page)) {
4554 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004555 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004556 }
4557 }
Chris Mason211c17f2008-05-15 09:13:45 -04004558 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004559
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304560 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004561 set_page_extent_mapped(page);
4562
Nikolay Borisovc3504372020-06-03 08:55:03 +03004563 ordered = btrfs_lookup_ordered_extent(BTRFS_I(inode), block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004564 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304565 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004566 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004567 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004568 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004569 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004570 btrfs_put_ordered_extent(ordered);
4571 goto again;
4572 }
4573
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304574 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Omar Sandovale1821632019-08-15 14:04:04 -07004575 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
4576 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004577
Nikolay Borisovc2566f22020-06-03 08:55:35 +03004578 ret = btrfs_set_extent_delalloc(BTRFS_I(inode), block_start, block_end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03004579 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004580 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304581 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004582 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004583 goto out_unlock;
4584 }
4585
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304586 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004587 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304588 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004589 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004590 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304591 memset(kaddr + (block_start - page_offset(page)),
4592 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004593 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304594 memset(kaddr + (block_start - page_offset(page)) + offset,
4595 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004596 flush_dcache_page(page);
4597 kunmap(page);
4598 }
Chris Mason247e7432008-07-17 12:53:51 -04004599 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004600 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004601 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004602
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004603 if (only_release_metadata)
4604 set_extent_bit(&BTRFS_I(inode)->io_tree, block_start,
4605 block_end, EXTENT_NORESERVE, NULL, NULL,
4606 GFP_NOFS);
4607
Chris Mason89642222008-07-24 09:41:53 -04004608out_unlock:
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004609 if (ret) {
4610 if (only_release_metadata)
4611 btrfs_delalloc_release_metadata(BTRFS_I(inode),
4612 blocksize, true);
4613 else
Nikolay Borisov86d52922020-06-03 08:55:40 +03004614 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004615 block_start, blocksize, true);
4616 }
Qu Wenruo8702ba92019-10-14 14:34:51 +08004617 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004618 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004619 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004620out:
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004621 if (only_release_metadata)
Qu Wenruo38d37aa2020-06-24 07:23:52 +08004622 btrfs_check_nocow_unlock(BTRFS_I(inode));
Qu Wenruo364ecf32017-02-27 15:10:38 +08004623 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004624 return ret;
4625}
4626
Josef Bacik16e75492013-10-22 12:18:51 -04004627static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4628 u64 offset, u64 len)
4629{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004630 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004631 struct btrfs_trans_handle *trans;
4632 int ret;
4633
4634 /*
4635 * Still need to make sure the inode looks like it's been updated so
4636 * that any holes get logged if we fsync.
4637 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004638 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4639 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004640 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4641 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4642 return 0;
4643 }
4644
4645 /*
4646 * 1 - for the one we're dropping
4647 * 1 - for the one we're adding
4648 * 1 - for updating the inode.
4649 */
4650 trans = btrfs_start_transaction(root, 3);
4651 if (IS_ERR(trans))
4652 return PTR_ERR(trans);
4653
4654 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4655 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004656 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004657 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004658 return ret;
4659 }
4660
David Sterbaf85b7372017-01-20 14:54:07 +01004661 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4662 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004663 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004664 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004665 else
4666 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004667 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004668 return ret;
4669}
4670
Josef Bacik695a0d02011-03-04 15:46:53 -05004671/*
4672 * This function puts in dummy file extents for the area we're creating a hole
4673 * for. So if we are truncating this file to a larger size we need to insert
4674 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4675 * the range between oldsize and size
4676 */
Josef Bacika41ad392011-01-31 15:30:16 -05004677int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004678{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004679 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004680 struct btrfs_root *root = BTRFS_I(inode)->root;
4681 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004682 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004683 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004684 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004685 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4686 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004687 u64 last_byte;
4688 u64 cur_offset;
4689 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004690 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004691
Josef Bacika71754f2013-06-17 17:14:39 -04004692 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304693 * If our size started in the middle of a block we need to zero out the
4694 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004695 * expose stale data.
4696 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304697 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004698 if (err)
4699 return err;
4700
Yan Zheng9036c102008-10-30 14:19:41 -04004701 if (size <= hole_start)
4702 return 0;
4703
David Sterbab272ae22020-02-05 19:09:33 +01004704 btrfs_lock_and_flush_ordered_range(BTRFS_I(inode), hole_start,
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03004705 block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04004706 cur_offset = hole_start;
4707 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02004708 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08004709 block_end - cur_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004710 if (IS_ERR(em)) {
4711 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004712 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004713 break;
4714 }
Yan Zheng9036c102008-10-30 14:19:41 -04004715 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004716 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Josef Bacik9ddc9592020-01-17 09:02:22 -05004717 hole_size = last_byte - cur_offset;
4718
Yan, Zheng80825102009-11-12 09:35:36 +00004719 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004720 struct extent_map *hole_em;
Yan, Zheng80825102009-11-12 09:35:36 +00004721
Josef Bacik16e75492013-10-22 12:18:51 -04004722 err = maybe_insert_hole(root, inode, cur_offset,
4723 hole_size);
4724 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004725 break;
Josef Bacik9ddc9592020-01-17 09:02:22 -05004726
4727 err = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
4728 cur_offset, hole_size);
4729 if (err)
4730 break;
4731
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004732 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04004733 cur_offset + hole_size - 1, 0);
4734 hole_em = alloc_extent_map();
4735 if (!hole_em) {
4736 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4737 &BTRFS_I(inode)->runtime_flags);
4738 goto next;
4739 }
4740 hole_em->start = cur_offset;
4741 hole_em->len = hole_size;
4742 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004743
Josef Bacik5dc562c2012-08-17 13:14:17 -04004744 hole_em->block_start = EXTENT_MAP_HOLE;
4745 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004746 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004747 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004748 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004749 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004750
4751 while (1) {
4752 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004753 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004754 write_unlock(&em_tree->lock);
4755 if (err != -EEXIST)
4756 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004757 btrfs_drop_extent_cache(BTRFS_I(inode),
4758 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04004759 cur_offset +
4760 hole_size - 1, 0);
4761 }
4762 free_extent_map(hole_em);
Josef Bacik9ddc9592020-01-17 09:02:22 -05004763 } else {
4764 err = btrfs_inode_set_file_extent_range(BTRFS_I(inode),
4765 cur_offset, hole_size);
4766 if (err)
4767 break;
Yan Zheng9036c102008-10-30 14:19:41 -04004768 }
Josef Bacik16e75492013-10-22 12:18:51 -04004769next:
Yan Zheng9036c102008-10-30 14:19:41 -04004770 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004771 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004772 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004773 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004774 break;
4775 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004776 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01004777 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04004778 return err;
4779}
4780
Eric Sandeen3972f262013-01-12 02:57:22 +00004781static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004782{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004783 struct btrfs_root *root = BTRFS_I(inode)->root;
4784 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004785 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004786 loff_t newsize = attr->ia_size;
4787 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004788 int ret;
4789
Eric Sandeen3972f262013-01-12 02:57:22 +00004790 /*
4791 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4792 * special case where we need to update the times despite not having
4793 * these flags set. For all other operations the VFS set these flags
4794 * explicitly if it wants a timestamp update.
4795 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004796 if (newsize != oldsize) {
4797 inode_inc_iversion(inode);
4798 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4799 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004800 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004801 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004802
Josef Bacika41ad392011-01-31 15:30:16 -05004803 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004804 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02004805 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004806 * This is to ensure the snapshot captures a fully consistent
4807 * state of this file - if the snapshot captures this expanding
4808 * truncation, it must capture all writes that happened before
4809 * this truncation.
4810 */
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02004811 btrfs_drew_write_lock(&root->snapshot_lock);
Josef Bacika41ad392011-01-31 15:30:16 -05004812 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004813 if (ret) {
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02004814 btrfs_drew_write_unlock(&root->snapshot_lock);
Yan, Zheng80825102009-11-12 09:35:36 +00004815 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004816 }
Yan, Zheng80825102009-11-12 09:35:36 +00004817
Miao Xief4a2f4c2011-12-14 20:12:01 -05004818 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004819 if (IS_ERR(trans)) {
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02004820 btrfs_drew_write_unlock(&root->snapshot_lock);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004821 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004822 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05004823
4824 i_size_write(inode, newsize);
Josef Bacikd923afe2020-01-17 09:02:23 -05004825 btrfs_inode_safe_disk_i_size_write(inode, 0);
Chandan Rajendra27772b62016-01-21 15:56:03 +05304826 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004827 ret = btrfs_update_inode(trans, root, inode);
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02004828 btrfs_drew_write_unlock(&root->snapshot_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004829 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05004830 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004831
Josef Bacika41ad392011-01-31 15:30:16 -05004832 /*
4833 * We're truncating a file that used to have good data down to
4834 * zero. Make sure it gets into the ordered flush list so that
4835 * any new writes get down to disk quickly.
4836 */
4837 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004838 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4839 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004840
Josef Bacika41ad392011-01-31 15:30:16 -05004841 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004842
David Sterba8e0fa5d2020-06-09 19:21:48 +02004843 /* Disable nonlocked read DIO to avoid the endless truncate */
4844 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00004845 inode_dio_wait(inode);
David Sterba8e0fa5d2020-06-09 19:21:48 +02004846 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00004847
Filipe Manana213e8c52018-02-06 20:40:31 +00004848 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004849 if (ret && inode->i_nlink) {
4850 int err;
4851
4852 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07004853 * Truncate failed, so fix up the in-memory size. We
4854 * adjusted disk_i_size down as we removed extents, so
4855 * wait for disk_i_size to be stable and then update the
4856 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004857 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07004858 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004859 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07004860 return err;
4861 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004862 }
Yan, Zheng80825102009-11-12 09:35:36 +00004863 }
4864
Josef Bacika41ad392011-01-31 15:30:16 -05004865 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004866}
4867
Chris Mason39279cc2007-06-12 06:35:45 -04004868static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
4869{
David Howells2b0143b2015-03-17 22:25:59 +00004870 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08004871 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004872 int err;
4873
Li Zefanb83cc962010-12-20 16:04:08 +08004874 if (btrfs_root_readonly(root))
4875 return -EROFS;
4876
Jan Kara31051c82016-05-26 16:55:18 +02004877 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04004878 if (err)
4879 return err;
4880
Chris Mason5a3f23d2009-03-31 13:27:11 -04004881 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00004882 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00004883 if (err)
4884 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004885 }
Yan Zheng9036c102008-10-30 14:19:41 -04004886
Christoph Hellwig10257742010-06-04 11:30:02 +02004887 if (attr->ia_valid) {
4888 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004889 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004890 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04004891
Josef Bacik22c44fe2011-11-30 10:45:38 -05004892 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08004893 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02004894 }
4895
Chris Mason39279cc2007-06-12 06:35:45 -04004896 return err;
4897}
Chris Mason61295eb2008-01-14 16:24:38 -05004898
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004899/*
4900 * While truncating the inode pages during eviction, we get the VFS calling
4901 * btrfs_invalidatepage() against each page of the inode. This is slow because
4902 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
4903 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
4904 * extent_state structures over and over, wasting lots of time.
4905 *
4906 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
4907 * those expensive operations on a per page basis and do only the ordered io
4908 * finishing, while we release here the extent_map and extent_state structures,
4909 * without the excessive merging and splitting.
4910 */
4911static void evict_inode_truncate_pages(struct inode *inode)
4912{
4913 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4914 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
4915 struct rb_node *node;
4916
4917 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07004918 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004919
4920 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08004921 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004922 struct extent_map *em;
4923
Liu Bo07e1ce02018-08-23 03:51:52 +08004924 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004925 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08004926 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
4927 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004928 remove_extent_mapping(map_tree, em);
4929 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01004930 if (need_resched()) {
4931 write_unlock(&map_tree->lock);
4932 cond_resched();
4933 write_lock(&map_tree->lock);
4934 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004935 }
4936 write_unlock(&map_tree->lock);
4937
Filipe Manana6ca07092015-05-26 00:55:42 +01004938 /*
4939 * Keep looping until we have no more ranges in the io tree.
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07004940 * We can have ongoing bios started by readahead that have
4941 * their endio callback (extent_io.c:end_bio_extent_readpage)
Filipe Manana9c6429d2015-06-10 12:55:41 +01004942 * still in progress (unlocked the pages in the bio but did not yet
4943 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01004944 * ranges can still be locked and eviction started because before
4945 * submitting those bios, which are executed by a separate task (work
4946 * queue kthread), inode references (inode->i_count) were not taken
4947 * (which would be dropped in the end io callback of each bio).
4948 * Therefore here we effectively end up waiting for those bios and
4949 * anyone else holding locked ranges without having bumped the inode's
4950 * reference count - if we don't do it, when they access the inode's
4951 * io_tree to unlock a range it may be too late, leading to an
4952 * use-after-free issue.
4953 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004954 spin_lock(&io_tree->lock);
4955 while (!RB_EMPTY_ROOT(&io_tree->state)) {
4956 struct extent_state *state;
4957 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01004958 u64 start;
4959 u64 end;
Filipe Manana421f0922018-10-12 13:02:48 +01004960 unsigned state_flags;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004961
4962 node = rb_first(&io_tree->state);
4963 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01004964 start = state->start;
4965 end = state->end;
Filipe Manana421f0922018-10-12 13:02:48 +01004966 state_flags = state->state;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004967 spin_unlock(&io_tree->lock);
4968
David Sterbaff13db42015-12-03 14:30:40 +01004969 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08004970
4971 /*
4972 * If still has DELALLOC flag, the extent didn't reach disk,
4973 * and its reserved space won't be freed by delayed_ref.
4974 * So we need to free its reserved space here.
4975 * (Refer to comment in btrfs_invalidatepage, case 2)
4976 *
4977 * Note, end is the bytenr of last byte, so we need + 1 here.
4978 */
Filipe Manana421f0922018-10-12 13:02:48 +01004979 if (state_flags & EXTENT_DELALLOC)
Nikolay Borisov8b8a9792020-06-03 08:55:11 +03004980 btrfs_qgroup_free_data(BTRFS_I(inode), NULL, start,
4981 end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08004982
Filipe Manana6ca07092015-05-26 00:55:42 +01004983 clear_extent_bit(io_tree, start, end,
Omar Sandovale1821632019-08-15 14:04:04 -07004984 EXTENT_LOCKED | EXTENT_DELALLOC |
4985 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
4986 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004987
Filipe Manana7064dd52014-08-08 02:47:05 +01004988 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00004989 spin_lock(&io_tree->lock);
4990 }
4991 spin_unlock(&io_tree->lock);
4992}
4993
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07004994static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04004995 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07004996{
4997 struct btrfs_fs_info *fs_info = root->fs_info;
4998 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikd3984c92019-08-01 18:19:37 -04004999 struct btrfs_trans_handle *trans;
Josef Bacik2bd36e72019-08-22 15:14:33 -04005000 u64 delayed_refs_extra = btrfs_calc_insert_metadata_size(fs_info, 1);
Josef Bacikd3984c92019-08-01 18:19:37 -04005001 int ret;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005002
Josef Bacikd3984c92019-08-01 18:19:37 -04005003 /*
5004 * Eviction should be taking place at some place safe because of our
5005 * delayed iputs. However the normal flushing code will run delayed
5006 * iputs, so we cannot use FLUSH_ALL otherwise we'll deadlock.
5007 *
5008 * We reserve the delayed_refs_extra here again because we can't use
5009 * btrfs_start_transaction(root, 0) for the same deadlocky reason as
5010 * above. We reserve our extra bit here because we generate a ton of
5011 * delayed refs activity by truncating.
5012 *
5013 * If we cannot make our reservation we'll attempt to steal from the
5014 * global reserve, because we really want to be able to free up space.
5015 */
5016 ret = btrfs_block_rsv_refill(root, rsv, rsv->size + delayed_refs_extra,
5017 BTRFS_RESERVE_FLUSH_EVICT);
5018 if (ret) {
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005019 /*
5020 * Try to steal from the global reserve if there is space for
5021 * it.
5022 */
Josef Bacikd3984c92019-08-01 18:19:37 -04005023 if (btrfs_check_space_for_delayed_refs(fs_info) ||
5024 btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, 0)) {
5025 btrfs_warn(fs_info,
5026 "could not allocate space for delete; will truncate on mount");
5027 return ERR_PTR(-ENOSPC);
5028 }
5029 delayed_refs_extra = 0;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005030 }
Josef Bacikd3984c92019-08-01 18:19:37 -04005031
5032 trans = btrfs_join_transaction(root);
5033 if (IS_ERR(trans))
5034 return trans;
5035
5036 if (delayed_refs_extra) {
5037 trans->block_rsv = &fs_info->trans_block_rsv;
5038 trans->bytes_reserved = delayed_refs_extra;
5039 btrfs_block_rsv_migrate(rsv, trans->block_rsv,
5040 delayed_refs_extra, 1);
5041 }
5042 return trans;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005043}
5044
Al Virobd555972010-06-07 11:35:40 -04005045void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005046{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005047 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005048 struct btrfs_trans_handle *trans;
5049 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005050 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005051 int ret;
5052
liubo1abe9b82011-03-24 11:18:59 +00005053 trace_btrfs_inode_evict(inode);
5054
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005055 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005056 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005057 return;
5058 }
5059
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005060 evict_inode_truncate_pages(inode);
5061
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005062 if (inode->i_nlink &&
5063 ((btrfs_root_refs(&root->root_item) != 0 &&
5064 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005065 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005066 goto no_delete;
5067
Omar Sandoval27919062018-05-11 13:13:37 -07005068 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005069 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005070
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005071 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005072
Omar Sandoval7b40b692018-05-11 13:13:33 -07005073 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005074 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005075
Yan, Zheng76dda932009-09-21 16:00:26 -04005076 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005077 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5078 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005079 goto no_delete;
5080 }
5081
Nikolay Borisovaa790212017-01-10 20:35:40 +02005082 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005083 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005084 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005085
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005086 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005087 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005088 goto no_delete;
Josef Bacik2bd36e72019-08-22 15:14:33 -04005089 rsv->size = btrfs_calc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005090 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005091
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005092 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005093
Yan, Zheng80825102009-11-12 09:35:36 +00005094 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005095 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005096 if (IS_ERR(trans))
5097 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005098
5099 trans->block_rsv = rsv;
5100
Yan, Zhengd68fc572010-05-16 10:49:58 -04005101 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Omar Sandoval27919062018-05-11 13:13:37 -07005102 trans->block_rsv = &fs_info->trans_block_rsv;
5103 btrfs_end_transaction(trans);
5104 btrfs_btree_balance_dirty(fs_info);
5105 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5106 goto free_rsv;
5107 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005108 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005109 }
5110
Josef Bacik4ef31a42013-08-13 14:10:08 -04005111 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005112 * Errors here aren't a big deal, it just means we leave orphan items in
5113 * the tree. They will be cleaned up on the next mount. If the inode
5114 * number gets reused, cleanup deletes the orphan item without doing
5115 * anything, and unlink reuses the existing orphan item.
5116 *
5117 * If it turns out that we are dropping too many of these, we might want
5118 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005119 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005120 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005121 if (!IS_ERR(trans)) {
5122 trans->block_rsv = rsv;
5123 btrfs_orphan_del(trans, BTRFS_I(inode));
5124 trans->block_rsv = &fs_info->trans_block_rsv;
5125 btrfs_end_transaction(trans);
5126 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005127
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005128 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005129 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005130 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005131
Omar Sandoval27919062018-05-11 13:13:37 -07005132free_rsv:
5133 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005134no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005135 /*
5136 * If we didn't successfully delete, the orphan item will still be in
5137 * the tree and we'll retry on the next mount. Again, we might also want
5138 * to retry these periodically in the future.
5139 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005140 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005141 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005142}
5143
5144/*
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005145 * Return the key found in the dir entry in the location pointer, fill @type
5146 * with BTRFS_FT_*, and return 0.
5147 *
Su Yue005d6712018-03-05 17:13:37 +08005148 * If no dir entries were found, returns -ENOENT.
5149 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005150 */
5151static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005152 struct btrfs_key *location, u8 *type)
Chris Mason39279cc2007-06-12 06:35:45 -04005153{
5154 const char *name = dentry->d_name.name;
5155 int namelen = dentry->d_name.len;
5156 struct btrfs_dir_item *di;
5157 struct btrfs_path *path;
5158 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005159 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005160
5161 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005162 if (!path)
5163 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005164
David Sterbaf85b7372017-01-20 14:54:07 +01005165 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5166 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005167 if (IS_ERR_OR_NULL(di)) {
5168 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005169 goto out;
5170 }
Chris Masond3977122009-01-05 21:25:51 -05005171
Chris Mason5f39d392007-10-15 16:14:19 -04005172 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005173 if (location->type != BTRFS_INODE_ITEM_KEY &&
5174 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005175 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005176 btrfs_warn(root->fs_info,
5177"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5178 __func__, name, btrfs_ino(BTRFS_I(dir)),
5179 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005180 }
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005181 if (!ret)
5182 *type = btrfs_dir_type(path->nodes[0], di);
Chris Mason39279cc2007-06-12 06:35:45 -04005183out:
Chris Mason39279cc2007-06-12 06:35:45 -04005184 btrfs_free_path(path);
5185 return ret;
5186}
5187
5188/*
5189 * when we hit a tree root in a directory, the btrfs part of the inode
5190 * needs to be changed to reflect the root directory of the tree root. This
5191 * is kind of like crossing a mount point.
5192 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005193static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005194 struct inode *dir,
5195 struct dentry *dentry,
5196 struct btrfs_key *location,
5197 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005198{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005199 struct btrfs_path *path;
5200 struct btrfs_root *new_root;
5201 struct btrfs_root_ref *ref;
5202 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005203 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005204 int ret;
5205 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005206
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005207 path = btrfs_alloc_path();
5208 if (!path) {
5209 err = -ENOMEM;
5210 goto out;
5211 }
Chris Mason39279cc2007-06-12 06:35:45 -04005212
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005213 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005214 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5215 key.type = BTRFS_ROOT_REF_KEY;
5216 key.offset = location->objectid;
5217
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005218 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005219 if (ret) {
5220 if (ret < 0)
5221 err = ret;
5222 goto out;
5223 }
Chris Mason39279cc2007-06-12 06:35:45 -04005224
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005225 leaf = path->nodes[0];
5226 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005227 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005228 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5229 goto out;
5230
5231 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5232 (unsigned long)(ref + 1),
5233 dentry->d_name.len);
5234 if (ret)
5235 goto out;
5236
David Sterbab3b4aa72011-04-21 01:20:15 +02005237 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005238
David Sterba56e93572020-05-15 19:35:55 +02005239 new_root = btrfs_get_fs_root(fs_info, location->objectid, true);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005240 if (IS_ERR(new_root)) {
5241 err = PTR_ERR(new_root);
5242 goto out;
5243 }
5244
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005245 *sub_root = new_root;
5246 location->objectid = btrfs_root_dirid(&new_root->root_item);
5247 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005248 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005249 err = 0;
5250out:
5251 btrfs_free_path(path);
5252 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005253}
5254
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005255static void inode_tree_add(struct inode *inode)
5256{
5257 struct btrfs_root *root = BTRFS_I(inode)->root;
5258 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005259 struct rb_node **p;
5260 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005261 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005262 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005263
Al Viro1d3382cb2010-10-23 15:19:20 -04005264 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005265 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005266 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005267 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005268 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005269 while (*p) {
5270 parent = *p;
5271 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5272
David Sterba37508512018-06-29 10:56:40 +02005273 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005274 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005275 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005276 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005277 else {
5278 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005279 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005280 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005281 RB_CLEAR_NODE(parent);
5282 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005283 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005284 }
5285 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005286 rb_link_node(new, parent, p);
5287 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005288 spin_unlock(&root->inode_lock);
5289}
5290
5291static void inode_tree_del(struct inode *inode)
5292{
5293 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005294 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005295
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005296 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005297 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005298 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005299 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005300 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005301 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005302 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005303
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005304 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005305 spin_lock(&root->inode_lock);
5306 empty = RB_EMPTY_ROOT(&root->inode_tree);
5307 spin_unlock(&root->inode_lock);
5308 if (empty)
5309 btrfs_add_dead_root(root);
5310 }
5311}
5312
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005313
Chris Masone02119d2008-09-05 16:13:11 -04005314static int btrfs_init_locked_inode(struct inode *inode, void *p)
5315{
5316 struct btrfs_iget_args *args = p;
David Sterba0202e832020-05-15 19:35:59 +02005317
5318 inode->i_ino = args->ino;
5319 BTRFS_I(inode)->location.objectid = args->ino;
5320 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
5321 BTRFS_I(inode)->location.offset = 0;
Josef Bacik5c8fd992020-02-14 16:11:43 -05005322 BTRFS_I(inode)->root = btrfs_grab_root(args->root);
5323 BUG_ON(args->root && !BTRFS_I(inode)->root);
Chris Mason39279cc2007-06-12 06:35:45 -04005324 return 0;
5325}
5326
5327static int btrfs_find_actor(struct inode *inode, void *opaque)
5328{
5329 struct btrfs_iget_args *args = opaque;
David Sterba0202e832020-05-15 19:35:59 +02005330
5331 return args->ino == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005332 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005333}
5334
David Sterba0202e832020-05-15 19:35:59 +02005335static struct inode *btrfs_iget_locked(struct super_block *s, u64 ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005336 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005337{
5338 struct inode *inode;
5339 struct btrfs_iget_args args;
David Sterba0202e832020-05-15 19:35:59 +02005340 unsigned long hashval = btrfs_inode_hash(ino, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005341
David Sterba0202e832020-05-15 19:35:59 +02005342 args.ino = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04005343 args.root = root;
5344
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005345 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005346 btrfs_init_locked_inode,
5347 (void *)&args);
5348 return inode;
5349}
5350
David Sterba4c66e0d2019-10-03 19:09:35 +02005351/*
David Sterba0202e832020-05-15 19:35:59 +02005352 * Get an inode object given its inode number and corresponding root.
David Sterba4c66e0d2019-10-03 19:09:35 +02005353 * Path can be preallocated to prevent recursing back to iget through
5354 * allocator. NULL is also valid but may require an additional allocation
5355 * later.
Balaji Rao1a54ef82008-07-21 02:01:04 +05305356 */
David Sterba0202e832020-05-15 19:35:59 +02005357struct inode *btrfs_iget_path(struct super_block *s, u64 ino,
David Sterba4c66e0d2019-10-03 19:09:35 +02005358 struct btrfs_root *root, struct btrfs_path *path)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305359{
5360 struct inode *inode;
5361
David Sterba0202e832020-05-15 19:35:59 +02005362 inode = btrfs_iget_locked(s, ino, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305363 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005364 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305365
5366 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005367 int ret;
5368
Filipe Manana4222ea72018-10-24 10:13:03 +01005369 ret = btrfs_read_locked_inode(inode, path);
Al Viro9bc2cef2018-07-29 23:04:50 +01005370 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005371 inode_tree_add(inode);
5372 unlock_new_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005373 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005374 iget_failed(inode);
5375 /*
5376 * ret > 0 can come from btrfs_search_slot called by
5377 * btrfs_read_locked_inode, this means the inode item
5378 * was not found.
5379 */
5380 if (ret > 0)
5381 ret = -ENOENT;
5382 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005383 }
5384 }
5385
Balaji Rao1a54ef82008-07-21 02:01:04 +05305386 return inode;
5387}
5388
David Sterba0202e832020-05-15 19:35:59 +02005389struct inode *btrfs_iget(struct super_block *s, u64 ino, struct btrfs_root *root)
Filipe Manana4222ea72018-10-24 10:13:03 +01005390{
David Sterba0202e832020-05-15 19:35:59 +02005391 return btrfs_iget_path(s, ino, root, NULL);
Filipe Manana4222ea72018-10-24 10:13:03 +01005392}
5393
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005394static struct inode *new_simple_dir(struct super_block *s,
5395 struct btrfs_key *key,
5396 struct btrfs_root *root)
5397{
5398 struct inode *inode = new_inode(s);
5399
5400 if (!inode)
5401 return ERR_PTR(-ENOMEM);
5402
Josef Bacik5c8fd992020-02-14 16:11:43 -05005403 BTRFS_I(inode)->root = btrfs_grab_root(root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005404 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005405 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005406
5407 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Omar Sandoval6bb6b512019-12-05 10:36:04 -08005408 /*
5409 * We only need lookup, the rest is read-only and there's no inode
5410 * associated with the dentry
5411 */
5412 inode->i_op = &simple_dir_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005413 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005414 inode->i_fop = &simple_dir_operations;
5415 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005416 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305417 inode->i_atime = inode->i_mtime;
5418 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005419 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005420
5421 return inode;
5422}
5423
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005424static inline u8 btrfs_inode_type(struct inode *inode)
5425{
5426 /*
5427 * Compile-time asserts that generic FT_* types still match
5428 * BTRFS_FT_* types
5429 */
5430 BUILD_BUG_ON(BTRFS_FT_UNKNOWN != FT_UNKNOWN);
5431 BUILD_BUG_ON(BTRFS_FT_REG_FILE != FT_REG_FILE);
5432 BUILD_BUG_ON(BTRFS_FT_DIR != FT_DIR);
5433 BUILD_BUG_ON(BTRFS_FT_CHRDEV != FT_CHRDEV);
5434 BUILD_BUG_ON(BTRFS_FT_BLKDEV != FT_BLKDEV);
5435 BUILD_BUG_ON(BTRFS_FT_FIFO != FT_FIFO);
5436 BUILD_BUG_ON(BTRFS_FT_SOCK != FT_SOCK);
5437 BUILD_BUG_ON(BTRFS_FT_SYMLINK != FT_SYMLINK);
5438
5439 return fs_umode_to_ftype(inode->i_mode);
5440}
5441
Chris Mason3de45862008-11-17 21:02:50 -05005442struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005443{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005444 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005445 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005446 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005447 struct btrfs_root *sub_root = root;
5448 struct btrfs_key location;
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005449 u8 di_type = 0;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005450 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005451
5452 if (dentry->d_name.len > BTRFS_NAME_LEN)
5453 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005454
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005455 ret = btrfs_inode_by_name(dir, dentry, &location, &di_type);
Chris Mason39279cc2007-06-12 06:35:45 -04005456 if (ret < 0)
5457 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005458
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005459 if (location.type == BTRFS_INODE_ITEM_KEY) {
David Sterba0202e832020-05-15 19:35:59 +02005460 inode = btrfs_iget(dir->i_sb, location.objectid, root);
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005461 if (IS_ERR(inode))
5462 return inode;
5463
5464 /* Do extra check against inode mode with di_type */
5465 if (btrfs_inode_type(inode) != di_type) {
5466 btrfs_crit(fs_info,
5467"inode mode mismatch with dir: inode mode=0%o btrfs type=%u dir type=%u",
5468 inode->i_mode, btrfs_inode_type(inode),
5469 di_type);
5470 iput(inode);
5471 return ERR_PTR(-EUCLEAN);
5472 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005473 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005474 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005475
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005476 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005477 &location, &sub_root);
5478 if (ret < 0) {
5479 if (ret != -ENOENT)
5480 inode = ERR_PTR(ret);
5481 else
5482 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5483 } else {
David Sterba0202e832020-05-15 19:35:59 +02005484 inode = btrfs_iget(dir->i_sb, location.objectid, sub_root);
Chris Mason39279cc2007-06-12 06:35:45 -04005485 }
Josef Bacik87270022020-01-24 09:32:31 -05005486 if (root != sub_root)
Josef Bacik00246522020-01-24 09:33:01 -05005487 btrfs_put_root(sub_root);
Yan, Zheng76dda932009-09-21 16:00:26 -04005488
Julia Lawall34d19ba2011-01-24 19:55:19 +00005489 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005490 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005491 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005492 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005493 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005494 if (ret) {
5495 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005496 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005497 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005498 }
5499
Chris Mason3de45862008-11-17 21:02:50 -05005500 return inode;
5501}
5502
Nick Pigginfe15ce42011-01-07 17:49:23 +11005503static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005504{
5505 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005506 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005507
Li Zefan848cce02012-02-21 17:04:28 +08005508 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005509 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005510
Li Zefan848cce02012-02-21 17:04:28 +08005511 if (inode) {
5512 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005513 if (btrfs_root_refs(&root->root_item) == 0)
5514 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005515
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005516 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005517 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005518 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005519 return 0;
5520}
5521
Chris Mason3de45862008-11-17 21:02:50 -05005522static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005523 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005524{
Al Viro3837d202018-10-10 16:38:27 -04005525 struct inode *inode = btrfs_lookup_dentry(dir, dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005526
Al Viro3837d202018-10-10 16:38:27 -04005527 if (inode == ERR_PTR(-ENOENT))
5528 inode = NULL;
Al Viro41d28bc2014-10-12 22:24:21 -04005529 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005530}
5531
Josef Bacik23b5ec72017-07-24 15:14:25 -04005532/*
5533 * All this infrastructure exists because dir_emit can fault, and we are holding
5534 * the tree lock when doing readdir. For now just allocate a buffer and copy
5535 * our information into that, and then dir_emit from the buffer. This is
5536 * similar to what NFS does, only we don't keep the buffer around in pagecache
5537 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5538 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5539 * tree lock.
5540 */
5541static int btrfs_opendir(struct inode *inode, struct file *file)
5542{
5543 struct btrfs_file_private *private;
5544
5545 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5546 if (!private)
5547 return -ENOMEM;
5548 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5549 if (!private->filldir_buf) {
5550 kfree(private);
5551 return -ENOMEM;
5552 }
5553 file->private_data = private;
5554 return 0;
5555}
5556
5557struct dir_entry {
5558 u64 ino;
5559 u64 offset;
5560 unsigned type;
5561 int name_len;
5562};
5563
5564static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5565{
5566 while (entries--) {
5567 struct dir_entry *entry = addr;
5568 char *name = (char *)(entry + 1);
5569
David Sterba92d32172018-04-16 21:10:14 +02005570 ctx->pos = get_unaligned(&entry->offset);
5571 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5572 get_unaligned(&entry->ino),
5573 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04005574 return 1;
David Sterba92d32172018-04-16 21:10:14 +02005575 addr += sizeof(struct dir_entry) +
5576 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005577 ctx->pos++;
5578 }
5579 return 0;
5580}
5581
Al Viro9cdda8d2013-05-22 16:48:09 -04005582static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005583{
Al Viro9cdda8d2013-05-22 16:48:09 -04005584 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005585 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005586 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005587 struct btrfs_dir_item *di;
5588 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005589 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005590 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005591 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005592 struct list_head ins_list;
5593 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005594 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005595 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005596 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005597 char *name_ptr;
5598 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005599 int entries = 0;
5600 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005601 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005602 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005603
Al Viro9cdda8d2013-05-22 16:48:09 -04005604 if (!dir_emit_dots(file, ctx))
5605 return 0;
5606
David Woodhouse49593bf2008-08-17 17:08:36 +01005607 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005608 if (!path)
5609 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005610
Josef Bacik23b5ec72017-07-24 15:14:25 -04005611 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005612 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005613
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005614 INIT_LIST_HEAD(&ins_list);
5615 INIT_LIST_HEAD(&del_list);
5616 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005617
Josef Bacik23b5ec72017-07-24 15:14:25 -04005618again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005619 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005620 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005621 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005622
Chris Mason39279cc2007-06-12 06:35:45 -04005623 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5624 if (ret < 0)
5625 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005626
5627 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04005628 struct dir_entry *entry;
5629
Chris Mason5f39d392007-10-15 16:14:19 -04005630 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005631 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005632 if (slot >= btrfs_header_nritems(leaf)) {
5633 ret = btrfs_next_leaf(root, path);
5634 if (ret < 0)
5635 goto err;
5636 else if (ret > 0)
5637 break;
5638 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005639 }
Chris Mason3de45862008-11-17 21:02:50 -05005640
Chris Mason5f39d392007-10-15 16:14:19 -04005641 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5642
5643 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005644 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005645 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005646 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005647 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005648 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005649 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005650 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04005651 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005652 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005653 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5654 PAGE_SIZE) {
5655 btrfs_release_path(path);
5656 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5657 if (ret)
5658 goto nopos;
5659 addr = private->filldir_buf;
5660 entries = 0;
5661 total_len = 0;
5662 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04005663 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005664
5665 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02005666 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005667 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005668 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5669 name_len);
Phillip Potter7d157c32019-03-26 21:39:34 +00005670 put_unaligned(fs_ftype_to_dtype(btrfs_dir_type(leaf, di)),
David Sterba92d32172018-04-16 21:10:14 +02005671 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005672 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02005673 put_unaligned(location.objectid, &entry->ino);
5674 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005675 entries++;
5676 addr += sizeof(struct dir_entry) + name_len;
5677 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08005678next:
5679 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005680 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005681 btrfs_release_path(path);
5682
5683 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5684 if (ret)
5685 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01005686
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005687 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005688 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005689 goto nopos;
5690
Zach Browndb62efb2013-07-11 16:19:42 -07005691 /*
5692 * Stop new entries from being returned after we return the last
5693 * entry.
5694 *
5695 * New directory entries are assigned a strictly increasing
5696 * offset. This means that new entries created during readdir
5697 * are *guaranteed* to be seen in the future by that readdir.
5698 * This has broken buggy programs which operate on names as
5699 * they're returned by readdir. Until we re-use freed offsets
5700 * we have this hack to stop new entries from being returned
5701 * under the assumption that they'll never reach this huge
5702 * offset.
5703 *
5704 * This is being careful not to overflow 32bit loff_t unless the
5705 * last entry requires it because doing so has broken 32bit apps
5706 * in the past.
5707 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005708 if (ctx->pos >= INT_MAX)
5709 ctx->pos = LLONG_MAX;
5710 else
5711 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005712nopos:
5713 ret = 0;
5714err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005715 if (put)
5716 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005717 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005718 return ret;
5719}
5720
Chris Mason39279cc2007-06-12 06:35:45 -04005721/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005722 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005723 * inode changes. But, it is most likely to find the inode in cache.
5724 * FIXME, needs more benchmarking...there are no reasons other than performance
5725 * to keep or drop this code.
5726 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005727static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005728{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005729 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005730 struct btrfs_root *root = BTRFS_I(inode)->root;
5731 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005732 int ret;
5733
Josef Bacik72ac3c02012-05-23 14:13:11 -04005734 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005735 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005736
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005737 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005738 if (IS_ERR(trans))
5739 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005740
5741 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005742 if (ret && ret == -ENOSPC) {
5743 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005744 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04005745 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005746 if (IS_ERR(trans))
5747 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005748
Chris Mason94b60442010-05-26 11:02:00 -04005749 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005750 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005751 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08005752 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005753 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005754
5755 return ret;
5756}
5757
5758/*
5759 * This is a copy of file_update_time. We need this so we can return error on
5760 * ENOSPC for updating the inode in the case of file write and mmap writes.
5761 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07005762static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04005763 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005764{
Alexander Block2bc5565282012-06-15 09:49:33 +02005765 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05005766 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02005767
5768 if (btrfs_root_readonly(root))
5769 return -EROFS;
5770
Josef Bacike41f9412012-03-26 09:46:47 -04005771 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05005772 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04005773 if (flags & S_CTIME)
5774 inode->i_ctime = *now;
5775 if (flags & S_MTIME)
5776 inode->i_mtime = *now;
5777 if (flags & S_ATIME)
5778 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05005779 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005780}
5781
Chris Masond352ac62008-09-29 15:18:18 -04005782/*
5783 * find the highest existing sequence number in a directory
5784 * and then set the in-memory index_cnt variable to reflect
5785 * free sequence numbers
5786 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005787static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04005788{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005789 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04005790 struct btrfs_key key, found_key;
5791 struct btrfs_path *path;
5792 struct extent_buffer *leaf;
5793 int ret;
5794
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005795 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02005796 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04005797 key.offset = (u64)-1;
5798
5799 path = btrfs_alloc_path();
5800 if (!path)
5801 return -ENOMEM;
5802
5803 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5804 if (ret < 0)
5805 goto out;
5806 /* FIXME: we should be able to handle this */
5807 if (ret == 0)
5808 goto out;
5809 ret = 0;
5810
5811 /*
5812 * MAGIC NUMBER EXPLANATION:
5813 * since we search a directory based on f_pos we have to start at 2
5814 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5815 * else has to start at 2
5816 */
5817 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005818 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04005819 goto out;
5820 }
5821
5822 path->slots[0]--;
5823
5824 leaf = path->nodes[0];
5825 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5826
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005827 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02005828 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005829 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04005830 goto out;
5831 }
5832
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005833 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04005834out:
5835 btrfs_free_path(path);
5836 return ret;
5837}
5838
Chris Masond352ac62008-09-29 15:18:18 -04005839/*
5840 * helper to find a free sequence number in a given directory. This current
5841 * code is very simple, later versions will do smarter things in the btree
5842 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02005843int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04005844{
5845 int ret = 0;
5846
Nikolay Borisov877574e2017-02-20 13:50:33 +02005847 if (dir->index_cnt == (u64)-1) {
5848 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08005849 if (ret) {
5850 ret = btrfs_set_inode_index_count(dir);
5851 if (ret)
5852 return ret;
5853 }
Josef Bacikaec74772008-07-24 12:12:38 -04005854 }
5855
Nikolay Borisov877574e2017-02-20 13:50:33 +02005856 *index = dir->index_cnt;
5857 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04005858
5859 return ret;
5860}
5861
Chris Masonb0d5d102014-09-08 13:08:51 -07005862static int btrfs_insert_inode_locked(struct inode *inode)
5863{
5864 struct btrfs_iget_args args;
David Sterba0202e832020-05-15 19:35:59 +02005865
5866 args.ino = BTRFS_I(inode)->location.objectid;
Chris Masonb0d5d102014-09-08 13:08:51 -07005867 args.root = BTRFS_I(inode)->root;
5868
5869 return insert_inode_locked4(inode,
5870 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
5871 btrfs_find_actor, &args);
5872}
5873
Anand Jain19aee8d2017-07-18 17:37:05 +08005874/*
5875 * Inherit flags from the parent inode.
5876 *
5877 * Currently only the compression flags and the cow flags are inherited.
5878 */
5879static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
5880{
5881 unsigned int flags;
5882
5883 if (!dir)
5884 return;
5885
5886 flags = BTRFS_I(dir)->flags;
5887
5888 if (flags & BTRFS_INODE_NOCOMPRESS) {
5889 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
5890 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
5891 } else if (flags & BTRFS_INODE_COMPRESS) {
5892 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
5893 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
5894 }
5895
5896 if (flags & BTRFS_INODE_NODATACOW) {
5897 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
5898 if (S_ISREG(inode->i_mode))
5899 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
5900 }
5901
David Sterba7b6a2212018-03-26 18:40:21 +02005902 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08005903}
5904
Chris Mason39279cc2007-06-12 06:35:45 -04005905static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
5906 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04005907 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05005908 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04005909 u64 ref_objectid, u64 objectid,
5910 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04005911{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005912 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04005913 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005914 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04005915 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04005916 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05005917 struct btrfs_inode_ref *ref;
5918 struct btrfs_key key[2];
5919 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005920 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05005921 unsigned long ptr;
Josef Bacik11a19a92019-09-09 10:12:04 -04005922 unsigned int nofs_flag;
Chris Mason39279cc2007-06-12 06:35:45 -04005923 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005924
Chris Mason5f39d392007-10-15 16:14:19 -04005925 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005926 if (!path)
5927 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04005928
Josef Bacik11a19a92019-09-09 10:12:04 -04005929 nofs_flag = memalloc_nofs_save();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005930 inode = new_inode(fs_info->sb);
Josef Bacik11a19a92019-09-09 10:12:04 -04005931 memalloc_nofs_restore(nofs_flag);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005932 if (!inode) {
5933 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005934 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005935 }
Chris Mason39279cc2007-06-12 06:35:45 -04005936
Li Zefan581bb052011-04-20 10:06:11 +08005937 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01005938 * O_TMPFILE, set link count to 0, so that after this point,
5939 * we fill in an inode item with the correct link count.
5940 */
5941 if (!name)
5942 set_nlink(inode, 0);
5943
5944 /*
Li Zefan581bb052011-04-20 10:06:11 +08005945 * we have to initialize this early, so we can reclaim the inode
5946 * number if we fail afterwards in this function.
5947 */
5948 inode->i_ino = objectid;
5949
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005950 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00005951 trace_btrfs_inode_request(dir);
5952
Nikolay Borisov877574e2017-02-20 13:50:33 +02005953 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04005954 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005955 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005956 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005957 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04005958 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005959 } else if (dir) {
5960 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04005961 }
5962 /*
5963 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08005964 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04005965 * number
5966 */
5967 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08005968 BTRFS_I(inode)->dir_index = *index;
Josef Bacik5c8fd992020-02-14 16:11:43 -05005969 BTRFS_I(inode)->root = btrfs_grab_root(root);
Chris Masone02119d2008-09-05 16:13:11 -04005970 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00005971 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04005972
Josef Bacik5dc562c2012-08-17 13:14:17 -04005973 /*
5974 * We could have gotten an inode number from somebody who was fsynced
5975 * and then removed in this same transaction, so let's just set full
5976 * sync since it will be a full sync anyway and this will blow away the
5977 * old info in the log.
5978 */
5979 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
5980
Chris Mason9c583092008-01-29 15:15:18 -05005981 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02005982 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05005983 key[0].offset = 0;
5984
Chris Mason9c583092008-01-29 15:15:18 -05005985 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005986
5987 if (name) {
5988 /*
5989 * Start new inodes with an inode_ref. This is slightly more
5990 * efficient for small numbers of hard links since they will
5991 * be packed into one item. Extended refs will kick in if we
5992 * add more hard links than can fit in the ref item.
5993 */
5994 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02005995 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01005996 key[1].offset = ref_objectid;
5997
5998 sizes[1] = name_len + sizeof(*ref);
5999 }
Chris Mason9c583092008-01-29 15:15:18 -05006000
Chris Masonb0d5d102014-09-08 13:08:51 -07006001 location = &BTRFS_I(inode)->location;
6002 location->objectid = objectid;
6003 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006004 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006005
6006 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006007 if (ret < 0) {
6008 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006009 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006010 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006011
Chris Masonb9473432009-03-13 11:00:37 -04006012 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006013 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006014 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006015 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006016
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006017 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006018 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306019
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006020 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306021 inode->i_atime = inode->i_mtime;
6022 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006023 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306024
Chris Mason5f39d392007-10-15 16:14:19 -04006025 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6026 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006027 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006028 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006029 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006030
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006031 if (name) {
6032 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6033 struct btrfs_inode_ref);
6034 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6035 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6036 ptr = (unsigned long)(ref + 1);
6037 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6038 }
Chris Mason9c583092008-01-29 15:15:18 -05006039
Chris Mason5f39d392007-10-15 16:14:19 -04006040 btrfs_mark_buffer_dirty(path->nodes[0]);
6041 btrfs_free_path(path);
6042
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006043 btrfs_inherit_iflags(inode, dir);
6044
Al Viro569254b2011-07-24 17:08:40 -04006045 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006046 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006047 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006048 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006049 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6050 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006051 }
6052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006053 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006054
6055 trace_btrfs_inode_new(inode);
Nikolay Borisovd9094412020-06-05 10:41:13 +03006056 btrfs_set_inode_last_trans(trans, BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +00006057
Alexander Block8ea05e32012-07-25 17:35:53 +02006058 btrfs_update_root_times(trans, root);
6059
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006060 ret = btrfs_inode_inherit_props(trans, inode, dir);
6061 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006062 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006063 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006064 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006065
Chris Mason39279cc2007-06-12 06:35:45 -04006066 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006067
6068fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006069 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006070fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006071 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006072 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006073 btrfs_free_path(path);
6074 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006075}
6076
Chris Masond352ac62008-09-29 15:18:18 -04006077/*
6078 * utility function to add 'inode' into 'parent_inode' with
6079 * a give name and a given sequence number.
6080 * if 'add_backref' is true, also insert a backref from the
6081 * inode to the parent directory.
6082 */
Chris Masone02119d2008-09-05 16:13:11 -04006083int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006084 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006085 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006086{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006087 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006088 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006089 struct btrfs_root *root = parent_inode->root;
6090 u64 ino = btrfs_ino(inode);
6091 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006092
Li Zefan33345d012011-04-20 10:31:50 +08006093 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006094 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006095 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006096 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006097 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006098 key.offset = 0;
6099 }
Chris Mason39279cc2007-06-12 06:35:45 -04006100
Li Zefan33345d012011-04-20 10:31:50 +08006101 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006102 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006103 root->root_key.objectid, parent_ino,
6104 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006105 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006106 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6107 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006108 }
6109
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006110 /* Nothing to clean up yet */
6111 if (ret)
6112 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006113
Lu Fengqi684572d2018-08-04 21:10:57 +08006114 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006115 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006116 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006117 goto fail_dir_item;
6118 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006119 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006120 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006121 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006122
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006123 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006124 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006125 inode_inc_iversion(&parent_inode->vfs_inode);
Filipe Manana5338e432019-05-15 16:02:47 +01006126 /*
6127 * If we are replaying a log tree, we do not want to update the mtime
6128 * and ctime of the parent directory with the current time, since the
6129 * log replay procedure is responsible for setting them to their correct
6130 * values (the ones it had when the fsync was done).
6131 */
6132 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags)) {
6133 struct timespec64 now = current_time(&parent_inode->vfs_inode);
6134
6135 parent_inode->vfs_inode.i_mtime = now;
6136 parent_inode->vfs_inode.i_ctime = now;
6137 }
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006138 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006139 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006140 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006141 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006142
6143fail_dir_item:
6144 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6145 u64 local_index;
6146 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006147 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006148 root->root_key.objectid, parent_ino,
6149 &local_index, name, name_len);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006150 if (err)
6151 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006152 } else if (add_backref) {
6153 u64 local_index;
6154 int err;
6155
6156 err = btrfs_del_inode_ref(trans, root, name, name_len,
6157 ino, parent_ino, &local_index);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006158 if (err)
6159 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006160 }
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006161
6162 /* Return the original error code */
Chris Masonfe66a052012-02-20 08:40:56 -05006163 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006164}
6165
6166static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006167 struct btrfs_inode *dir, struct dentry *dentry,
6168 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006169{
Josef Bacika1b075d2010-11-19 20:36:11 +00006170 int err = btrfs_add_link(trans, dir, inode,
6171 dentry->d_name.name, dentry->d_name.len,
6172 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006173 if (err > 0)
6174 err = -EEXIST;
6175 return err;
6176}
6177
Josef Bacik618e21d2007-07-11 10:18:17 -04006178static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006179 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006180{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006181 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006182 struct btrfs_trans_handle *trans;
6183 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006184 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006185 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006186 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006187 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006188
Josef Bacik9ed74f22009-09-11 16:12:44 -04006189 /*
6190 * 2 for inode item and ref
6191 * 2 for dir items
6192 * 1 for xattr if selinux is on
6193 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006194 trans = btrfs_start_transaction(root, 5);
6195 if (IS_ERR(trans))
6196 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006197
Li Zefan581bb052011-04-20 10:06:11 +08006198 err = btrfs_find_free_ino(root, &objectid);
6199 if (err)
6200 goto out_unlock;
6201
Josef Bacikaec74772008-07-24 12:12:38 -04006202 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006203 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6204 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006205 if (IS_ERR(inode)) {
6206 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006207 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006208 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006209 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006210
Casey Schauflerad19db72011-12-15 10:09:07 -05006211 /*
6212 * If the active LSM wants to access the inode during
6213 * d_instantiate it needs these. Smack checks to see
6214 * if the filesystem supports xattrs by looking at the
6215 * ops vector.
6216 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006217 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006218 init_special_inode(inode, inode->i_mode, rdev);
6219
6220 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006221 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006222 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006223
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006224 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6225 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006226 if (err)
6227 goto out_unlock;
6228
6229 btrfs_update_inode(trans, root, inode);
6230 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006231
Josef Bacik618e21d2007-07-11 10:18:17 -04006232out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006233 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006234 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006235 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006236 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006237 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006238 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006239 return err;
6240}
6241
Chris Mason39279cc2007-06-12 06:35:45 -04006242static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006243 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006244{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006245 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006246 struct btrfs_trans_handle *trans;
6247 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006248 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006249 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006250 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006251 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006252
Josef Bacik9ed74f22009-09-11 16:12:44 -04006253 /*
6254 * 2 for inode item and ref
6255 * 2 for dir items
6256 * 1 for xattr if selinux is on
6257 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006258 trans = btrfs_start_transaction(root, 5);
6259 if (IS_ERR(trans))
6260 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006261
Li Zefan581bb052011-04-20 10:06:11 +08006262 err = btrfs_find_free_ino(root, &objectid);
6263 if (err)
6264 goto out_unlock;
6265
Josef Bacikaec74772008-07-24 12:12:38 -04006266 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006267 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6268 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006269 if (IS_ERR(inode)) {
6270 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006271 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006272 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006273 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006274 /*
6275 * If the active LSM wants to access the inode during
6276 * d_instantiate it needs these. Smack checks to see
6277 * if the filesystem supports xattrs by looking at the
6278 * ops vector.
6279 */
6280 inode->i_fop = &btrfs_file_operations;
6281 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006282 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006283
6284 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6285 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006286 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006287
6288 err = btrfs_update_inode(trans, root, inode);
6289 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006290 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006291
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006292 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6293 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006294 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006295 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006296
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006297 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro1e2e5472018-05-04 08:23:01 -04006298 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006299
Chris Mason39279cc2007-06-12 06:35:45 -04006300out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006301 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006302 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006303 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006304 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006305 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006306 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006307 return err;
6308}
6309
6310static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6311 struct dentry *dentry)
6312{
Filipe Manana271dba452016-01-05 16:24:05 +00006313 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006314 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006315 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006316 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006317 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006318 int err;
6319 int drop_inode = 0;
6320
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006321 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006322 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006323 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006324
Mark Fashehf1863732012-08-08 11:32:27 -07006325 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006326 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006327
Nikolay Borisov877574e2017-02-20 13:50:33 +02006328 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006329 if (err)
6330 goto fail;
6331
Yan, Zhenga22285a2010-05-16 10:48:46 -04006332 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006333 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006334 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006335 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006336 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006337 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006338 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006339 if (IS_ERR(trans)) {
6340 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006341 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006342 goto fail;
6343 }
Chris Mason5f39d392007-10-15 16:14:19 -04006344
Miao Xie67de1172013-12-26 13:07:06 +08006345 /* There are several dir indexes for this inode, clear the cache. */
6346 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006347 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006348 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006349 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006350 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006351 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006352
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006353 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6354 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006355
Yan, Zhenga5719522009-09-24 09:17:31 -04006356 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006357 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006358 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006359 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006360 int ret;
6361
Yan, Zhenga5719522009-09-24 09:17:31 -04006362 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006363 if (err)
6364 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006365 if (inode->i_nlink == 1) {
6366 /*
6367 * If new hard link count is 1, it's a file created
6368 * with open(2) O_TMPFILE flag.
6369 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006370 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006371 if (err)
6372 goto fail;
6373 }
Al Viro08c422c2011-12-23 07:58:13 -05006374 d_instantiate(dentry, inode);
Filipe Mananad4682ba2018-06-11 19:24:28 +01006375 ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent,
6376 true, NULL);
6377 if (ret == BTRFS_NEED_TRANS_COMMIT) {
6378 err = btrfs_commit_transaction(trans);
6379 trans = NULL;
6380 }
Yan, Zhenga5719522009-09-24 09:17:31 -04006381 }
Chris Mason39279cc2007-06-12 06:35:45 -04006382
Chris Mason1832a6d2007-12-21 16:27:21 -05006383fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006384 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006385 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006386 if (drop_inode) {
6387 inode_dec_link_count(inode);
6388 iput(inode);
6389 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006390 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006391 return err;
6392}
6393
Al Viro18bb1db2011-07-26 01:41:39 -04006394static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006395{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006396 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006397 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006398 struct btrfs_trans_handle *trans;
6399 struct btrfs_root *root = BTRFS_I(dir)->root;
6400 int err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006401 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006402 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006403
Josef Bacik9ed74f22009-09-11 16:12:44 -04006404 /*
6405 * 2 items for inode and ref
6406 * 2 items for dir items
6407 * 1 for xattr if selinux is on
6408 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006409 trans = btrfs_start_transaction(root, 5);
6410 if (IS_ERR(trans))
6411 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006412
Li Zefan581bb052011-04-20 10:06:11 +08006413 err = btrfs_find_free_ino(root, &objectid);
6414 if (err)
6415 goto out_fail;
6416
Josef Bacikaec74772008-07-24 12:12:38 -04006417 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006418 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6419 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006420 if (IS_ERR(inode)) {
6421 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006422 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006423 goto out_fail;
6424 }
Chris Mason5f39d392007-10-15 16:14:19 -04006425
Chris Masonb0d5d102014-09-08 13:08:51 -07006426 /* these must be set before we unlock the inode */
6427 inode->i_op = &btrfs_dir_inode_operations;
6428 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006429
Eric Paris2a7dba32011-02-01 11:05:39 -05006430 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006431 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006432 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006433
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006434 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006435 err = btrfs_update_inode(trans, root, inode);
6436 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006437 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006438
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006439 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6440 dentry->d_name.name,
6441 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006442 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006443 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006444
Al Viro1e2e5472018-05-04 08:23:01 -04006445 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006446
6447out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006448 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006449 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006450 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006451 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006452 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006453 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006454 return err;
6455}
6456
Chris Masonc8b97812008-10-29 14:49:59 -04006457static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006458 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006459 size_t pg_offset, u64 extent_offset,
6460 struct btrfs_file_extent_item *item)
6461{
6462 int ret;
6463 struct extent_buffer *leaf = path->nodes[0];
6464 char *tmp;
6465 size_t max_size;
6466 unsigned long inline_size;
6467 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006468 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006469
6470 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006471 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006472 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6473 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006474 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006475 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006476 if (!tmp)
6477 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006478 ptr = btrfs_file_extent_inline_start(item);
6479
6480 read_extent_buffer(leaf, tmp, ptr, inline_size);
6481
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006482 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006483 ret = btrfs_decompress(compress_type, tmp, page,
6484 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006485
6486 /*
6487 * decompression code contains a memset to fill in any space between the end
6488 * of the uncompressed data and the end of max_size in case the decompressed
6489 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6490 * the end of an inline extent and the beginning of the next block, so we
6491 * cover that region here.
6492 */
6493
6494 if (max_size + pg_offset < PAGE_SIZE) {
6495 char *map = kmap(page);
6496 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6497 kunmap(page);
6498 }
Chris Masonc8b97812008-10-29 14:49:59 -04006499 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006500 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006501}
6502
Omar Sandoval39b07b52019-12-02 17:34:23 -08006503/**
6504 * btrfs_get_extent - Lookup the first extent overlapping a range in a file.
6505 * @inode: file to search in
6506 * @page: page to read extent data into if the extent is inline
6507 * @pg_offset: offset into @page to copy to
6508 * @start: file offset
6509 * @len: length of range starting at @start
Chris Masond352ac62008-09-29 15:18:18 -04006510 *
Omar Sandoval39b07b52019-12-02 17:34:23 -08006511 * This returns the first &struct extent_map which overlaps with the given
6512 * range, reading it from the B-tree and caching it if necessary. Note that
6513 * there may be more extents which overlap the given range after the returned
6514 * extent_map.
6515 *
6516 * If @page is not NULL and the extent is inline, this also reads the extent
6517 * data directly into the page and marks the extent up to date in the io_tree.
6518 *
6519 * Return: ERR_PTR on error, non-NULL extent_map on success.
Chris Masond352ac62008-09-29 15:18:18 -04006520 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006521struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Omar Sandoval39b07b52019-12-02 17:34:23 -08006522 struct page *page, size_t pg_offset,
6523 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -04006524{
David Sterba3ffbd682018-06-29 10:56:42 +02006525 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masona52d9a82007-08-27 16:49:44 -04006526 int ret;
6527 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006528 u64 extent_start = 0;
6529 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006530 u64 objectid = btrfs_ino(inode);
Linus Torvalds7e74e232019-05-01 12:19:20 -07006531 int extent_type = -1;
Chris Masonf4219502008-07-22 11:18:09 -04006532 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006533 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006534 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006535 struct extent_buffer *leaf;
6536 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006537 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006538 struct extent_map_tree *em_tree = &inode->extent_tree;
6539 struct extent_io_tree *io_tree = &inode->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006540
Chris Mason890871b2009-09-02 16:24:52 -04006541 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006542 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006543 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006544
Chris Masona52d9a82007-08-27 16:49:44 -04006545 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006546 if (em->start > start || em->start + em->len <= start)
6547 free_extent_map(em);
6548 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006549 free_extent_map(em);
6550 else
6551 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006552 }
David Sterba172ddd62011-04-21 00:48:27 +02006553 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006554 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006555 err = -ENOMEM;
6556 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006557 }
Chris Masond1310b22008-01-24 16:13:08 -05006558 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006559 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006560 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006561 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006562
Liu Bobee6ec82018-08-17 05:05:28 +08006563 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04006564 if (!path) {
Liu Bobee6ec82018-08-17 05:05:28 +08006565 err = -ENOMEM;
6566 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04006567 }
6568
Liu Bobee6ec82018-08-17 05:05:28 +08006569 /* Chances are we'll be called again, so go ahead and do readahead */
6570 path->reada = READA_FORWARD;
6571
Liu Boe49aabd2018-08-25 13:47:09 +08006572 /*
6573 * Unless we're going to uncompress the inline extent, no sleep would
6574 * happen.
6575 */
6576 path->leave_spinning = 1;
6577
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006578 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006579 if (ret < 0) {
6580 err = ret;
6581 goto out;
Nikolay Borisovb8eeab72018-12-17 11:49:00 +02006582 } else if (ret > 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04006583 if (path->slots[0] == 0)
6584 goto not_found;
6585 path->slots[0]--;
6586 }
6587
Chris Mason5f39d392007-10-15 16:14:19 -04006588 leaf = path->nodes[0];
6589 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006590 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04006591 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04006592 if (found_key.objectid != objectid ||
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006593 found_key.type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006594 /*
6595 * If we backup past the first extent we want to move forward
6596 * and see if there is an extent in front of us, otherwise we'll
6597 * say there is a hole for our whole search range which can
6598 * cause problems.
6599 */
6600 extent_end = start;
6601 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006602 }
6603
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006604 extent_type = btrfs_file_extent_type(leaf, item);
Chris Mason5f39d392007-10-15 16:14:19 -04006605 extent_start = found_key.offset;
Filipe Mananaa5eeb3d2020-03-09 12:41:06 +00006606 extent_end = btrfs_file_extent_end(path);
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006607 if (extent_type == BTRFS_FILE_EXTENT_REG ||
6608 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08006609 /* Only regular file could have regular/prealloc extent */
6610 if (!S_ISREG(inode->vfs_inode.i_mode)) {
6611 ret = -EUCLEAN;
6612 btrfs_crit(fs_info,
6613 "regular/prealloc extent found for non-regular inode %llu",
6614 btrfs_ino(inode));
6615 goto out;
6616 }
Liu Bo09ed2f12017-03-10 11:09:48 -08006617 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6618 extent_start);
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006619 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Liu Bo09ed2f12017-03-10 11:09:48 -08006620 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6621 path->slots[0],
6622 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006623 }
Josef Bacik25a50342013-10-14 12:08:38 -04006624next:
Yan Zheng9036c102008-10-30 14:19:41 -04006625 if (start >= extent_end) {
6626 path->slots[0]++;
6627 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6628 ret = btrfs_next_leaf(root, path);
6629 if (ret < 0) {
6630 err = ret;
6631 goto out;
Nikolay Borisovb8eeab72018-12-17 11:49:00 +02006632 } else if (ret > 0) {
Yan Zheng9036c102008-10-30 14:19:41 -04006633 goto not_found;
Nikolay Borisovb8eeab72018-12-17 11:49:00 +02006634 }
Yan Zheng9036c102008-10-30 14:19:41 -04006635 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006636 }
Yan Zheng9036c102008-10-30 14:19:41 -04006637 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6638 if (found_key.objectid != objectid ||
6639 found_key.type != BTRFS_EXTENT_DATA_KEY)
6640 goto not_found;
6641 if (start + len <= found_key.offset)
6642 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006643 if (start > found_key.offset)
6644 goto next;
Nikolay Borisov02a033d2018-12-17 10:36:02 +02006645
6646 /* New extent overlaps with existing one */
Yan Zheng9036c102008-10-30 14:19:41 -04006647 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006648 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006649 em->len = found_key.offset - start;
Nikolay Borisov02a033d2018-12-17 10:36:02 +02006650 em->block_start = EXTENT_MAP_HOLE;
6651 goto insert;
Yan Zheng9036c102008-10-30 14:19:41 -04006652 }
6653
Omar Sandoval39b07b52019-12-02 17:34:23 -08006654 btrfs_extent_item_to_extent_map(inode, path, item, !page, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006655
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006656 if (extent_type == BTRFS_FILE_EXTENT_REG ||
6657 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006658 goto insert;
Nikolay Borisov694c12e2018-12-17 10:35:59 +02006659 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006660 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006661 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006662 size_t size;
6663 size_t extent_offset;
6664 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006665
Omar Sandoval39b07b52019-12-02 17:34:23 -08006666 if (!page)
Yan689f9342007-10-29 11:41:07 -04006667 goto out;
Yan689f9342007-10-29 11:41:07 -04006668
Qu Wenruoe41ca582018-06-06 15:41:49 +08006669 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006670 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006671 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6672 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006673 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006674 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006675 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006676 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006677 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08006678
6679 btrfs_set_path_blocking(path);
Edmund Nadolskibf46f522017-11-20 13:24:49 -07006680 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006681 if (btrfs_file_extent_compression(leaf, item) !=
6682 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006683 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006684 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006685 if (ret) {
6686 err = ret;
6687 goto out;
6688 }
Chris Masonc8b97812008-10-29 14:49:59 -04006689 } else {
6690 map = kmap(page);
6691 read_extent_buffer(leaf, map + pg_offset, ptr,
6692 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006693 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006694 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006695 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006696 copy_size);
6697 }
Chris Masonc8b97812008-10-29 14:49:59 -04006698 kunmap(page);
6699 }
Chris Mason179e29e2007-11-01 11:28:41 -04006700 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04006701 }
Chris Masond1310b22008-01-24 16:13:08 -05006702 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006703 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006704 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006705 }
6706not_found:
6707 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006708 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006709 em->len = len;
Chris Mason5f39d392007-10-15 16:14:19 -04006710 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006711insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006712 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006713 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006714 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006715 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6716 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006717 err = -EIO;
6718 goto out;
6719 }
Chris Masond1310b22008-01-24 16:13:08 -05006720
6721 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006722 write_lock(&em_tree->lock);
David Sterbaf46b24c2018-04-03 21:45:57 +02006723 err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006724 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006725out:
Liu Boc6414282018-08-23 07:36:17 +08006726 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00006727
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006728 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006729
Chris Masona52d9a82007-08-27 16:49:44 -04006730 if (err) {
6731 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006732 return ERR_PTR(err);
6733 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006734 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006735 return em;
6736}
6737
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006738struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02006739 u64 start, u64 len)
Chris Masonec29ed52011-02-23 16:23:20 -05006740{
6741 struct extent_map *em;
6742 struct extent_map *hole_em = NULL;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006743 u64 delalloc_start = start;
Chris Masonec29ed52011-02-23 16:23:20 -05006744 u64 end;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006745 u64 delalloc_len;
6746 u64 delalloc_end;
Chris Masonec29ed52011-02-23 16:23:20 -05006747 int err = 0;
6748
Omar Sandoval39b07b52019-12-02 17:34:23 -08006749 em = btrfs_get_extent(inode, NULL, 0, start, len);
Chris Masonec29ed52011-02-23 16:23:20 -05006750 if (IS_ERR(em))
6751 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03006752 /*
6753 * If our em maps to:
6754 * - a hole or
6755 * - a pre-alloc extent,
6756 * there might actually be delalloc bytes behind it.
6757 */
6758 if (em->block_start != EXTENT_MAP_HOLE &&
6759 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6760 return em;
6761 else
6762 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05006763
6764 /* check to see if we've wrapped (len == -1 or similar) */
6765 end = start + len;
6766 if (end < start)
6767 end = (u64)-1;
6768 else
6769 end -= 1;
6770
6771 em = NULL;
6772
6773 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006774 delalloc_len = count_range_bits(&inode->io_tree, &delalloc_start,
Chris Masonec29ed52011-02-23 16:23:20 -05006775 end, len, EXTENT_DELALLOC, 1);
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006776 delalloc_end = delalloc_start + delalloc_len;
6777 if (delalloc_end < delalloc_start)
6778 delalloc_end = (u64)-1;
Chris Masonec29ed52011-02-23 16:23:20 -05006779
6780 /*
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006781 * We didn't find anything useful, return the original results from
6782 * get_extent()
Chris Masonec29ed52011-02-23 16:23:20 -05006783 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006784 if (delalloc_start > end || delalloc_end <= start) {
Chris Masonec29ed52011-02-23 16:23:20 -05006785 em = hole_em;
6786 hole_em = NULL;
6787 goto out;
6788 }
6789
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006790 /*
6791 * Adjust the delalloc_start to make sure it doesn't go backwards from
6792 * the start they passed in
Chris Masonec29ed52011-02-23 16:23:20 -05006793 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006794 delalloc_start = max(start, delalloc_start);
6795 delalloc_len = delalloc_end - delalloc_start;
Chris Masonec29ed52011-02-23 16:23:20 -05006796
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006797 if (delalloc_len > 0) {
6798 u64 hole_start;
Nikolay Borisov02950af2018-12-12 09:42:34 +02006799 u64 hole_len;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006800 const u64 hole_end = extent_map_end(hole_em);
Chris Masonec29ed52011-02-23 16:23:20 -05006801
David Sterba172ddd62011-04-21 00:48:27 +02006802 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05006803 if (!em) {
6804 err = -ENOMEM;
6805 goto out;
6806 }
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006807
6808 ASSERT(hole_em);
6809 /*
6810 * When btrfs_get_extent can't find anything it returns one
6811 * huge hole
6812 *
6813 * Make sure what it found really fits our range, and adjust to
6814 * make sure it is based on the start from the caller
6815 */
6816 if (hole_end <= start || hole_em->start > end) {
6817 free_extent_map(hole_em);
6818 hole_em = NULL;
6819 } else {
6820 hole_start = max(hole_em->start, start);
6821 hole_len = hole_end - hole_start;
6822 }
6823
6824 if (hole_em && delalloc_start > hole_start) {
6825 /*
6826 * Our hole starts before our delalloc, so we have to
6827 * return just the parts of the hole that go until the
6828 * delalloc starts
Chris Masonec29ed52011-02-23 16:23:20 -05006829 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006830 em->len = min(hole_len, delalloc_start - hole_start);
Chris Masonec29ed52011-02-23 16:23:20 -05006831 em->start = hole_start;
6832 em->orig_start = hole_start;
6833 /*
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006834 * Don't adjust block start at all, it is fixed at
6835 * EXTENT_MAP_HOLE
Chris Masonec29ed52011-02-23 16:23:20 -05006836 */
6837 em->block_start = hole_em->block_start;
6838 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00006839 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
6840 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05006841 } else {
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006842 /*
6843 * Hole is out of passed range or it starts after
6844 * delalloc range
6845 */
6846 em->start = delalloc_start;
6847 em->len = delalloc_len;
6848 em->orig_start = delalloc_start;
Chris Masonec29ed52011-02-23 16:23:20 -05006849 em->block_start = EXTENT_MAP_DELALLOC;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02006850 em->block_len = delalloc_len;
Chris Masonec29ed52011-02-23 16:23:20 -05006851 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02006852 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05006853 return hole_em;
6854 }
6855out:
6856
6857 free_extent_map(hole_em);
6858 if (err) {
6859 free_extent_map(em);
6860 return ERR_PTR(err);
6861 }
6862 return em;
6863}
6864
Nikolay Borisov64f54182020-06-03 08:55:31 +03006865static struct extent_map *btrfs_create_dio_extent(struct btrfs_inode *inode,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006866 const u64 start,
6867 const u64 len,
6868 const u64 orig_start,
6869 const u64 block_start,
6870 const u64 block_len,
6871 const u64 orig_block_len,
6872 const u64 ram_bytes,
6873 const int type)
6874{
6875 struct extent_map *em = NULL;
6876 int ret;
6877
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006878 if (type != BTRFS_ORDERED_NOCOW) {
Nikolay Borisov64f54182020-06-03 08:55:31 +03006879 em = create_io_em(inode, start, len, orig_start, block_start,
6880 block_len, orig_block_len, ram_bytes,
Liu Bo6f9994d2017-01-31 07:50:22 -08006881 BTRFS_COMPRESS_NONE, /* compress_type */
6882 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006883 if (IS_ERR(em))
6884 goto out;
6885 }
Nikolay Borisov64f54182020-06-03 08:55:31 +03006886 ret = btrfs_add_ordered_extent_dio(inode, start, block_start, len,
6887 block_len, type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006888 if (ret) {
6889 if (em) {
6890 free_extent_map(em);
Nikolay Borisov64f54182020-06-03 08:55:31 +03006891 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006892 }
6893 em = ERR_PTR(ret);
6894 }
6895 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006896
6897 return em;
6898}
6899
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03006900static struct extent_map *btrfs_new_extent_direct(struct btrfs_inode *inode,
Josef Bacik4b46fce2010-05-23 11:00:55 -04006901 u64 start, u64 len)
6902{
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03006903 struct btrfs_root *root = inode->root;
6904 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik70c8a912012-10-11 16:54:30 -04006905 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006906 struct btrfs_key ins;
6907 u64 alloc_hint;
6908 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006909
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03006910 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006911 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04006912 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04006913 if (ret)
6914 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006915
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03006916 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006917 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08006918 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006919 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01006920 if (IS_ERR(em))
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03006921 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset,
6922 1);
Josef Bacik00361582013-08-14 14:02:47 -04006923
Josef Bacik4b46fce2010-05-23 11:00:55 -04006924 return em;
6925}
6926
Chris Mason46bfbb52010-05-26 11:04:10 -04006927/*
Qu Wenruoe4ecaf92020-06-24 07:23:51 +08006928 * Check if we can do nocow write into the range [@offset, @offset + @len)
6929 *
6930 * @offset: File offset
6931 * @len: The length to write, will be updated to the nocow writeable
6932 * range
6933 * @orig_start: (optional) Return the original file offset of the file extent
6934 * @orig_len: (optional) Return the original on-disk length of the file extent
6935 * @ram_bytes: (optional) Return the ram_bytes of the file extent
6936 *
6937 * This function will flush ordered extents in the range to ensure proper
6938 * nocow checks for (nowait == false) case.
6939 *
6940 * Return:
6941 * >0 and update @len if we can do nocow write
6942 * 0 if we can't do nocow write
6943 * <0 if error happened
6944 *
6945 * NOTE: This only checks the file extents, caller is responsible to wait for
6946 * any ordered extents.
Chris Mason46bfbb52010-05-26 11:04:10 -04006947 */
Josef Bacik00361582013-08-14 14:02:47 -04006948noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04006949 u64 *orig_start, u64 *orig_block_len,
6950 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04006951{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006952 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04006953 struct btrfs_path *path;
6954 int ret;
6955 struct extent_buffer *leaf;
6956 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08006957 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04006958 struct btrfs_file_extent_item *fi;
6959 struct btrfs_key key;
6960 u64 disk_bytenr;
6961 u64 backref_offset;
6962 u64 extent_end;
6963 u64 num_bytes;
6964 int slot;
6965 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04006966 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08006967
Chris Mason46bfbb52010-05-26 11:04:10 -04006968 path = btrfs_alloc_path();
6969 if (!path)
6970 return -ENOMEM;
6971
David Sterbaf85b7372017-01-20 14:54:07 +01006972 ret = btrfs_lookup_file_extent(NULL, root, path,
6973 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04006974 if (ret < 0)
6975 goto out;
6976
6977 slot = path->slots[0];
6978 if (ret == 1) {
6979 if (slot == 0) {
6980 /* can't find the item, must cow */
6981 ret = 0;
6982 goto out;
6983 }
6984 slot--;
6985 }
6986 ret = 0;
6987 leaf = path->nodes[0];
6988 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006989 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04006990 key.type != BTRFS_EXTENT_DATA_KEY) {
6991 /* not our file or wrong item type, must cow */
6992 goto out;
6993 }
6994
6995 if (key.offset > offset) {
6996 /* Wrong offset, must cow */
6997 goto out;
6998 }
6999
7000 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7001 found_type = btrfs_file_extent_type(leaf, fi);
7002 if (found_type != BTRFS_FILE_EXTENT_REG &&
7003 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7004 /* not a regular extent, must cow */
7005 goto out;
7006 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007007
7008 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7009 goto out;
7010
Miao Xiee77751a2013-12-27 21:11:50 +08007011 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7012 if (extent_end <= offset)
7013 goto out;
7014
Chris Mason46bfbb52010-05-26 11:04:10 -04007015 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007016 if (disk_bytenr == 0)
7017 goto out;
7018
7019 if (btrfs_file_extent_compression(leaf, fi) ||
7020 btrfs_file_extent_encryption(leaf, fi) ||
7021 btrfs_file_extent_other_encoding(leaf, fi))
7022 goto out;
7023
Ethan Lien78d42952018-05-17 14:58:29 +08007024 /*
7025 * Do the same check as in btrfs_cross_ref_exist but without the
7026 * unnecessary search.
7027 */
7028 if (btrfs_file_extent_generation(leaf, fi) <=
7029 btrfs_root_last_snapshot(&root->root_item))
7030 goto out;
7031
Chris Mason46bfbb52010-05-26 11:04:10 -04007032 backref_offset = btrfs_file_extent_offset(leaf, fi);
7033
Josef Bacik7ee9e442013-06-21 16:37:03 -04007034 if (orig_start) {
7035 *orig_start = key.offset - backref_offset;
7036 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7037 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7038 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007039
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007040 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007041 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007042
7043 num_bytes = min(offset + *len, extent_end) - offset;
7044 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7045 u64 range_end;
7046
Jeff Mahoneyda170662016-06-15 09:22:56 -04007047 range_end = round_up(offset + num_bytes,
7048 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007049 ret = test_range_bit(io_tree, offset, range_end,
7050 EXTENT_DELALLOC, 0, NULL);
7051 if (ret) {
7052 ret = -EAGAIN;
7053 goto out;
7054 }
7055 }
7056
Josef Bacik1bda19e2013-10-18 12:10:36 -04007057 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007058
7059 /*
7060 * look for other files referencing this extent, if we
7061 * find any we must cow
7062 */
Josef Bacik00361582013-08-14 14:02:47 -04007063
Liu Boe4c3b2d2017-01-30 12:25:28 -08007064 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007065 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007066 if (ret) {
7067 ret = 0;
7068 goto out;
7069 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007070
7071 /*
7072 * adjust disk_bytenr and num_bytes to cover just the bytes
7073 * in this extent we are about to write. If there
7074 * are any csums in that range we have to cow in order
7075 * to keep the csums correct
7076 */
7077 disk_bytenr += backref_offset;
7078 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007079 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7080 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007081 /*
7082 * all of the above have passed, it is safe to overwrite this extent
7083 * without cow
7084 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007085 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007086 ret = 1;
7087out:
7088 btrfs_free_path(path);
7089 return ret;
7090}
7091
Josef Bacikeb838e72012-07-31 16:28:48 -04007092static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
David Sterba55e20bd2020-06-09 19:56:06 +02007093 struct extent_state **cached_state, int writing)
Josef Bacikeb838e72012-07-31 16:28:48 -04007094{
7095 struct btrfs_ordered_extent *ordered;
7096 int ret = 0;
7097
7098 while (1) {
7099 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007100 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007101 /*
7102 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007103 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007104 * extents in this range.
7105 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007106 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007107 lockend - lockstart + 1);
7108
7109 /*
7110 * We need to make sure there are no buffered pages in this
7111 * range either, we could have raced between the invalidate in
7112 * generic_file_direct_write and locking the extent. The
7113 * invalidate needs to happen so that reads after a write do not
7114 * get stale data.
7115 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007116 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007117 (!writing || !filemap_range_has_page(inode->i_mapping,
7118 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007119 break;
7120
7121 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007122 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007123
7124 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007125 /*
7126 * If we are doing a DIO read and the ordered extent we
7127 * found is for a buffered write, we can not wait for it
7128 * to complete and retry, because if we do so we can
7129 * deadlock with concurrent buffered writes on page
7130 * locks. This happens only if our DIO read covers more
7131 * than one extent map, if at this point has already
7132 * created an ordered extent for a previous extent map
7133 * and locked its range in the inode's io tree, and a
7134 * concurrent write against that previous extent map's
7135 * range and this range started (we unlock the ranges
7136 * in the io tree only when the bios complete and
7137 * buffered writes always lock pages before attempting
7138 * to lock range in the io tree).
7139 */
7140 if (writing ||
7141 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7142 btrfs_start_ordered_extent(inode, ordered, 1);
7143 else
7144 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007145 btrfs_put_ordered_extent(ordered);
7146 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007147 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007148 * We could trigger writeback for this range (and wait
7149 * for it to complete) and then invalidate the pages for
7150 * this range (through invalidate_inode_pages2_range()),
7151 * but that can lead us to a deadlock with a concurrent
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07007152 * call to readahead (a buffered read or a defrag call
Filipe Mananab850ae12015-12-08 16:23:16 +00007153 * triggered a readahead) on a page lock due to an
7154 * ordered dio extent we created before but did not have
7155 * yet a corresponding bio submitted (whence it can not
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07007156 * complete), which makes readahead wait for that
Filipe Mananab850ae12015-12-08 16:23:16 +00007157 * ordered extent to complete while holding a lock on
7158 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007159 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007160 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007161 }
7162
Filipe Mananaade77022016-02-18 14:28:55 +00007163 if (ret)
7164 break;
7165
Josef Bacikeb838e72012-07-31 16:28:48 -04007166 cond_resched();
7167 }
7168
7169 return ret;
7170}
7171
Liu Bo6f9994d2017-01-31 07:50:22 -08007172/* The callers of this must take lock_extent() */
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007173static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
7174 u64 len, u64 orig_start, u64 block_start,
Liu Bo6f9994d2017-01-31 07:50:22 -08007175 u64 block_len, u64 orig_block_len,
7176 u64 ram_bytes, int compress_type,
7177 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007178{
7179 struct extent_map_tree *em_tree;
7180 struct extent_map *em;
Josef Bacik69ffb542012-09-11 15:40:07 -04007181 int ret;
7182
Liu Bo6f9994d2017-01-31 07:50:22 -08007183 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7184 type == BTRFS_ORDERED_COMPRESSED ||
7185 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007186 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007187
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007188 em_tree = &inode->extent_tree;
Josef Bacik69ffb542012-09-11 15:40:07 -04007189 em = alloc_extent_map();
7190 if (!em)
7191 return ERR_PTR(-ENOMEM);
7192
7193 em->start = start;
7194 em->orig_start = orig_start;
7195 em->len = len;
7196 em->block_len = block_len;
7197 em->block_start = block_start;
Josef Bacikb4939682012-12-03 10:31:19 -05007198 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007199 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007200 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007201 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007202 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007203 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007204 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007205 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7206 em->compress_type = compress_type;
7207 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007208
7209 do {
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007210 btrfs_drop_extent_cache(inode, em->start,
7211 em->start + em->len - 1, 0);
Josef Bacik69ffb542012-09-11 15:40:07 -04007212 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007213 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007214 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007215 /*
7216 * The caller has taken lock_extent(), who could race with us
7217 * to add em?
7218 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007219 } while (ret == -EEXIST);
7220
7221 if (ret) {
7222 free_extent_map(em);
7223 return ERR_PTR(ret);
7224 }
7225
Liu Bo6f9994d2017-01-31 07:50:22 -08007226 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007227 return em;
7228}
7229
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007230
David Sterba55e20bd2020-06-09 19:56:06 +02007231static int btrfs_get_blocks_direct_read(struct extent_map *em,
7232 struct buffer_head *bh_result,
7233 struct inode *inode,
7234 u64 start, u64 len)
7235{
7236 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7237
7238 if (em->block_start == EXTENT_MAP_HOLE ||
7239 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7240 return -ENOENT;
7241
7242 len = min(len, em->len - (start - em->start));
7243
7244 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7245 inode->i_blkbits;
7246 bh_result->b_size = len;
7247 bh_result->b_bdev = fs_info->fs_devices->latest_bdev;
7248 set_buffer_mapped(bh_result);
7249
7250 return 0;
7251}
7252
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007253static int btrfs_get_blocks_direct_write(struct extent_map **map,
David Sterba55e20bd2020-06-09 19:56:06 +02007254 struct buffer_head *bh_result,
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007255 struct inode *inode,
7256 struct btrfs_dio_data *dio_data,
7257 u64 start, u64 len)
7258{
7259 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7260 struct extent_map *em = *map;
7261 int ret = 0;
7262
7263 /*
7264 * We don't allocate a new extent in the following cases
7265 *
7266 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7267 * existing extent.
7268 * 2) The extent is marked as PREALLOC. We're good to go here and can
7269 * just use the extent.
7270 *
7271 */
7272 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7273 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7274 em->block_start != EXTENT_MAP_HOLE)) {
7275 int type;
7276 u64 block_start, orig_start, orig_block_len, ram_bytes;
7277
7278 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7279 type = BTRFS_ORDERED_PREALLOC;
7280 else
7281 type = BTRFS_ORDERED_NOCOW;
7282 len = min(len, em->len - (start - em->start));
7283 block_start = em->block_start + (start - em->start);
7284
7285 if (can_nocow_extent(inode, start, &len, &orig_start,
7286 &orig_block_len, &ram_bytes) == 1 &&
7287 btrfs_inc_nocow_writers(fs_info, block_start)) {
7288 struct extent_map *em2;
7289
Nikolay Borisov64f54182020-06-03 08:55:31 +03007290 em2 = btrfs_create_dio_extent(BTRFS_I(inode), start, len,
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007291 orig_start, block_start,
7292 len, orig_block_len,
7293 ram_bytes, type);
7294 btrfs_dec_nocow_writers(fs_info, block_start);
7295 if (type == BTRFS_ORDERED_PREALLOC) {
7296 free_extent_map(em);
7297 *map = em = em2;
7298 }
7299
7300 if (em2 && IS_ERR(em2)) {
7301 ret = PTR_ERR(em2);
7302 goto out;
7303 }
7304 /*
7305 * For inode marked NODATACOW or extent marked PREALLOC,
7306 * use the existing or preallocated extent, so does not
7307 * need to adjust btrfs_space_info's bytes_may_use.
7308 */
Nikolay Borisov9db5d512020-06-03 08:55:38 +03007309 btrfs_free_reserved_data_space_noquota(fs_info, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007310 goto skip_cow;
7311 }
7312 }
7313
7314 /* this will cow the extent */
David Sterba55e20bd2020-06-09 19:56:06 +02007315 len = bh_result->b_size;
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007316 free_extent_map(em);
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007317 *map = em = btrfs_new_extent_direct(BTRFS_I(inode), start, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007318 if (IS_ERR(em)) {
7319 ret = PTR_ERR(em);
7320 goto out;
7321 }
7322
7323 len = min(len, em->len - (start - em->start));
7324
7325skip_cow:
David Sterba55e20bd2020-06-09 19:56:06 +02007326 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7327 inode->i_blkbits;
7328 bh_result->b_size = len;
7329 bh_result->b_bdev = fs_info->fs_devices->latest_bdev;
7330 set_buffer_mapped(bh_result);
7331
7332 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7333 set_buffer_new(bh_result);
7334
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007335 /*
7336 * Need to update the i_size under the extent lock so buffered
7337 * readers will get the updated i_size when we unlock.
7338 */
David Sterba55e20bd2020-06-09 19:56:06 +02007339 if (!dio_data->overwrite && start + len > i_size_read(inode))
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007340 i_size_write(inode, start + len);
7341
David Sterba55e20bd2020-06-09 19:56:06 +02007342 WARN_ON(dio_data->reserve < len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007343 dio_data->reserve -= len;
David Sterba55e20bd2020-06-09 19:56:06 +02007344 dio_data->unsubmitted_oe_range_end = start + len;
7345 current->journal_info = dio_data;
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007346out:
7347 return ret;
7348}
7349
David Sterba55e20bd2020-06-09 19:56:06 +02007350static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7351 struct buffer_head *bh_result, int create)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007352{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007353 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007354 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007355 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307356 struct btrfs_dio_data *dio_data = NULL;
David Sterba55e20bd2020-06-09 19:56:06 +02007357 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007358 u64 lockstart, lockend;
David Sterba55e20bd2020-06-09 19:56:06 +02007359 u64 len = bh_result->b_size;
Miao Xie09348562013-02-07 10:12:07 +00007360 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007361
David Sterba55e20bd2020-06-09 19:56:06 +02007362 if (!create)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007363 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007364
Josef Bacikc3298612012-08-03 16:49:19 -04007365 lockstart = start;
7366 lockend = start + len - 1;
7367
David Sterba55e20bd2020-06-09 19:56:06 +02007368 if (current->journal_info) {
7369 /*
7370 * Need to pull our outstanding extents and set journal_info to NULL so
7371 * that anything that needs to check if there's a transaction doesn't get
7372 * confused.
7373 */
7374 dio_data = current->journal_info;
7375 current->journal_info = NULL;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007376 }
7377
Josef Bacikeb838e72012-07-31 16:28:48 -04007378 /*
7379 * If this errors out it's because we couldn't invalidate pagecache for
7380 * this range and we need to fallback to buffered.
7381 */
David Sterba55e20bd2020-06-09 19:56:06 +02007382 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7383 create)) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007384 ret = -ENOTBLK;
7385 goto err;
7386 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007387
Omar Sandoval39b07b52019-12-02 17:34:23 -08007388 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007389 if (IS_ERR(em)) {
7390 ret = PTR_ERR(em);
7391 goto unlock_err;
7392 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007393
7394 /*
7395 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7396 * io. INLINE is special, and we could probably kludge it in here, but
7397 * it's still buffered so for safety lets just fall back to the generic
7398 * buffered path.
7399 *
7400 * For COMPRESSED we _have_ to read the entire extent in so we can
7401 * decompress it, so there will be buffering required no matter what we
7402 * do, so go ahead and fallback to buffered.
7403 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007404 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007405 * to buffered IO. Don't blame me, this is the price we pay for using
7406 * the generic code.
7407 */
7408 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7409 em->block_start == EXTENT_MAP_INLINE) {
7410 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007411 ret = -ENOTBLK;
7412 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007413 }
7414
David Sterba55e20bd2020-06-09 19:56:06 +02007415 if (create) {
7416 ret = btrfs_get_blocks_direct_write(&em, bh_result, inode,
7417 dio_data, start, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007418 if (ret < 0)
7419 goto unlock_err;
David Sterba55e20bd2020-06-09 19:56:06 +02007420
7421 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
7422 lockend, &cached_state);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007423 } else {
David Sterba55e20bd2020-06-09 19:56:06 +02007424 ret = btrfs_get_blocks_direct_read(em, bh_result, inode,
7425 start, len);
7426 /* Can be negative only if we read from a hole */
7427 if (ret < 0) {
7428 ret = 0;
7429 free_extent_map(em);
7430 goto unlock_err;
7431 }
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007432 /*
7433 * We need to unlock only the end area that we aren't using.
7434 * The rest is going to be unlocked by the endio routine.
7435 */
David Sterba55e20bd2020-06-09 19:56:06 +02007436 lockstart = start + bh_result->b_size;
7437 if (lockstart < lockend) {
7438 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
7439 lockstart, lockend, &cached_state);
7440 } else {
7441 free_extent_state(cached_state);
7442 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007443 }
7444
Josef Bacik4b46fce2010-05-23 11:00:55 -04007445 free_extent_map(em);
7446
7447 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007448
7449unlock_err:
Omar Sandovale1821632019-08-15 14:04:04 -07007450 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7451 &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007452err:
David Sterba55e20bd2020-06-09 19:56:06 +02007453 if (dio_data)
7454 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007455 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007456}
7457
Omar Sandoval769b4f22020-04-16 14:46:22 -07007458static void btrfs_dio_private_put(struct btrfs_dio_private *dip)
7459{
7460 /*
7461 * This implies a barrier so that stores to dio_bio->bi_status before
7462 * this and loads of dio_bio->bi_status after this are fully ordered.
7463 */
7464 if (!refcount_dec_and_test(&dip->refs))
7465 return;
7466
7467 if (bio_op(dip->dio_bio) == REQ_OP_WRITE) {
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007468 __endio_write_update_ordered(BTRFS_I(dip->inode),
7469 dip->logical_offset,
Omar Sandoval769b4f22020-04-16 14:46:22 -07007470 dip->bytes,
7471 !dip->dio_bio->bi_status);
7472 } else {
7473 unlock_extent(&BTRFS_I(dip->inode)->io_tree,
7474 dip->logical_offset,
7475 dip->logical_offset + dip->bytes - 1);
7476 }
7477
David Sterba55e20bd2020-06-09 19:56:06 +02007478 dio_end_io(dip->dio_bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07007479 kfree(dip);
7480}
7481
Omar Sandoval77d5d682020-04-16 14:46:25 -07007482static blk_status_t submit_dio_repair_bio(struct inode *inode, struct bio *bio,
7483 int mirror_num,
7484 unsigned long bio_flags)
Miao Xie8b110e32014-09-12 18:44:03 +08007485{
Omar Sandoval77d5d682020-04-16 14:46:25 -07007486 struct btrfs_dio_private *dip = bio->bi_private;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007487 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007488 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007489
Mike Christie37226b22016-06-05 14:31:52 -05007490 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007491
Omar Sandoval5c047a62020-04-16 14:46:24 -07007492 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Miao Xie8b110e32014-09-12 18:44:03 +08007493 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007494 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007495
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007496 refcount_inc(&dip->refs);
Chris Mason08635ba2019-07-10 12:28:14 -07007497 ret = btrfs_map_bio(fs_info, bio, mirror_num);
Omar Sandoval77d5d682020-04-16 14:46:25 -07007498 if (ret)
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007499 refcount_dec(&dip->refs);
Miao Xie8b110e32014-09-12 18:44:03 +08007500 return ret;
7501}
7502
Omar Sandoval769b4f22020-04-16 14:46:22 -07007503static blk_status_t btrfs_check_read_dio_bio(struct inode *inode,
7504 struct btrfs_io_bio *io_bio,
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007505 const bool uptodate)
Miao Xie8b110e32014-09-12 18:44:03 +08007506{
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007507 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
7508 const u32 sectorsize = fs_info->sectorsize;
Josef Bacik7870d082017-05-05 11:57:15 -04007509 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007510 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7511 const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
Liu Bo17347ce2017-05-15 15:33:27 -07007512 struct bio_vec bvec;
7513 struct bvec_iter iter;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007514 u64 start = io_bio->logical;
7515 int icsum = 0;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007516 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007517
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007518 __bio_for_each_segment(bvec, &io_bio->bio, iter, io_bio->iter) {
7519 unsigned int i, nr_sectors, pgoff;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307520
Liu Bo17347ce2017-05-15 15:33:27 -07007521 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7522 pgoff = bvec.bv_offset;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007523 for (i = 0; i < nr_sectors; i++) {
Liu Bo97bf5a52017-04-07 13:11:10 -07007524 ASSERT(pgoff < PAGE_SIZE);
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007525 if (uptodate &&
7526 (!csum || !check_data_csum(inode, io_bio, icsum,
7527 bvec.bv_page, pgoff,
7528 start, sectorsize))) {
7529 clean_io_failure(fs_info, failure_tree, io_tree,
7530 start, bvec.bv_page,
7531 btrfs_ino(BTRFS_I(inode)),
7532 pgoff);
7533 } else {
7534 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08007535
Omar Sandoval77d5d682020-04-16 14:46:25 -07007536 status = btrfs_submit_read_repair(inode,
7537 &io_bio->bio,
7538 start - io_bio->logical,
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007539 bvec.bv_page, pgoff,
7540 start,
7541 start + sectorsize - 1,
Omar Sandoval77d5d682020-04-16 14:46:25 -07007542 io_bio->mirror_num,
7543 submit_dio_repair_bio);
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007544 if (status)
7545 err = status;
7546 }
7547 start += sectorsize;
7548 icsum++;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307549 pgoff += sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307550 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08007551 }
Miao Xiec1dc0892014-09-12 18:43:56 +08007552 return err;
7553}
7554
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007555static void __endio_write_update_ordered(struct btrfs_inode *inode,
Qu Wenruo524272602017-03-08 10:25:52 +08007556 const u64 offset, const u64 bytes,
7557 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007558{
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007559 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007560 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08007561 struct btrfs_workqueue *wq;
Filipe Manana14543772015-11-24 16:23:54 +00007562 u64 ordered_offset = offset;
7563 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09007564 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007565
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007566 if (btrfs_is_free_space_inode(inode))
Qu Wenruo524272602017-03-08 10:25:52 +08007567 wq = fs_info->endio_freespace_worker;
Omar Sandovala0cac0e2019-09-16 11:30:57 -07007568 else
Qu Wenruo524272602017-03-08 10:25:52 +08007569 wq = fs_info->endio_write_workers;
Qu Wenruo524272602017-03-08 10:25:52 +08007570
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03007571 while (ordered_offset < offset + bytes) {
7572 last_offset = ordered_offset;
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007573 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
Nikolay Borisov70958212020-06-03 08:55:23 +03007574 &ordered_offset,
7575 ordered_bytes,
7576 uptodate)) {
Omar Sandovala0cac0e2019-09-16 11:30:57 -07007577 btrfs_init_work(&ordered->work, finish_ordered_fn, NULL,
7578 NULL);
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03007579 btrfs_queue_work(wq, &ordered->work);
7580 }
7581 /*
7582 * If btrfs_dec_test_ordered_pending does not find any ordered
7583 * extent in the range, we can exit.
7584 */
7585 if (ordered_offset == last_offset)
7586 return;
7587 /*
7588 * Our bio might span multiple ordered extents. In this case
Andrea Gelmini52042d82018-11-28 12:05:13 +01007589 * we keep going until we have accounted the whole dio.
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03007590 */
7591 if (ordered_offset < offset + bytes) {
7592 ordered_bytes = offset + bytes - ordered_offset;
7593 ordered = NULL;
7594 }
Chris Mason163cf092010-11-28 19:56:33 -05007595 }
Filipe Manana14543772015-11-24 16:23:54 +00007596}
7597
David Sterbad0ee3932018-03-08 14:35:48 +01007598static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data,
David Sterbad0779292018-03-08 13:47:33 +01007599 struct bio *bio, u64 offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04007600{
Josef Bacikc6100a42017-05-05 11:57:13 -04007601 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007602 blk_status_t ret;
Nikolay Borisovbd242a02020-06-03 08:55:07 +03007603 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007604 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04007605 return 0;
7606}
7607
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007608static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00007609{
7610 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007611 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00007612
Miao Xie8b110e32014-09-12 18:44:03 +08007613 if (err)
7614 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05007615 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01007616 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
7617 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08007618 (unsigned long long)bio->bi_iter.bi_sector,
7619 bio->bi_iter.bi_size, err);
7620
Omar Sandoval769b4f22020-04-16 14:46:22 -07007621 if (bio_op(bio) == REQ_OP_READ) {
7622 err = btrfs_check_read_dio_bio(dip->inode, btrfs_io_bio(bio),
Omar Sandovalfd9d6672020-04-16 14:46:23 -07007623 !err);
Miao Xiee65e1532010-11-22 03:04:43 +00007624 }
7625
Omar Sandoval769b4f22020-04-16 14:46:22 -07007626 if (err)
7627 dip->dio_bio->bi_status = err;
Miao Xiee65e1532010-11-22 03:04:43 +00007628
Miao Xiee65e1532010-11-22 03:04:43 +00007629 bio_put(bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07007630 btrfs_dio_private_put(dip);
Miao Xiec1dc0892014-09-12 18:43:56 +08007631}
7632
David Sterbad0ee3932018-03-08 14:35:48 +01007633static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
7634 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00007635{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007636 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08007637 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05007638 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007639 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00007640
Liu Bo4c274bc2017-11-01 17:19:27 -06007641 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05007642 if (async_submit)
7643 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
7644
Josef Bacik5fd02042012-05-02 14:00:54 -04007645 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007646 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04007647 if (ret)
7648 goto err;
7649 }
Miao Xiee65e1532010-11-22 03:04:43 +00007650
Nikolay Borisove6961ca2017-08-03 15:44:58 +03007651 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04007652 goto map;
7653
7654 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04007655 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
7656 file_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02007657 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00007658 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04007659 } else if (write) {
7660 /*
7661 * If we aren't doing async submit, calculate the csum of the
7662 * bio now.
7663 */
Nikolay Borisovbd242a02020-06-03 08:55:07 +03007664 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04007665 if (ret)
7666 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08007667 } else {
Omar Sandoval85879572020-04-16 14:46:21 -07007668 u64 csum_offset;
7669
7670 csum_offset = file_offset - dip->logical_offset;
7671 csum_offset >>= inode->i_sb->s_blocksize_bits;
7672 csum_offset *= btrfs_super_csum_size(fs_info->super_copy);
7673 btrfs_io_bio(bio)->csum = dip->csums + csum_offset;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007674 }
Josef Bacik1ae39932011-04-06 14:41:34 -04007675map:
Chris Mason08635ba2019-07-10 12:28:14 -07007676 ret = btrfs_map_bio(fs_info, bio, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00007677err:
Miao Xiee65e1532010-11-22 03:04:43 +00007678 return ret;
7679}
7680
Omar Sandovalc36cac22020-04-16 14:46:13 -07007681/*
7682 * If this succeeds, the btrfs_dio_private is responsible for cleaning up locked
7683 * or ordered extents whether or not we submit any bios.
7684 */
7685static struct btrfs_dio_private *btrfs_create_dio_private(struct bio *dio_bio,
7686 struct inode *inode,
7687 loff_t file_offset)
Miao Xiee65e1532010-11-22 03:04:43 +00007688{
Omar Sandovalc36cac22020-04-16 14:46:13 -07007689 const bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Omar Sandoval85879572020-04-16 14:46:21 -07007690 const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
7691 size_t dip_size;
Omar Sandovalc36cac22020-04-16 14:46:13 -07007692 struct btrfs_dio_private *dip;
Omar Sandovalc36cac22020-04-16 14:46:13 -07007693
Omar Sandoval85879572020-04-16 14:46:21 -07007694 dip_size = sizeof(*dip);
7695 if (!write && csum) {
7696 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7697 const u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
7698 size_t nblocks;
7699
7700 nblocks = dio_bio->bi_iter.bi_size >> inode->i_sb->s_blocksize_bits;
7701 dip_size += csum_size * nblocks;
7702 }
7703
7704 dip = kzalloc(dip_size, GFP_NOFS);
Omar Sandovalc36cac22020-04-16 14:46:13 -07007705 if (!dip)
7706 return NULL;
7707
Omar Sandovalc36cac22020-04-16 14:46:13 -07007708 dip->inode = inode;
7709 dip->logical_offset = file_offset;
7710 dip->bytes = dio_bio->bi_iter.bi_size;
7711 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Omar Sandovalc36cac22020-04-16 14:46:13 -07007712 dip->dio_bio = dio_bio;
Omar Sandovale3b318d2020-04-16 14:46:20 -07007713 refcount_set(&dip->refs, 1);
David Sterba55e20bd2020-06-09 19:56:06 +02007714
7715 if (write) {
7716 struct btrfs_dio_data *dio_data = current->journal_info;
7717
7718 /*
7719 * Setting range start and end to the same value means that
7720 * no cleanup will happen in btrfs_direct_IO
7721 */
7722 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
7723 dip->bytes;
7724 dio_data->unsubmitted_oe_range_start =
7725 dio_data->unsubmitted_oe_range_end;
7726 }
Omar Sandovalc36cac22020-04-16 14:46:13 -07007727 return dip;
7728}
7729
David Sterba55e20bd2020-06-09 19:56:06 +02007730static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
7731 loff_t file_offset)
Omar Sandovalc36cac22020-04-16 14:46:13 -07007732{
7733 const bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Omar Sandoval85879572020-04-16 14:46:21 -07007734 const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007735 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval769b4f22020-04-16 14:46:22 -07007736 const bool raid56 = (btrfs_data_alloc_profile(fs_info) &
7737 BTRFS_BLOCK_GROUP_RAID56_MASK);
Omar Sandovalc36cac22020-04-16 14:46:13 -07007738 struct btrfs_dio_private *dip;
Miao Xiee65e1532010-11-22 03:04:43 +00007739 struct bio *bio;
Omar Sandovalc36cac22020-04-16 14:46:13 -07007740 u64 start_sector;
Josef Bacik1ae39932011-04-06 14:41:34 -04007741 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07007742 u64 submit_len;
7743 int clone_offset = 0;
7744 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05307745 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007746 blk_status_t status;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03007747 struct btrfs_io_geometry geom;
Miao Xiee65e1532010-11-22 03:04:43 +00007748
Omar Sandovalc36cac22020-04-16 14:46:13 -07007749 dip = btrfs_create_dio_private(dio_bio, inode, file_offset);
7750 if (!dip) {
7751 if (!write) {
7752 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
7753 file_offset + dio_bio->bi_iter.bi_size - 1);
7754 }
7755 dio_bio->bi_status = BLK_STS_RESOURCE;
David Sterba55e20bd2020-06-09 19:56:06 +02007756 dio_end_io(dio_bio);
7757 return;
Josef Bacik02f57c72011-04-06 14:25:44 -04007758 }
7759
Omar Sandoval85879572020-04-16 14:46:21 -07007760 if (!write && csum) {
7761 /*
7762 * Load the csums up front to reduce csum tree searches and
7763 * contention when submitting bios.
7764 */
7765 status = btrfs_lookup_bio_sums(inode, dio_bio, file_offset,
7766 dip->csums);
7767 if (status != BLK_STS_OK)
7768 goto out_err;
7769 }
David Woodhouse53b381b2013-01-29 18:40:14 -05007770
Omar Sandoval769b4f22020-04-16 14:46:22 -07007771 start_sector = dio_bio->bi_iter.bi_sector;
7772 submit_len = dio_bio->bi_iter.bi_size;
Miao Xiee65e1532010-11-22 03:04:43 +00007773
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02007774 do {
Omar Sandoval769b4f22020-04-16 14:46:22 -07007775 ret = btrfs_get_io_geometry(fs_info, btrfs_op(dio_bio),
7776 start_sector << 9, submit_len,
7777 &geom);
7778 if (ret) {
7779 status = errno_to_blk_status(ret);
7780 goto out_err;
7781 }
7782 ASSERT(geom.len <= INT_MAX);
7783
Nikolay Borisov89b798a2019-06-03 12:05:05 +03007784 clone_len = min_t(int, submit_len, geom.len);
Josef Bacik02f57c72011-04-06 14:25:44 -04007785
Liu Bo725130b2017-05-16 09:51:39 -07007786 /*
7787 * This will never fail as it's passing GPF_NOFS and
7788 * the allocation is backed by btrfs_bioset.
7789 */
Omar Sandoval769b4f22020-04-16 14:46:22 -07007790 bio = btrfs_bio_clone_partial(dio_bio, clone_offset, clone_len);
Liu Bo725130b2017-05-16 09:51:39 -07007791 bio->bi_private = dip;
7792 bio->bi_end_io = btrfs_end_dio_bio;
7793 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00007794
Liu Bo725130b2017-05-16 09:51:39 -07007795 ASSERT(submit_len >= clone_len);
7796 submit_len -= clone_len;
Miao Xiee65e1532010-11-22 03:04:43 +00007797
Liu Bo725130b2017-05-16 09:51:39 -07007798 /*
7799 * Increase the count before we submit the bio so we know
7800 * the end IO handler won't happen before we increase the
7801 * count. Otherwise, the dip might get freed before we're
7802 * done setting it up.
Omar Sandoval769b4f22020-04-16 14:46:22 -07007803 *
7804 * We transfer the initial reference to the last bio, so we
7805 * don't need to increment the reference count for the last one.
Liu Bo725130b2017-05-16 09:51:39 -07007806 */
Omar Sandoval769b4f22020-04-16 14:46:22 -07007807 if (submit_len > 0) {
7808 refcount_inc(&dip->refs);
7809 /*
7810 * If we are submitting more than one bio, submit them
7811 * all asynchronously. The exception is RAID 5 or 6, as
7812 * asynchronous checksums make it difficult to collect
7813 * full stripe writes.
7814 */
7815 if (!raid56)
7816 async_submit = 1;
7817 }
Miao Xiee65e1532010-11-22 03:04:43 +00007818
David Sterbad0ee3932018-03-08 14:35:48 +01007819 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07007820 async_submit);
7821 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07007822 bio_put(bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07007823 if (submit_len > 0)
7824 refcount_dec(&dip->refs);
Liu Bo725130b2017-05-16 09:51:39 -07007825 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00007826 }
Liu Bo725130b2017-05-16 09:51:39 -07007827
7828 clone_offset += clone_len;
7829 start_sector += clone_len >> 9;
7830 file_offset += clone_len;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02007831 } while (submit_len > 0);
David Sterba55e20bd2020-06-09 19:56:06 +02007832 return;
Miao Xiee65e1532010-11-22 03:04:43 +00007833
Miao Xiee65e1532010-11-22 03:04:43 +00007834out_err:
Omar Sandoval769b4f22020-04-16 14:46:22 -07007835 dip->dio_bio->bi_status = status;
7836 btrfs_dio_private_put(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00007837}
7838
David Sterbaf4c48b42020-06-09 19:19:27 +02007839static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
7840 const struct iov_iter *iter, loff_t offset)
7841{
7842 int seg;
7843 int i;
7844 unsigned int blocksize_mask = fs_info->sectorsize - 1;
7845 ssize_t retval = -EINVAL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007846
David Sterbaf4c48b42020-06-09 19:19:27 +02007847 if (offset & blocksize_mask)
7848 goto out;
7849
7850 if (iov_iter_alignment(iter) & blocksize_mask)
7851 goto out;
7852
7853 /* If this is a write we don't need to check anymore */
7854 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
7855 return 0;
7856 /*
7857 * Check to make sure we don't have duplicate iov_base's in this
7858 * iovec, if so return EINVAL, otherwise we'll get csum errors
7859 * when reading back.
7860 */
7861 for (seg = 0; seg < iter->nr_segs; seg++) {
7862 for (i = seg + 1; i < iter->nr_segs; i++) {
7863 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
7864 goto out;
7865 }
7866 }
7867 retval = 0;
7868out:
7869 return retval;
7870}
7871
David Sterba55e20bd2020-06-09 19:56:06 +02007872static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
David Sterbaf4c48b42020-06-09 19:19:27 +02007873{
7874 struct file *file = iocb->ki_filp;
7875 struct inode *inode = file->f_mapping->host;
7876 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba55e20bd2020-06-09 19:56:06 +02007877 struct btrfs_dio_data dio_data = { 0 };
David Sterbaf4c48b42020-06-09 19:19:27 +02007878 struct extent_changeset *data_reserved = NULL;
7879 loff_t offset = iocb->ki_pos;
7880 size_t count = 0;
David Sterba55e20bd2020-06-09 19:56:06 +02007881 int flags = 0;
7882 bool wakeup = true;
David Sterbaf4c48b42020-06-09 19:19:27 +02007883 bool relock = false;
7884 ssize_t ret;
7885
7886 if (check_direct_IO(fs_info, iter, offset))
7887 return 0;
7888
David Sterba55e20bd2020-06-09 19:56:06 +02007889 inode_dio_begin(inode);
7890
7891 /*
7892 * The generic stuff only does filemap_write_and_wait_range, which
7893 * isn't enough if we've written compressed pages to this area, so
7894 * we need to flush the dirty pages again to make absolutely sure
7895 * that any outstanding dirty pages are on disk.
7896 */
David Sterbaf4c48b42020-06-09 19:19:27 +02007897 count = iov_iter_count(iter);
David Sterba55e20bd2020-06-09 19:56:06 +02007898 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
7899 &BTRFS_I(inode)->runtime_flags))
7900 filemap_fdatawrite_range(inode->i_mapping, offset,
7901 offset + count - 1);
7902
David Sterbaf4c48b42020-06-09 19:19:27 +02007903 if (iov_iter_rw(iter) == WRITE) {
7904 /*
7905 * If the write DIO is beyond the EOF, we need update
7906 * the isize, but it is protected by i_mutex. So we can
7907 * not unlock the i_mutex at this case.
7908 */
7909 if (offset + count <= inode->i_size) {
David Sterba55e20bd2020-06-09 19:56:06 +02007910 dio_data.overwrite = 1;
David Sterbaf4c48b42020-06-09 19:19:27 +02007911 inode_unlock(inode);
7912 relock = true;
David Sterbaf4c48b42020-06-09 19:19:27 +02007913 }
Nikolay Borisove5b7231e2020-06-03 08:55:42 +03007914 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
David Sterba55e20bd2020-06-09 19:56:06 +02007915 offset, count);
7916 if (ret)
7917 goto out;
7918
7919 /*
7920 * We need to know how many extents we reserved so that we can
7921 * do the accounting properly if we go over the number we
7922 * originally calculated. Abuse current->journal_info for this.
7923 */
7924 dio_data.reserve = round_up(count,
7925 fs_info->sectorsize);
7926 dio_data.unsubmitted_oe_range_start = (u64)offset;
7927 dio_data.unsubmitted_oe_range_end = (u64)offset;
7928 current->journal_info = &dio_data;
David Sterbaf4c48b42020-06-09 19:19:27 +02007929 down_read(&BTRFS_I(inode)->dio_sem);
David Sterba55e20bd2020-06-09 19:56:06 +02007930 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
7931 &BTRFS_I(inode)->runtime_flags)) {
7932 inode_dio_end(inode);
7933 flags = DIO_LOCKING | DIO_SKIP_HOLES;
7934 wakeup = false;
David Sterbaf4c48b42020-06-09 19:19:27 +02007935 }
7936
David Sterba55e20bd2020-06-09 19:56:06 +02007937 ret = __blockdev_direct_IO(iocb, inode,
7938 fs_info->fs_devices->latest_bdev,
7939 iter, btrfs_get_blocks_direct, NULL,
7940 btrfs_submit_direct, flags);
David Sterbaf4c48b42020-06-09 19:19:27 +02007941 if (iov_iter_rw(iter) == WRITE) {
7942 up_read(&BTRFS_I(inode)->dio_sem);
David Sterba55e20bd2020-06-09 19:56:06 +02007943 current->journal_info = NULL;
7944 if (ret < 0 && ret != -EIOCBQUEUED) {
7945 if (dio_data.reserve)
Nikolay Borisov86d52922020-06-03 08:55:40 +03007946 btrfs_delalloc_release_space(BTRFS_I(inode),
7947 data_reserved, offset, dio_data.reserve,
7948 true);
David Sterba55e20bd2020-06-09 19:56:06 +02007949 /*
7950 * On error we might have left some ordered extents
7951 * without submitting corresponding bios for them, so
7952 * cleanup them up to avoid other tasks getting them
7953 * and waiting for them to complete forever.
7954 */
7955 if (dio_data.unsubmitted_oe_range_start <
7956 dio_data.unsubmitted_oe_range_end)
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007957 __endio_write_update_ordered(BTRFS_I(inode),
David Sterba55e20bd2020-06-09 19:56:06 +02007958 dio_data.unsubmitted_oe_range_start,
7959 dio_data.unsubmitted_oe_range_end -
7960 dio_data.unsubmitted_oe_range_start,
7961 false);
7962 } else if (ret >= 0 && (size_t)ret < count)
Nikolay Borisov86d52922020-06-03 08:55:40 +03007963 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
David Sterba55e20bd2020-06-09 19:56:06 +02007964 offset, count - (size_t)ret, true);
7965 btrfs_delalloc_release_extents(BTRFS_I(inode), count);
David Sterbaf4c48b42020-06-09 19:19:27 +02007966 }
7967out:
David Sterba55e20bd2020-06-09 19:56:06 +02007968 if (wakeup)
7969 inode_dio_end(inode);
David Sterbaf4c48b42020-06-09 19:19:27 +02007970 if (relock)
7971 inode_lock(inode);
David Sterba55e20bd2020-06-09 19:56:06 +02007972
David Sterbaf4c48b42020-06-09 19:19:27 +02007973 extent_changeset_free(data_reserved);
7974 return ret;
7975}
Chris Mason16432982008-04-10 10:23:21 -04007976
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007977static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterbabab16e22020-06-23 20:56:12 +02007978 u64 start, u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007979{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007980 int ret;
7981
Christoph Hellwig45dd0522020-05-23 09:30:14 +02007982 ret = fiemap_prep(inode, fieinfo, start, &len, 0);
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007983 if (ret)
7984 return ret;
7985
David Sterba2135fb92017-06-23 04:09:57 +02007986 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007987}
7988
Chris Mason9ebefb182007-06-15 13:50:00 -04007989int btrfs_readpage(struct file *file, struct page *page)
7990{
David Sterba71ad38b2020-02-05 19:09:35 +01007991 return extent_read_full_page(page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04007992}
Chris Mason1832a6d2007-12-21 16:27:21 -05007993
Chris Mason39279cc2007-06-12 06:35:45 -04007994static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
7995{
Josef Bacikbe7bd732015-10-22 15:05:09 -04007996 struct inode *inode = page->mapping->host;
7997 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04007998
7999 if (current->flags & PF_MEMALLOC) {
8000 redirty_page_for_writepage(wbc, page);
8001 unlock_page(page);
8002 return 0;
8003 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008004
8005 /*
8006 * If we are under memory pressure we will call this directly from the
8007 * VM, we need to make sure we have the inode referenced for the ordered
8008 * extent. If not just return like we didn't do anything.
8009 */
8010 if (!igrab(inode)) {
8011 redirty_page_for_writepage(wbc, page);
8012 return AOP_WRITEPAGE_ACTIVATE;
8013 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008014 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008015 btrfs_add_delayed_iput(inode);
8016 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008017}
Chris Mason39279cc2007-06-12 06:35:45 -04008018
Eric Sandeen48a3b632013-04-25 20:41:01 +00008019static int btrfs_writepages(struct address_space *mapping,
8020 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008021{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008022 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008023}
8024
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07008025static void btrfs_readahead(struct readahead_control *rac)
Chris Mason3ab2fb52007-11-08 10:59:22 -05008026{
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07008027 extent_readahead(rac);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008028}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008029
Chris Masone6dcd2d2008-07-17 12:53:50 -04008030static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008031{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008032 int ret = try_release_extent_mapping(page, gfp_flags);
Guoqing Jiangd1b89bc2020-06-01 21:47:45 -07008033 if (ret == 1)
8034 detach_page_private(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008035 return ret;
8036}
Chris Mason39279cc2007-06-12 06:35:45 -04008037
Chris Masone6dcd2d2008-07-17 12:53:50 -04008038static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8039{
Chris Mason98509cf2008-09-11 15:51:43 -04008040 if (PageWriteback(page) || PageDirty(page))
8041 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008042 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008043}
8044
Roman Gushchinf8e66082020-03-04 16:57:35 -08008045#ifdef CONFIG_MIGRATION
8046static int btrfs_migratepage(struct address_space *mapping,
8047 struct page *newpage, struct page *page,
8048 enum migrate_mode mode)
8049{
8050 int ret;
8051
8052 ret = migrate_page_move_mapping(mapping, newpage, page, 0);
8053 if (ret != MIGRATEPAGE_SUCCESS)
8054 return ret;
8055
Guoqing Jiangd1b89bc2020-06-01 21:47:45 -07008056 if (page_has_private(page))
8057 attach_page_private(newpage, detach_page_private(page));
Roman Gushchinf8e66082020-03-04 16:57:35 -08008058
8059 if (PagePrivate2(page)) {
8060 ClearPagePrivate2(page);
8061 SetPagePrivate2(newpage);
8062 }
8063
8064 if (mode != MIGRATE_SYNC_NO_COPY)
8065 migrate_page_copy(newpage, page);
8066 else
8067 migrate_page_states(newpage, page);
8068 return MIGRATEPAGE_SUCCESS;
8069}
8070#endif
8071
Lukas Czernerd47992f2013-05-21 23:17:23 -04008072static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8073 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008074{
Josef Bacik5fd02042012-05-02 14:00:54 -04008075 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008076 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008077 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008078 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008079 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008080 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308081 u64 start;
8082 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008083 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008084
Chris Mason8b62b722009-09-02 16:53:46 -04008085 /*
8086 * we have the page locked, so new writeback can't start,
8087 * and the dirty bit won't be cleared while we are here.
8088 *
8089 * Wait for IO on this page so that we can safely clear
8090 * the PagePrivate2 bit and do ordered accounting
8091 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008092 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008093
Josef Bacik5fd02042012-05-02 14:00:54 -04008094 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008095 if (offset) {
8096 btrfs_releasepage(page, GFP_NOFS);
8097 return;
8098 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008099
8100 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008101 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308102again:
8103 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008104 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308105 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008106 if (ordered) {
Omar Sandovalbffe6332019-12-02 17:34:19 -08008107 end = min(page_end,
8108 ordered->file_offset + ordered->num_bytes - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008109 /*
8110 * IO on this page will never be started, so we need
8111 * to account for any ordered extents now
8112 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008113 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308114 clear_extent_bit(tree, start, end,
Omar Sandovale1821632019-08-15 14:04:04 -07008115 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008116 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008117 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008118 /*
8119 * whoever cleared the private bit is responsible
8120 * for the finish_ordered_io
8121 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008122 if (TestClearPagePrivate2(page)) {
8123 struct btrfs_ordered_inode_tree *tree;
8124 u64 new_len;
8125
8126 tree = &BTRFS_I(inode)->ordered_tree;
8127
8128 spin_lock_irq(&tree->lock);
8129 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308130 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008131 if (new_len < ordered->truncated_len)
8132 ordered->truncated_len = new_len;
8133 spin_unlock_irq(&tree->lock);
8134
8135 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308136 start,
8137 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008138 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008139 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008140 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008141 if (!inode_evicting) {
8142 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308143 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008144 &cached_state);
8145 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308146
8147 start = end + 1;
8148 if (start < page_end)
8149 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008150 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008151
Qu Wenruob9d0b382015-09-29 10:35:16 +08008152 /*
8153 * Qgroup reserved space handler
8154 * Page here will be either
Qu Wenruofa91e4a2020-07-17 15:12:05 +08008155 * 1) Already written to disk or ordered extent already submitted
8156 * Then its QGROUP_RESERVED bit in io_tree is already cleaned.
8157 * Qgroup will be handled by its qgroup_record then.
8158 * btrfs_qgroup_free_data() call will do nothing here.
8159 *
8160 * 2) Not written to disk yet
8161 * Then btrfs_qgroup_free_data() call will clear the QGROUP_RESERVED
8162 * bit of its io_tree, and free the qgroup reserved data space.
8163 * Since the IO will never happen for this page.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008164 */
Nikolay Borisov8b8a9792020-06-03 08:55:11 +03008165 btrfs_qgroup_free_data(BTRFS_I(inode), NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008166 if (!inode_evicting) {
Omar Sandovale1821632019-08-15 14:04:04 -07008167 clear_extent_bit(tree, page_start, page_end, EXTENT_LOCKED |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008168 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8169 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008170 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008171
8172 __btrfs_releasepage(page, GFP_NOFS);
8173 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008174
Chris Mason4a096752008-07-21 10:29:44 -04008175 ClearPageChecked(page);
Guoqing Jiangd1b89bc2020-06-01 21:47:45 -07008176 detach_page_private(page);
Chris Mason39279cc2007-06-12 06:35:45 -04008177}
8178
Chris Mason9ebefb182007-06-15 13:50:00 -04008179/*
8180 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8181 * called from a page fault handler when a page is first dirtied. Hence we must
8182 * be careful to check for EOF conditions here. We set the page up correctly
8183 * for a written page which means we get ENOSPC checking when writing into
8184 * holes and correct delalloc and unwritten extent mapping on filesystems that
8185 * support these features.
8186 *
8187 * We are not allowed to take the i_mutex here so we have to play games to
8188 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008189 * truncate_setsize() writes the inode size before removing pages, once we have
8190 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008191 * beyond EOF, then the page is guaranteed safe against truncation until we
8192 * unlock the page.
8193 */
Souptick Joardera528a242018-06-06 19:54:44 +05308194vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008195{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008196 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008197 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008198 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008199 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8200 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008201 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008202 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008203 char *kaddr;
8204 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008205 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308206 vm_fault_t ret;
8207 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008208 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308209 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008210 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008211 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308212 u64 end;
8213
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008214 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008215
Jan Karab2b5ef52012-06-12 16:20:45 +02008216 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008217 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008218 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308219 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008220
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308221 /*
8222 * Reserving delalloc space after obtaining the page lock can lead to
8223 * deadlock. For example, if a dirty page is locked by this function
8224 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8225 * dirty page write out, then the btrfs_writepage() function could
8226 * end up waiting indefinitely to get a lock on the page currently
8227 * being processed by btrfs_page_mkwrite() function.
8228 */
Nikolay Borisove5b7231e2020-06-03 08:55:42 +03008229 ret2 = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
8230 page_start, reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308231 if (!ret2) {
8232 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008233 reserved = 1;
8234 }
Souptick Joardera528a242018-06-06 19:54:44 +05308235 if (ret2) {
8236 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008237 if (reserved)
8238 goto out;
8239 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008240 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008241
Nick Piggin56a76f82009-03-31 15:23:23 -07008242 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008243again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008244 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008245 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008246
Chris Mason9ebefb182007-06-15 13:50:00 -04008247 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008248 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008249 /* page got truncated out from underneath us */
8250 goto out_unlock;
8251 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008252 wait_on_page_writeback(page);
8253
David Sterbaff13db42015-12-03 14:30:40 +01008254 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008255 set_page_extent_mapped(page);
8256
Chris Masoneb84ae02008-07-17 13:53:27 -04008257 /*
8258 * we can't set the delalloc bits if there are pending ordered
8259 * extents. Drop our locks and wait for them to finish
8260 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008261 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8262 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008263 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008264 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008265 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008266 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008267 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008268 btrfs_put_ordered_extent(ordered);
8269 goto again;
8270 }
8271
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008272 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008273 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008274 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008275 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308276 end = page_start + reserved_space - 1;
Nikolay Borisov86d52922020-06-03 08:55:40 +03008277 btrfs_delalloc_release_space(BTRFS_I(inode),
8278 data_reserved, page_start,
8279 PAGE_SIZE - reserved_space, true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308280 }
8281 }
8282
Josef Bacikfbf19082009-10-01 17:10:23 -04008283 /*
Liu Bo54160342016-12-13 12:15:19 -08008284 * page_mkwrite gets called when the page is firstly dirtied after it's
8285 * faulted in, but write(2) could also dirty a page and set delalloc
8286 * bits, thus in this case for space account reason, we still need to
8287 * clear any delalloc bits within this page range since we have to
8288 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008289 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308290 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Omar Sandovale1821632019-08-15 14:04:04 -07008291 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8292 EXTENT_DEFRAG, 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008293
Nikolay Borisovc2566f22020-06-03 08:55:35 +03008294 ret2 = btrfs_set_extent_delalloc(BTRFS_I(inode), page_start, end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03008295 &cached_state);
Souptick Joardera528a242018-06-06 19:54:44 +05308296 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008297 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008298 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008299 ret = VM_FAULT_SIGBUS;
8300 goto out_unlock;
8301 }
Chris Mason9ebefb182007-06-15 13:50:00 -04008302
8303 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008304 if (page_start + PAGE_SIZE > size)
Johannes Thumshirn70730172018-12-05 15:23:03 +01008305 zero_start = offset_in_page(size);
Chris Mason9ebefb182007-06-15 13:50:00 -04008306 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008307 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008308
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008309 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008310 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008311 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008312 flush_dcache_page(page);
8313 kunmap(page);
8314 }
Chris Mason247e7432008-07-17 12:53:51 -04008315 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008316 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008317 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008318
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008319 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04008320 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008321 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008322
David Sterbae43bbe52017-12-12 21:43:52 +01008323 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04008324
Yunfeng Ye76de60e2019-12-03 16:59:25 +08008325 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
8326 sb_end_pagefault(inode->i_sb);
8327 extent_changeset_free(data_reserved);
8328 return VM_FAULT_LOCKED;
Chris Mason717beb92018-06-25 10:03:41 -07008329
8330out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008331 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008332out:
Qu Wenruo8702ba92019-10-14 14:34:51 +08008333 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
Nikolay Borisov86d52922020-06-03 08:55:40 +03008334 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008335 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008336out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008337 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008338 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008339 return ret;
8340}
8341
Filipe Manana213e8c52018-02-06 20:40:31 +00008342static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008343{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008344 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008345 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008346 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008347 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008348 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008349 u64 mask = fs_info->sectorsize - 1;
Josef Bacik2bd36e72019-08-22 15:14:33 -04008350 u64 min_size = btrfs_calc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008351
Filipe Manana213e8c52018-02-06 20:40:31 +00008352 if (!skip_writeback) {
8353 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8354 (u64)-1);
8355 if (ret)
8356 return ret;
8357 }
Chris Mason39279cc2007-06-12 06:35:45 -04008358
Josef Bacikfcb80c22011-05-03 10:40:22 -04008359 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008360 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8361 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008362 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008363 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008364 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008365 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008366 * be free'd up by the truncate operation, but also have some slack
8367 * space reserved in case it uses space during the truncate (thank you
8368 * very much snapshotting).
8369 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008370 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008371 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008372 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008373 * doesn't end up using space reserved for updating the inode. We also
8374 * need to be able to stop the transaction and start a new one, which
8375 * means we need to be able to update the inode several times, and we
8376 * have no idea of knowing how many times that will be, so we can't just
8377 * reserve 1 item for the entirety of the operation, so that has to be
8378 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008379 *
8380 * So that leaves us with
8381 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008382 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008383 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008384 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008385 * updating the inode.
8386 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008387 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008388 if (!rsv)
8389 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008390 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008391 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008392
Josef Bacik907cbce2011-08-08 13:46:15 -04008393 /*
Josef Bacik07127182011-08-19 10:29:59 -04008394 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008395 * 1 for updating the inode.
8396 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008397 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008398 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008399 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008400 goto out;
8401 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008402
Josef Bacik907cbce2011-08-08 13:46:15 -04008403 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008404 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08008405 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008406 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008407
Chris Mason5a3f23d2009-03-31 13:27:11 -04008408 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04008409 * So if we truncate and then write and fsync we normally would just
8410 * write the extents that changed, which is a problem if we need to
8411 * first truncate that entire inode. So set this flag so we write out
8412 * all of the extents in the inode to the sync log so we're completely
8413 * safe.
8414 */
8415 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008416 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008417
Yan, Zheng80825102009-11-12 09:35:36 +00008418 while (1) {
8419 ret = btrfs_truncate_inode_items(trans, root, inode,
8420 inode->i_size,
8421 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04008422 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008423 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00008424 break;
Chris Mason39279cc2007-06-12 06:35:45 -04008425
Yan, Zheng80825102009-11-12 09:35:36 +00008426 ret = btrfs_update_inode(trans, root, inode);
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008427 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05008428 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008429
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04008430 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008431 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008432
8433 trans = btrfs_start_transaction(root, 2);
8434 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008435 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008436 trans = NULL;
8437 break;
8438 }
8439
Nikolay Borisov63f018b2020-03-10 10:59:31 +02008440 btrfs_block_rsv_release(fs_info, rsv, -1, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008441 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08008442 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008443 BUG_ON(ret); /* shouldn't happen */
8444 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008445 }
8446
Josef Bacikddfae632017-10-19 14:16:02 -04008447 /*
8448 * We can't call btrfs_truncate_block inside a trans handle as we could
8449 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
8450 * we've truncated everything except the last little bit, and can do
8451 * btrfs_truncate_block and then update the disk_i_size.
8452 */
8453 if (ret == NEED_TRUNCATE_BLOCK) {
8454 btrfs_end_transaction(trans);
8455 btrfs_btree_balance_dirty(fs_info);
8456
8457 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
8458 if (ret)
8459 goto out;
8460 trans = btrfs_start_transaction(root, 1);
8461 if (IS_ERR(trans)) {
8462 ret = PTR_ERR(trans);
8463 goto out;
8464 }
Josef Bacikd923afe2020-01-17 09:02:23 -05008465 btrfs_inode_safe_disk_i_size_write(inode, 0);
Josef Bacikddfae632017-10-19 14:16:02 -04008466 }
8467
Chris Mason917c16b2011-11-08 14:49:59 -05008468 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008469 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04008470
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008471 trans->block_rsv = &fs_info->trans_block_rsv;
8472 ret2 = btrfs_update_inode(trans, root, inode);
8473 if (ret2 && !ret)
8474 ret = ret2;
8475
8476 ret2 = btrfs_end_transaction(trans);
8477 if (ret2 && !ret)
8478 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008479 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05008480 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04008481out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008482 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008483
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008484 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008485}
8486
Sven Wegener3b963622008-06-09 21:57:42 -04008487/*
Chris Masond352ac62008-09-29 15:18:18 -04008488 * create a new subvolume directory/inode (helper for the ioctl).
8489 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05008490int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008491 struct btrfs_root *new_root,
8492 struct btrfs_root *parent_root,
8493 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04008494{
Chris Mason39279cc2007-06-12 06:35:45 -04008495 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04008496 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008497 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008498
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01008499 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
8500 new_dirid, new_dirid,
8501 S_IFDIR | (~current_umask() & S_IRWXUGO),
8502 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04008503 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008504 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008505 inode->i_op = &btrfs_dir_inode_operations;
8506 inode->i_fop = &btrfs_dir_file_operations;
8507
Miklos Szeredibfe86842011-10-28 14:13:29 +02008508 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02008509 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07008510 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04008511
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008512 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8513 if (err)
8514 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02008515 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008516 new_root->root_key.objectid, err);
8517
Yan, Zheng76dda932009-09-21 16:00:26 -04008518 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04008519
Yan, Zheng76dda932009-09-21 16:00:26 -04008520 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07008521 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008522}
8523
Chris Mason39279cc2007-06-12 06:35:45 -04008524struct inode *btrfs_alloc_inode(struct super_block *sb)
8525{
Josef Bacik69fe2d72017-10-19 14:15:57 -04008526 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008527 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008528 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008529
David Sterba712e36c2017-10-31 17:08:27 +01008530 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04008531 if (!ei)
8532 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008533
8534 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008535 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04008536 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04008537 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04008538 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008539 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008540 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08008541 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008542 ei->disk_i_size = 0;
8543 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04008544 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008545 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08008546 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008547 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06008548 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008549
Josef Bacik9e0baf62011-07-15 15:16:44 +00008550 spin_lock_init(&ei->lock);
8551 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04008552 if (sb->s_magic != BTRFS_TEST_MAGIC)
8553 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
8554 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04008555 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02008556 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02008557 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008558
Miao Xie16cdcec2011-04-22 18:12:22 +08008559 ei->delayed_node = NULL;
8560
chandan r9cc97d62012-07-04 12:48:07 +05308561 ei->i_otime.tv_sec = 0;
8562 ei->i_otime.tv_nsec = 0;
8563
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008564 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02008565 extent_map_tree_init(&ei->extent_tree);
Qu Wenruo43eb5f22019-03-01 10:47:59 +08008566 extent_io_tree_init(fs_info, &ei->io_tree, IO_TREE_INODE_IO, inode);
8567 extent_io_tree_init(fs_info, &ei->io_failure_tree,
8568 IO_TREE_INODE_IO_FAILURE, inode);
Josef Bacik41a2ee72020-01-17 09:02:21 -05008569 extent_io_tree_init(fs_info, &ei->file_extent_tree,
8570 IO_TREE_INODE_FILE_EXTENT, inode);
David Sterba7b439732019-03-11 15:58:30 +01008571 ei->io_tree.track_uptodate = true;
8572 ei->io_failure_tree.track_uptodate = true;
Josef Bacikb812ce22012-11-16 13:56:32 -05008573 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008574 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008575 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008576 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01008577 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008578 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01008579 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008580
8581 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008582}
8583
Josef Bacikaaedb552013-10-11 14:44:09 -04008584#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
8585void btrfs_test_destroy_inode(struct inode *inode)
8586{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02008587 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04008588 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8589}
8590#endif
8591
Al Viro26602ca2019-04-10 15:14:41 -04008592void btrfs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008593{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008594 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8595}
8596
Chris Mason39279cc2007-06-12 06:35:45 -04008597void btrfs_destroy_inode(struct inode *inode)
8598{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008599 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008600 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04008601 struct btrfs_root *root = BTRFS_I(inode)->root;
8602
Al Virob3d9b7a2012-06-09 13:51:19 -04008603 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04008604 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04008605 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
8606 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00008607 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04008608 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008609 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04008610 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08008611 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04008612
Chris Mason5a3f23d2009-03-31 13:27:11 -04008613 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05008614 * This can happen where we create an inode, but somebody else also
8615 * created the same inode and we need to destroy the one we already
8616 * created.
8617 */
8618 if (!root)
Al Viro26602ca2019-04-10 15:14:41 -04008619 return;
Josef Bacika6dbd422009-11-11 15:53:34 -05008620
Chris Masond3977122009-01-05 21:25:51 -05008621 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008622 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
8623 if (!ordered)
8624 break;
8625 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008626 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008627 "found ordered extent %llu %llu on inode cleanup",
Omar Sandovalbffe6332019-12-02 17:34:19 -08008628 ordered->file_offset, ordered->num_bytes);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008629 btrfs_remove_ordered_extent(inode, ordered);
8630 btrfs_put_ordered_extent(ordered);
8631 btrfs_put_ordered_extent(ordered);
8632 }
8633 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08008634 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008635 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02008636 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacik41a2ee72020-01-17 09:02:21 -05008637 btrfs_inode_clear_file_extent_range(BTRFS_I(inode), 0, (u64)-1);
Josef Bacik5c8fd992020-02-14 16:11:43 -05008638 btrfs_put_root(BTRFS_I(inode)->root);
Chris Mason39279cc2007-06-12 06:35:45 -04008639}
8640
Al Viro45321ac2010-06-07 13:43:19 -04008641int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04008642{
8643 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04008644
Naohiro Aota6379ef92013-06-06 09:56:34 +00008645 if (root == NULL)
8646 return 1;
8647
Liu Bofa6ac872013-02-20 14:10:23 +00008648 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02008649 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04008650 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04008651 else
Al Viro45321ac2010-06-07 13:43:19 -04008652 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04008653}
8654
Sven Wegener0ee0fda2008-07-30 16:54:26 -04008655static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04008656{
8657 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
8658
8659 inode_init_once(&ei->vfs_inode);
8660}
8661
David Sterbae67c7182018-02-19 17:24:18 +01008662void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04008663{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10008664 /*
8665 * Make sure all delayed rcu free inodes are flushed before we
8666 * destroy cache.
8667 */
8668 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08008669 kmem_cache_destroy(btrfs_inode_cachep);
8670 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08008671 kmem_cache_destroy(btrfs_path_cachep);
8672 kmem_cache_destroy(btrfs_free_space_cachep);
Christophe Leroy3acd4852019-08-21 15:05:55 +00008673 kmem_cache_destroy(btrfs_free_space_bitmap_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008674}
8675
Liu Bof5c29bd2017-11-02 17:21:50 -06008676int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04008677{
David Sterba837e1972012-09-07 03:00:48 -06008678 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008679 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08008680 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
8681 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04008682 if (!btrfs_inode_cachep)
8683 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008684
David Sterba837e1972012-09-07 03:00:48 -06008685 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008686 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03008687 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008688 if (!btrfs_trans_handle_cachep)
8689 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008690
David Sterba837e1972012-09-07 03:00:48 -06008691 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008692 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03008693 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008694 if (!btrfs_path_cachep)
8695 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008696
David Sterba837e1972012-09-07 03:00:48 -06008697 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05008698 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03008699 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05008700 if (!btrfs_free_space_cachep)
8701 goto fail;
8702
Christophe Leroy3acd4852019-08-21 15:05:55 +00008703 btrfs_free_space_bitmap_cachep = kmem_cache_create("btrfs_free_space_bitmap",
8704 PAGE_SIZE, PAGE_SIZE,
8705 SLAB_RED_ZONE, NULL);
8706 if (!btrfs_free_space_bitmap_cachep)
8707 goto fail;
8708
Chris Mason39279cc2007-06-12 06:35:45 -04008709 return 0;
8710fail:
8711 btrfs_destroy_cachep();
8712 return -ENOMEM;
8713}
8714
David Howellsa528d352017-01-31 16:46:22 +00008715static int btrfs_getattr(const struct path *path, struct kstat *stat,
8716 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04008717{
Miao Xiedf0af1a2013-01-29 10:11:59 +00008718 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00008719 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05008720 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07008721 u32 bi_flags = BTRFS_I(inode)->flags;
8722
8723 stat->result_mask |= STATX_BTIME;
8724 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
8725 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
8726 if (bi_flags & BTRFS_INODE_APPEND)
8727 stat->attributes |= STATX_ATTR_APPEND;
8728 if (bi_flags & BTRFS_INODE_COMPRESS)
8729 stat->attributes |= STATX_ATTR_COMPRESSED;
8730 if (bi_flags & BTRFS_INODE_IMMUTABLE)
8731 stat->attributes |= STATX_ATTR_IMMUTABLE;
8732 if (bi_flags & BTRFS_INODE_NODUMP)
8733 stat->attributes |= STATX_ATTR_NODUMP;
8734
8735 stat->attributes_mask |= (STATX_ATTR_APPEND |
8736 STATX_ATTR_COMPRESSED |
8737 STATX_ATTR_IMMUTABLE |
8738 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05008739
Chris Mason39279cc2007-06-12 06:35:45 -04008740 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04008741 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008742
8743 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008744 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008745 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05008746 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00008747 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04008748 return 0;
8749}
8750
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008751static int btrfs_rename_exchange(struct inode *old_dir,
8752 struct dentry *old_dentry,
8753 struct inode *new_dir,
8754 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04008755{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008756 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008757 struct btrfs_trans_handle *trans;
8758 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008759 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008760 struct inode *new_inode = new_dentry->d_inode;
8761 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07008762 struct timespec64 ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008763 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02008764 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
8765 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008766 u64 old_idx = 0;
8767 u64 new_idx = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008768 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01008769 bool root_log_pinned = false;
8770 bool dest_log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01008771 struct btrfs_log_ctx ctx_root;
8772 struct btrfs_log_ctx ctx_dest;
8773 bool sync_log_root = false;
8774 bool sync_log_dest = false;
8775 bool commit_transaction = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008776
8777 /* we only allow rename subvolume link between subvolumes */
8778 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
8779 return -EXDEV;
8780
Filipe Mananad4682ba2018-06-11 19:24:28 +01008781 btrfs_init_log_ctx(&ctx_root, old_inode);
8782 btrfs_init_log_ctx(&ctx_dest, new_inode);
8783
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008784 /* close the race window with snapshot create/destroy ioctl */
Josef Bacik943eb3b2019-11-19 13:59:20 -05008785 if (old_ino == BTRFS_FIRST_FREE_OBJECTID ||
8786 new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008787 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008788
8789 /*
8790 * We want to reserve the absolute worst case amount of items. So if
8791 * both inodes are subvols and we need to unlink them then that would
8792 * require 4 item modifications, but if they are both normal inodes it
8793 * would require 5 item modifications, so we'll assume their normal
8794 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
8795 * should cover the worst case number of items we'll modify.
8796 */
8797 trans = btrfs_start_transaction(root, 12);
8798 if (IS_ERR(trans)) {
8799 ret = PTR_ERR(trans);
8800 goto out_notrans;
8801 }
8802
Josef Bacik3e174092019-11-15 15:43:06 -05008803 if (dest != root)
8804 btrfs_record_root_in_trans(trans, dest);
8805
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008806 /*
8807 * We need to find a free sequence number both in the source and
8808 * in the destination directory for the exchange.
8809 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02008810 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008811 if (ret)
8812 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02008813 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008814 if (ret)
8815 goto out_fail;
8816
8817 BTRFS_I(old_inode)->dir_index = 0ULL;
8818 BTRFS_I(new_inode)->dir_index = 0ULL;
8819
8820 /* Reference for the source. */
8821 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
8822 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01008823 btrfs_set_log_full_commit(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008824 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01008825 btrfs_pin_log_trans(root);
8826 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008827 ret = btrfs_insert_inode_ref(trans, dest,
8828 new_dentry->d_name.name,
8829 new_dentry->d_name.len,
8830 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01008831 btrfs_ino(BTRFS_I(new_dir)),
8832 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008833 if (ret)
8834 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008835 }
8836
8837 /* And now for the dest. */
8838 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
8839 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01008840 btrfs_set_log_full_commit(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008841 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01008842 btrfs_pin_log_trans(dest);
8843 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008844 ret = btrfs_insert_inode_ref(trans, root,
8845 old_dentry->d_name.name,
8846 old_dentry->d_name.len,
8847 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01008848 btrfs_ino(BTRFS_I(old_dir)),
8849 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008850 if (ret)
8851 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008852 }
8853
8854 /* Update inode version and ctime/mtime. */
8855 inode_inc_iversion(old_dir);
8856 inode_inc_iversion(new_dir);
8857 inode_inc_iversion(old_inode);
8858 inode_inc_iversion(new_inode);
8859 old_dir->i_ctime = old_dir->i_mtime = ctime;
8860 new_dir->i_ctime = new_dir->i_mtime = ctime;
8861 old_inode->i_ctime = ctime;
8862 new_inode->i_ctime = ctime;
8863
8864 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01008865 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
8866 BTRFS_I(old_inode), 1);
8867 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
8868 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008869 }
8870
8871 /* src is a subvolume */
8872 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik045d3962019-12-18 17:20:27 -05008873 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008874 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02008875 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
8876 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008877 old_dentry->d_name.name,
8878 old_dentry->d_name.len);
8879 if (!ret)
8880 ret = btrfs_update_inode(trans, root, old_inode);
8881 }
8882 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04008883 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008884 goto out_fail;
8885 }
8886
8887 /* dest is a subvolume */
8888 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik045d3962019-12-18 17:20:27 -05008889 ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008890 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02008891 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
8892 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008893 new_dentry->d_name.name,
8894 new_dentry->d_name.len);
8895 if (!ret)
8896 ret = btrfs_update_inode(trans, dest, new_inode);
8897 }
8898 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04008899 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008900 goto out_fail;
8901 }
8902
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02008903 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008904 new_dentry->d_name.name,
8905 new_dentry->d_name.len, 0, old_idx);
8906 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04008907 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008908 goto out_fail;
8909 }
8910
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02008911 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008912 old_dentry->d_name.name,
8913 old_dentry->d_name.len, 0, new_idx);
8914 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04008915 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008916 goto out_fail;
8917 }
8918
8919 if (old_inode->i_nlink == 1)
8920 BTRFS_I(old_inode)->dir_index = old_idx;
8921 if (new_inode->i_nlink == 1)
8922 BTRFS_I(new_inode)->dir_index = new_idx;
8923
Filipe Manana86e8aa02016-05-05 02:02:27 +01008924 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008925 parent = new_dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01008926 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
8927 BTRFS_I(old_dir), parent,
8928 false, &ctx_root);
8929 if (ret == BTRFS_NEED_LOG_SYNC)
8930 sync_log_root = true;
8931 else if (ret == BTRFS_NEED_TRANS_COMMIT)
8932 commit_transaction = true;
8933 ret = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008934 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01008935 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008936 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01008937 if (dest_log_pinned) {
Filipe Mananad4682ba2018-06-11 19:24:28 +01008938 if (!commit_transaction) {
8939 parent = old_dentry->d_parent;
8940 ret = btrfs_log_new_name(trans, BTRFS_I(new_inode),
8941 BTRFS_I(new_dir), parent,
8942 false, &ctx_dest);
8943 if (ret == BTRFS_NEED_LOG_SYNC)
8944 sync_log_dest = true;
8945 else if (ret == BTRFS_NEED_TRANS_COMMIT)
8946 commit_transaction = true;
8947 ret = 0;
8948 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008949 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01008950 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01008951 }
8952out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01008953 /*
8954 * If we have pinned a log and an error happened, we unpin tasks
8955 * trying to sync the log and force them to fallback to a transaction
8956 * commit if the log currently contains any of the inodes involved in
8957 * this rename operation (to ensure we do not persist a log with an
8958 * inconsistent state for any of these inodes or leading to any
8959 * inconsistencies when replayed). If the transaction was aborted, the
8960 * abortion reason is propagated to userspace when attempting to commit
8961 * the transaction. If the log does not contain any of these inodes, we
8962 * allow the tasks to sync it.
8963 */
8964 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02008965 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
8966 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
8967 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01008968 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02008969 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
David Sterba90787762019-03-20 13:28:05 +01008970 btrfs_set_log_full_commit(trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01008971
8972 if (root_log_pinned) {
8973 btrfs_end_log_trans(root);
8974 root_log_pinned = false;
8975 }
8976 if (dest_log_pinned) {
8977 btrfs_end_log_trans(dest);
8978 dest_log_pinned = false;
8979 }
8980 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01008981 if (!ret && sync_log_root && !commit_transaction) {
8982 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root,
8983 &ctx_root);
8984 if (ret)
8985 commit_transaction = true;
8986 }
8987 if (!ret && sync_log_dest && !commit_transaction) {
8988 ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root,
8989 &ctx_dest);
8990 if (ret)
8991 commit_transaction = true;
8992 }
8993 if (commit_transaction) {
Filipe Mananae6c61712019-11-08 16:11:56 +00008994 /*
8995 * We may have set commit_transaction when logging the new name
8996 * in the destination root, in which case we left the source
8997 * root context in the list of log contextes. So make sure we
8998 * remove it to avoid invalid memory accesses, since the context
8999 * was allocated in our stack frame.
9000 */
9001 if (sync_log_root) {
9002 mutex_lock(&root->log_mutex);
9003 list_del_init(&ctx_root.list);
9004 mutex_unlock(&root->log_mutex);
9005 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009006 ret = btrfs_commit_transaction(trans);
9007 } else {
9008 int ret2;
9009
9010 ret2 = btrfs_end_transaction(trans);
9011 ret = ret ? ret : ret2;
9012 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009013out_notrans:
Josef Bacik943eb3b2019-11-19 13:59:20 -05009014 if (new_ino == BTRFS_FIRST_FREE_OBJECTID ||
9015 old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009016 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009017
Filipe Mananae6c61712019-11-08 16:11:56 +00009018 ASSERT(list_empty(&ctx_root.list));
9019 ASSERT(list_empty(&ctx_dest.list));
9020
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009021 return ret;
9022}
9023
9024static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9025 struct btrfs_root *root,
9026 struct inode *dir,
9027 struct dentry *dentry)
9028{
9029 int ret;
9030 struct inode *inode;
9031 u64 objectid;
9032 u64 index;
9033
9034 ret = btrfs_find_free_ino(root, &objectid);
9035 if (ret)
9036 return ret;
9037
9038 inode = btrfs_new_inode(trans, root, dir,
9039 dentry->d_name.name,
9040 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009041 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009042 objectid,
9043 S_IFCHR | WHITEOUT_MODE,
9044 &index);
9045
9046 if (IS_ERR(inode)) {
9047 ret = PTR_ERR(inode);
9048 return ret;
9049 }
9050
9051 inode->i_op = &btrfs_special_inode_operations;
9052 init_special_inode(inode, inode->i_mode,
9053 WHITEOUT_DEV);
9054
9055 ret = btrfs_init_inode_security(trans, inode, dir,
9056 &dentry->d_name);
9057 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009058 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009059
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009060 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9061 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009062 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009063 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009064
9065 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009066out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009067 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009068 if (ret)
9069 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009070 iput(inode);
9071
Filipe Mananac9901612016-05-05 01:41:57 +01009072 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009073}
9074
Chris Mason39279cc2007-06-12 06:35:45 -04009075static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009076 struct inode *new_dir, struct dentry *new_dentry,
9077 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009078{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009079 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009080 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009081 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009082 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9083 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009084 struct inode *new_inode = d_inode(new_dentry);
9085 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009086 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009087 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009088 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009089 bool log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009090 struct btrfs_log_ctx ctx;
9091 bool sync_log = false;
9092 bool commit_transaction = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009093
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009094 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009095 return -EPERM;
9096
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009097 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009098 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009099 return -EXDEV;
9100
Li Zefan33345d012011-04-20 10:31:50 +08009101 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009102 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009103 return -ENOTEMPTY;
9104
Chris Mason39279cc2007-06-12 06:35:45 -04009105 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009106 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009107 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009108
9109
9110 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009111 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009112 new_dentry->d_name.name,
9113 new_dentry->d_name.len);
9114
9115 if (ret) {
9116 if (ret == -EEXIST) {
9117 /* we shouldn't get
9118 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309119 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009120 return ret;
9121 }
9122 } else {
9123 /* maybe -EOVERFLOW */
9124 return ret;
9125 }
9126 }
9127 ret = 0;
9128
Chris Mason5a3f23d2009-03-31 13:27:11 -04009129 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009130 * we're using rename to replace one file with another. Start IO on it
9131 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009132 */
Chris Mason8d875f92014-08-12 10:47:42 -07009133 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009134 filemap_flush(old_inode->i_mapping);
9135
Yan, Zheng76dda932009-09-21 16:00:26 -04009136 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009137 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009138 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009139 /*
9140 * We want to reserve the absolute worst case amount of items. So if
9141 * both inodes are subvols and we need to unlink them then that would
9142 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009143 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009144 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9145 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009146 * If our rename has the whiteout flag, we need more 5 units for the
9147 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9148 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009149 */
Filipe Manana5062af32016-05-05 10:26:26 +01009150 trans_num_items = 11;
9151 if (flags & RENAME_WHITEOUT)
9152 trans_num_items += 5;
9153 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009154 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009155 ret = PTR_ERR(trans);
9156 goto out_notrans;
9157 }
Chris Mason5f39d392007-10-15 16:14:19 -04009158
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009159 if (dest != root)
9160 btrfs_record_root_in_trans(trans, dest);
9161
Nikolay Borisov877574e2017-02-20 13:50:33 +02009162 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009163 if (ret)
9164 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009165
Miao Xie67de1172013-12-26 13:07:06 +08009166 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009167 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009168 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01009169 btrfs_set_log_full_commit(trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009170 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009171 btrfs_pin_log_trans(root);
9172 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009173 ret = btrfs_insert_inode_ref(trans, dest,
9174 new_dentry->d_name.name,
9175 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009176 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009177 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009178 if (ret)
9179 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009180 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009181
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009182 inode_inc_iversion(old_dir);
9183 inode_inc_iversion(new_dir);
9184 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009185 old_dir->i_ctime = old_dir->i_mtime =
9186 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009187 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009188
Chris Mason12fcfd22009-03-24 10:24:20 -04009189 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009190 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9191 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009192
Li Zefan33345d012011-04-20 10:31:50 +08009193 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05009194 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009195 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009196 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9197 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009198 old_dentry->d_name.name,
9199 old_dentry->d_name.len);
9200 if (!ret)
9201 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009202 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009203 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009204 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009205 goto out_fail;
9206 }
Chris Mason39279cc2007-06-12 06:35:45 -04009207
9208 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009209 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009210 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009211 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009212 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05009213 ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009214 BUG_ON(new_inode->i_nlink == 0);
9215 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009216 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9217 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009218 new_dentry->d_name.name,
9219 new_dentry->d_name.len);
9220 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009221 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009222 ret = btrfs_orphan_add(trans,
9223 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009224 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009225 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009226 goto out_fail;
9227 }
Chris Mason39279cc2007-06-12 06:35:45 -04009228 }
Josef Bacikaec74772008-07-24 12:12:38 -04009229
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009230 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009231 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009232 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009233 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009234 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009235 goto out_fail;
9236 }
Chris Mason39279cc2007-06-12 06:35:45 -04009237
Miao Xie67de1172013-12-26 13:07:06 +08009238 if (old_inode->i_nlink == 1)
9239 BTRFS_I(old_inode)->dir_index = index;
9240
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009241 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009242 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009243
Filipe Mananad4682ba2018-06-11 19:24:28 +01009244 btrfs_init_log_ctx(&ctx, old_inode);
9245 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9246 BTRFS_I(old_dir), parent,
9247 false, &ctx);
9248 if (ret == BTRFS_NEED_LOG_SYNC)
9249 sync_log = true;
9250 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9251 commit_transaction = true;
9252 ret = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009253 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009254 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009255 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009256
9257 if (flags & RENAME_WHITEOUT) {
9258 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9259 old_dentry);
9260
9261 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009262 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009263 goto out_fail;
9264 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009265 }
Chris Mason39279cc2007-06-12 06:35:45 -04009266out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009267 /*
9268 * If we have pinned the log and an error happened, we unpin tasks
9269 * trying to sync the log and force them to fallback to a transaction
9270 * commit if the log currently contains any of the inodes involved in
9271 * this rename operation (to ensure we do not persist a log with an
9272 * inconsistent state for any of these inodes or leading to any
9273 * inconsistencies when replayed). If the transaction was aborted, the
9274 * abortion reason is propagated to userspace when attempting to commit
9275 * the transaction. If the log does not contain any of these inodes, we
9276 * allow the tasks to sync it.
9277 */
9278 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009279 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9280 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9281 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009282 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009283 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
David Sterba90787762019-03-20 13:28:05 +01009284 btrfs_set_log_full_commit(trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009285
9286 btrfs_end_log_trans(root);
9287 log_pinned = false;
9288 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009289 if (!ret && sync_log) {
9290 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx);
9291 if (ret)
9292 commit_transaction = true;
Filipe Manana236ebc22020-03-10 12:13:53 +00009293 } else if (sync_log) {
9294 mutex_lock(&root->log_mutex);
9295 list_del(&ctx.list);
9296 mutex_unlock(&root->log_mutex);
Filipe Mananad4682ba2018-06-11 19:24:28 +01009297 }
9298 if (commit_transaction) {
9299 ret = btrfs_commit_transaction(trans);
9300 } else {
9301 int ret2;
9302
9303 ret2 = btrfs_end_transaction(trans);
9304 ret = ret ? ret : ret2;
9305 }
Johann Lombardib44c59a2011-03-31 13:23:47 +00009306out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009307 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009308 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009309
Chris Mason39279cc2007-06-12 06:35:45 -04009310 return ret;
9311}
9312
Miklos Szeredi80ace852014-07-23 15:15:32 +02009313static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9314 struct inode *new_dir, struct dentry *new_dentry,
9315 unsigned int flags)
9316{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009317 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009318 return -EINVAL;
9319
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009320 if (flags & RENAME_EXCHANGE)
9321 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9322 new_dentry);
9323
9324 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009325}
9326
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009327struct btrfs_delalloc_work {
9328 struct inode *inode;
9329 struct completion completion;
9330 struct list_head list;
9331 struct btrfs_work work;
9332};
9333
Miao Xie8ccf6f192012-10-25 09:28:04 +00009334static void btrfs_run_delalloc_work(struct btrfs_work *work)
9335{
9336 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009337 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009338
9339 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9340 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009341 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009342 filemap_flush(inode->i_mapping);
9343 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9344 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009345 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009346
Nikolay Borisov076da912018-04-23 10:54:16 +03009347 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009348 complete(&delalloc_work->completion);
9349}
9350
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009351static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009352{
9353 struct btrfs_delalloc_work *work;
9354
David Sterba100d5702015-12-08 14:39:32 +01009355 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009356 if (!work)
9357 return NULL;
9358
9359 init_completion(&work->completion);
9360 INIT_LIST_HEAD(&work->list);
9361 work->inode = inode;
Omar Sandovala0cac0e2019-09-16 11:30:57 -07009362 btrfs_init_work(&work->work, btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009363
9364 return work;
9365}
9366
Chris Masond352ac62008-09-29 15:18:18 -04009367/*
9368 * some fairly slow code that needs optimization. This walks the list
9369 * of all the inodes with pending delalloc and forces them to disk.
9370 */
Ethan Lien3cd24c62018-11-01 14:49:03 +08009371static int start_delalloc_inodes(struct btrfs_root *root, int nr, bool snapshot)
Chris Masonea8c2812008-08-04 23:17:27 -04009372{
Chris Masonea8c2812008-08-04 23:17:27 -04009373 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009374 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009375 struct btrfs_delalloc_work *work, *next;
9376 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009377 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009378 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009379
Miao Xie8ccf6f192012-10-25 09:28:04 +00009380 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009381 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009382
Miao Xie573bfb72014-03-06 13:55:03 +08009383 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009384 spin_lock(&root->delalloc_lock);
9385 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009386 while (!list_empty(&splice)) {
9387 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009388 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009389
Miao Xieeb73c1b2013-05-15 07:48:22 +00009390 list_move_tail(&binode->delalloc_inodes,
9391 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009392 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009393 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009394 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009395 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009396 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009397 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009398
Ethan Lien3cd24c62018-11-01 14:49:03 +08009399 if (snapshot)
9400 set_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
9401 &binode->runtime_flags);
Nikolay Borisov076da912018-04-23 10:54:16 +03009402 work = btrfs_alloc_delalloc_work(inode);
David Sterba5d99a9982014-09-29 19:20:37 +02009403 if (!work) {
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009404 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009405 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009406 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009407 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009408 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009409 btrfs_queue_work(root->fs_info->flush_workers,
9410 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009411 ret++;
9412 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009413 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009414 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009415 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009416 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009417 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009418
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009419out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009420 list_for_each_entry_safe(work, next, &works, list) {
9421 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +03009422 wait_for_completion(&work->completion);
9423 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009424 }
9425
Nikolay Borisov81f1d392018-04-19 10:46:37 +03009426 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009427 spin_lock(&root->delalloc_lock);
9428 list_splice_tail(&splice, &root->delalloc_inodes);
9429 spin_unlock(&root->delalloc_lock);
9430 }
Miao Xie573bfb72014-03-06 13:55:03 +08009431 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009432 return ret;
9433}
9434
Ethan Lien3cd24c62018-11-01 14:49:03 +08009435int btrfs_start_delalloc_snapshot(struct btrfs_root *root)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009436{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009437 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009438 int ret;
9439
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009440 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009441 return -EROFS;
9442
Ethan Lien3cd24c62018-11-01 14:49:03 +08009443 ret = start_delalloc_inodes(root, -1, true);
Miao Xie6c255e62014-03-06 13:55:01 +08009444 if (ret > 0)
9445 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009446 return ret;
9447}
9448
Nikolay Borisov82b3e532018-04-23 10:54:13 +03009449int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009450{
9451 struct btrfs_root *root;
9452 struct list_head splice;
9453 int ret;
9454
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009455 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009456 return -EROFS;
9457
9458 INIT_LIST_HEAD(&splice);
9459
Miao Xie573bfb72014-03-06 13:55:03 +08009460 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009461 spin_lock(&fs_info->delalloc_root_lock);
9462 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +08009463 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009464 root = list_first_entry(&splice, struct btrfs_root,
9465 delalloc_root);
Josef Bacik00246522020-01-24 09:33:01 -05009466 root = btrfs_grab_root(root);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009467 BUG_ON(!root);
9468 list_move_tail(&root->delalloc_root,
9469 &fs_info->delalloc_roots);
9470 spin_unlock(&fs_info->delalloc_root_lock);
9471
Ethan Lien3cd24c62018-11-01 14:49:03 +08009472 ret = start_delalloc_inodes(root, nr, false);
Josef Bacik00246522020-01-24 09:33:01 -05009473 btrfs_put_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +08009474 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009475 goto out;
9476
Miao Xie6c255e62014-03-06 13:55:01 +08009477 if (nr != -1) {
9478 nr -= ret;
9479 WARN_ON(nr < 0);
9480 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009481 spin_lock(&fs_info->delalloc_root_lock);
9482 }
9483 spin_unlock(&fs_info->delalloc_root_lock);
9484
Miao Xie6c255e62014-03-06 13:55:01 +08009485 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009486out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +03009487 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009488 spin_lock(&fs_info->delalloc_root_lock);
9489 list_splice_tail(&splice, &fs_info->delalloc_roots);
9490 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009491 }
Miao Xie573bfb72014-03-06 13:55:03 +08009492 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009493 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04009494}
9495
Chris Mason39279cc2007-06-12 06:35:45 -04009496static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
9497 const char *symname)
9498{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009499 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009500 struct btrfs_trans_handle *trans;
9501 struct btrfs_root *root = BTRFS_I(dir)->root;
9502 struct btrfs_path *path;
9503 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05009504 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009505 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04009506 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309507 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009508 int name_len;
9509 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04009510 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04009511 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04009512 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04009513
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009514 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009515 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -04009516 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05009517
Josef Bacik9ed74f22009-09-11 16:12:44 -04009518 /*
9519 * 2 items for inode item and ref
9520 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +00009521 * 1 item for updating parent inode item
9522 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -04009523 * 1 item for xattr if selinux is on
9524 */
Filipe Manana9269d122015-12-31 18:16:29 +00009525 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009526 if (IS_ERR(trans))
9527 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05009528
Li Zefan581bb052011-04-20 10:06:11 +08009529 err = btrfs_find_free_ino(root, &objectid);
9530 if (err)
9531 goto out_unlock;
9532
Josef Bacikaec74772008-07-24 12:12:38 -04009533 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01009534 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
9535 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009536 if (IS_ERR(inode)) {
9537 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04009538 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009539 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009540 }
Chris Mason39279cc2007-06-12 06:35:45 -04009541
Casey Schauflerad19db72011-12-15 10:09:07 -05009542 /*
9543 * If the active LSM wants to access the inode during
9544 * d_instantiate it needs these. Smack checks to see
9545 * if the filesystem supports xattrs by looking at the
9546 * ops vector.
9547 */
9548 inode->i_fop = &btrfs_file_operations;
9549 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07009550 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07009551 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9552
9553 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9554 if (err)
Al Viro32955c52018-05-16 12:20:05 -04009555 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05009556
Chris Mason39279cc2007-06-12 06:35:45 -04009557 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009558 if (!path) {
9559 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -04009560 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -07009561 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009562 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04009563 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009564 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04009565 datasize = btrfs_file_extent_calc_inline_size(name_len);
9566 err = btrfs_insert_empty_item(trans, root, path, &key,
9567 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04009568 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +00009569 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -04009570 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -04009571 }
Chris Mason5f39d392007-10-15 16:14:19 -04009572 leaf = path->nodes[0];
9573 ei = btrfs_item_ptr(leaf, path->slots[0],
9574 struct btrfs_file_extent_item);
9575 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9576 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04009577 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04009578 btrfs_set_file_extent_encryption(leaf, ei, 0);
9579 btrfs_set_file_extent_compression(leaf, ei, 0);
9580 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9581 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9582
Chris Mason39279cc2007-06-12 06:35:45 -04009583 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04009584 write_extent_buffer(leaf, symname, ptr, name_len);
9585 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04009586 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04009587
Chris Mason39279cc2007-06-12 06:35:45 -04009588 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05009589 inode_nohighmem(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04009590 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009591 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -04009592 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +00009593 /*
9594 * Last step, add directory indexes for our symlink inode. This is the
9595 * last step to avoid extra cleanup of these indexes if an error happens
9596 * elsewhere above.
9597 */
9598 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009599 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9600 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -04009601 if (err)
9602 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07009603
Al Viro1e2e5472018-05-04 08:23:01 -04009604 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009605
9606out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009607 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04009608 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04009609 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04009610 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009611 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009612 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04009613 return err;
9614}
Chris Mason16432982008-04-10 10:23:21 -04009615
Qu Wenruo203f44c52020-06-10 09:04:40 +08009616static int insert_prealloc_file_extent(struct btrfs_trans_handle *trans,
9617 struct inode *inode, struct btrfs_key *ins,
9618 u64 file_offset)
9619{
9620 struct btrfs_file_extent_item stack_fi;
9621 u64 start = ins->objectid;
9622 u64 len = ins->offset;
Qu Wenruo9729f102020-06-10 09:04:41 +08009623 int ret;
Qu Wenruo203f44c52020-06-10 09:04:40 +08009624
9625 memset(&stack_fi, 0, sizeof(stack_fi));
9626
9627 btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_PREALLOC);
9628 btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, start);
9629 btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi, len);
9630 btrfs_set_stack_file_extent_num_bytes(&stack_fi, len);
9631 btrfs_set_stack_file_extent_ram_bytes(&stack_fi, len);
9632 btrfs_set_stack_file_extent_compression(&stack_fi, BTRFS_COMPRESS_NONE);
9633 /* Encryption and other encoding is reserved and all 0 */
9634
Nikolay Borisov72b7d152020-06-03 08:55:18 +03009635 ret = btrfs_qgroup_release_data(BTRFS_I(inode), file_offset, len);
Qu Wenruo9729f102020-06-10 09:04:41 +08009636 if (ret < 0)
9637 return ret;
Nikolay Borisovc553f942020-06-03 08:55:19 +03009638 return insert_reserved_file_extent(trans, BTRFS_I(inode), file_offset,
Qu Wenruo9729f102020-06-10 09:04:41 +08009639 &stack_fi, ret);
Qu Wenruo203f44c52020-06-10 09:04:40 +08009640}
Josef Bacik0af3d002010-06-21 14:48:16 -04009641static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
9642 u64 start, u64 num_bytes, u64 min_size,
9643 loff_t actual_len, u64 *alloc_hint,
9644 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04009645{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009646 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -04009647 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
9648 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04009649 struct btrfs_root *root = BTRFS_I(inode)->root;
9650 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04009651 u64 cur_offset = start;
Josef Bacikb778cf92020-02-13 10:47:31 -05009652 u64 clear_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00009653 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05009654 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -04009655 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -04009656 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04009657 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +08009658 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04009659
Josef Bacik0af3d002010-06-21 14:48:16 -04009660 if (trans)
9661 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04009662 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009663 if (own_trans) {
9664 trans = btrfs_start_transaction(root, 3);
9665 if (IS_ERR(trans)) {
9666 ret = PTR_ERR(trans);
9667 break;
9668 }
Yan Zhengd899e052008-10-30 14:25:28 -04009669 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00009670
Byongho Leeee221842015-12-15 01:42:10 +09009671 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -05009672 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -04009673 /*
9674 * If we are severely fragmented we could end up with really
9675 * small allocations, so if the allocator is returning small
9676 * chunks lets make its job easier by only searching for those
9677 * sized chunks.
9678 */
9679 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +08009680 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
9681 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009682 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04009683 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009684 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009685 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009686 }
Josef Bacikb778cf92020-02-13 10:47:31 -05009687
9688 /*
9689 * We've reserved this space, and thus converted it from
9690 * ->bytes_may_use to ->bytes_reserved. Any error that happens
9691 * from here on out we will only need to clear our reservation
9692 * for the remaining unreserved area, so advance our
9693 * clear_offset by our extent size.
9694 */
9695 clear_offset += ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009696 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009697
Josef Bacik0b670dc2015-09-23 17:11:16 -04009698 last_alloc = ins.offset;
Nikolay Borisovc553f942020-06-03 08:55:19 +03009699 ret = insert_prealloc_file_extent(trans, inode, &ins, cur_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009700 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009701 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +08009702 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -04009703 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009704 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009705 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009706 break;
9707 }
Dongsheng Yang31193212014-12-12 16:44:35 +08009708
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009709 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -04009710 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009711
Josef Bacik5dc562c2012-08-17 13:14:17 -04009712 em = alloc_extent_map();
9713 if (!em) {
9714 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
9715 &BTRFS_I(inode)->runtime_flags);
9716 goto next;
9717 }
9718
9719 em->start = cur_offset;
9720 em->orig_start = cur_offset;
9721 em->len = ins.offset;
9722 em->block_start = ins.objectid;
9723 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05009724 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04009725 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009726 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
9727 em->generation = trans->transid;
9728
9729 while (1) {
9730 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04009731 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04009732 write_unlock(&em_tree->lock);
9733 if (ret != -EEXIST)
9734 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009735 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04009736 cur_offset + ins.offset - 1,
9737 0);
9738 }
9739 free_extent_map(em);
9740next:
Yan Zhengd899e052008-10-30 14:25:28 -04009741 num_bytes -= ins.offset;
9742 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04009743 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00009744
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009745 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009746 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02009747 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04009748 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04009749 (actual_len > inode->i_size) &&
9750 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009751 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00009752 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00009753 else
Josef Bacik55a61d12010-11-22 18:50:32 +00009754 i_size = cur_offset;
9755 i_size_write(inode, i_size);
Josef Bacikd923afe2020-01-17 09:02:23 -05009756 btrfs_inode_safe_disk_i_size_write(inode, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009757 }
9758
Yan Zhengd899e052008-10-30 14:25:28 -04009759 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009760
9761 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009762 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009763 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009764 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009765 break;
9766 }
Yan Zhengd899e052008-10-30 14:25:28 -04009767
Josef Bacik0af3d002010-06-21 14:48:16 -04009768 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009769 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +00009770 }
Josef Bacikb778cf92020-02-13 10:47:31 -05009771 if (clear_offset < end)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +03009772 btrfs_free_reserved_data_space(BTRFS_I(inode), NULL, clear_offset,
Josef Bacikb778cf92020-02-13 10:47:31 -05009773 end - clear_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -04009774 return ret;
9775}
9776
Josef Bacik0af3d002010-06-21 14:48:16 -04009777int btrfs_prealloc_file_range(struct inode *inode, int mode,
9778 u64 start, u64 num_bytes, u64 min_size,
9779 loff_t actual_len, u64 *alloc_hint)
9780{
9781 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9782 min_size, actual_len, alloc_hint,
9783 NULL);
9784}
9785
9786int btrfs_prealloc_file_range_trans(struct inode *inode,
9787 struct btrfs_trans_handle *trans, int mode,
9788 u64 start, u64 num_bytes, u64 min_size,
9789 loff_t actual_len, u64 *alloc_hint)
9790{
9791 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
9792 min_size, actual_len, alloc_hint, trans);
9793}
9794
Chris Masone6dcd2d2008-07-17 12:53:50 -04009795static int btrfs_set_page_dirty(struct page *page)
9796{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009797 return __set_page_dirty_nobuffers(page);
9798}
9799
Al Viro10556cb22011-06-20 19:28:19 -04009800static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05009801{
Li Zefanb83cc962010-12-20 16:04:08 +08009802 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009803 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08009804
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00009805 if (mask & MAY_WRITE &&
9806 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
9807 if (btrfs_root_readonly(root))
9808 return -EROFS;
9809 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
9810 return -EACCES;
9811 }
Al Viro2830ba72011-06-20 19:16:29 -04009812 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05009813}
Chris Mason39279cc2007-06-12 06:35:45 -04009814
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009815static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
9816{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009817 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009818 struct btrfs_trans_handle *trans;
9819 struct btrfs_root *root = BTRFS_I(dir)->root;
9820 struct inode *inode = NULL;
9821 u64 objectid;
9822 u64 index;
9823 int ret = 0;
9824
9825 /*
9826 * 5 units required for adding orphan entry
9827 */
9828 trans = btrfs_start_transaction(root, 5);
9829 if (IS_ERR(trans))
9830 return PTR_ERR(trans);
9831
9832 ret = btrfs_find_free_ino(root, &objectid);
9833 if (ret)
9834 goto out;
9835
9836 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +01009837 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009838 if (IS_ERR(inode)) {
9839 ret = PTR_ERR(inode);
9840 inode = NULL;
9841 goto out;
9842 }
9843
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009844 inode->i_fop = &btrfs_file_operations;
9845 inode->i_op = &btrfs_file_inode_operations;
9846
9847 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009848 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
9849
Chris Masonb0d5d102014-09-08 13:08:51 -07009850 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
9851 if (ret)
Al Viro32955c52018-05-16 12:20:05 -04009852 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -07009853
9854 ret = btrfs_update_inode(trans, root, inode);
9855 if (ret)
Al Viro32955c52018-05-16 12:20:05 -04009856 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009857 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009858 if (ret)
Al Viro32955c52018-05-16 12:20:05 -04009859 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009860
Filipe Manana5762b5c2014-08-01 00:10:32 +01009861 /*
9862 * We set number of links to 0 in btrfs_new_inode(), and here we set
9863 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
9864 * through:
9865 *
9866 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
9867 */
9868 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009869 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -04009870 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009871 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009872out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009873 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04009874 if (ret && inode)
9875 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009876 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01009877 return ret;
9878}
9879
David Sterba5cdc84b2018-07-18 20:32:52 +02009880void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -04009881{
David Sterba5cdc84b2018-07-18 20:32:52 +02009882 struct inode *inode = tree->private_data;
Josef Bacikc6100a42017-05-05 11:57:13 -04009883 unsigned long index = start >> PAGE_SHIFT;
9884 unsigned long end_index = end >> PAGE_SHIFT;
9885 struct page *page;
9886
9887 while (index <= end_index) {
9888 page = find_get_page(inode->i_mapping, index);
9889 ASSERT(page); /* Pages should be in the extent_io_tree */
9890 set_page_writeback(page);
9891 put_page(page);
9892 index++;
9893 }
9894}
9895
Omar Sandovaled46ff32016-11-03 10:28:14 -07009896#ifdef CONFIG_SWAP
9897/*
9898 * Add an entry indicating a block group or device which is pinned by a
9899 * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
9900 * negative errno on failure.
9901 */
9902static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr,
9903 bool is_block_group)
9904{
9905 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
9906 struct btrfs_swapfile_pin *sp, *entry;
9907 struct rb_node **p;
9908 struct rb_node *parent = NULL;
9909
9910 sp = kmalloc(sizeof(*sp), GFP_NOFS);
9911 if (!sp)
9912 return -ENOMEM;
9913 sp->ptr = ptr;
9914 sp->inode = inode;
9915 sp->is_block_group = is_block_group;
9916
9917 spin_lock(&fs_info->swapfile_pins_lock);
9918 p = &fs_info->swapfile_pins.rb_node;
9919 while (*p) {
9920 parent = *p;
9921 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
9922 if (sp->ptr < entry->ptr ||
9923 (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
9924 p = &(*p)->rb_left;
9925 } else if (sp->ptr > entry->ptr ||
9926 (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
9927 p = &(*p)->rb_right;
9928 } else {
9929 spin_unlock(&fs_info->swapfile_pins_lock);
9930 kfree(sp);
9931 return 1;
9932 }
9933 }
9934 rb_link_node(&sp->node, parent, p);
9935 rb_insert_color(&sp->node, &fs_info->swapfile_pins);
9936 spin_unlock(&fs_info->swapfile_pins_lock);
9937 return 0;
9938}
9939
9940/* Free all of the entries pinned by this swapfile. */
9941static void btrfs_free_swapfile_pins(struct inode *inode)
9942{
9943 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
9944 struct btrfs_swapfile_pin *sp;
9945 struct rb_node *node, *next;
9946
9947 spin_lock(&fs_info->swapfile_pins_lock);
9948 node = rb_first(&fs_info->swapfile_pins);
9949 while (node) {
9950 next = rb_next(node);
9951 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
9952 if (sp->inode == inode) {
9953 rb_erase(&sp->node, &fs_info->swapfile_pins);
9954 if (sp->is_block_group)
9955 btrfs_put_block_group(sp->ptr);
9956 kfree(sp);
9957 }
9958 node = next;
9959 }
9960 spin_unlock(&fs_info->swapfile_pins_lock);
9961}
9962
9963struct btrfs_swap_info {
9964 u64 start;
9965 u64 block_start;
9966 u64 block_len;
9967 u64 lowest_ppage;
9968 u64 highest_ppage;
9969 unsigned long nr_pages;
9970 int nr_extents;
9971};
9972
9973static int btrfs_add_swap_extent(struct swap_info_struct *sis,
9974 struct btrfs_swap_info *bsi)
9975{
9976 unsigned long nr_pages;
9977 u64 first_ppage, first_ppage_reported, next_ppage;
9978 int ret;
9979
9980 first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT;
9981 next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len,
9982 PAGE_SIZE) >> PAGE_SHIFT;
9983
9984 if (first_ppage >= next_ppage)
9985 return 0;
9986 nr_pages = next_ppage - first_ppage;
9987
9988 first_ppage_reported = first_ppage;
9989 if (bsi->start == 0)
9990 first_ppage_reported++;
9991 if (bsi->lowest_ppage > first_ppage_reported)
9992 bsi->lowest_ppage = first_ppage_reported;
9993 if (bsi->highest_ppage < (next_ppage - 1))
9994 bsi->highest_ppage = next_ppage - 1;
9995
9996 ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage);
9997 if (ret < 0)
9998 return ret;
9999 bsi->nr_extents += ret;
10000 bsi->nr_pages += nr_pages;
10001 return 0;
10002}
10003
10004static void btrfs_swap_deactivate(struct file *file)
10005{
10006 struct inode *inode = file_inode(file);
10007
10008 btrfs_free_swapfile_pins(inode);
10009 atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles);
10010}
10011
10012static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10013 sector_t *span)
10014{
10015 struct inode *inode = file_inode(file);
10016 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10017 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
10018 struct extent_state *cached_state = NULL;
10019 struct extent_map *em = NULL;
10020 struct btrfs_device *device = NULL;
10021 struct btrfs_swap_info bsi = {
10022 .lowest_ppage = (sector_t)-1ULL,
10023 };
10024 int ret = 0;
10025 u64 isize;
10026 u64 start;
10027
10028 /*
10029 * If the swap file was just created, make sure delalloc is done. If the
10030 * file changes again after this, the user is doing something stupid and
10031 * we don't really care.
10032 */
10033 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
10034 if (ret)
10035 return ret;
10036
10037 /*
10038 * The inode is locked, so these flags won't change after we check them.
10039 */
10040 if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) {
10041 btrfs_warn(fs_info, "swapfile must not be compressed");
10042 return -EINVAL;
10043 }
10044 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) {
10045 btrfs_warn(fs_info, "swapfile must not be copy-on-write");
10046 return -EINVAL;
10047 }
10048 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
10049 btrfs_warn(fs_info, "swapfile must not be checksummed");
10050 return -EINVAL;
10051 }
10052
10053 /*
10054 * Balance or device remove/replace/resize can move stuff around from
10055 * under us. The EXCL_OP flag makes sure they aren't running/won't run
10056 * concurrently while we are mapping the swap extents, and
10057 * fs_info->swapfile_pins prevents them from running while the swap file
10058 * is active and moving the extents. Note that this also prevents a
10059 * concurrent device add which isn't actually necessary, but it's not
10060 * really worth the trouble to allow it.
10061 */
10062 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
10063 btrfs_warn(fs_info,
10064 "cannot activate swapfile while exclusive operation is running");
10065 return -EBUSY;
10066 }
10067 /*
10068 * Snapshots can create extents which require COW even if NODATACOW is
10069 * set. We use this counter to prevent snapshots. We must increment it
10070 * before walking the extents because we don't want a concurrent
10071 * snapshot to run after we've already checked the extents.
10072 */
10073 atomic_inc(&BTRFS_I(inode)->root->nr_swapfiles);
10074
10075 isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize);
10076
10077 lock_extent_bits(io_tree, 0, isize - 1, &cached_state);
10078 start = 0;
10079 while (start < isize) {
10080 u64 logical_block_start, physical_block_start;
David Sterba32da53862019-10-29 19:20:18 +010010081 struct btrfs_block_group *bg;
Omar Sandovaled46ff32016-11-03 10:28:14 -070010082 u64 len = isize - start;
10083
Omar Sandoval39b07b52019-12-02 17:34:23 -080010084 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010085 if (IS_ERR(em)) {
10086 ret = PTR_ERR(em);
10087 goto out;
10088 }
10089
10090 if (em->block_start == EXTENT_MAP_HOLE) {
10091 btrfs_warn(fs_info, "swapfile must not have holes");
10092 ret = -EINVAL;
10093 goto out;
10094 }
10095 if (em->block_start == EXTENT_MAP_INLINE) {
10096 /*
10097 * It's unlikely we'll ever actually find ourselves
10098 * here, as a file small enough to fit inline won't be
10099 * big enough to store more than the swap header, but in
10100 * case something changes in the future, let's catch it
10101 * here rather than later.
10102 */
10103 btrfs_warn(fs_info, "swapfile must not be inline");
10104 ret = -EINVAL;
10105 goto out;
10106 }
10107 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
10108 btrfs_warn(fs_info, "swapfile must not be compressed");
10109 ret = -EINVAL;
10110 goto out;
10111 }
10112
10113 logical_block_start = em->block_start + (start - em->start);
10114 len = min(len, em->len - (start - em->start));
10115 free_extent_map(em);
10116 em = NULL;
10117
10118 ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL);
10119 if (ret < 0) {
10120 goto out;
10121 } else if (ret) {
10122 ret = 0;
10123 } else {
10124 btrfs_warn(fs_info,
10125 "swapfile must not be copy-on-write");
10126 ret = -EINVAL;
10127 goto out;
10128 }
10129
10130 em = btrfs_get_chunk_map(fs_info, logical_block_start, len);
10131 if (IS_ERR(em)) {
10132 ret = PTR_ERR(em);
10133 goto out;
10134 }
10135
10136 if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
10137 btrfs_warn(fs_info,
10138 "swapfile must have single data profile");
10139 ret = -EINVAL;
10140 goto out;
10141 }
10142
10143 if (device == NULL) {
10144 device = em->map_lookup->stripes[0].dev;
10145 ret = btrfs_add_swapfile_pin(inode, device, false);
10146 if (ret == 1)
10147 ret = 0;
10148 else if (ret)
10149 goto out;
10150 } else if (device != em->map_lookup->stripes[0].dev) {
10151 btrfs_warn(fs_info, "swapfile must be on one device");
10152 ret = -EINVAL;
10153 goto out;
10154 }
10155
10156 physical_block_start = (em->map_lookup->stripes[0].physical +
10157 (logical_block_start - em->start));
10158 len = min(len, em->len - (logical_block_start - em->start));
10159 free_extent_map(em);
10160 em = NULL;
10161
10162 bg = btrfs_lookup_block_group(fs_info, logical_block_start);
10163 if (!bg) {
10164 btrfs_warn(fs_info,
10165 "could not find block group containing swapfile");
10166 ret = -EINVAL;
10167 goto out;
10168 }
10169
10170 ret = btrfs_add_swapfile_pin(inode, bg, true);
10171 if (ret) {
10172 btrfs_put_block_group(bg);
10173 if (ret == 1)
10174 ret = 0;
10175 else
10176 goto out;
10177 }
10178
10179 if (bsi.block_len &&
10180 bsi.block_start + bsi.block_len == physical_block_start) {
10181 bsi.block_len += len;
10182 } else {
10183 if (bsi.block_len) {
10184 ret = btrfs_add_swap_extent(sis, &bsi);
10185 if (ret)
10186 goto out;
10187 }
10188 bsi.start = start;
10189 bsi.block_start = physical_block_start;
10190 bsi.block_len = len;
10191 }
10192
10193 start += len;
10194 }
10195
10196 if (bsi.block_len)
10197 ret = btrfs_add_swap_extent(sis, &bsi);
10198
10199out:
10200 if (!IS_ERR_OR_NULL(em))
10201 free_extent_map(em);
10202
10203 unlock_extent_cached(io_tree, 0, isize - 1, &cached_state);
10204
10205 if (ret)
10206 btrfs_swap_deactivate(file);
10207
10208 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
10209
10210 if (ret)
10211 return ret;
10212
10213 if (device)
10214 sis->bdev = device->bdev;
10215 *span = bsi.highest_ppage - bsi.lowest_ppage + 1;
10216 sis->max = bsi.nr_pages;
10217 sis->pages = bsi.nr_pages - 1;
10218 sis->highest_bit = bsi.nr_pages - 1;
10219 return bsi.nr_extents;
10220}
10221#else
10222static void btrfs_swap_deactivate(struct file *file)
10223{
10224}
10225
10226static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10227 sector_t *span)
10228{
10229 return -EOPNOTSUPP;
10230}
10231#endif
10232
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010233static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010234 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010235 .lookup = btrfs_lookup,
10236 .create = btrfs_create,
10237 .unlink = btrfs_unlink,
10238 .link = btrfs_link,
10239 .mkdir = btrfs_mkdir,
10240 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010241 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010242 .symlink = btrfs_symlink,
10243 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010244 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010245 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010246 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010247 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010248 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010249 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010250 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010251};
Yan, Zheng76dda932009-09-21 16:00:26 -040010252
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010253static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010254 .llseek = generic_file_llseek,
10255 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010256 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010257 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010258 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010259#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010260 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010261#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010262 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010263 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010264};
10265
David Sterba20e55062015-11-19 11:42:28 +010010266static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010267 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010268 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010269 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
10270};
10271
Chris Mason35054392009-01-21 13:11:13 -050010272/*
10273 * btrfs doesn't support the bmap operation because swapfiles
10274 * use bmap to make a mapping of extents in the file. They assume
10275 * these extents won't change over the life of the file and they
10276 * use the bmap result to do IO directly to the drive.
10277 *
10278 * the btrfs bmap call would return logical addresses that aren't
10279 * suitable for IO and they also will change frequently as COW
10280 * operations happen. So, swapfile + btrfs == corruption.
10281 *
10282 * For now we're avoiding this by dropping bmap.
10283 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010284static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010285 .readpage = btrfs_readpage,
10286 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010287 .writepages = btrfs_writepages,
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -070010288 .readahead = btrfs_readahead,
David Sterba55e20bd2020-06-09 19:56:06 +020010289 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010290 .invalidatepage = btrfs_invalidatepage,
10291 .releasepage = btrfs_releasepage,
Roman Gushchinf8e66082020-03-04 16:57:35 -080010292#ifdef CONFIG_MIGRATION
10293 .migratepage = btrfs_migratepage,
10294#endif
Chris Masone6dcd2d2008-07-17 12:53:50 -040010295 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010296 .error_remove_page = generic_error_remove_page,
Omar Sandovaled46ff32016-11-03 10:28:14 -070010297 .swap_activate = btrfs_swap_activate,
10298 .swap_deactivate = btrfs_swap_deactivate,
Chris Mason39279cc2007-06-12 06:35:45 -040010299};
10300
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010301static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010302 .getattr = btrfs_getattr,
10303 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010304 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010305 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010306 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010307 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010308 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010309 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010310};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010311static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010312 .getattr = btrfs_getattr,
10313 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010314 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010315 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010316 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010317 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010318 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010319};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010320static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010321 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010322 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010323 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010324 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010325 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010326 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010327};
Yan, Zheng76dda932009-09-21 16:00:26 -040010328
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010329const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010330 .d_delete = btrfs_dentry_delete,
10331};