blob: 06f9f167222b77ce1d7ea8ac4fde85ef02411ade [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
Herbert Xu79990962020-06-12 16:57:37 +10006#include <crypto/hash.h>
Chris Mason8f18cf12008-04-25 16:53:30 -04007#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -05008#include <linux/bio.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>
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -050033#include <linux/iomap.h>
David Sterba92d32172018-04-16 21:10:14 +020034#include <asm/unaligned.h>
David Sterba602cbe92019-08-21 18:48:25 +020035#include "misc.h"
Chris Mason39279cc2007-06-12 06:35:45 -040036#include "ctree.h"
37#include "disk-io.h"
38#include "transaction.h"
39#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040041#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040042#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040043#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020044#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040045#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050046#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050047#include "free-space-cache.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"
Naohiro Aotad8e3fb12021-02-04 19:22:05 +090053#include "zoned.h"
Qu Wenruob945a462021-05-31 16:50:46 +080054#include "subpage.h"
Chris Mason39279cc2007-06-12 06:35:45 -040055
56struct btrfs_iget_args {
David Sterba0202e832020-05-15 19:35:59 +020057 u64 ino;
Chris Mason39279cc2007-06-12 06:35:45 -040058 struct btrfs_root *root;
59};
60
Filipe Mananaf28a4922015-12-08 19:23:20 +000061struct btrfs_dio_data {
Filipe Mananaf28a4922015-12-08 19:23:20 +000062 u64 reserve;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -050063 loff_t length;
64 ssize_t submitted;
65 struct extent_changeset *data_reserved;
Filipe Mananaf28a4922015-12-08 19:23:20 +000066};
67
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070068static const struct inode_operations btrfs_dir_inode_operations;
69static const struct inode_operations btrfs_symlink_inode_operations;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070070static const struct inode_operations btrfs_special_inode_operations;
71static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070072static const struct address_space_operations btrfs_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070073static const struct file_operations btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040074
75static struct kmem_cache *btrfs_inode_cachep;
76struct kmem_cache *btrfs_trans_handle_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050078struct kmem_cache *btrfs_free_space_cachep;
Christophe Leroy3acd4852019-08-21 15:05:55 +000079struct kmem_cache *btrfs_free_space_bitmap_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040080
Eric Sandeen3972f262013-01-12 02:57:22 +000081static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Filipe Manana213e8c52018-02-06 20:40:31 +000082static int btrfs_truncate(struct inode *inode, bool skip_writeback);
Josef Bacik5fd02042012-05-02 14:00:54 -040083static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Nikolay Borisov6e26c442020-06-03 08:55:14 +030084static noinline int cow_file_range(struct btrfs_inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -050085 struct page *locked_page,
Nikolay Borisov74e91942019-07-17 16:18:16 +030086 u64 start, u64 end, int *page_started,
Nikolay Borisov330a5822019-07-17 16:18:17 +030087 unsigned long *nr_written, int unlock);
Nikolay Borisov4b67c112020-06-03 08:55:05 +030088static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
89 u64 len, u64 orig_start, u64 block_start,
Liu Bo6f9994d2017-01-31 07:50:22 -080090 u64 block_len, u64 orig_block_len,
91 u64 ram_bytes, int compress_type,
92 int type);
Josef Bacik7b128762008-07-24 12:17:14 -040093
Nikolay Borisovb672b5c2020-06-03 08:55:24 +030094static void __endio_write_update_ordered(struct btrfs_inode *inode,
Qu Wenruo524272602017-03-08 10:25:52 +080095 const u64 offset, const u64 bytes,
96 const bool uptodate);
97
98/*
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -050099 * btrfs_inode_lock - lock inode i_rwsem based on arguments passed
100 *
101 * ilock_flags can have the following bit set:
102 *
103 * BTRFS_ILOCK_SHARED - acquire a shared lock on the inode
104 * BTRFS_ILOCK_TRY - try to acquire the lock, if fails on first attempt
105 * return -EAGAIN
Josef Bacik8318ba72021-02-10 17:14:33 -0500106 * BTRFS_ILOCK_MMAP - acquire a write lock on the i_mmap_lock
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -0500107 */
108int btrfs_inode_lock(struct inode *inode, unsigned int ilock_flags)
109{
110 if (ilock_flags & BTRFS_ILOCK_SHARED) {
111 if (ilock_flags & BTRFS_ILOCK_TRY) {
112 if (!inode_trylock_shared(inode))
113 return -EAGAIN;
114 else
115 return 0;
116 }
117 inode_lock_shared(inode);
118 } else {
119 if (ilock_flags & BTRFS_ILOCK_TRY) {
120 if (!inode_trylock(inode))
121 return -EAGAIN;
122 else
123 return 0;
124 }
125 inode_lock(inode);
126 }
Josef Bacik8318ba72021-02-10 17:14:33 -0500127 if (ilock_flags & BTRFS_ILOCK_MMAP)
128 down_write(&BTRFS_I(inode)->i_mmap_lock);
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -0500129 return 0;
130}
131
132/*
133 * btrfs_inode_unlock - unock inode i_rwsem
134 *
135 * ilock_flags should contain the same bits set as passed to btrfs_inode_lock()
136 * to decide whether the lock acquired is shared or exclusive.
137 */
138void btrfs_inode_unlock(struct inode *inode, unsigned int ilock_flags)
139{
Josef Bacik8318ba72021-02-10 17:14:33 -0500140 if (ilock_flags & BTRFS_ILOCK_MMAP)
141 up_write(&BTRFS_I(inode)->i_mmap_lock);
Goldwyn Rodriguesa14b78a2020-09-24 11:39:16 -0500142 if (ilock_flags & BTRFS_ILOCK_SHARED)
143 inode_unlock_shared(inode);
144 else
145 inode_unlock(inode);
146}
147
148/*
Qu Wenruo524272602017-03-08 10:25:52 +0800149 * Cleanup all submitted ordered extents in specified range to handle errors
Andrea Gelmini52042d82018-11-28 12:05:13 +0100150 * from the btrfs_run_delalloc_range() callback.
Qu Wenruo524272602017-03-08 10:25:52 +0800151 *
152 * NOTE: caller must ensure that when an error happens, it can not call
153 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
154 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
155 * to be released, which we want to happen only when finishing the ordered
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200156 * extent (btrfs_finish_ordered_io()).
Qu Wenruo524272602017-03-08 10:25:52 +0800157 */
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300158static inline void btrfs_cleanup_ordered_extents(struct btrfs_inode *inode,
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200159 struct page *locked_page,
160 u64 offset, u64 bytes)
Qu Wenruo524272602017-03-08 10:25:52 +0800161{
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900162 unsigned long index = offset >> PAGE_SHIFT;
163 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200164 u64 page_start = page_offset(locked_page);
165 u64 page_end = page_start + PAGE_SIZE - 1;
166
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900167 struct page *page;
168
169 while (index <= end_index) {
Qu Wenruo968f2562021-05-18 15:09:41 +0800170 /*
171 * For locked page, we will call end_extent_writepage() on it
172 * in run_delalloc_range() for the error handling. That
173 * end_extent_writepage() function will call
174 * btrfs_mark_ordered_io_finished() to clear page Ordered and
175 * run the ordered extent accounting.
176 *
177 * Here we can't just clear the Ordered bit, or
178 * btrfs_mark_ordered_io_finished() would skip the accounting
179 * for the page range, and the ordered extent will never finish.
180 */
181 if (index == (page_offset(locked_page) >> PAGE_SHIFT)) {
182 index++;
183 continue;
184 }
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300185 page = find_get_page(inode->vfs_inode.i_mapping, index);
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900186 index++;
187 if (!page)
188 continue;
Qu Wenruo968f2562021-05-18 15:09:41 +0800189
190 /*
191 * Here we just clear all Ordered bits for every page in the
192 * range, then __endio_write_update_ordered() will handle
193 * the ordered extent accounting for the range.
194 */
Qu Wenruob945a462021-05-31 16:50:46 +0800195 btrfs_page_clamp_clear_ordered(inode->root->fs_info, page,
196 offset, bytes);
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900197 put_page(page);
198 }
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200199
Qu Wenruob945a462021-05-31 16:50:46 +0800200 /* The locked page covers the full range, nothing needs to be done */
201 if (bytes + offset <= page_offset(locked_page) + PAGE_SIZE)
202 return;
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200203 /*
204 * In case this page belongs to the delalloc range being instantiated
205 * then skip it, since the first page of a range is going to be
206 * properly cleaned up by the caller of run_delalloc_range
207 */
208 if (page_start >= offset && page_end <= (offset + bytes - 1)) {
Qu Wenruob945a462021-05-31 16:50:46 +0800209 bytes = offset + bytes - page_offset(locked_page) - PAGE_SIZE;
210 offset = page_offset(locked_page) + PAGE_SIZE;
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200211 }
212
Nikolay Borisov64e1db52020-06-03 08:55:25 +0300213 return __endio_write_update_ordered(inode, offset, bytes, false);
Qu Wenruo524272602017-03-08 10:25:52 +0800214}
215
Eric Sandeen48a3b632013-04-25 20:41:01 +0000216static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400217
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000218static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500219 struct inode *inode, struct inode *dir,
220 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500221{
222 int err;
223
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000224 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500225 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500226 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500227 return err;
228}
229
Chris Masond352ac62008-09-29 15:18:18 -0400230/*
Chris Masonc8b97812008-10-29 14:49:59 -0400231 * this does all the hard work for inserting an inline extent into
232 * the btree. The caller should have done a btrfs_drop_extents so that
233 * no overlapping inline items exist in the btree
234 */
Chris Mason40f76582014-05-21 13:35:51 -0700235static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe Manana5893dfb2020-11-04 11:07:32 +0000236 struct btrfs_path *path, bool extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400237 struct btrfs_root *root, struct inode *inode,
238 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000239 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400240 struct page **compressed_pages)
241{
Chris Masonc8b97812008-10-29 14:49:59 -0400242 struct extent_buffer *leaf;
243 struct page *page = NULL;
244 char *kaddr;
245 unsigned long ptr;
246 struct btrfs_file_extent_item *ei;
Chris Masonc8b97812008-10-29 14:49:59 -0400247 int ret;
248 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400249 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400250
Jia-Ju Bai982f1f5d2019-07-27 16:51:13 +0800251 ASSERT((compressed_size > 0 && compressed_pages) ||
252 (compressed_size == 0 && !compressed_pages));
253
Li Zefanfe3f5662011-03-28 08:30:38 +0000254 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400255 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400256
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000257 if (!extent_inserted) {
258 struct btrfs_key key;
259 size_t datasize;
260
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200261 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000262 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200263 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000264
265 datasize = btrfs_file_extent_calc_inline_size(cur_size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000266 ret = btrfs_insert_empty_item(trans, root, path, &key,
267 datasize);
David Sterba79b4f4c2017-06-15 19:09:51 +0200268 if (ret)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000269 goto fail;
Chris Masonc8b97812008-10-29 14:49:59 -0400270 }
271 leaf = path->nodes[0];
272 ei = btrfs_item_ptr(leaf, path->slots[0],
273 struct btrfs_file_extent_item);
274 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
275 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
276 btrfs_set_file_extent_encryption(leaf, ei, 0);
277 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
278 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
279 ptr = btrfs_file_extent_inline_start(ei);
280
Li Zefan261507a02010-12-17 14:21:50 +0800281 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400282 struct page *cpage;
283 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500284 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400285 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500286 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300287 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400288
Cong Wang7ac687d2011-11-25 23:14:28 +0800289 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400290 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800291 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400292
293 i++;
294 ptr += cur_size;
295 compressed_size -= cur_size;
296 }
297 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800298 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400299 } else {
300 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300301 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400302 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800303 kaddr = kmap_atomic(page);
Johannes Thumshirn70730172018-12-05 15:23:03 +0100304 offset = offset_in_page(start);
Chris Masonc8b97812008-10-29 14:49:59 -0400305 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800306 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300307 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400308 }
309 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000310 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400311
Yan, Zhengc2167752009-11-12 09:34:21 +0000312 /*
Josef Bacik9ddc9592020-01-17 09:02:22 -0500313 * We align size to sectorsize for inline extents just for simplicity
314 * sake.
315 */
316 size = ALIGN(size, root->fs_info->sectorsize);
317 ret = btrfs_inode_set_file_extent_range(BTRFS_I(inode), start, size);
318 if (ret)
319 goto fail;
320
321 /*
Yan, Zhengc2167752009-11-12 09:34:21 +0000322 * we're an inline extent, so nobody can
323 * extend the file past i_size without locking
324 * a page we already have locked.
325 *
326 * We must do any isize and inode updates
327 * before we unlock the pages. Otherwise we
328 * could end up racing with unlink.
329 */
Chris Masonc8b97812008-10-29 14:49:59 -0400330 BTRFS_I(inode)->disk_i_size = inode->i_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400331fail:
David Sterba79b4f4c2017-06-15 19:09:51 +0200332 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400333}
334
335
336/*
337 * conditionally insert an inline extent into the file. This
338 * does the checks required to make sure the data is small enough
339 * to fit as an inline extent.
340 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300341static noinline int cow_file_range_inline(struct btrfs_inode *inode, u64 start,
Josef Bacik00361582013-08-14 14:02:47 -0400342 u64 end, size_t compressed_size,
343 int compress_type,
344 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400345{
Filipe Manana5893dfb2020-11-04 11:07:32 +0000346 struct btrfs_drop_extents_args drop_args = { 0 };
Nikolay Borisova0349402020-06-03 08:55:12 +0300347 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400348 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400349 struct btrfs_trans_handle *trans;
Nikolay Borisova0349402020-06-03 08:55:12 +0300350 u64 isize = i_size_read(&inode->vfs_inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400351 u64 actual_end = min(end + 1, isize);
352 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400353 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400354 u64 data_len = inline_len;
355 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000356 struct btrfs_path *path;
Chris Masonc8b97812008-10-29 14:49:59 -0400357
358 if (compressed_size)
359 data_len = compressed_size;
360
361 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400362 actual_end > fs_info->sectorsize ||
363 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400364 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400365 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400366 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400367 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400368 return 1;
369 }
370
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000371 path = btrfs_alloc_path();
372 if (!path)
373 return -ENOMEM;
374
Josef Bacik00361582013-08-14 14:02:47 -0400375 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000376 if (IS_ERR(trans)) {
377 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400378 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000379 }
Nikolay Borisova0349402020-06-03 08:55:12 +0300380 trans->block_rsv = &inode->block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400381
Filipe Manana5893dfb2020-11-04 11:07:32 +0000382 drop_args.path = path;
383 drop_args.start = start;
384 drop_args.end = aligned_end;
385 drop_args.drop_cache = true;
386 drop_args.replace_extent = true;
387
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000388 if (compressed_size && compressed_pages)
Filipe Manana5893dfb2020-11-04 11:07:32 +0000389 drop_args.extent_item_size = btrfs_file_extent_calc_inline_size(
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000390 compressed_size);
391 else
Filipe Manana5893dfb2020-11-04 11:07:32 +0000392 drop_args.extent_item_size = btrfs_file_extent_calc_inline_size(
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000393 inline_len);
394
Filipe Manana5893dfb2020-11-04 11:07:32 +0000395 ret = btrfs_drop_extents(trans, root, inode, &drop_args);
Josef Bacik00361582013-08-14 14:02:47 -0400396 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400397 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400398 goto out;
399 }
Chris Masonc8b97812008-10-29 14:49:59 -0400400
401 if (isize > actual_end)
402 inline_len = min_t(u64, isize, actual_end);
Filipe Manana5893dfb2020-11-04 11:07:32 +0000403 ret = insert_inline_extent(trans, path, drop_args.extent_inserted,
Nikolay Borisova0349402020-06-03 08:55:12 +0300404 root, &inode->vfs_inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400405 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000406 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400407 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400408 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400409 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400410 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400411 ret = 1;
412 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100413 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400414
Filipe Manana2766ff62020-11-04 11:07:34 +0000415 btrfs_update_inode_bytes(inode, inline_len, drop_args.bytes_found);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200416 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana2766ff62020-11-04 11:07:34 +0000417 if (ret && ret != -ENOSPC) {
418 btrfs_abort_transaction(trans, ret);
419 goto out;
420 } else if (ret == -ENOSPC) {
421 ret = 1;
422 goto out;
423 }
424
Nikolay Borisova0349402020-06-03 08:55:12 +0300425 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Josef Bacik00361582013-08-14 14:02:47 -0400426out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800427 /*
428 * Don't forget to free the reserved space, as for inlined extent
429 * it won't count as data extent, free them directly here.
430 * And at reserve time, it's always aligned to page size, so
431 * just free one page here.
432 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300433 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000434 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400435 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400436 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400437}
438
Chris Mason771ed682008-11-06 22:02:51 -0500439struct async_extent {
440 u64 start;
441 u64 ram_size;
442 u64 compressed_size;
443 struct page **pages;
444 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800445 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500446 struct list_head list;
447};
448
Nikolay Borisov97db1202019-03-12 17:20:24 +0200449struct async_chunk {
Chris Mason771ed682008-11-06 22:02:51 -0500450 struct inode *inode;
Chris Mason771ed682008-11-06 22:02:51 -0500451 struct page *locked_page;
452 u64 start;
453 u64 end;
Liu Bof82b7352017-10-23 23:18:16 -0600454 unsigned int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500455 struct list_head extents;
Chris Masonec39f762019-07-10 12:28:17 -0700456 struct cgroup_subsys_state *blkcg_css;
Chris Mason771ed682008-11-06 22:02:51 -0500457 struct btrfs_work work;
Nikolay Borisov97db1202019-03-12 17:20:24 +0200458 atomic_t *pending;
Chris Mason771ed682008-11-06 22:02:51 -0500459};
460
Nikolay Borisov97db1202019-03-12 17:20:24 +0200461struct async_cow {
462 /* Number of chunks in flight; must be first in the structure */
463 atomic_t num_chunks;
464 struct async_chunk chunks[];
465};
466
467static noinline int add_async_extent(struct async_chunk *cow,
Chris Mason771ed682008-11-06 22:02:51 -0500468 u64 start, u64 ram_size,
469 u64 compressed_size,
470 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800471 unsigned long nr_pages,
472 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500473{
474 struct async_extent *async_extent;
475
476 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100477 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500478 async_extent->start = start;
479 async_extent->ram_size = ram_size;
480 async_extent->compressed_size = compressed_size;
481 async_extent->pages = pages;
482 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800483 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500484 list_add_tail(&async_extent->list, &cow->extents);
485 return 0;
486}
487
Qu Wenruo42c16da2019-07-01 05:12:46 +0000488/*
489 * Check if the inode has flags compatible with compression
490 */
Nikolay Borisov99c88dc2020-06-03 08:55:26 +0300491static inline bool inode_can_compress(struct btrfs_inode *inode)
Qu Wenruo42c16da2019-07-01 05:12:46 +0000492{
Nikolay Borisov99c88dc2020-06-03 08:55:26 +0300493 if (inode->flags & BTRFS_INODE_NODATACOW ||
494 inode->flags & BTRFS_INODE_NODATASUM)
Qu Wenruo42c16da2019-07-01 05:12:46 +0000495 return false;
496 return true;
497}
498
499/*
500 * Check if the inode needs to be submitted to compression, based on mount
501 * options, defragmentation, properties or heuristics.
502 */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300503static inline int inode_need_compress(struct btrfs_inode *inode, u64 start,
504 u64 end)
Wang Shilongf79707b2014-07-17 11:44:09 +0800505{
Nikolay Borisov808a1292020-06-03 08:55:27 +0300506 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Wang Shilongf79707b2014-07-17 11:44:09 +0800507
Nikolay Borisov808a1292020-06-03 08:55:27 +0300508 if (!inode_can_compress(inode)) {
Qu Wenruo42c16da2019-07-01 05:12:46 +0000509 WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG),
510 KERN_ERR "BTRFS: unexpected compression for ino %llu\n",
Nikolay Borisov808a1292020-06-03 08:55:27 +0300511 btrfs_ino(inode));
Qu Wenruo42c16da2019-07-01 05:12:46 +0000512 return 0;
513 }
Wang Shilongf79707b2014-07-17 11:44:09 +0800514 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400515 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800516 return 1;
David Sterbaeec63c62017-07-17 19:41:31 +0200517 /* defrag ioctl */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300518 if (inode->defrag_compress)
David Sterbaeec63c62017-07-17 19:41:31 +0200519 return 1;
Wang Shilongf79707b2014-07-17 11:44:09 +0800520 /* bad compression ratios */
Nikolay Borisov808a1292020-06-03 08:55:27 +0300521 if (inode->flags & BTRFS_INODE_NOCOMPRESS)
Wang Shilongf79707b2014-07-17 11:44:09 +0800522 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400523 if (btrfs_test_opt(fs_info, COMPRESS) ||
Nikolay Borisov808a1292020-06-03 08:55:27 +0300524 inode->flags & BTRFS_INODE_COMPRESS ||
525 inode->prop_compress)
526 return btrfs_compress_heuristic(&inode->vfs_inode, start, end);
Wang Shilongf79707b2014-07-17 11:44:09 +0800527 return 0;
528}
529
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200530static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800531 u64 start, u64 end, u64 num_bytes, u64 small_write)
532{
533 /* If this is a small write inside eof, kick off a defrag */
534 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200535 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800536 btrfs_add_inode_defrag(NULL, inode);
537}
538
Chris Masonc8b97812008-10-29 14:49:59 -0400539/*
Chris Mason771ed682008-11-06 22:02:51 -0500540 * we create compressed extents in two phases. The first
541 * phase compresses a range of pages that have already been
542 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400543 *
Chris Mason771ed682008-11-06 22:02:51 -0500544 * This is done inside an ordered work queue, and the compression
545 * is spread across many cpus. The actual IO submission is step
546 * two, and the ordered work queue takes care of making sure that
547 * happens in the same order things were put onto the queue by
548 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400549 *
Chris Mason771ed682008-11-06 22:02:51 -0500550 * If this code finds it can't get good compression, it puts an
551 * entry onto the work queue to write the uncompressed bytes. This
552 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300553 * are written in the same order that the flusher thread sent them
554 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400555 */
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300556static noinline int compress_file_range(struct async_chunk *async_chunk)
Chris Masonb888db22007-08-27 16:49:44 -0400557{
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200558 struct inode *inode = async_chunk->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400559 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400560 u64 blocksize = fs_info->sectorsize;
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200561 u64 start = async_chunk->start;
562 u64 end = async_chunk->end;
Chris Masonc8b97812008-10-29 14:49:59 -0400563 u64 actual_end;
Josef Bacikd98da492019-10-11 09:03:54 -0400564 u64 i_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400565 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400566 struct page **pages = NULL;
567 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400568 unsigned long total_compressed = 0;
569 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400570 int i;
571 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400572 int compress_type = fs_info->compress_type;
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300573 int compressed_extents = 0;
Chris Mason4adaa612013-03-26 13:07:00 -0400574 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400575
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200576 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
577 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400578
Josef Bacikd98da492019-10-11 09:03:54 -0400579 /*
580 * We need to save i_size before now because it could change in between
581 * us evaluating the size and assigning it. This is because we lock and
582 * unlock the page in truncate and fallocate, and then modify the i_size
583 * later on.
584 *
585 * The barriers are to emulate READ_ONCE, remove that once i_size_read
586 * does that for us.
587 */
588 barrier();
589 i_size = i_size_read(inode);
590 barrier();
591 actual_end = min_t(u64, i_size, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400592again:
593 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300594 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100595 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
596 nr_pages = min_t(unsigned long, nr_pages,
597 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400598
Chris Masonf03d9301f2009-02-04 09:31:06 -0500599 /*
600 * we don't want to send crud past the end of i_size through
601 * compression, that's just a waste of CPU time. So, if the
602 * end of the file is before the start of our current
603 * requested range of bytes, we bail out to the uncompressed
604 * cleanup code that can deal with all of this.
605 *
606 * It isn't really the fastest way to fix things, but this is a
607 * very uncommon corner.
608 */
609 if (actual_end <= start)
610 goto cleanup_and_bail_uncompressed;
611
Chris Masonc8b97812008-10-29 14:49:59 -0400612 total_compressed = actual_end - start;
613
Shilong Wang4bcbb332014-10-07 18:44:35 -0400614 /*
615 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400616 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400617 */
618 if (total_compressed <= blocksize &&
619 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
620 goto cleanup_and_bail_uncompressed;
621
David Sterba069eac72017-02-14 19:36:54 +0100622 total_compressed = min_t(unsigned long, total_compressed,
623 BTRFS_MAX_UNCOMPRESSED);
Chris Masonc8b97812008-10-29 14:49:59 -0400624 total_in = 0;
625 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400626
Chris Mason771ed682008-11-06 22:02:51 -0500627 /*
628 * we do compression for mount -o compress and when the
629 * inode has not been flagged as nocompress. This flag can
630 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400631 */
David Sterbaf2165622021-06-14 12:45:18 +0200632 if (nr_pages > 1 && inode_need_compress(BTRFS_I(inode), start, end)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400633 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100634 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800635 if (!pages) {
636 /* just bail out to the uncompressed code */
Filipe Manana3527a012018-10-13 00:37:25 +0100637 nr_pages = 0;
Li Zefan560f7d72011-09-08 10:22:01 +0800638 goto cont;
639 }
Chris Mason179e29e2007-11-01 11:28:41 -0400640
David Sterbaeec63c62017-07-17 19:41:31 +0200641 if (BTRFS_I(inode)->defrag_compress)
642 compress_type = BTRFS_I(inode)->defrag_compress;
643 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200644 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800645
Chris Mason4adaa612013-03-26 13:07:00 -0400646 /*
647 * we need to call clear_page_dirty_for_io on each
648 * page in the range. Otherwise applications with the file
649 * mmap'd can wander in and change the page contents while
650 * we are compressing them.
651 *
652 * If the compression fails for any reason, we set the pages
653 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300654 *
655 * Note that the remaining part is redirtied, the start pointer
656 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400657 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300658 if (!redirty) {
659 extent_range_clear_dirty_for_io(inode, start, end);
660 redirty = 1;
661 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200662
663 /* Compression level is applied here and only here */
664 ret = btrfs_compress_pages(
665 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800666 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100667 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100668 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800669 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100670 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400671
672 if (!ret) {
Johannes Thumshirn70730172018-12-05 15:23:03 +0100673 unsigned long offset = offset_in_page(total_compressed);
David Sterba4d3a8002017-02-14 19:04:07 +0100674 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400675
676 /* zero the tail end of the last page, we might be
677 * sending it down to disk
678 */
Ira Weinyd048b9c2021-05-04 18:40:07 -0700679 if (offset)
680 memzero_page(page, offset, PAGE_SIZE - offset);
Chris Masonc8b97812008-10-29 14:49:59 -0400681 will_compress = 1;
682 }
683 }
Li Zefan560f7d72011-09-08 10:22:01 +0800684cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400685 if (start == 0) {
686 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300687 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400688 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500689 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400690 */
Nikolay Borisova0349402020-06-03 08:55:12 +0300691 ret = cow_file_range_inline(BTRFS_I(inode), start, end,
692 0, BTRFS_COMPRESS_NONE,
693 NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400694 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500695 /* try making a compressed inline extent */
Nikolay Borisova0349402020-06-03 08:55:12 +0300696 ret = cow_file_range_inline(BTRFS_I(inode), start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000697 total_compressed,
698 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400699 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100700 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400701 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400702 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
703 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100704 unsigned long page_error_op;
705
Filipe Mananae6eb4312014-10-10 10:45:12 +0100706 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400707
Chris Mason771ed682008-11-06 22:02:51 -0500708 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100709 * inline extent creation worked or returned error,
710 * we don't need to create any more async work items.
711 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400712 *
713 * We use DO_ACCOUNTING here because we need the
714 * delalloc_release_metadata to be done _after_ we drop
715 * our outstanding extent for clearing delalloc for this
716 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500717 */
Nikolay Borisovad7ff172020-06-03 08:55:06 +0300718 extent_clear_unlock_delalloc(BTRFS_I(inode), start, end,
719 NULL,
Nikolay Borisov74e91942019-07-17 16:18:16 +0300720 clear_flags,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800721 PAGE_UNLOCK |
Qu Wenruo6869b0a2021-01-26 16:33:45 +0800722 PAGE_START_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100723 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400724 PAGE_END_WRITEBACK);
Nikolay Borisovcecc8d92019-07-17 14:41:45 +0300725
Qu Wenruo1e6e2382020-07-28 16:39:26 +0800726 /*
727 * Ensure we only free the compressed pages if we have
728 * them allocated, as we can still reach here with
729 * inode_need_compress() == false.
730 */
731 if (pages) {
732 for (i = 0; i < nr_pages; i++) {
733 WARN_ON(pages[i]->mapping);
734 put_page(pages[i]);
735 }
736 kfree(pages);
Nikolay Borisovcecc8d92019-07-17 14:41:45 +0300737 }
Nikolay Borisovcecc8d92019-07-17 14:41:45 +0300738 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400739 }
740 }
741
742 if (will_compress) {
743 /*
744 * we aren't doing an inline extent round the compressed size
745 * up to a block size boundary so the allocator does sane
746 * things
747 */
Qu Wenruofda28322013-02-26 08:10:22 +0000748 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400749
750 /*
751 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300752 * win, compare the page count read with the blocks on disk,
753 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400754 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300755 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300756 if (total_compressed + blocksize <= total_in) {
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300757 compressed_extents++;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700758
759 /*
760 * The async work queues will take care of doing actual
761 * allocation on disk for these compressed pages, and
762 * will submit them to the elevator.
763 */
Nikolay Borisovb5326272019-03-12 17:20:25 +0200764 add_async_extent(async_chunk, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100765 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700766 compress_type);
767
Timofey Titovets11708622017-10-03 18:06:01 +0300768 if (start + total_in < end) {
769 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700770 pages = NULL;
771 cond_resched();
772 goto again;
773 }
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300774 return compressed_extents;
Chris Masonc8b97812008-10-29 14:49:59 -0400775 }
776 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700777 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400778 /*
779 * the compression code ran but failed to make things smaller,
780 * free any pages it allocated and our page pointer array
781 */
David Sterba4d3a8002017-02-14 19:04:07 +0100782 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400783 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300784 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400785 }
786 kfree(pages);
787 pages = NULL;
788 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100789 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400790
791 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400792 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200793 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500794 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500795 }
Chris Masonc8b97812008-10-29 14:49:59 -0400796 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500797cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700798 /*
799 * No compression, but we still need to write the pages in the file
800 * we've been given so far. redirty the locked page if it corresponds
801 * to our extent and set things up for the async work queue to run
802 * cow_file_range to do the normal delalloc dance.
803 */
Chris Mason1d53c9e2019-07-10 12:28:16 -0700804 if (async_chunk->locked_page &&
805 (page_offset(async_chunk->locked_page) >= start &&
806 page_offset(async_chunk->locked_page)) <= end) {
Nikolay Borisov1368c6d2019-03-12 17:20:27 +0200807 __set_page_dirty_nobuffers(async_chunk->locked_page);
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700808 /* unlocked later on in the async handlers */
Chris Mason1d53c9e2019-07-10 12:28:16 -0700809 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700810
811 if (redirty)
812 extent_range_redirty_for_io(inode, start, end);
Nikolay Borisovb5326272019-03-12 17:20:25 +0200813 add_async_extent(async_chunk, start, end - start + 1, 0, NULL, 0,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700814 BTRFS_COMPRESS_NONE);
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300815 compressed_extents++;
Chris Mason771ed682008-11-06 22:02:51 -0500816
Nikolay Borisovac3e9932019-07-17 14:41:44 +0300817 return compressed_extents;
Chris Mason771ed682008-11-06 22:02:51 -0500818}
Chris Mason771ed682008-11-06 22:02:51 -0500819
Filipe Manana40ae8372014-10-06 22:14:24 +0100820static void free_async_extent_pages(struct async_extent *async_extent)
821{
822 int i;
823
824 if (!async_extent->pages)
825 return;
826
827 for (i = 0; i < async_extent->nr_pages; i++) {
828 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300829 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100830 }
831 kfree(async_extent->pages);
832 async_extent->nr_pages = 0;
833 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500834}
835
836/*
837 * phase two of compressed writeback. This is the ordered portion
838 * of the code, which only gets called in the order the work was
839 * queued. We walk all the async extents created by compress_file_range
840 * and send them down to the disk.
841 */
Nikolay Borisovb5326272019-03-12 17:20:25 +0200842static noinline void submit_compressed_extents(struct async_chunk *async_chunk)
Chris Mason771ed682008-11-06 22:02:51 -0500843{
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300844 struct btrfs_inode *inode = BTRFS_I(async_chunk->inode);
845 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Mason771ed682008-11-06 22:02:51 -0500846 struct async_extent *async_extent;
847 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500848 struct btrfs_key ins;
849 struct extent_map *em;
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300850 struct btrfs_root *root = inode->root;
851 struct extent_io_tree *io_tree = &inode->io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500852 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500853
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500854again:
Nikolay Borisovb5326272019-03-12 17:20:25 +0200855 while (!list_empty(&async_chunk->extents)) {
856 async_extent = list_entry(async_chunk->extents.next,
Chris Mason771ed682008-11-06 22:02:51 -0500857 struct async_extent, list);
858 list_del(&async_extent->list);
859
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500860retry:
Nikolay Borisov74475552019-03-12 17:20:30 +0200861 lock_extent(io_tree, async_extent->start,
862 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500863 /* did the compression code fall back to uncompressed IO? */
864 if (!async_extent->pages) {
865 int page_started = 0;
866 unsigned long nr_written = 0;
867
Chris Mason771ed682008-11-06 22:02:51 -0500868 /* allocate blocks */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300869 ret = cow_file_range(inode, async_chunk->locked_page,
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500870 async_extent->start,
871 async_extent->start +
872 async_extent->ram_size - 1,
Nikolay Borisov330a5822019-07-17 16:18:17 +0300873 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500874
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100875 /* JDM XXX */
876
Chris Mason771ed682008-11-06 22:02:51 -0500877 /*
878 * if page_started, cow_file_range inserted an
879 * inline extent and took care of all the unlocking
880 * and IO for us. Otherwise, we need to submit
881 * all those pages down to the drive.
882 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500883 if (!page_started && !ret)
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300884 extent_write_locked_range(&inode->vfs_inode,
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200885 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500886 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500887 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500888 WB_SYNC_ALL);
Chris Mason1d53c9e2019-07-10 12:28:16 -0700889 else if (ret && async_chunk->locked_page)
Nikolay Borisovb5326272019-03-12 17:20:25 +0200890 unlock_page(async_chunk->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500891 kfree(async_extent);
892 cond_resched();
893 continue;
894 }
895
Wang Xiaoguang18513092016-07-25 15:51:40 +0800896 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500897 async_extent->compressed_size,
898 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800899 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500900 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100901 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500902
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400903 if (ret == -ENOSPC) {
904 unlock_extent(io_tree, async_extent->start,
905 async_extent->start +
906 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800907
908 /*
909 * we need to redirty the pages if we decide to
910 * fallback to uncompressed IO, otherwise we
911 * will not submit these pages down to lower
912 * layers.
913 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300914 extent_range_redirty_for_io(&inode->vfs_inode,
Liu Boce620032014-07-24 22:48:05 +0800915 async_extent->start,
916 async_extent->start +
917 async_extent->ram_size - 1);
918
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100919 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400920 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500921 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500922 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000923 /*
924 * here we're doing allocation and writeback of the
925 * compressed pages
926 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300927 em = create_io_em(inode, async_extent->start,
Liu Bo6f9994d2017-01-31 07:50:22 -0800928 async_extent->ram_size, /* len */
929 async_extent->start, /* orig_start */
930 ins.objectid, /* block_start */
931 ins.offset, /* block_len */
932 ins.offset, /* orig_block_len */
933 async_extent->ram_size, /* ram_bytes */
934 async_extent->compress_type,
935 BTRFS_ORDERED_COMPRESSED);
936 if (IS_ERR(em))
937 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500938 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800939 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500940
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300941 ret = btrfs_add_ordered_extent_compress(inode,
Li Zefan261507a02010-12-17 14:21:50 +0800942 async_extent->start,
943 ins.objectid,
944 async_extent->ram_size,
945 ins.offset,
Li Zefan261507a02010-12-17 14:21:50 +0800946 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100947 if (ret) {
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300948 btrfs_drop_extent_cache(inode, async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100949 async_extent->start +
950 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500951 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100952 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400953 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500954
Chris Mason771ed682008-11-06 22:02:51 -0500955 /*
956 * clear dirty, set writeback and unlock the pages.
957 */
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300958 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400959 async_extent->start +
960 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400961 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
Qu Wenruo6869b0a2021-01-26 16:33:45 +0800962 PAGE_UNLOCK | PAGE_START_WRITEBACK);
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300963 if (btrfs_submit_compressed_write(inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500964 async_extent->ram_size,
965 ins.objectid,
966 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600967 async_extent->nr_pages,
Chris Masonec39f762019-07-10 12:28:17 -0700968 async_chunk->write_flags,
969 async_chunk->blkcg_css)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100970 struct page *p = async_extent->pages[0];
971 const u64 start = async_extent->start;
972 const u64 end = start + async_extent->ram_size - 1;
973
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300974 p->mapping = inode->vfs_inode.i_mapping;
Qu Wenruo38a39ac72021-04-08 20:32:27 +0800975 btrfs_writepage_endio_finish_ordered(inode, p, start,
976 end, 0);
Nikolay Borisov7087a9d2018-11-01 14:09:48 +0200977
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100978 p->mapping = NULL;
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300979 extent_clear_unlock_delalloc(inode, start, end, NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100980 PAGE_END_WRITEBACK |
981 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100982 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100983 }
Chris Mason771ed682008-11-06 22:02:51 -0500984 alloc_hint = ins.objectid + ins.offset;
985 kfree(async_extent);
986 cond_resched();
987 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100988 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500989out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400990 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400991 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100992out_free:
Nikolay Borisova0ff10d2020-06-03 08:55:17 +0300993 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500994 async_extent->start +
995 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400996 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100997 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400998 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
Qu Wenruo6869b0a2021-01-26 16:33:45 +0800999 PAGE_UNLOCK | PAGE_START_WRITEBACK |
1000 PAGE_END_WRITEBACK | PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +01001001 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001002 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -05001003 goto again;
Chris Mason771ed682008-11-06 22:02:51 -05001004}
1005
Nikolay Borisov43c69842020-06-03 08:55:02 +03001006static u64 get_extent_allocation_hint(struct btrfs_inode *inode, u64 start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04001007 u64 num_bytes)
1008{
Nikolay Borisov43c69842020-06-03 08:55:02 +03001009 struct extent_map_tree *em_tree = &inode->extent_tree;
Josef Bacik4b46fce2010-05-23 11:00:55 -04001010 struct extent_map *em;
1011 u64 alloc_hint = 0;
1012
1013 read_lock(&em_tree->lock);
1014 em = search_extent_mapping(em_tree, start, num_bytes);
1015 if (em) {
1016 /*
1017 * if block start isn't an actual block number then find the
1018 * first block in this inode and use that as a hint. If that
1019 * block is also bogus then just don't worry about it.
1020 */
1021 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1022 free_extent_map(em);
1023 em = search_extent_mapping(em_tree, 0, 0);
1024 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
1025 alloc_hint = em->block_start;
1026 if (em)
1027 free_extent_map(em);
1028 } else {
1029 alloc_hint = em->block_start;
1030 free_extent_map(em);
1031 }
1032 }
1033 read_unlock(&em_tree->lock);
1034
1035 return alloc_hint;
1036}
1037
Chris Mason771ed682008-11-06 22:02:51 -05001038/*
1039 * when extent_io.c finds a delayed allocation range in the file,
1040 * the call backs end up in this code. The basic idea is to
1041 * allocate extents on disk for the range, and create ordered data structs
1042 * in ram to track those extents.
1043 *
1044 * locked_page is the page that writepage had locked already. We use
1045 * it to make sure we don't do extra locks or unlocks.
1046 *
1047 * *page_started is set to one if we unlock locked_page and do everything
1048 * required to start IO on it. It may be clean and already done with
1049 * IO when we return.
1050 */
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001051static noinline int cow_file_range(struct btrfs_inode *inode,
Josef Bacik00361582013-08-14 14:02:47 -04001052 struct page *locked_page,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001053 u64 start, u64 end, int *page_started,
Nikolay Borisov330a5822019-07-17 16:18:17 +03001054 unsigned long *nr_written, int unlock)
Chris Mason771ed682008-11-06 22:02:51 -05001055{
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001056 struct btrfs_root *root = inode->root;
1057 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001058 u64 alloc_hint = 0;
1059 u64 num_bytes;
1060 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001061 u64 cur_alloc_size = 0;
Filipe Manana432cd2a2020-06-08 13:32:55 +01001062 u64 min_alloc_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001063 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -05001064 struct btrfs_key ins;
1065 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +00001066 unsigned clear_bits;
1067 unsigned long page_ops;
1068 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -05001069 int ret = 0;
1070
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001071 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -04001072 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -05001073 ret = -EINVAL;
1074 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -04001075 }
Chris Mason771ed682008-11-06 22:02:51 -05001076
Qu Wenruofda28322013-02-26 08:10:22 +00001077 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -05001078 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +08001079 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -05001080
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001081 inode_should_defrag(inode, start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001082
Chris Mason771ed682008-11-06 22:02:51 -05001083 if (start == 0) {
1084 /* lets try to make an inline extent */
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001085 ret = cow_file_range_inline(inode, start, end, 0,
Nikolay Borisovd02c0e22018-03-02 09:43:15 +02001086 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -05001087 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -04001088 /*
1089 * We use DO_ACCOUNTING here because we need the
1090 * delalloc_release_metadata to be run _after_ we drop
1091 * our outstanding extent for clearing delalloc for this
1092 * range.
1093 */
Qu Wenruo4750af32021-05-31 16:50:48 +08001094 extent_clear_unlock_delalloc(inode, start, end,
1095 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001096 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -04001097 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1098 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Qu Wenruo6869b0a2021-01-26 16:33:45 +08001099 PAGE_START_WRITEBACK | PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -05001100 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001101 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05001102 *page_started = 1;
Qu Wenruo4750af32021-05-31 16:50:48 +08001103 /*
1104 * locked_page is locked by the caller of
1105 * writepage_delalloc(), not locked by
1106 * __process_pages_contig().
1107 *
1108 * We can't let __process_pages_contig() to unlock it,
1109 * as it doesn't have any subpage::writers recorded.
1110 *
1111 * Here we manually unlock the page, since the caller
1112 * can't use page_started to determine if it's an
1113 * inline extent or a compressed extent.
1114 */
1115 unlock_page(locked_page);
Chris Mason771ed682008-11-06 22:02:51 -05001116 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001117 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001118 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -05001119 }
1120 }
Chris Masonc8b97812008-10-29 14:49:59 -04001121
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001122 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
1123 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -04001124
Filipe Manana432cd2a2020-06-08 13:32:55 +01001125 /*
1126 * Relocation relies on the relocated extents to have exactly the same
1127 * size as the original extents. Normally writeback for relocation data
1128 * extents follows a NOCOW path because relocation preallocates the
1129 * extents. However, due to an operation such as scrub turning a block
1130 * group to RO mode, it may fallback to COW mode, so we must make sure
1131 * an extent allocated during COW has exactly the requested size and can
1132 * not be split into smaller extents, otherwise relocation breaks and
1133 * fails during the stage where it updates the bytenr of file extent
1134 * items.
1135 */
1136 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1137 min_alloc_size = num_bytes;
1138 else
1139 min_alloc_size = fs_info->sectorsize;
1140
Anand Jain3752d222018-02-15 12:29:38 +08001141 while (num_bytes > 0) {
1142 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001143 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Filipe Manana432cd2a2020-06-08 13:32:55 +01001144 min_alloc_size, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001145 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001146 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001147 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001148 cur_alloc_size = ins.offset;
1149 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001150
Chris Mason771ed682008-11-06 22:02:51 -05001151 ram_size = ins.offset;
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001152 em = create_io_em(inode, start, ins.offset, /* len */
Liu Bo6f9994d2017-01-31 07:50:22 -08001153 start, /* orig_start */
1154 ins.objectid, /* block_start */
1155 ins.offset, /* block_len */
1156 ins.offset, /* orig_block_len */
1157 ram_size, /* ram_bytes */
1158 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001159 BTRFS_ORDERED_REGULAR /* type */);
Su Yue090a127a2018-05-30 16:48:56 +08001160 if (IS_ERR(em)) {
1161 ret = PTR_ERR(em);
Liu Boace68ba2013-04-22 10:53:47 +00001162 goto out_reserve;
Su Yue090a127a2018-05-30 16:48:56 +08001163 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001164 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001165
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001166 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Qu Wenruo3c198fe2021-01-21 14:13:54 +08001167 ram_size, cur_alloc_size,
1168 BTRFS_ORDERED_REGULAR);
Liu Boace68ba2013-04-22 10:53:47 +00001169 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001170 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001171
Yan Zheng17d217f2008-12-12 10:03:38 -05001172 if (root->root_key.objectid ==
1173 BTRFS_DATA_RELOC_TREE_OBJECTID) {
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001174 ret = btrfs_reloc_clone_csums(inode, start,
Yan Zheng17d217f2008-12-12 10:03:38 -05001175 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001176 /*
1177 * Only drop cache here, and process as normal.
1178 *
1179 * We must not allow extent_clear_unlock_delalloc()
1180 * at out_unlock label to free meta of this ordered
1181 * extent, as its meta should be freed by
1182 * btrfs_finish_ordered_io().
1183 *
1184 * So we must continue until @start is increased to
1185 * skip current ordered extent.
1186 */
Josef Bacik00361582013-08-14 14:02:47 -04001187 if (ret)
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001188 btrfs_drop_extent_cache(inode, start,
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001189 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001190 }
1191
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001192 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001193
Qu Wenruof57ad932021-04-07 19:22:13 +08001194 /*
1195 * We're not doing compressed IO, don't unlock the first page
1196 * (which the caller expects to stay locked), don't clear any
1197 * dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001198 *
Qu Wenruof57ad932021-04-07 19:22:13 +08001199 * Do set the Ordered (Private2) bit so we know this page was
1200 * properly setup for writepage.
Chris Masonc8b97812008-10-29 14:49:59 -04001201 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001202 page_ops = unlock ? PAGE_UNLOCK : 0;
Qu Wenruof57ad932021-04-07 19:22:13 +08001203 page_ops |= PAGE_SET_ORDERED;
Chris Masona791e352009-10-08 11:27:10 -04001204
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001205 extent_clear_unlock_delalloc(inode, start, start + ram_size - 1,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001206 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001207 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001208 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001209 if (num_bytes < cur_alloc_size)
1210 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001211 else
Anand Jain3752d222018-02-15 12:29:38 +08001212 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001213 alloc_hint = ins.objectid + ins.offset;
1214 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001215 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001216
1217 /*
1218 * btrfs_reloc_clone_csums() error, since start is increased
1219 * extent_clear_unlock_delalloc() at out_unlock label won't
1220 * free metadata of current ordered extent, we're OK to exit.
1221 */
1222 if (ret)
1223 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001224 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001225out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001226 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001227
Filipe Mananad9f85962014-08-25 10:43:00 +01001228out_drop_extent_cache:
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001229 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001230out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001231 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001232 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001233out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001234 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1235 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Qu Wenruo6869b0a2021-01-26 16:33:45 +08001236 page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK | PAGE_END_WRITEBACK;
Filipe Mananaa315e682017-03-06 23:04:20 +00001237 /*
1238 * If we reserved an extent for our delalloc range (or a subrange) and
1239 * failed to create the respective ordered extent, then it means that
1240 * when we reserved the extent we decremented the extent's size from
1241 * the data space_info's bytes_may_use counter and incremented the
1242 * space_info's bytes_reserved counter by the same amount. We must make
1243 * sure extent_clear_unlock_delalloc() does not try to decrement again
1244 * the data space_info's bytes_may_use counter, therefore we do not pass
1245 * it the flag EXTENT_CLEAR_DATA_RESV.
1246 */
1247 if (extent_reserved) {
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001248 extent_clear_unlock_delalloc(inode, start,
Filipe Mananae2c8e922020-05-27 11:15:53 +01001249 start + cur_alloc_size - 1,
Filipe Mananaa315e682017-03-06 23:04:20 +00001250 locked_page,
1251 clear_bits,
1252 page_ops);
1253 start += cur_alloc_size;
1254 if (start >= end)
1255 goto out;
1256 }
Nikolay Borisov6e26c442020-06-03 08:55:14 +03001257 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001258 clear_bits | EXTENT_CLEAR_DATA_RESV,
1259 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001260 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001261}
Chris Masonc8b97812008-10-29 14:49:59 -04001262
Chris Mason771ed682008-11-06 22:02:51 -05001263/*
1264 * work queue call back to started compression on a file and pages
1265 */
1266static noinline void async_cow_start(struct btrfs_work *work)
1267{
Nikolay Borisovb5326272019-03-12 17:20:25 +02001268 struct async_chunk *async_chunk;
Nikolay Borisovac3e9932019-07-17 14:41:44 +03001269 int compressed_extents;
Chris Mason771ed682008-11-06 22:02:51 -05001270
Nikolay Borisovb5326272019-03-12 17:20:25 +02001271 async_chunk = container_of(work, struct async_chunk, work);
Chris Mason771ed682008-11-06 22:02:51 -05001272
Nikolay Borisovac3e9932019-07-17 14:41:44 +03001273 compressed_extents = compress_file_range(async_chunk);
1274 if (compressed_extents == 0) {
Nikolay Borisovb5326272019-03-12 17:20:25 +02001275 btrfs_add_delayed_iput(async_chunk->inode);
1276 async_chunk->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001277 }
Chris Mason771ed682008-11-06 22:02:51 -05001278}
1279
1280/*
1281 * work queue call back to submit previously compressed pages
1282 */
1283static noinline void async_cow_submit(struct btrfs_work *work)
1284{
Nikolay Borisovc5a68ae2019-03-12 17:20:26 +02001285 struct async_chunk *async_chunk = container_of(work, struct async_chunk,
1286 work);
1287 struct btrfs_fs_info *fs_info = btrfs_work_owner(work);
Chris Mason771ed682008-11-06 22:02:51 -05001288 unsigned long nr_pages;
1289
Nikolay Borisovb5326272019-03-12 17:20:25 +02001290 nr_pages = (async_chunk->end - async_chunk->start + PAGE_SIZE) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001291 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001292
David Sterba093258e2018-02-26 16:15:17 +01001293 /* atomic_sub_return implies a barrier */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001294 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
David Sterba093258e2018-02-26 16:15:17 +01001295 5 * SZ_1M)
1296 cond_wake_up_nomb(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001297
Nikolay Borisov4546d172019-01-03 10:50:03 +02001298 /*
Nikolay Borisovb5326272019-03-12 17:20:25 +02001299 * ->inode could be NULL if async_chunk_start has failed to compress,
Nikolay Borisov4546d172019-01-03 10:50:03 +02001300 * in which case we don't have anything to submit, yet we need to
1301 * always adjust ->async_delalloc_pages as its paired with the init
1302 * happening in cow_file_range_async
1303 */
Nikolay Borisovb5326272019-03-12 17:20:25 +02001304 if (async_chunk->inode)
1305 submit_compressed_extents(async_chunk);
Chris Mason771ed682008-11-06 22:02:51 -05001306}
Chris Masonc8b97812008-10-29 14:49:59 -04001307
Chris Mason771ed682008-11-06 22:02:51 -05001308static noinline void async_cow_free(struct btrfs_work *work)
1309{
Nikolay Borisovb5326272019-03-12 17:20:25 +02001310 struct async_chunk *async_chunk;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001311
Nikolay Borisovb5326272019-03-12 17:20:25 +02001312 async_chunk = container_of(work, struct async_chunk, work);
1313 if (async_chunk->inode)
1314 btrfs_add_delayed_iput(async_chunk->inode);
Chris Masonec39f762019-07-10 12:28:17 -07001315 if (async_chunk->blkcg_css)
1316 css_put(async_chunk->blkcg_css);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001317 /*
1318 * Since the pointer to 'pending' is at the beginning of the array of
Nikolay Borisovb5326272019-03-12 17:20:25 +02001319 * async_chunk's, freeing it ensures the whole array has been freed.
Nikolay Borisov97db1202019-03-12 17:20:24 +02001320 */
Nikolay Borisovb5326272019-03-12 17:20:25 +02001321 if (atomic_dec_and_test(async_chunk->pending))
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001322 kvfree(async_chunk->pending);
Chris Mason771ed682008-11-06 22:02:51 -05001323}
1324
Nikolay Borisov751b6432020-06-03 08:55:22 +03001325static int cow_file_range_async(struct btrfs_inode *inode,
Chris Masonec39f762019-07-10 12:28:17 -07001326 struct writeback_control *wbc,
1327 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001328 u64 start, u64 end, int *page_started,
David Sterbafac07d22019-10-29 18:28:57 +01001329 unsigned long *nr_written)
Chris Mason771ed682008-11-06 22:02:51 -05001330{
Nikolay Borisov751b6432020-06-03 08:55:22 +03001331 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masonec39f762019-07-10 12:28:17 -07001332 struct cgroup_subsys_state *blkcg_css = wbc_blkcg_css(wbc);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001333 struct async_cow *ctx;
1334 struct async_chunk *async_chunk;
Chris Mason771ed682008-11-06 22:02:51 -05001335 unsigned long nr_pages;
1336 u64 cur_end;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001337 u64 num_chunks = DIV_ROUND_UP(end - start, SZ_512K);
1338 int i;
1339 bool should_compress;
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001340 unsigned nofs_flag;
David Sterbafac07d22019-10-29 18:28:57 +01001341 const unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Mason771ed682008-11-06 22:02:51 -05001342
Nikolay Borisov751b6432020-06-03 08:55:22 +03001343 unlock_extent(&inode->io_tree, start, end);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001344
Nikolay Borisov751b6432020-06-03 08:55:22 +03001345 if (inode->flags & BTRFS_INODE_NOCOMPRESS &&
Nikolay Borisov97db1202019-03-12 17:20:24 +02001346 !btrfs_test_opt(fs_info, FORCE_COMPRESS)) {
1347 num_chunks = 1;
1348 should_compress = false;
1349 } else {
1350 should_compress = true;
1351 }
1352
Nikolay Borisovb1c16ac2019-04-01 11:29:57 +03001353 nofs_flag = memalloc_nofs_save();
1354 ctx = kvmalloc(struct_size(ctx, chunks, num_chunks), GFP_KERNEL);
1355 memalloc_nofs_restore(nofs_flag);
1356
Nikolay Borisov97db1202019-03-12 17:20:24 +02001357 if (!ctx) {
1358 unsigned clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC |
1359 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
1360 EXTENT_DO_ACCOUNTING;
Qu Wenruo6869b0a2021-01-26 16:33:45 +08001361 unsigned long page_ops = PAGE_UNLOCK | PAGE_START_WRITEBACK |
1362 PAGE_END_WRITEBACK | PAGE_SET_ERROR;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001363
Nikolay Borisov751b6432020-06-03 08:55:22 +03001364 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1365 clear_bits, page_ops);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001366 return -ENOMEM;
1367 }
1368
1369 async_chunk = ctx->chunks;
1370 atomic_set(&ctx->num_chunks, num_chunks);
1371
1372 for (i = 0; i < num_chunks; i++) {
1373 if (should_compress)
1374 cur_end = min(end, start + SZ_512K - 1);
1375 else
1376 cur_end = end;
1377
Nikolay Borisovbd4691a2019-01-03 10:50:01 +02001378 /*
1379 * igrab is called higher up in the call chain, take only the
1380 * lightweight reference for the callback lifetime
1381 */
Nikolay Borisov751b6432020-06-03 08:55:22 +03001382 ihold(&inode->vfs_inode);
Nikolay Borisov97db1202019-03-12 17:20:24 +02001383 async_chunk[i].pending = &ctx->num_chunks;
Nikolay Borisov751b6432020-06-03 08:55:22 +03001384 async_chunk[i].inode = &inode->vfs_inode;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001385 async_chunk[i].start = start;
1386 async_chunk[i].end = cur_end;
Nikolay Borisov97db1202019-03-12 17:20:24 +02001387 async_chunk[i].write_flags = write_flags;
1388 INIT_LIST_HEAD(&async_chunk[i].extents);
Chris Mason771ed682008-11-06 22:02:51 -05001389
Chris Mason1d53c9e2019-07-10 12:28:16 -07001390 /*
1391 * The locked_page comes all the way from writepage and its
1392 * the original page we were actually given. As we spread
1393 * this large delalloc region across multiple async_chunk
1394 * structs, only the first struct needs a pointer to locked_page
1395 *
1396 * This way we don't need racey decisions about who is supposed
1397 * to unlock it.
1398 */
1399 if (locked_page) {
Chris Masonec39f762019-07-10 12:28:17 -07001400 /*
1401 * Depending on the compressibility, the pages might or
1402 * might not go through async. We want all of them to
1403 * be accounted against wbc once. Let's do it here
1404 * before the paths diverge. wbc accounting is used
1405 * only for foreign writeback detection and doesn't
1406 * need full accuracy. Just account the whole thing
1407 * against the first page.
1408 */
1409 wbc_account_cgroup_owner(wbc, locked_page,
1410 cur_end - start);
Chris Mason1d53c9e2019-07-10 12:28:16 -07001411 async_chunk[i].locked_page = locked_page;
1412 locked_page = NULL;
1413 } else {
1414 async_chunk[i].locked_page = NULL;
1415 }
1416
Chris Masonec39f762019-07-10 12:28:17 -07001417 if (blkcg_css != blkcg_root_css) {
1418 css_get(blkcg_css);
1419 async_chunk[i].blkcg_css = blkcg_css;
1420 } else {
1421 async_chunk[i].blkcg_css = NULL;
1422 }
1423
Omar Sandovala0cac0e2019-09-16 11:30:57 -07001424 btrfs_init_work(&async_chunk[i].work, async_cow_start,
1425 async_cow_submit, async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001426
Nikolay Borisov97db1202019-03-12 17:20:24 +02001427 nr_pages = DIV_ROUND_UP(cur_end - start, PAGE_SIZE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001428 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001429
Nikolay Borisov97db1202019-03-12 17:20:24 +02001430 btrfs_queue_work(fs_info->delalloc_workers, &async_chunk[i].work);
Chris Mason771ed682008-11-06 22:02:51 -05001431
Chris Mason771ed682008-11-06 22:02:51 -05001432 *nr_written += nr_pages;
1433 start = cur_end + 1;
1434 }
1435 *page_started = 1;
1436 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001437}
1438
Naohiro Aota42c01102021-02-04 19:22:07 +09001439static noinline int run_delalloc_zoned(struct btrfs_inode *inode,
1440 struct page *locked_page, u64 start,
1441 u64 end, int *page_started,
1442 unsigned long *nr_written)
1443{
1444 int ret;
1445
1446 ret = cow_file_range(inode, locked_page, start, end, page_started,
1447 nr_written, 0);
1448 if (ret)
1449 return ret;
1450
1451 if (*page_started)
1452 return 0;
1453
1454 __set_page_dirty_nobuffers(locked_page);
1455 account_page_redirty(locked_page);
1456 extent_write_locked_range(&inode->vfs_inode, start, end, WB_SYNC_ALL);
1457 *page_started = 1;
1458
1459 return 0;
1460}
1461
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001462static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001463 u64 bytenr, u64 num_bytes)
1464{
1465 int ret;
1466 struct btrfs_ordered_sum *sums;
1467 LIST_HEAD(list);
1468
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001469 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001470 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001471 if (ret == 0 && list_empty(&list))
1472 return 0;
1473
1474 while (!list_empty(&list)) {
1475 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1476 list_del(&sums->list);
1477 kfree(sums);
1478 }
Liu Bo58113752018-01-31 17:09:13 -07001479 if (ret < 0)
1480 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001481 return 1;
1482}
1483
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001484static int fallback_to_cow(struct btrfs_inode *inode, struct page *locked_page,
Filipe Manana467dc472020-05-27 11:16:07 +01001485 const u64 start, const u64 end,
1486 int *page_started, unsigned long *nr_written)
1487{
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001488 const bool is_space_ino = btrfs_is_free_space_inode(inode);
1489 const bool is_reloc_ino = (inode->root->root_key.objectid ==
Filipe Manana6bd335b2020-06-08 13:33:05 +01001490 BTRFS_DATA_RELOC_TREE_OBJECTID);
Filipe Manana2166e5e2020-05-27 11:16:19 +01001491 const u64 range_bytes = end + 1 - start;
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001492 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana467dc472020-05-27 11:16:07 +01001493 u64 range_start = start;
1494 u64 count;
1495
1496 /*
1497 * If EXTENT_NORESERVE is set it means that when the buffered write was
1498 * made we had not enough available data space and therefore we did not
1499 * reserve data space for it, since we though we could do NOCOW for the
1500 * respective file range (either there is prealloc extent or the inode
1501 * has the NOCOW bit set).
1502 *
1503 * However when we need to fallback to COW mode (because for example the
1504 * block group for the corresponding extent was turned to RO mode by a
1505 * scrub or relocation) we need to do the following:
1506 *
1507 * 1) We increment the bytes_may_use counter of the data space info.
1508 * If COW succeeds, it allocates a new data extent and after doing
1509 * that it decrements the space info's bytes_may_use counter and
1510 * increments its bytes_reserved counter by the same amount (we do
1511 * this at btrfs_add_reserved_bytes()). So we need to increment the
1512 * bytes_may_use counter to compensate (when space is reserved at
1513 * buffered write time, the bytes_may_use counter is incremented);
1514 *
1515 * 2) We clear the EXTENT_NORESERVE bit from the range. We do this so
1516 * that if the COW path fails for any reason, it decrements (through
1517 * extent_clear_unlock_delalloc()) the bytes_may_use counter of the
1518 * data space info, which we incremented in the step above.
Filipe Manana2166e5e2020-05-27 11:16:19 +01001519 *
1520 * If we need to fallback to cow and the inode corresponds to a free
Filipe Manana6bd335b2020-06-08 13:33:05 +01001521 * space cache inode or an inode of the data relocation tree, we must
1522 * also increment bytes_may_use of the data space_info for the same
1523 * reason. Space caches and relocated data extents always get a prealloc
Filipe Manana2166e5e2020-05-27 11:16:19 +01001524 * extent for them, however scrub or balance may have set the block
Filipe Manana6bd335b2020-06-08 13:33:05 +01001525 * group that contains that extent to RO mode and therefore force COW
1526 * when starting writeback.
Filipe Manana467dc472020-05-27 11:16:07 +01001527 */
Filipe Manana2166e5e2020-05-27 11:16:19 +01001528 count = count_range_bits(io_tree, &range_start, end, range_bytes,
Filipe Manana467dc472020-05-27 11:16:07 +01001529 EXTENT_NORESERVE, 0);
Filipe Manana6bd335b2020-06-08 13:33:05 +01001530 if (count > 0 || is_space_ino || is_reloc_ino) {
1531 u64 bytes = count;
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001532 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana467dc472020-05-27 11:16:07 +01001533 struct btrfs_space_info *sinfo = fs_info->data_sinfo;
1534
Filipe Manana6bd335b2020-06-08 13:33:05 +01001535 if (is_space_ino || is_reloc_ino)
1536 bytes = range_bytes;
1537
Filipe Manana467dc472020-05-27 11:16:07 +01001538 spin_lock(&sinfo->lock);
Filipe Manana2166e5e2020-05-27 11:16:19 +01001539 btrfs_space_info_update_bytes_may_use(fs_info, sinfo, bytes);
Filipe Manana467dc472020-05-27 11:16:07 +01001540 spin_unlock(&sinfo->lock);
1541
Filipe Manana2166e5e2020-05-27 11:16:19 +01001542 if (count > 0)
1543 clear_extent_bit(io_tree, start, end, EXTENT_NORESERVE,
1544 0, 0, NULL);
Filipe Manana467dc472020-05-27 11:16:07 +01001545 }
1546
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001547 return cow_file_range(inode, locked_page, start, end, page_started,
1548 nr_written, 1);
Filipe Manana467dc472020-05-27 11:16:07 +01001549}
1550
Chris Masond352ac62008-09-29 15:18:18 -04001551/*
1552 * when nowcow writeback call back. This checks for snapshots or COW copies
1553 * of the extents that exist in the file, and COWs the file as required.
1554 *
1555 * If no cow copies or snapshots exist, we write directly to the existing
1556 * blocks on disk
1557 */
Nikolay Borisov968322c2020-06-03 08:55:21 +03001558static noinline int run_delalloc_nocow(struct btrfs_inode *inode,
Chris Mason7f366cf2009-03-12 20:12:45 -04001559 struct page *locked_page,
Nikolay Borisov3e024842019-08-21 10:42:03 +03001560 const u64 start, const u64 end,
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001561 int *page_started,
Nikolay Borisov3e024842019-08-21 10:42:03 +03001562 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001563{
Nikolay Borisov968322c2020-06-03 08:55:21 +03001564 struct btrfs_fs_info *fs_info = inode->root->fs_info;
1565 struct btrfs_root *root = inode->root;
Chris Masonbe20aa92007-12-17 20:14:01 -05001566 struct btrfs_path *path;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001567 u64 cow_start = (u64)-1;
1568 u64 cur_offset = start;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001569 int ret;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001570 bool check_prev = true;
Nikolay Borisov968322c2020-06-03 08:55:21 +03001571 const bool freespace_inode = btrfs_is_free_space_inode(inode);
1572 u64 ino = btrfs_ino(inode);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001573 bool nocow = false;
1574 u64 disk_bytenr = 0;
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001575 const bool force = inode->flags & BTRFS_INODE_NODATACOW;
Chris Masonbe20aa92007-12-17 20:14:01 -05001576
1577 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001578 if (!path) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001579 extent_clear_unlock_delalloc(inode, start, end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001580 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001581 EXTENT_DO_ACCOUNTING |
1582 EXTENT_DEFRAG, PAGE_UNLOCK |
Qu Wenruo6869b0a2021-01-26 16:33:45 +08001583 PAGE_START_WRITEBACK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001584 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001585 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001586 }
Li Zefan82d59022011-04-20 10:33:24 +08001587
Yan Zheng80ff3852008-10-30 14:20:02 -04001588 while (1) {
Nikolay Borisov3e024842019-08-21 10:42:03 +03001589 struct btrfs_key found_key;
1590 struct btrfs_file_extent_item *fi;
1591 struct extent_buffer *leaf;
1592 u64 extent_end;
1593 u64 extent_offset;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001594 u64 num_bytes = 0;
1595 u64 disk_num_bytes;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001596 u64 ram_bytes;
1597 int extent_type;
Nikolay Borisov762bf092019-08-22 17:24:20 +03001598
1599 nocow = false;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001600
Liu Boe4c3b2d2017-01-30 12:25:28 -08001601 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001602 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001603 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001604 goto error;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001605
1606 /*
1607 * If there is no extent for our range when doing the initial
1608 * search, then go back to the previous slot as it will be the
1609 * one containing the search offset
1610 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001611 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1612 leaf = path->nodes[0];
1613 btrfs_item_key_to_cpu(leaf, &found_key,
1614 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001615 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001616 found_key.type == BTRFS_EXTENT_DATA_KEY)
1617 path->slots[0]--;
1618 }
Nikolay Borisov3e024842019-08-21 10:42:03 +03001619 check_prev = false;
Yan Zheng80ff3852008-10-30 14:20:02 -04001620next_slot:
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001621 /* Go to next leaf if we have exhausted the current one */
Yan Zheng80ff3852008-10-30 14:20:02 -04001622 leaf = path->nodes[0];
1623 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1624 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001625 if (ret < 0) {
1626 if (cow_start != (u64)-1)
1627 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001628 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001629 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001630 if (ret > 0)
1631 break;
1632 leaf = path->nodes[0];
1633 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001634
Yan Zheng80ff3852008-10-30 14:20:02 -04001635 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001636
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001637 /* Didn't find anything for our INO */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001638 if (found_key.objectid > ino)
1639 break;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001640 /*
1641 * Keep searching until we find an EXTENT_ITEM or there are no
1642 * more extents for this inode
1643 */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001644 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1645 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1646 path->slots[0]++;
1647 goto next_slot;
1648 }
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001649
1650 /* Found key is not EXTENT_DATA_KEY or starts after req range */
Filipe Manana1d512cb2015-11-09 00:33:58 +00001651 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001652 found_key.offset > end)
1653 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001654
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001655 /*
1656 * If the found extent starts after requested offset, then
1657 * adjust extent_end to be right before this extent begins
1658 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001659 if (found_key.offset > cur_offset) {
1660 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001661 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001662 goto out_check;
1663 }
Chris Masonc31f8832008-01-08 15:46:31 -05001664
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001665 /*
1666 * Found extent which begins before our range and potentially
1667 * intersect it
1668 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001669 fi = btrfs_item_ptr(leaf, path->slots[0],
1670 struct btrfs_file_extent_item);
1671 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001672
Josef Bacikcc95bef2013-04-04 14:31:27 -04001673 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001674 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1675 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001676 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001677 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001678 extent_end = found_key.offset +
1679 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001680 disk_num_bytes =
1681 btrfs_file_extent_disk_num_bytes(leaf, fi);
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001682 /*
Filipe Mananade7999a2019-12-11 09:01:40 +00001683 * If the extent we got ends before our current offset,
1684 * skip to the next extent.
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001685 */
Filipe Mananade7999a2019-12-11 09:01:40 +00001686 if (extent_end <= cur_offset) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001687 path->slots[0]++;
1688 goto next_slot;
1689 }
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001690 /* Skip holes */
Yan Zheng17d217f2008-12-12 10:03:38 -05001691 if (disk_bytenr == 0)
1692 goto out_check;
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001693 /* Skip compressed/encrypted/encoded extents */
Yan Zheng80ff3852008-10-30 14:20:02 -04001694 if (btrfs_file_extent_compression(leaf, fi) ||
1695 btrfs_file_extent_encryption(leaf, fi) ||
1696 btrfs_file_extent_other_encoding(leaf, fi))
1697 goto out_check;
Ethan Lien78d42952018-05-17 14:58:29 +08001698 /*
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001699 * If extent is created before the last volume's snapshot
1700 * this implies the extent is shared, hence we can't do
1701 * nocow. This is the same check as in
1702 * btrfs_cross_ref_exist but without calling
1703 * btrfs_search_slot.
Ethan Lien78d42952018-05-17 14:58:29 +08001704 */
Nikolay Borisov3e024842019-08-21 10:42:03 +03001705 if (!freespace_inode &&
Lu Fengqi27a7ff52018-11-29 17:31:32 +08001706 btrfs_file_extent_generation(leaf, fi) <=
Ethan Lien78d42952018-05-17 14:58:29 +08001707 btrfs_root_last_snapshot(&root->root_item))
1708 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001709 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1710 goto out_check;
Filipe Mananac65ca982020-11-18 11:00:17 +00001711
1712 /*
1713 * The following checks can be expensive, as they need to
1714 * take other locks and do btree or rbtree searches, so
1715 * release the path to avoid blocking other tasks for too
1716 * long.
1717 */
1718 btrfs_release_path(path);
1719
Liu Bo58113752018-01-31 17:09:13 -07001720 ret = btrfs_cross_ref_exist(root, ino,
1721 found_key.offset -
Boris Burkova84d5d42020-08-18 11:00:05 -07001722 extent_offset, disk_bytenr, false);
Liu Bo58113752018-01-31 17:09:13 -07001723 if (ret) {
1724 /*
1725 * ret could be -EIO if the above fails to read
1726 * metadata.
1727 */
1728 if (ret < 0) {
1729 if (cow_start != (u64)-1)
1730 cur_offset = cow_start;
1731 goto error;
1732 }
1733
Nikolay Borisov3e024842019-08-21 10:42:03 +03001734 WARN_ON_ONCE(freespace_inode);
Yan Zheng17d217f2008-12-12 10:03:38 -05001735 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001736 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001737 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001738 disk_bytenr += cur_offset - found_key.offset;
1739 num_bytes = min(end + 1, extent_end) - cur_offset;
1740 /*
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001741 * If there are pending snapshots for this root, we
1742 * fall into common COW way
Wang Shilonge9894fd2014-03-27 11:12:25 +08001743 */
Nikolay Borisov3e024842019-08-21 10:42:03 +03001744 if (!freespace_inode && atomic_read(&root->snapshot_force_cow))
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001745 goto out_check;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001746 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001747 * force cow if csum exists in the range.
1748 * this ensure that csum for a given extent are
1749 * either valid or do not exist.
1750 */
Liu Bo58113752018-01-31 17:09:13 -07001751 ret = csum_exist_in_range(fs_info, disk_bytenr,
1752 num_bytes);
1753 if (ret) {
Liu Bo58113752018-01-31 17:09:13 -07001754 /*
1755 * ret could be -EIO if the above fails to read
1756 * metadata.
1757 */
1758 if (ret < 0) {
1759 if (cow_start != (u64)-1)
1760 cur_offset = cow_start;
1761 goto error;
1762 }
Nikolay Borisov3e024842019-08-21 10:42:03 +03001763 WARN_ON_ONCE(freespace_inode);
Yan Zheng17d217f2008-12-12 10:03:38 -05001764 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001765 }
Filipe Manana20903032021-02-05 12:55:36 +00001766 /* If the extent's block group is RO, we must COW */
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001767 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001768 goto out_check;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001769 nocow = true;
Yan Zheng80ff3852008-10-30 14:20:02 -04001770 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Nikolay Borisove8e21002019-08-22 17:25:23 +03001771 extent_end = found_key.offset + ram_bytes;
1772 extent_end = ALIGN(extent_end, fs_info->sectorsize);
Nikolay Borisov922f0512019-08-05 17:47:06 +03001773 /* Skip extents outside of our requested range */
1774 if (extent_end <= start) {
1775 path->slots[0]++;
1776 goto next_slot;
1777 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001778 } else {
Nikolay Borisove8e21002019-08-22 17:25:23 +03001779 /* If this triggers then we have a memory corruption */
Arnd Bergmann290342f2019-03-25 14:02:25 +01001780 BUG();
Yan Zheng80ff3852008-10-30 14:20:02 -04001781 }
1782out_check:
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001783 /*
1784 * If nocow is false then record the beginning of the range
1785 * that needs to be COWed
1786 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001787 if (!nocow) {
1788 if (cow_start == (u64)-1)
1789 cow_start = cur_offset;
1790 cur_offset = extent_end;
1791 if (cur_offset > end)
1792 break;
Filipe Mananac65ca982020-11-18 11:00:17 +00001793 if (!path->nodes[0])
1794 continue;
Yan Zheng80ff3852008-10-30 14:20:02 -04001795 path->slots[0]++;
1796 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001797 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001798
Nikolay Borisova6bd9cd2019-08-21 10:42:57 +03001799 /*
1800 * COW range from cow_start to found_key.offset - 1. As the key
1801 * will contain the beginning of the first extent that can be
1802 * NOCOW, following one which needs to be COW'ed
1803 */
Yan Zheng80ff3852008-10-30 14:20:02 -04001804 if (cow_start != (u64)-1) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001805 ret = fallback_to_cow(inode, locked_page,
Nikolay Borisov8ba96f32020-06-03 08:55:20 +03001806 cow_start, found_key.offset - 1,
Filipe Manana467dc472020-05-27 11:16:07 +01001807 page_started, nr_written);
Josef Bacik230ed392020-07-06 09:14:12 -04001808 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001809 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001810 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001811 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001812
Yan Zhengd899e052008-10-30 14:25:28 -04001813 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001814 u64 orig_start = found_key.offset - extent_offset;
Nikolay Borisov3e024842019-08-21 10:42:03 +03001815 struct extent_map *em;
Liu Bo6f9994d2017-01-31 07:50:22 -08001816
Nikolay Borisov968322c2020-06-03 08:55:21 +03001817 em = create_io_em(inode, cur_offset, num_bytes,
Liu Bo6f9994d2017-01-31 07:50:22 -08001818 orig_start,
1819 disk_bytenr, /* block_start */
1820 num_bytes, /* block_len */
1821 disk_num_bytes, /* orig_block_len */
1822 ram_bytes, BTRFS_COMPRESS_NONE,
1823 BTRFS_ORDERED_PREALLOC);
1824 if (IS_ERR(em)) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001825 ret = PTR_ERR(em);
1826 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001827 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001828 free_extent_map(em);
Nikolay Borisov968322c2020-06-03 08:55:21 +03001829 ret = btrfs_add_ordered_extent(inode, cur_offset,
Nikolay Borisovbb55f622019-08-05 17:47:05 +03001830 disk_bytenr, num_bytes,
1831 num_bytes,
1832 BTRFS_ORDERED_PREALLOC);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001833 if (ret) {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001834 btrfs_drop_extent_cache(inode, cur_offset,
Nikolay Borisov762bf092019-08-22 17:24:20 +03001835 cur_offset + num_bytes - 1,
1836 0);
1837 goto error;
1838 }
Yan Zhengd899e052008-10-30 14:25:28 -04001839 } else {
Nikolay Borisov968322c2020-06-03 08:55:21 +03001840 ret = btrfs_add_ordered_extent(inode, cur_offset,
Nikolay Borisovbb55f622019-08-05 17:47:05 +03001841 disk_bytenr, num_bytes,
1842 num_bytes,
1843 BTRFS_ORDERED_NOCOW);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001844 if (ret)
1845 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001846 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001847
Filipe Mananaf78c4362016-05-09 13:15:41 +01001848 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001849 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Nikolay Borisov762bf092019-08-22 17:24:20 +03001850 nocow = false;
Chris Mason771ed682008-11-06 22:02:51 -05001851
Yan, Zhengefa56462010-05-16 10:49:59 -04001852 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001853 BTRFS_DATA_RELOC_TREE_OBJECTID)
1854 /*
1855 * Error handled later, as we must prevent
1856 * extent_clear_unlock_delalloc() in error handler
1857 * from freeing metadata of created ordered extent.
1858 */
Nikolay Borisov968322c2020-06-03 08:55:21 +03001859 ret = btrfs_reloc_clone_csums(inode, cur_offset,
Yan, Zhengefa56462010-05-16 10:49:59 -04001860 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001861
Nikolay Borisov968322c2020-06-03 08:55:21 +03001862 extent_clear_unlock_delalloc(inode, cur_offset,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001863 cur_offset + num_bytes - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -04001864 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001865 EXTENT_DELALLOC |
1866 EXTENT_CLEAR_DATA_RESV,
Qu Wenruof57ad932021-04-07 19:22:13 +08001867 PAGE_UNLOCK | PAGE_SET_ORDERED);
Wang Xiaoguang18513092016-07-25 15:51:40 +08001868
Yan Zheng80ff3852008-10-30 14:20:02 -04001869 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001870
1871 /*
1872 * btrfs_reloc_clone_csums() error, now we're OK to call error
1873 * handler, as metadata for created ordered extent will only
1874 * be freed by btrfs_finish_ordered_io().
1875 */
1876 if (ret)
1877 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001878 if (cur_offset > end)
1879 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001880 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001881 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001882
Robbie Ko506481b2018-10-30 18:04:04 +08001883 if (cur_offset <= end && cow_start == (u64)-1)
Yan Zheng80ff3852008-10-30 14:20:02 -04001884 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001885
Yan Zheng80ff3852008-10-30 14:20:02 -04001886 if (cow_start != (u64)-1) {
Robbie Ko506481b2018-10-30 18:04:04 +08001887 cur_offset = end;
Nikolay Borisov968322c2020-06-03 08:55:21 +03001888 ret = fallback_to_cow(inode, locked_page, cow_start, end,
1889 page_started, nr_written);
Josef Bacikd788a342013-10-25 16:55:08 -04001890 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001891 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001892 }
1893
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001894error:
Nikolay Borisov762bf092019-08-22 17:24:20 +03001895 if (nocow)
1896 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
1897
Josef Bacik17ca04a2012-05-31 15:58:55 -04001898 if (ret && cur_offset < end)
Nikolay Borisov968322c2020-06-03 08:55:21 +03001899 extent_clear_unlock_delalloc(inode, cur_offset, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001900 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001901 EXTENT_DELALLOC | EXTENT_DEFRAG |
1902 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Qu Wenruo6869b0a2021-01-26 16:33:45 +08001903 PAGE_START_WRITEBACK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001904 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001905 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001906 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001907}
1908
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001909static bool should_nocow(struct btrfs_inode *inode, u64 start, u64 end)
Wang Shilong47059d92014-07-03 18:22:07 +08001910{
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001911 if (inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC)) {
1912 if (inode->defrag_bytes &&
1913 test_range_bit(&inode->io_tree, start, end, EXTENT_DEFRAG,
1914 0, NULL))
1915 return false;
1916 return true;
1917 }
1918 return false;
Wang Shilong47059d92014-07-03 18:22:07 +08001919}
1920
Chris Masond352ac62008-09-29 15:18:18 -04001921/*
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001922 * Function to process delayed allocation (create CoW) for ranges which are
1923 * being touched for the first time.
Chris Masond352ac62008-09-29 15:18:18 -04001924 */
Nikolay Borisov98456b92020-06-03 08:55:29 +03001925int btrfs_run_delalloc_range(struct btrfs_inode *inode, struct page *locked_page,
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001926 u64 start, u64 end, int *page_started, unsigned long *nr_written,
1927 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001928{
Chris Masonbe20aa92007-12-17 20:14:01 -05001929 int ret;
Naohiro Aota42c01102021-02-04 19:22:07 +09001930 const bool zoned = btrfs_is_zoned(inode->root->fs_info);
Chris Masona2135012008-06-25 16:01:30 -04001931
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001932 if (should_nocow(inode, start, end)) {
Naohiro Aota42c01102021-02-04 19:22:07 +09001933 ASSERT(!zoned);
Nikolay Borisov98456b92020-06-03 08:55:29 +03001934 ret = run_delalloc_nocow(inode, locked_page, start, end,
Goldwyn Rodrigues6e65ae72021-03-04 09:06:25 -06001935 page_started, nr_written);
Nikolay Borisov98456b92020-06-03 08:55:29 +03001936 } else if (!inode_can_compress(inode) ||
1937 !inode_need_compress(inode, start, end)) {
Naohiro Aota42c01102021-02-04 19:22:07 +09001938 if (zoned)
1939 ret = run_delalloc_zoned(inode, locked_page, start, end,
1940 page_started, nr_written);
1941 else
1942 ret = cow_file_range(inode, locked_page, start, end,
1943 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001944 } else {
Nikolay Borisov98456b92020-06-03 08:55:29 +03001945 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, &inode->runtime_flags);
1946 ret = cow_file_range_async(inode, wbc, locked_page, start, end,
David Sterbafac07d22019-10-29 18:28:57 +01001947 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001948 }
Qu Wenruo524272602017-03-08 10:25:52 +08001949 if (ret)
Nikolay Borisov98456b92020-06-03 08:55:29 +03001950 btrfs_cleanup_ordered_extents(inode, locked_page, start,
Nikolay Borisovd1051d62018-11-21 17:10:52 +02001951 end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001952 return ret;
1953}
1954
Nikolay Borisovabbb55f2018-11-01 14:09:53 +02001955void btrfs_split_delalloc_extent(struct inode *inode,
1956 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001957{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001958 u64 size;
1959
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001960 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001961 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001962 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001963
Josef Bacikdcab6a32015-02-11 15:08:59 -05001964 size = orig->end - orig->start + 1;
1965 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001966 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001967 u64 new_size;
1968
1969 /*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001970 * See the explanation in btrfs_merge_delalloc_extent, the same
Josef Bacikba117212015-03-13 15:01:24 -04001971 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001972 */
1973 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001974 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001975 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001976 num_extents += count_max_extents(new_size);
1977 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001978 return;
1979 }
1980
Josef Bacik9e0baf62011-07-15 15:16:44 +00001981 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001982 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001983 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001984}
1985
1986/*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001987 * Handle merged delayed allocation extents so we can keep track of new extents
1988 * that are just merged onto old extents, such as when we are doing sequential
1989 * writes, so we can properly account for the metadata space we'll need.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001990 */
Nikolay Borisov5c848192018-11-01 14:09:52 +02001991void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1992 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001993{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001994 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001995 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001996
Josef Bacik9ed74f22009-09-11 16:12:44 -04001997 /* not delalloc, ignore it */
1998 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001999 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04002000
Josef Bacik8461a3d2015-03-13 15:12:08 -04002001 if (new->start > other->start)
2002 new_size = new->end - other->start + 1;
2003 else
2004 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05002005
2006 /* we're not bigger than the max, unreserve the space and go */
2007 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
2008 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04002009 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05002010 spin_unlock(&BTRFS_I(inode)->lock);
2011 return;
2012 }
2013
2014 /*
Josef Bacikba117212015-03-13 15:01:24 -04002015 * We have to add up either side to figure out how many extents were
2016 * accounted for before we merged into one big extent. If the number of
2017 * extents we accounted for is <= the amount we need for the new range
2018 * then we can return, otherwise drop. Think of it like this
2019 *
2020 * [ 4k][MAX_SIZE]
2021 *
2022 * So we've grown the extent by a MAX_SIZE extent, this would mean we
2023 * need 2 outstanding extents, on one side we have 1 and the other side
2024 * we have 1 so they are == and we can return. But in this case
2025 *
2026 * [MAX_SIZE+4k][MAX_SIZE+4k]
2027 *
2028 * Each range on their own accounts for 2 extents, but merged together
2029 * they are only 3 extents worth of accounting, so we need to drop in
2030 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05002031 */
Josef Bacikba117212015-03-13 15:01:24 -04002032 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01002033 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04002034 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01002035 num_extents += count_max_extents(old_size);
2036 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05002037 return;
2038
Josef Bacik9e0baf62011-07-15 15:16:44 +00002039 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04002040 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00002041 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002042}
2043
Miao Xieeb73c1b2013-05-15 07:48:22 +00002044static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
2045 struct inode *inode)
2046{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002047 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2048
Miao Xieeb73c1b2013-05-15 07:48:22 +00002049 spin_lock(&root->delalloc_lock);
2050 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
2051 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
2052 &root->delalloc_inodes);
2053 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
2054 &BTRFS_I(inode)->runtime_flags);
2055 root->nr_delalloc_inodes++;
2056 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002057 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002058 BUG_ON(!list_empty(&root->delalloc_root));
2059 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002060 &fs_info->delalloc_roots);
2061 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002062 }
2063 }
2064 spin_unlock(&root->delalloc_lock);
2065}
2066
Nikolay Borisov2b877332018-04-27 12:21:51 +03002067
2068void __btrfs_del_delalloc_inode(struct btrfs_root *root,
2069 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00002070{
David Sterba3ffbd682018-06-29 10:56:42 +02002071 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002072
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02002073 if (!list_empty(&inode->delalloc_inodes)) {
2074 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002075 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02002076 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002077 root->nr_delalloc_inodes--;
2078 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03002079 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002080 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002081 BUG_ON(list_empty(&root->delalloc_root));
2082 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002083 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002084 }
2085 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03002086}
2087
2088static void btrfs_del_delalloc_inode(struct btrfs_root *root,
2089 struct btrfs_inode *inode)
2090{
2091 spin_lock(&root->delalloc_lock);
2092 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00002093 spin_unlock(&root->delalloc_lock);
2094}
2095
Chris Masond352ac62008-09-29 15:18:18 -04002096/*
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02002097 * Properly track delayed allocation bytes in the inode and to maintain the
2098 * list of inodes that have pending delalloc work to be done.
Chris Masond352ac62008-09-29 15:18:18 -04002099 */
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02002100void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
2101 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05002102{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002103 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2104
Wang Shilong47059d92014-07-03 18:22:07 +08002105 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
2106 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05002107 /*
2108 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00002109 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05002110 * bit, which is only set or cleared with irqs on
2111 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002112 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05002113 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002114 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04002115 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002116 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04002117
Josef Bacik8b62f872017-10-19 14:15:55 -04002118 spin_lock(&BTRFS_I(inode)->lock);
2119 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
2120 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00002121
Josef Bacik6a3891c2015-03-16 17:38:52 -04002122 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002123 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04002124 return;
2125
Nikolay Borisov104b4e52017-06-20 21:01:20 +03002126 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
2127 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00002128 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002129 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08002130 if (*bits & EXTENT_DEFRAG)
2131 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00002132 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00002133 &BTRFS_I(inode)->runtime_flags))
2134 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00002135 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05002136 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002137
2138 if (!(state->state & EXTENT_DELALLOC_NEW) &&
2139 (*bits & EXTENT_DELALLOC_NEW)) {
2140 spin_lock(&BTRFS_I(inode)->lock);
2141 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
2142 state->start;
2143 spin_unlock(&BTRFS_I(inode)->lock);
2144 }
Chris Mason291d6732008-01-29 15:55:23 -05002145}
2146
Chris Masond352ac62008-09-29 15:18:18 -04002147/*
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002148 * Once a range is no longer delalloc this function ensures that proper
2149 * accounting happens.
Chris Masond352ac62008-09-29 15:18:18 -04002150 */
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002151void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
2152 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05002153{
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02002154 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
2155 struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08002156 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01002157 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08002158
Filipe Manana4a4b9642017-07-27 19:52:55 +01002159 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
2160 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002161 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01002162 spin_unlock(&inode->lock);
2163 }
Wang Shilong47059d92014-07-03 18:22:07 +08002164
Chris Mason75eff682008-12-15 15:54:40 -05002165 /*
2166 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00002167 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05002168 * bit, which is only set or cleared with irqs on
2169 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002170 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002171 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06002172 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04002173
Josef Bacik8b62f872017-10-19 14:15:55 -04002174 spin_lock(&inode->lock);
2175 btrfs_mod_outstanding_extents(inode, -num_extents);
2176 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002177
Josef Bacikb6d08f02013-09-27 14:57:43 -04002178 /*
2179 * We don't reserve metadata space for space cache inodes so we
Andrea Gelmini52042d82018-11-28 12:05:13 +01002180 * don't need to call delalloc_release_metadata if there is an
Josef Bacikb6d08f02013-09-27 14:57:43 -04002181 * error.
2182 */
Filipe Mananaa315e682017-03-06 23:04:20 +00002183 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002184 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08002185 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002186
Josef Bacik6a3891c2015-03-16 17:38:52 -04002187 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002188 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04002189 return;
2190
Filipe Mananaa315e682017-03-06 23:04:20 +00002191 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
2192 do_list && !(state->state & EXTENT_NORESERVE) &&
2193 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov9db5d512020-06-03 08:55:38 +03002194 btrfs_free_reserved_data_space_noquota(fs_info, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002195
Nikolay Borisov104b4e52017-06-20 21:01:20 +03002196 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
2197 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002198 spin_lock(&inode->lock);
2199 inode->delalloc_bytes -= len;
2200 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00002201 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02002202 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00002203 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02002204 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05002205 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002206
2207 if ((state->state & EXTENT_DELALLOC_NEW) &&
2208 (*bits & EXTENT_DELALLOC_NEW)) {
2209 spin_lock(&inode->lock);
2210 ASSERT(inode->new_delalloc_bytes >= len);
2211 inode->new_delalloc_bytes -= len;
Filipe Manana2766ff62020-11-04 11:07:34 +00002212 if (*bits & EXTENT_ADD_INODE_BYTES)
2213 inode_add_bytes(&inode->vfs_inode, len);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002214 spin_unlock(&inode->lock);
2215 }
Chris Mason291d6732008-01-29 15:55:23 -05002216}
2217
Chris Masond352ac62008-09-29 15:18:18 -04002218/*
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002219 * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit
2220 * in a chunk's stripe. This function ensures that bios do not span a
2221 * stripe/chunk
Liu Bo6f034ec2016-06-22 18:31:49 -07002222 *
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002223 * @page - The page we are about to add to the bio
2224 * @size - size we want to add to the bio
2225 * @bio - bio we want to ensure is smaller than a stripe
2226 * @bio_flags - flags of the bio
2227 *
2228 * return 1 if page cannot be added to the bio
2229 * return 0 if page can be added to the bio
Liu Bo6f034ec2016-06-22 18:31:49 -07002230 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04002231 */
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002232int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
2233 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04002234{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002235 struct inode *inode = page->mapping->host;
2236 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba1201b582020-11-26 15:41:27 +01002237 u64 logical = bio->bi_iter.bi_sector << 9;
Qu Wenruo1a0b5c42021-04-13 18:00:47 +08002238 u32 bio_len = bio->bi_iter.bi_size;
Michal Rostecki42034312021-01-27 14:57:27 +01002239 struct extent_map *em;
Michal Rostecki42034312021-01-27 14:57:27 +01002240 int ret = 0;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03002241 struct btrfs_io_geometry geom;
Chris Mason239b14b2008-03-24 15:02:07 -04002242
Chris Mason771ed682008-11-06 22:02:51 -05002243 if (bio_flags & EXTENT_BIO_COMPRESSED)
2244 return 0;
2245
Qu Wenruo1a0b5c42021-04-13 18:00:47 +08002246 em = btrfs_get_chunk_map(fs_info, logical, fs_info->sectorsize);
Michal Rostecki42034312021-01-27 14:57:27 +01002247 if (IS_ERR(em))
2248 return PTR_ERR(em);
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08002249 ret = btrfs_get_io_geometry(fs_info, em, btrfs_op(bio), logical, &geom);
Liu Bo6f034ec2016-06-22 18:31:49 -07002250 if (ret < 0)
Michal Rostecki42034312021-01-27 14:57:27 +01002251 goto out;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03002252
Qu Wenruo1a0b5c42021-04-13 18:00:47 +08002253 if (geom.len < bio_len + size)
Michal Rostecki42034312021-01-27 14:57:27 +01002254 ret = 1;
2255out:
2256 free_extent_map(em);
2257 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04002258}
2259
Chris Masond352ac62008-09-29 15:18:18 -04002260/*
2261 * in order to insert checksums into the metadata in large chunks,
2262 * we wait until bio submission time. All the pages in the bio are
2263 * checksummed and sums are attached onto the ordered extent record.
2264 *
2265 * At IO completion time the cums attached on the ordered extent record
2266 * are inserted into the btree
2267 */
Qu Wenruo8896a082020-10-21 14:24:53 +08002268static blk_status_t btrfs_submit_bio_start(struct inode *inode, struct bio *bio,
Qu Wenruo1941b642020-12-02 14:47:57 +08002269 u64 dio_file_offset)
Chris Mason065631f2008-02-20 12:07:25 -05002270{
Johannes Thumshirnc965d642020-07-28 20:25:41 +09002271 return btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
Chris Mason4a69a412008-11-06 22:03:00 -05002272}
Chris Masone0156402008-04-16 11:15:20 -04002273
Naohiro Aotaabb99cf2021-06-28 17:57:28 +09002274/*
2275 * Split an extent_map at [start, start + len]
2276 *
2277 * This function is intended to be used only for extract_ordered_extent().
2278 */
2279static int split_zoned_em(struct btrfs_inode *inode, u64 start, u64 len,
2280 u64 pre, u64 post)
2281{
2282 struct extent_map_tree *em_tree = &inode->extent_tree;
2283 struct extent_map *em;
2284 struct extent_map *split_pre = NULL;
2285 struct extent_map *split_mid = NULL;
2286 struct extent_map *split_post = NULL;
2287 int ret = 0;
2288 int modified;
2289 unsigned long flags;
2290
2291 /* Sanity check */
2292 if (pre == 0 && post == 0)
2293 return 0;
2294
2295 split_pre = alloc_extent_map();
2296 if (pre)
2297 split_mid = alloc_extent_map();
2298 if (post)
2299 split_post = alloc_extent_map();
2300 if (!split_pre || (pre && !split_mid) || (post && !split_post)) {
2301 ret = -ENOMEM;
2302 goto out;
2303 }
2304
2305 ASSERT(pre + post < len);
2306
2307 lock_extent(&inode->io_tree, start, start + len - 1);
2308 write_lock(&em_tree->lock);
2309 em = lookup_extent_mapping(em_tree, start, len);
2310 if (!em) {
2311 ret = -EIO;
2312 goto out_unlock;
2313 }
2314
2315 ASSERT(em->len == len);
2316 ASSERT(!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags));
2317 ASSERT(em->block_start < EXTENT_MAP_LAST_BYTE);
2318
2319 flags = em->flags;
2320 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
2321 clear_bit(EXTENT_FLAG_LOGGING, &flags);
2322 modified = !list_empty(&em->list);
2323
2324 /* First, replace the em with a new extent_map starting from * em->start */
2325 split_pre->start = em->start;
2326 split_pre->len = (pre ? pre : em->len - post);
2327 split_pre->orig_start = split_pre->start;
2328 split_pre->block_start = em->block_start;
2329 split_pre->block_len = split_pre->len;
2330 split_pre->orig_block_len = split_pre->block_len;
2331 split_pre->ram_bytes = split_pre->len;
2332 split_pre->flags = flags;
2333 split_pre->compress_type = em->compress_type;
2334 split_pre->generation = em->generation;
2335
2336 replace_extent_mapping(em_tree, em, split_pre, modified);
2337
2338 /*
2339 * Now we only have an extent_map at:
2340 * [em->start, em->start + pre] if pre != 0
2341 * [em->start, em->start + em->len - post] if pre == 0
2342 */
2343
2344 if (pre) {
2345 /* Insert the middle extent_map */
2346 split_mid->start = em->start + pre;
2347 split_mid->len = em->len - pre - post;
2348 split_mid->orig_start = split_mid->start;
2349 split_mid->block_start = em->block_start + pre;
2350 split_mid->block_len = split_mid->len;
2351 split_mid->orig_block_len = split_mid->block_len;
2352 split_mid->ram_bytes = split_mid->len;
2353 split_mid->flags = flags;
2354 split_mid->compress_type = em->compress_type;
2355 split_mid->generation = em->generation;
2356 add_extent_mapping(em_tree, split_mid, modified);
2357 }
2358
2359 if (post) {
2360 split_post->start = em->start + em->len - post;
2361 split_post->len = post;
2362 split_post->orig_start = split_post->start;
2363 split_post->block_start = em->block_start + em->len - post;
2364 split_post->block_len = split_post->len;
2365 split_post->orig_block_len = split_post->block_len;
2366 split_post->ram_bytes = split_post->len;
2367 split_post->flags = flags;
2368 split_post->compress_type = em->compress_type;
2369 split_post->generation = em->generation;
2370 add_extent_mapping(em_tree, split_post, modified);
2371 }
2372
2373 /* Once for us */
2374 free_extent_map(em);
2375 /* Once for the tree */
2376 free_extent_map(em);
2377
2378out_unlock:
2379 write_unlock(&em_tree->lock);
2380 unlock_extent(&inode->io_tree, start, start + len - 1);
2381out:
2382 free_extent_map(split_pre);
2383 free_extent_map(split_mid);
2384 free_extent_map(split_post);
2385
2386 return ret;
2387}
2388
Naohiro Aotad22002f2021-02-04 19:22:00 +09002389static blk_status_t extract_ordered_extent(struct btrfs_inode *inode,
2390 struct bio *bio, loff_t file_offset)
2391{
2392 struct btrfs_ordered_extent *ordered;
Naohiro Aotad22002f2021-02-04 19:22:00 +09002393 u64 start = (u64)bio->bi_iter.bi_sector << SECTOR_SHIFT;
Naohiro Aotaabb99cf2021-06-28 17:57:28 +09002394 u64 file_len;
Naohiro Aotad22002f2021-02-04 19:22:00 +09002395 u64 len = bio->bi_iter.bi_size;
2396 u64 end = start + len;
2397 u64 ordered_end;
2398 u64 pre, post;
2399 int ret = 0;
2400
2401 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
2402 if (WARN_ON_ONCE(!ordered))
2403 return BLK_STS_IOERR;
2404
2405 /* No need to split */
2406 if (ordered->disk_num_bytes == len)
2407 goto out;
2408
2409 /* We cannot split once end_bio'd ordered extent */
2410 if (WARN_ON_ONCE(ordered->bytes_left != ordered->disk_num_bytes)) {
2411 ret = -EINVAL;
2412 goto out;
2413 }
2414
2415 /* We cannot split a compressed ordered extent */
2416 if (WARN_ON_ONCE(ordered->disk_num_bytes != ordered->num_bytes)) {
2417 ret = -EINVAL;
2418 goto out;
2419 }
2420
2421 ordered_end = ordered->disk_bytenr + ordered->disk_num_bytes;
2422 /* bio must be in one ordered extent */
2423 if (WARN_ON_ONCE(start < ordered->disk_bytenr || end > ordered_end)) {
2424 ret = -EINVAL;
2425 goto out;
2426 }
2427
2428 /* Checksum list should be empty */
2429 if (WARN_ON_ONCE(!list_empty(&ordered->list))) {
2430 ret = -EINVAL;
2431 goto out;
2432 }
2433
Naohiro Aotaabb99cf2021-06-28 17:57:28 +09002434 file_len = ordered->num_bytes;
Naohiro Aotad22002f2021-02-04 19:22:00 +09002435 pre = start - ordered->disk_bytenr;
2436 post = ordered_end - end;
2437
2438 ret = btrfs_split_ordered_extent(ordered, pre, post);
2439 if (ret)
2440 goto out;
Naohiro Aotaabb99cf2021-06-28 17:57:28 +09002441 ret = split_zoned_em(inode, file_offset, file_len, pre, post);
Naohiro Aotad22002f2021-02-04 19:22:00 +09002442
2443out:
Naohiro Aotad22002f2021-02-04 19:22:00 +09002444 btrfs_put_ordered_extent(ordered);
2445
2446 return errno_to_blk_status(ret);
2447}
2448
Chris Mason4a69a412008-11-06 22:03:00 -05002449/*
Chris Masoncad321a2008-12-17 14:51:42 -05002450 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06002451 * on write, or reading the csums from the tree before a read.
2452 *
2453 * Rules about async/sync submit,
2454 * a) read: sync submit
2455 *
2456 * b) write without checksum: sync submit
2457 *
2458 * c) write with checksum:
2459 * c-1) if bio is issued by fsync: sync submit
2460 * (sync_writers != 0)
2461 *
2462 * c-2) if root is reloc root: sync submit
2463 * (only in case of buffered IO)
2464 *
2465 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04002466 */
Nikolay Borisov908930f2020-09-18 16:34:37 +03002467blk_status_t btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
2468 int mirror_num, unsigned long bio_flags)
Nikolay Borisov50489a52019-04-10 19:46:04 +03002469
Chris Mason44b8bd72008-04-16 11:14:51 -04002470{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04002472 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302473 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002474 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002475 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05002476 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04002477
Josef Bacik42437a62020-10-16 11:29:18 -04002478 skip_sum = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) ||
2479 !fs_info->csum_root;
Chris Masoncad321a2008-12-17 14:51:42 -05002480
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002481 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05302482 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04002483
Naohiro Aotad22002f2021-02-04 19:22:00 +09002484 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
2485 struct page *page = bio_first_bvec_all(bio)->bv_page;
2486 loff_t file_offset = page_offset(page);
2487
2488 ret = extract_ordered_extent(BTRFS_I(inode), bio, file_offset);
2489 if (ret)
2490 goto out;
2491 }
2492
Naohiro Aotacfe94442021-02-04 19:21:59 +09002493 if (btrfs_op(bio) != BTRFS_MAP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04002495 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002496 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04002497
Chris Masond20f7042008-12-08 16:58:54 -05002498 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01002499 ret = btrfs_submit_compressed_read(inode, bio,
2500 mirror_num,
2501 bio_flags);
2502 goto out;
Josef Bacik334c16d2020-10-16 11:29:14 -04002503 } else {
2504 /*
2505 * Lookup bio sums does extra checks around whether we
2506 * need to csum or not, which is why we ignore skip_sum
2507 * here.
2508 */
Qu Wenruo62751932020-12-02 14:48:06 +08002509 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002510 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002511 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002512 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04002513 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05002514 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002515 /* csum items have already been cloned */
2516 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2517 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002518 /* we're doing a write, do the async checksumming */
Qu Wenruo8896a082020-10-21 14:24:53 +08002519 ret = btrfs_wq_submit_bio(inode, bio, mirror_num, bio_flags,
2520 0, btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01002521 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002522 } else if (!skip_sum) {
Nikolay Borisovbd242a02020-06-03 08:55:07 +03002523 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002524 if (ret)
2525 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002526 }
2527
Chris Mason0b86a832008-03-24 15:01:56 -04002528mapit:
Chris Mason08635ba2019-07-10 12:28:14 -07002529 ret = btrfs_map_bio(fs_info, bio, mirror_num);
Stefan Behrens61891922012-11-05 18:51:52 +01002530
2531out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002532 if (ret) {
2533 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002534 bio_endio(bio);
2535 }
Stefan Behrens61891922012-11-05 18:51:52 +01002536 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002537}
Chris Mason6885f302008-02-20 16:11:05 -05002538
Chris Masond352ac62008-09-29 15:18:18 -04002539/*
2540 * given a list of ordered sums record them in the inode. This happens
2541 * at IO completion time based on sums calculated at bio submission time.
2542 */
Nikolay Borisov510f85e2020-09-18 12:15:52 +03002543static int add_pending_csums(struct btrfs_trans_handle *trans,
2544 struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002545{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002546 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002547 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002548
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002549 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002550 trans->adding_csums = true;
Nikolay Borisov510f85e2020-09-18 12:15:52 +03002551 ret = btrfs_csum_file_blocks(trans, trans->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002552 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002553 if (ret)
2554 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002555 }
2556 return 0;
2557}
2558
Filipe Mananac3347302020-11-04 11:07:31 +00002559static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
2560 const u64 start,
2561 const u64 len,
2562 struct extent_state **cached_state)
2563{
2564 u64 search_start = start;
2565 const u64 end = start + len - 1;
2566
2567 while (search_start < end) {
2568 const u64 search_len = end - search_start + 1;
2569 struct extent_map *em;
2570 u64 em_len;
2571 int ret = 0;
2572
2573 em = btrfs_get_extent(inode, NULL, 0, search_start, search_len);
2574 if (IS_ERR(em))
2575 return PTR_ERR(em);
2576
2577 if (em->block_start != EXTENT_MAP_HOLE)
2578 goto next;
2579
2580 em_len = em->len;
2581 if (em->start < search_start)
2582 em_len -= search_start - em->start;
2583 if (em_len > search_len)
2584 em_len = search_len;
2585
2586 ret = set_extent_bit(&inode->io_tree, search_start,
2587 search_start + em_len - 1,
Nikolay Borisov1cab5e72020-11-05 11:08:00 +02002588 EXTENT_DELALLOC_NEW, 0, NULL, cached_state,
2589 GFP_NOFS, NULL);
Filipe Mananac3347302020-11-04 11:07:31 +00002590next:
2591 search_start = extent_map_end(em);
2592 free_extent_map(em);
2593 if (ret)
2594 return ret;
2595 }
2596 return 0;
2597}
2598
Nikolay Borisovc2566f22020-06-03 08:55:35 +03002599int btrfs_set_extent_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002600 unsigned int extra_bits,
Nikolay Borisov330a5822019-07-17 16:18:17 +03002601 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04002602{
Johannes Thumshirnfdb1e122018-12-05 15:23:04 +01002603 WARN_ON(PAGE_ALIGNED(end));
Filipe Mananac3347302020-11-04 11:07:31 +00002604
2605 if (start >= i_size_read(&inode->vfs_inode) &&
2606 !(inode->flags & BTRFS_INODE_PREALLOC)) {
2607 /*
2608 * There can't be any extents following eof in this case so just
2609 * set the delalloc new bit for the range directly.
2610 */
2611 extra_bits |= EXTENT_DELALLOC_NEW;
2612 } else {
2613 int ret;
2614
2615 ret = btrfs_find_new_delalloc_bytes(inode, start,
2616 end + 1 - start,
2617 cached_state);
2618 if (ret)
2619 return ret;
2620 }
2621
Nikolay Borisovc2566f22020-06-03 08:55:35 +03002622 return set_extent_delalloc(&inode->io_tree, start, end, extra_bits,
2623 cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002624}
2625
Chris Masond352ac62008-09-29 15:18:18 -04002626/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002627struct btrfs_writepage_fixup {
2628 struct page *page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002629 struct inode *inode;
Chris Mason247e7432008-07-17 12:53:51 -04002630 struct btrfs_work work;
2631};
2632
Christoph Hellwigb2950862008-12-02 09:54:17 -05002633static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002634{
2635 struct btrfs_writepage_fixup *fixup;
2636 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002637 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002638 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002639 struct page *page;
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002640 struct btrfs_inode *inode;
Chris Mason247e7432008-07-17 12:53:51 -04002641 u64 page_start;
2642 u64 page_end;
Chris Mason25f3c502020-01-21 11:51:42 -05002643 int ret = 0;
Josef Bacikf4b13632020-01-21 14:34:52 -05002644 bool free_delalloc_space = true;
Chris Mason247e7432008-07-17 12:53:51 -04002645
2646 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2647 page = fixup->page;
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002648 inode = BTRFS_I(fixup->inode);
Josef Bacikf4b13632020-01-21 14:34:52 -05002649 page_start = page_offset(page);
2650 page_end = page_offset(page) + PAGE_SIZE - 1;
2651
2652 /*
2653 * This is similar to page_mkwrite, we need to reserve the space before
2654 * we take the page lock.
2655 */
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002656 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
2657 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002658again:
Chris Mason247e7432008-07-17 12:53:51 -04002659 lock_page(page);
Chris Mason247e7432008-07-17 12:53:51 -04002660
Chris Mason25f3c502020-01-21 11:51:42 -05002661 /*
2662 * Before we queued this fixup, we took a reference on the page.
2663 * page->mapping may go NULL, but it shouldn't be moved to a different
2664 * address space.
2665 */
Josef Bacikf4b13632020-01-21 14:34:52 -05002666 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2667 /*
2668 * Unfortunately this is a little tricky, either
2669 *
2670 * 1) We got here and our page had already been dealt with and
2671 * we reserved our space, thus ret == 0, so we need to just
2672 * drop our space reservation and bail. This can happen the
2673 * first time we come into the fixup worker, or could happen
2674 * while waiting for the ordered extent.
2675 * 2) Our page was already dealt with, but we happened to get an
2676 * ENOSPC above from the btrfs_delalloc_reserve_space. In
2677 * this case we obviously don't have anything to release, but
2678 * because the page was already dealt with we don't want to
2679 * mark the page with an error, so make sure we're resetting
2680 * ret to 0. This is why we have this check _before_ the ret
2681 * check, because we do not want to have a surprise ENOSPC
2682 * when the page was already properly dealt with.
2683 */
2684 if (!ret) {
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002685 btrfs_delalloc_release_extents(inode, PAGE_SIZE);
2686 btrfs_delalloc_release_space(inode, data_reserved,
Josef Bacikf4b13632020-01-21 14:34:52 -05002687 page_start, PAGE_SIZE,
2688 true);
2689 }
2690 ret = 0;
Chris Mason25f3c502020-01-21 11:51:42 -05002691 goto out_page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002692 }
Chris Mason25f3c502020-01-21 11:51:42 -05002693
2694 /*
Josef Bacikf4b13632020-01-21 14:34:52 -05002695 * We can't mess with the page state unless it is locked, so now that
2696 * it is locked bail if we failed to make our space reservation.
Chris Mason25f3c502020-01-21 11:51:42 -05002697 */
Josef Bacikf4b13632020-01-21 14:34:52 -05002698 if (ret)
2699 goto out_page;
Chris Mason247e7432008-07-17 12:53:51 -04002700
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002701 lock_extent_bits(&inode->io_tree, page_start, page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002702
2703 /* already ordered? We're done */
Qu Wenruof57ad932021-04-07 19:22:13 +08002704 if (PageOrdered(page))
Josef Bacikf4b13632020-01-21 14:34:52 -05002705 goto out_reserved;
Chris Mason4a096752008-07-21 10:29:44 -04002706
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002707 ordered = btrfs_lookup_ordered_range(inode, page_start, PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002708 if (ordered) {
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002709 unlock_extent_cached(&inode->io_tree, page_start, page_end,
2710 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002711 unlock_page(page);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03002712 btrfs_start_ordered_extent(ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002713 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002714 goto again;
2715 }
Chris Mason247e7432008-07-17 12:53:51 -04002716
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002717 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03002718 &cached_state);
Chris Mason25f3c502020-01-21 11:51:42 -05002719 if (ret)
Filipe Manana53687002019-10-09 17:43:59 +01002720 goto out_reserved;
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002721
Chris Mason25f3c502020-01-21 11:51:42 -05002722 /*
2723 * Everything went as planned, we're now the owner of a dirty page with
2724 * delayed allocation bits set and space reserved for our COW
2725 * destination.
2726 *
2727 * The page was dirty when we started, nothing should have cleaned it.
2728 */
2729 BUG_ON(!PageDirty(page));
Josef Bacikf4b13632020-01-21 14:34:52 -05002730 free_delalloc_space = false;
Filipe Manana53687002019-10-09 17:43:59 +01002731out_reserved:
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002732 btrfs_delalloc_release_extents(inode, PAGE_SIZE);
Josef Bacikf4b13632020-01-21 14:34:52 -05002733 if (free_delalloc_space)
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002734 btrfs_delalloc_release_space(inode, data_reserved, page_start,
2735 PAGE_SIZE, true);
2736 unlock_extent_cached(&inode->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002737 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002738out_page:
Chris Mason25f3c502020-01-21 11:51:42 -05002739 if (ret) {
2740 /*
2741 * We hit ENOSPC or other errors. Update the mapping and page
2742 * to reflect the errors and clean the page.
2743 */
2744 mapping_set_error(page->mapping, ret);
2745 end_extent_writepage(page, ret, page_start, page_end);
2746 clear_page_dirty_for_io(page);
2747 SetPageError(page);
2748 }
2749 ClearPageChecked(page);
Chris Mason247e7432008-07-17 12:53:51 -04002750 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002751 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002752 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002753 extent_changeset_free(data_reserved);
Josef Bacikf4b13632020-01-21 14:34:52 -05002754 /*
2755 * As a precaution, do a delayed iput in case it would be the last iput
2756 * that could need flushing space. Recursing back to fixup worker would
2757 * deadlock.
2758 */
Nikolay Borisov65d87f72020-06-05 10:51:51 +03002759 btrfs_add_delayed_iput(&inode->vfs_inode);
Chris Mason247e7432008-07-17 12:53:51 -04002760}
2761
2762/*
2763 * There are a few paths in the higher layers of the kernel that directly
2764 * set the page dirty bit without asking the filesystem if it is a
2765 * good idea. This causes problems because we want to make sure COW
2766 * properly happens and the data=ordered rules are followed.
2767 *
Chris Masonc8b97812008-10-29 14:49:59 -04002768 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002769 * hasn't been properly setup for IO. We kick off an async process
2770 * to fix it up. The async helper will wait for ordered extents, set
2771 * the delalloc bit and make it safe to write the page.
2772 */
Nikolay Borisovd75855b2018-11-01 14:09:47 +02002773int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002774{
2775 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002776 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002777 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002778
Qu Wenruof57ad932021-04-07 19:22:13 +08002779 /* This page has ordered extent covering it already */
2780 if (PageOrdered(page))
Chris Mason247e7432008-07-17 12:53:51 -04002781 return 0;
2782
Chris Mason25f3c502020-01-21 11:51:42 -05002783 /*
2784 * PageChecked is set below when we create a fixup worker for this page,
2785 * don't try to create another one if we're already PageChecked()
2786 *
2787 * The extent_io writepage code will redirty the page if we send back
2788 * EAGAIN.
2789 */
Chris Mason247e7432008-07-17 12:53:51 -04002790 if (PageChecked(page))
2791 return -EAGAIN;
2792
2793 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2794 if (!fixup)
2795 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002796
Josef Bacikf4b13632020-01-21 14:34:52 -05002797 /*
2798 * We are already holding a reference to this inode from
2799 * write_cache_pages. We need to hold it because the space reservation
2800 * takes place outside of the page lock, and we can't trust
2801 * page->mapping outside of the page lock.
2802 */
2803 ihold(inode);
Chris Mason247e7432008-07-17 12:53:51 -04002804 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002805 get_page(page);
Omar Sandovala0cac0e2019-09-16 11:30:57 -07002806 btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002807 fixup->page = page;
Josef Bacikf4b13632020-01-21 14:34:52 -05002808 fixup->inode = inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002809 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Chris Mason25f3c502020-01-21 11:51:42 -05002810
2811 return -EAGAIN;
Chris Mason247e7432008-07-17 12:53:51 -04002812}
2813
Yan Zhengd899e052008-10-30 14:25:28 -04002814static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
Nikolay Borisovc553f942020-06-03 08:55:19 +03002815 struct btrfs_inode *inode, u64 file_pos,
Qu Wenruo9729f102020-06-10 09:04:41 +08002816 struct btrfs_file_extent_item *stack_fi,
Filipe Manana2766ff62020-11-04 11:07:34 +00002817 const bool update_inode_bytes,
Qu Wenruo9729f102020-06-10 09:04:41 +08002818 u64 qgroup_reserved)
Yan Zhengd899e052008-10-30 14:25:28 -04002819{
Nikolay Borisovc553f942020-06-03 08:55:19 +03002820 struct btrfs_root *root = inode->root;
Filipe Manana2766ff62020-11-04 11:07:34 +00002821 const u64 sectorsize = root->fs_info->sectorsize;
Yan Zhengd899e052008-10-30 14:25:28 -04002822 struct btrfs_path *path;
2823 struct extent_buffer *leaf;
2824 struct btrfs_key ins;
Qu Wenruo203f44c52020-06-10 09:04:40 +08002825 u64 disk_num_bytes = btrfs_stack_file_extent_disk_num_bytes(stack_fi);
2826 u64 disk_bytenr = btrfs_stack_file_extent_disk_bytenr(stack_fi);
2827 u64 num_bytes = btrfs_stack_file_extent_num_bytes(stack_fi);
2828 u64 ram_bytes = btrfs_stack_file_extent_ram_bytes(stack_fi);
Filipe Manana5893dfb2020-11-04 11:07:32 +00002829 struct btrfs_drop_extents_args drop_args = { 0 };
Yan Zhengd899e052008-10-30 14:25:28 -04002830 int ret;
2831
2832 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002833 if (!path)
2834 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002835
Chris Masona1ed8352009-09-11 12:27:37 -04002836 /*
2837 * we may be replacing one extent in the tree with another.
2838 * The new extent is pinned in the extent map, and we don't want
2839 * to drop it from the cache until it is completely in the btree.
2840 *
2841 * So, tell btrfs_drop_extents to leave this extent in the cache.
2842 * the caller is expected to unpin it and allow it to be merged
2843 * with the others.
2844 */
Filipe Manana5893dfb2020-11-04 11:07:32 +00002845 drop_args.path = path;
2846 drop_args.start = file_pos;
2847 drop_args.end = file_pos + num_bytes;
2848 drop_args.replace_extent = true;
2849 drop_args.extent_item_size = sizeof(*stack_fi);
2850 ret = btrfs_drop_extents(trans, root, inode, &drop_args);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002851 if (ret)
2852 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002853
Filipe Manana5893dfb2020-11-04 11:07:32 +00002854 if (!drop_args.extent_inserted) {
Nikolay Borisovc553f942020-06-03 08:55:19 +03002855 ins.objectid = btrfs_ino(inode);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002856 ins.offset = file_pos;
2857 ins.type = BTRFS_EXTENT_DATA_KEY;
2858
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002859 ret = btrfs_insert_empty_item(trans, root, path, &ins,
Qu Wenruo203f44c52020-06-10 09:04:40 +08002860 sizeof(*stack_fi));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002861 if (ret)
2862 goto out;
2863 }
Yan Zhengd899e052008-10-30 14:25:28 -04002864 leaf = path->nodes[0];
Qu Wenruo203f44c52020-06-10 09:04:40 +08002865 btrfs_set_stack_file_extent_generation(stack_fi, trans->transid);
2866 write_extent_buffer(leaf, stack_fi,
2867 btrfs_item_ptr_offset(leaf, path->slots[0]),
2868 sizeof(struct btrfs_file_extent_item));
Chris Masonb9473432009-03-13 11:00:37 -04002869
Yan Zhengd899e052008-10-30 14:25:28 -04002870 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002871 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002872
Filipe Manana2766ff62020-11-04 11:07:34 +00002873 /*
2874 * If we dropped an inline extent here, we know the range where it is
2875 * was not marked with the EXTENT_DELALLOC_NEW bit, so we update the
David Sterba1a9fd412021-05-21 17:42:23 +02002876 * number of bytes only for that range containing the inline extent.
Filipe Manana2766ff62020-11-04 11:07:34 +00002877 * The remaining of the range will be processed when clearning the
2878 * EXTENT_DELALLOC_BIT bit through the ordered extent completion.
2879 */
2880 if (file_pos == 0 && !IS_ALIGNED(drop_args.bytes_found, sectorsize)) {
2881 u64 inline_size = round_down(drop_args.bytes_found, sectorsize);
2882
2883 inline_size = drop_args.bytes_found - inline_size;
2884 btrfs_update_inode_bytes(inode, sectorsize, inline_size);
2885 drop_args.bytes_found -= inline_size;
2886 num_bytes -= sectorsize;
2887 }
2888
2889 if (update_inode_bytes)
2890 btrfs_update_inode_bytes(inode, num_bytes, drop_args.bytes_found);
Yan Zhengd899e052008-10-30 14:25:28 -04002891
2892 ins.objectid = disk_bytenr;
2893 ins.offset = disk_num_bytes;
2894 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002895
Nikolay Borisovc553f942020-06-03 08:55:19 +03002896 ret = btrfs_inode_set_file_extent_range(inode, file_pos, ram_bytes);
Josef Bacik9ddc9592020-01-17 09:02:22 -05002897 if (ret)
2898 goto out;
2899
Nikolay Borisovc553f942020-06-03 08:55:19 +03002900 ret = btrfs_alloc_reserved_file_extent(trans, root, btrfs_ino(inode),
Qu Wenruo9729f102020-06-10 09:04:41 +08002901 file_pos, qgroup_reserved, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002902out:
Yan Zhengd899e052008-10-30 14:25:28 -04002903 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002904
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002905 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002906}
2907
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002908static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002909 u64 start, u64 len)
2910{
David Sterba32da53862019-10-29 19:20:18 +01002911 struct btrfs_block_group *cache;
Miao Xiee570fd22014-06-19 10:42:50 +08002912
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002913 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002914 ASSERT(cache);
2915
2916 spin_lock(&cache->lock);
2917 cache->delalloc_bytes -= len;
2918 spin_unlock(&cache->lock);
2919
2920 btrfs_put_block_group(cache);
2921}
2922
Qu Wenruo203f44c52020-06-10 09:04:40 +08002923static int insert_ordered_extent_file_extent(struct btrfs_trans_handle *trans,
Qu Wenruo203f44c52020-06-10 09:04:40 +08002924 struct btrfs_ordered_extent *oe)
2925{
2926 struct btrfs_file_extent_item stack_fi;
2927 u64 logical_len;
Filipe Manana2766ff62020-11-04 11:07:34 +00002928 bool update_inode_bytes;
Qu Wenruo203f44c52020-06-10 09:04:40 +08002929
2930 memset(&stack_fi, 0, sizeof(stack_fi));
2931 btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_REG);
2932 btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, oe->disk_bytenr);
2933 btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi,
2934 oe->disk_num_bytes);
2935 if (test_bit(BTRFS_ORDERED_TRUNCATED, &oe->flags))
2936 logical_len = oe->truncated_len;
2937 else
2938 logical_len = oe->num_bytes;
2939 btrfs_set_stack_file_extent_num_bytes(&stack_fi, logical_len);
2940 btrfs_set_stack_file_extent_ram_bytes(&stack_fi, logical_len);
2941 btrfs_set_stack_file_extent_compression(&stack_fi, oe->compress_type);
2942 /* Encryption and other encoding is reserved and all 0 */
2943
Filipe Manana2766ff62020-11-04 11:07:34 +00002944 /*
2945 * For delalloc, when completing an ordered extent we update the inode's
2946 * bytes when clearing the range in the inode's io tree, so pass false
2947 * as the argument 'update_inode_bytes' to insert_reserved_file_extent(),
2948 * except if the ordered extent was truncated.
2949 */
2950 update_inode_bytes = test_bit(BTRFS_ORDERED_DIRECT, &oe->flags) ||
2951 test_bit(BTRFS_ORDERED_TRUNCATED, &oe->flags);
2952
Nikolay Borisov3c38c872020-09-18 12:15:51 +03002953 return insert_reserved_file_extent(trans, BTRFS_I(oe->inode),
2954 oe->file_offset, &stack_fi,
Filipe Manana2766ff62020-11-04 11:07:34 +00002955 update_inode_bytes, oe->qgroup_rsv);
Qu Wenruo203f44c52020-06-10 09:04:40 +08002956}
2957
2958/*
2959 * As ordered data IO finishes, this gets called so we can finish
Chris Masond352ac62008-09-29 15:18:18 -04002960 * an ordered extent if the range of bytes in the file it covers are
2961 * fully written.
2962 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002963static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002964{
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02002965 struct btrfs_inode *inode = BTRFS_I(ordered_extent->inode);
2966 struct btrfs_root *root = inode->root;
2967 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002968 struct btrfs_trans_handle *trans = NULL;
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02002969 struct extent_io_tree *io_tree = &inode->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002970 struct extent_state *cached_state = NULL;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002971 u64 start, end;
Li Zefan261507a02010-12-17 14:21:50 +08002972 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002973 int ret = 0;
Omar Sandovalbffe6332019-12-02 17:34:19 -08002974 u64 logical_len = ordered_extent->num_bytes;
Nikolay Borisov8d510122019-10-08 20:43:06 +03002975 bool freespace_inode;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002976 bool truncated = false;
Josef Bacik49940bd2018-10-11 15:54:21 -04002977 bool clear_reserved_extent = true;
Filipe Manana2766ff62020-11-04 11:07:34 +00002978 unsigned int clear_bits = EXTENT_DEFRAG;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002979
Omar Sandovalbffe6332019-12-02 17:34:19 -08002980 start = ordered_extent->file_offset;
2981 end = start + ordered_extent->num_bytes - 1;
2982
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002983 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2984 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2985 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
Filipe Manana2766ff62020-11-04 11:07:34 +00002986 clear_bits |= EXTENT_DELALLOC_NEW;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002987
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02002988 freespace_inode = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002989
Josef Bacik5fd02042012-05-02 14:00:54 -04002990 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2991 ret = -EIO;
2992 goto out;
2993 }
2994
Christoph Hellwigc7c3a6d2021-07-22 09:53:59 +02002995 if (ordered_extent->bdev)
Naohiro Aotad8e3fb12021-02-04 19:22:05 +09002996 btrfs_rewrite_logical_zoned(ordered_extent);
2997
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02002998 btrfs_free_io_failure_record(inode, start, end);
Miao Xief6124962014-09-12 18:44:04 +08002999
Josef Bacik77cef2e2013-08-29 13:57:21 -04003000 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
3001 truncated = true;
3002 logical_len = ordered_extent->truncated_len;
3003 /* Truncated the entire extent, don't bother adding */
3004 if (!logical_len)
3005 goto out;
3006 }
3007
Yan, Zhengc2167752009-11-12 09:34:21 +00003008 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003009 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08003010
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003011 btrfs_inode_safe_disk_i_size_write(inode, 0);
Nikolay Borisov8d510122019-10-08 20:43:06 +03003012 if (freespace_inode)
3013 trans = btrfs_join_transaction_spacecache(root);
Josef Bacik6c760c02012-11-09 10:53:21 -05003014 else
3015 trans = btrfs_join_transaction(root);
3016 if (IS_ERR(trans)) {
3017 ret = PTR_ERR(trans);
3018 trans = NULL;
3019 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00003020 }
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003021 trans->block_rsv = &inode->block_rsv;
Nikolay Borisov729f7962020-11-02 16:49:06 +02003022 ret = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik6c760c02012-11-09 10:53:21 -05003023 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003024 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00003025 goto out;
3026 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003027
Filipe Manana2766ff62020-11-04 11:07:34 +00003028 clear_bits |= EXTENT_LOCKED;
Omar Sandovalbffe6332019-12-02 17:34:19 -08003029 lock_extent_bits(io_tree, start, end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003030
Nikolay Borisov8d510122019-10-08 20:43:06 +03003031 if (freespace_inode)
3032 trans = btrfs_join_transaction_spacecache(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003033 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003034 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003035 if (IS_ERR(trans)) {
3036 ret = PTR_ERR(trans);
3037 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003038 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003039 }
Chris Masona79b7d42014-05-22 16:18:52 -07003040
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003041 trans->block_rsv = &inode->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003042
Chris Masonc8b97812008-10-29 14:49:59 -04003043 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003044 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003045 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003046 BUG_ON(compress_type);
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003047 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04003048 ordered_extent->file_offset,
3049 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003050 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003051 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003052 BUG_ON(root == fs_info->tree_root);
Nikolay Borisov3c38c872020-09-18 12:15:51 +03003053 ret = insert_ordered_extent_file_extent(trans, ordered_extent);
Josef Bacik49940bd2018-10-11 15:54:21 -04003054 if (!ret) {
3055 clear_reserved_extent = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003056 btrfs_release_delalloc_bytes(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08003057 ordered_extent->disk_bytenr,
3058 ordered_extent->disk_num_bytes);
Josef Bacik49940bd2018-10-11 15:54:21 -04003059 }
Yan Zhengd899e052008-10-30 14:25:28 -04003060 }
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003061 unpin_extent_cache(&inode->extent_tree, ordered_extent->file_offset,
Omar Sandovalbffe6332019-12-02 17:34:19 -08003062 ordered_extent->num_bytes, trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003063 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003064 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003065 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003066 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003067
Nikolay Borisov510f85e2020-09-18 12:15:52 +03003068 ret = add_pending_csums(trans, &ordered_extent->list);
Nikolay Borisovac01f262018-01-08 10:59:43 +02003069 if (ret) {
3070 btrfs_abort_transaction(trans, ret);
3071 goto out;
3072 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003073
Filipe Manana2766ff62020-11-04 11:07:34 +00003074 /*
3075 * If this is a new delalloc range, clear its new delalloc flag to
3076 * update the inode's number of bytes. This needs to be done first
3077 * before updating the inode item.
3078 */
3079 if ((clear_bits & EXTENT_DELALLOC_NEW) &&
3080 !test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags))
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003081 clear_extent_bit(&inode->io_tree, start, end,
Filipe Manana2766ff62020-11-04 11:07:34 +00003082 EXTENT_DELALLOC_NEW | EXTENT_ADD_INODE_BYTES,
3083 0, 0, &cached_state);
3084
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003085 btrfs_inode_safe_disk_i_size_write(inode, 0);
Nikolay Borisov729f7962020-11-02 16:49:06 +02003086 ret = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik6c760c02012-11-09 10:53:21 -05003087 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003088 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003089 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003090 }
3091 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003092out:
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003093 clear_extent_bit(&inode->io_tree, start, end, clear_bits,
Omar Sandovalbffe6332019-12-02 17:34:19 -08003094 (clear_bits & EXTENT_LOCKED) ? 1 : 0, 0,
Omar Sandoval313facc2019-12-02 17:34:18 -08003095 &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003096
Miao Xiea698d0752012-09-20 01:51:59 -06003097 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003098 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003099
Josef Bacik77cef2e2013-08-29 13:57:21 -04003100 if (ret || truncated) {
Omar Sandovalbffe6332019-12-02 17:34:19 -08003101 u64 unwritten_start = start;
Josef Bacik77cef2e2013-08-29 13:57:21 -04003102
Josef Bacikd61bec02021-05-19 09:38:27 -04003103 /*
3104 * If we failed to finish this ordered extent for any reason we
3105 * need to make sure BTRFS_ORDERED_IOERR is set on the ordered
3106 * extent, and mark the inode with the error if it wasn't
3107 * already set. Any error during writeback would have already
3108 * set the mapping error, so we need to set it if we're the ones
3109 * marking this ordered extent as failed.
3110 */
3111 if (ret && !test_and_set_bit(BTRFS_ORDERED_IOERR,
3112 &ordered_extent->flags))
3113 mapping_set_error(ordered_extent->inode->i_mapping, -EIO);
3114
Josef Bacik77cef2e2013-08-29 13:57:21 -04003115 if (truncated)
Omar Sandovalbffe6332019-12-02 17:34:19 -08003116 unwritten_start += logical_len;
3117 clear_extent_uptodate(io_tree, unwritten_start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003118
3119 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003120 btrfs_drop_extent_cache(inode, unwritten_start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003121
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003122 /*
3123 * If the ordered extent had an IOERR or something else went
3124 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003125 * back to the allocator. We only free the extent in the
3126 * truncated case if we didn't write out the extent at all.
Josef Bacik49940bd2018-10-11 15:54:21 -04003127 *
3128 * If we made it past insert_reserved_file_extent before we
3129 * errored out then we don't need to do this as the accounting
3130 * has already been done.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003131 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003132 if ((ret || !logical_len) &&
Josef Bacik49940bd2018-10-11 15:54:21 -04003133 clear_reserved_extent &&
Josef Bacik77cef2e2013-08-29 13:57:21 -04003134 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02003135 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
3136 /*
3137 * Discard the range before returning it back to the
3138 * free space pool
3139 */
Dennis Zhou46b27f52019-12-13 16:22:11 -08003140 if (ret && btrfs_test_opt(fs_info, DISCARD_SYNC))
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02003141 btrfs_discard_extent(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08003142 ordered_extent->disk_bytenr,
3143 ordered_extent->disk_num_bytes,
3144 NULL);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003145 btrfs_free_reserved_extent(fs_info,
Omar Sandovalbffe6332019-12-02 17:34:19 -08003146 ordered_extent->disk_bytenr,
3147 ordered_extent->disk_num_bytes, 1);
Nikolay Borisov4eaaec22019-11-21 14:03:29 +02003148 }
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003149 }
3150
Josef Bacik5fd02042012-05-02 14:00:54 -04003151 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003152 * This needs to be done to make sure anybody waiting knows we are done
3153 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003154 */
Nikolay Borisov72e7e6e2020-11-02 16:48:56 +02003155 btrfs_remove_ordered_extent(inode, ordered_extent);
Josef Bacik5fd02042012-05-02 14:00:54 -04003156
Chris Masone6dcd2d2008-07-17 12:53:50 -04003157 /* once for us */
3158 btrfs_put_ordered_extent(ordered_extent);
3159 /* once for the tree */
3160 btrfs_put_ordered_extent(ordered_extent);
3161
Josef Bacik5fd02042012-05-02 14:00:54 -04003162 return ret;
3163}
3164
3165static void finish_ordered_fn(struct btrfs_work *work)
3166{
3167 struct btrfs_ordered_extent *ordered_extent;
3168 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3169 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003170}
3171
Qu Wenruo38a39ac72021-04-08 20:32:27 +08003172void btrfs_writepage_endio_finish_ordered(struct btrfs_inode *inode,
3173 struct page *page, u64 start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003174 u64 end, int uptodate)
Chris Mason211f90e2008-07-18 11:56:15 -04003175{
Qu Wenruo38a39ac72021-04-08 20:32:27 +08003176 trace_btrfs_writepage_end_io_hook(inode, start, end, uptodate);
liubo1abe9b82011-03-24 11:18:59 +00003177
Qu Wenruoe65f1522021-04-01 15:15:06 +08003178 btrfs_mark_ordered_io_finished(inode, page, start, end + 1 - start,
3179 finish_ordered_fn, uptodate);
Chris Mason211f90e2008-07-18 11:56:15 -04003180}
3181
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003182/*
3183 * check_data_csum - verify checksum of one sector of uncompressed data
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003184 * @inode: inode
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003185 * @io_bio: btrfs_io_bio which contains the csum
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003186 * @bio_offset: offset to the beginning of the bio (in bytes)
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003187 * @page: page where is the data to be verified
3188 * @pgoff: offset inside the page
Omar Sandovalc1d6abd2021-03-16 12:43:00 -07003189 * @start: logical offset in the file
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003190 *
3191 * The length of such check is always one sector size.
3192 */
Omar Sandoval47df7762020-04-16 14:46:17 -07003193static int check_data_csum(struct inode *inode, struct btrfs_io_bio *io_bio,
Omar Sandovalc1d6abd2021-03-16 12:43:00 -07003194 u32 bio_offset, struct page *page, u32 pgoff,
3195 u64 start)
Miao Xiedc380ae2014-09-12 18:43:55 +08003196{
Johannes Thumshirnd5178572019-06-03 16:58:57 +02003197 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3198 SHASH_DESC_ON_STACK(shash, fs_info->csum_shash);
Miao Xiedc380ae2014-09-12 18:43:55 +08003199 char *kaddr;
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003200 u32 len = fs_info->sectorsize;
David Sterba223486c2020-07-02 11:27:30 +02003201 const u32 csum_size = fs_info->csum_size;
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003202 unsigned int offset_sectors;
Johannes Thumshirnd5178572019-06-03 16:58:57 +02003203 u8 *csum_expected;
3204 u8 csum[BTRFS_CSUM_SIZE];
Miao Xiedc380ae2014-09-12 18:43:55 +08003205
Qu Wenruo265d4ac2020-10-21 14:24:54 +08003206 ASSERT(pgoff + len <= PAGE_SIZE);
3207
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003208 offset_sectors = bio_offset >> fs_info->sectorsize_bits;
3209 csum_expected = ((u8 *)io_bio->csum) + offset_sectors * csum_size;
Miao Xiedc380ae2014-09-12 18:43:55 +08003210
3211 kaddr = kmap_atomic(page);
Johannes Thumshirnd5178572019-06-03 16:58:57 +02003212 shash->tfm = fs_info->csum_shash;
3213
Eric Biggersfd080012020-04-30 23:51:59 -07003214 crypto_shash_digest(shash, kaddr + pgoff, len, csum);
Johannes Thumshirnd5178572019-06-03 16:58:57 +02003215
3216 if (memcmp(csum, csum_expected, csum_size))
Miao Xiedc380ae2014-09-12 18:43:55 +08003217 goto zeroit;
3218
3219 kunmap_atomic(kaddr);
3220 return 0;
3221zeroit:
Omar Sandovalc1d6abd2021-03-16 12:43:00 -07003222 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
3223 io_bio->mirror_num);
Nikolay Borisov814723e2020-07-02 15:23:32 +03003224 if (io_bio->device)
3225 btrfs_dev_stat_inc_and_print(io_bio->device,
3226 BTRFS_DEV_STAT_CORRUPTION_ERRS);
Miao Xiedc380ae2014-09-12 18:43:55 +08003227 memset(kaddr + pgoff, 1, len);
3228 flush_dcache_page(page);
3229 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003230 return -EIO;
3231}
3232
Chris Masond352ac62008-09-29 15:18:18 -04003233/*
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003234 * When reads are done, we need to check csums to verify the data is correct.
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003235 * if there's a match, we allow the bio to finish. If not, the code in
3236 * extent_io.c will try to find good copies for us.
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08003237 *
3238 * @bio_offset: offset to the beginning of the bio (in bytes)
3239 * @start: file offset of the range start
3240 * @end: file offset of the range end (inclusive)
Qu Wenruo08508fe2021-05-03 10:08:54 +08003241 *
3242 * Return a bitmap where bit set means a csum mismatch, and bit not set means
3243 * csum match.
Chris Masond352ac62008-09-29 15:18:18 -04003244 */
Qu Wenruo08508fe2021-05-03 10:08:54 +08003245unsigned int btrfs_verify_data_csum(struct btrfs_io_bio *io_bio, u32 bio_offset,
3246 struct page *page, u64 start, u64 end)
Chris Mason07157aa2007-08-30 08:50:51 -04003247{
Chris Mason07157aa2007-08-30 08:50:51 -04003248 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003249 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003250 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruof44cf412020-12-02 14:47:59 +08003251 const u32 sectorsize = root->fs_info->sectorsize;
3252 u32 pg_off;
Qu Wenruo08508fe2021-05-03 10:08:54 +08003253 unsigned int result = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003254
Chris Masond20f7042008-12-08 16:58:54 -05003255 if (PageChecked(page)) {
3256 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003257 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003258 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003259
3260 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003261 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003262
Josef Bacik42437a62020-10-16 11:29:18 -04003263 if (!root->fs_info->csum_root)
3264 return 0;
3265
Yan Zheng17d217f2008-12-12 10:03:38 -05003266 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003267 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003268 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003269 return 0;
3270 }
3271
Qu Wenruof44cf412020-12-02 14:47:59 +08003272 ASSERT(page_offset(page) <= start &&
3273 end <= page_offset(page) + PAGE_SIZE - 1);
3274 for (pg_off = offset_in_page(start);
3275 pg_off < offset_in_page(end);
3276 pg_off += sectorsize, bio_offset += sectorsize) {
3277 int ret;
3278
Omar Sandovalc1d6abd2021-03-16 12:43:00 -07003279 ret = check_data_csum(inode, io_bio, bio_offset, page, pg_off,
3280 page_offset(page) + pg_off);
Qu Wenruo08508fe2021-05-03 10:08:54 +08003281 if (ret < 0) {
3282 const int nr_bit = (pg_off - offset_in_page(start)) >>
3283 root->fs_info->sectorsize_bits;
3284
3285 result |= (1U << nr_bit);
3286 }
Qu Wenruof44cf412020-12-02 14:47:59 +08003287 }
Qu Wenruo08508fe2021-05-03 10:08:54 +08003288 return result;
Chris Mason07157aa2007-08-30 08:50:51 -04003289}
Chris Masonb888db22007-08-27 16:49:44 -04003290
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003291/*
3292 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3293 *
3294 * @inode: The inode we want to perform iput on
3295 *
3296 * This function uses the generic vfs_inode::i_count to track whether we should
3297 * just decrement it (in case it's > 1) or if this is the last iput then link
3298 * the inode to the delayed iput machinery. Delayed iputs are processed at
3299 * transaction commit time/superblock commit/cleaner kthread.
3300 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003301void btrfs_add_delayed_iput(struct inode *inode)
3302{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003303 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003304 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003305
3306 if (atomic_add_unless(&inode->i_count, -1, 1))
3307 return;
3308
Josef Bacik034f7842018-12-03 11:06:52 -05003309 atomic_inc(&fs_info->nr_delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003310 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003311 ASSERT(list_empty(&binode->delayed_iput));
3312 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003313 spin_unlock(&fs_info->delayed_iput_lock);
Josef Bacikfd340d02019-01-11 10:21:02 -05003314 if (!test_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags))
3315 wake_up_process(fs_info->cleaner_kthread);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003316}
3317
Josef Bacik63611e72019-06-18 10:59:18 -04003318static void run_delayed_iput_locked(struct btrfs_fs_info *fs_info,
3319 struct btrfs_inode *inode)
3320{
3321 list_del_init(&inode->delayed_iput);
3322 spin_unlock(&fs_info->delayed_iput_lock);
3323 iput(&inode->vfs_inode);
3324 if (atomic_dec_and_test(&fs_info->nr_delayed_iputs))
3325 wake_up(&fs_info->delayed_iputs_wait);
3326 spin_lock(&fs_info->delayed_iput_lock);
3327}
3328
3329static void btrfs_run_delayed_iput(struct btrfs_fs_info *fs_info,
3330 struct btrfs_inode *inode)
3331{
3332 if (!list_empty(&inode->delayed_iput)) {
3333 spin_lock(&fs_info->delayed_iput_lock);
3334 if (!list_empty(&inode->delayed_iput))
3335 run_delayed_iput_locked(fs_info, inode);
3336 spin_unlock(&fs_info->delayed_iput_lock);
3337 }
3338}
3339
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003340void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003341{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003342
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003343 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003344 while (!list_empty(&fs_info->delayed_iputs)) {
3345 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003346
David Sterba8089fe62015-11-19 14:15:51 +01003347 inode = list_first_entry(&fs_info->delayed_iputs,
3348 struct btrfs_inode, delayed_iput);
Josef Bacik63611e72019-06-18 10:59:18 -04003349 run_delayed_iput_locked(fs_info, inode);
Josef Bacik71795ee2021-04-29 10:51:34 -04003350 cond_resched_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003351 }
David Sterba8089fe62015-11-19 14:15:51 +01003352 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003353}
3354
Josef Bacik034f7842018-12-03 11:06:52 -05003355/**
Nikolay Borisov26396312021-01-22 11:57:59 +02003356 * Wait for flushing all delayed iputs
3357 *
3358 * @fs_info: the filesystem
Josef Bacik034f7842018-12-03 11:06:52 -05003359 *
3360 * This will wait on any delayed iputs that are currently running with KILLABLE
3361 * set. Once they are all done running we will return, unless we are killed in
3362 * which case we return EINTR. This helps in user operations like fallocate etc
3363 * that might get blocked on the iputs.
Nikolay Borisov26396312021-01-22 11:57:59 +02003364 *
3365 * Return EINTR if we were killed, 0 if nothing's pending
Josef Bacik034f7842018-12-03 11:06:52 -05003366 */
3367int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info)
3368{
3369 int ret = wait_event_killable(fs_info->delayed_iputs_wait,
3370 atomic_read(&fs_info->nr_delayed_iputs) == 0);
3371 if (ret)
3372 return -EINTR;
3373 return 0;
3374}
3375
Yan, Zhengd68fc572010-05-16 10:49:58 -04003376/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003377 * This creates an orphan entry for the given inode in case something goes wrong
3378 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04003379 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003380int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07003381 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003382{
Yan, Zhengd68fc572010-05-16 10:49:58 -04003383 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003384
Omar Sandoval27919062018-05-11 13:13:37 -07003385 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3386 if (ret && ret != -EEXIST) {
3387 btrfs_abort_transaction(trans, ret);
3388 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003389 }
3390
Yan, Zhengd68fc572010-05-16 10:49:58 -04003391 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003392}
3393
3394/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003395 * We have done the delete so we can go ahead and remove the orphan item for
3396 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04003397 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003398static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003399 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003400{
Omar Sandoval27919062018-05-11 13:13:37 -07003401 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003402}
3403
3404/*
3405 * this cleans up any orphans that may be left on the list from the last use
3406 * of this root.
3407 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003408int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003409{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003410 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003411 struct btrfs_path *path;
3412 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003413 struct btrfs_key key, found_key;
3414 struct btrfs_trans_handle *trans;
3415 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003416 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003417 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003418
Yan, Zhengd68fc572010-05-16 10:49:58 -04003419 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003420 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003421
3422 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003423 if (!path) {
3424 ret = -ENOMEM;
3425 goto out;
3426 }
David Sterbae4058b52015-11-27 16:31:35 +01003427 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003428
3429 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003430 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003431 key.offset = (u64)-1;
3432
Josef Bacik7b128762008-07-24 12:17:14 -04003433 while (1) {
3434 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003435 if (ret < 0)
3436 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003437
3438 /*
3439 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003440 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003441 * find the key and see if we have stuff that matches
3442 */
3443 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003444 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003445 if (path->slots[0] == 0)
3446 break;
3447 path->slots[0]--;
3448 }
3449
3450 /* pull out the item */
3451 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003452 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3453
3454 /* make sure the item matches what we want */
3455 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3456 break;
David Sterba962a2982014-06-04 18:41:45 +02003457 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003458 break;
3459
3460 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003461 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003462
3463 /*
3464 * this is where we are basically btrfs_lookup, without the
3465 * crossing root thing. we store the inode number in the
3466 * offset of the orphan item.
3467 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003468
3469 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003470 btrfs_err(fs_info,
3471 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003472 ret = -EINVAL;
3473 goto out;
3474 }
3475
3476 last_objectid = found_key.offset;
3477
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003478 found_key.objectid = found_key.offset;
3479 found_key.type = BTRFS_INODE_ITEM_KEY;
3480 found_key.offset = 0;
David Sterba0202e832020-05-15 19:35:59 +02003481 inode = btrfs_iget(fs_info->sb, last_objectid, root);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303482 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003483 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003484 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003485
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003486 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003487 struct btrfs_root *dead_root;
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003488 int is_dead_root = 0;
3489
3490 /*
Filipe Manana0c0218e2021-03-16 16:54:13 +00003491 * This is an orphan in the tree root. Currently these
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003492 * could come from 2 sources:
Filipe Manana0c0218e2021-03-16 16:54:13 +00003493 * a) a root (snapshot/subvolume) deletion in progress
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003494 * b) a free space cache inode
Filipe Manana0c0218e2021-03-16 16:54:13 +00003495 * We need to distinguish those two, as the orphan item
3496 * for a root must not get deleted before the deletion
3497 * of the snapshot/subvolume's tree completes.
3498 *
3499 * btrfs_find_orphan_roots() ran before us, which has
3500 * found all deleted roots and loaded them into
3501 * fs_info->fs_roots_radix. So here we can find if an
3502 * orphan item corresponds to a deleted root by looking
3503 * up the root from that radix tree.
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003504 */
Robbie Koa619b3c2020-05-07 10:54:40 +08003505
3506 spin_lock(&fs_info->fs_roots_radix_lock);
3507 dead_root = radix_tree_lookup(&fs_info->fs_roots_radix,
3508 (unsigned long)found_key.objectid);
3509 if (dead_root && btrfs_root_refs(&dead_root->root_item) == 0)
3510 is_dead_root = 1;
3511 spin_unlock(&fs_info->fs_roots_radix_lock);
3512
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003513 if (is_dead_root) {
3514 /* prevent this orphan from being found again */
3515 key.offset = found_key.objectid - 1;
3516 continue;
3517 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003518
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003519 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003520
Josef Bacika8c9e572011-09-21 16:55:59 -04003521 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003522 * If we have an inode with links, there are a couple of
3523 * possibilities. Old kernels (before v3.12) used to create an
3524 * orphan item for truncate indicating that there were possibly
3525 * extent items past i_size that needed to be deleted. In v3.12,
3526 * truncate was changed to update i_size in sync with the extent
3527 * items, but the (useless) orphan item was still created. Since
3528 * v4.18, we don't create the orphan item for truncate at all.
3529 *
3530 * So, this item could mean that we need to do a truncate, but
3531 * only if this filesystem was last used on a pre-v3.12 kernel
3532 * and was not cleanly unmounted. The odds of that are quite
3533 * slim, and it's a pain to do the truncate now, so just delete
3534 * the orphan item.
3535 *
3536 * It's also possible that this orphan item was supposed to be
3537 * deleted but wasn't. The inode number may have been reused,
3538 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003539 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003540 if (ret == -ENOENT || inode->i_nlink) {
3541 if (!ret)
3542 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003543 trans = btrfs_start_transaction(root, 1);
3544 if (IS_ERR(trans)) {
3545 ret = PTR_ERR(trans);
3546 goto out;
3547 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003548 btrfs_debug(fs_info, "auto deleting %Lu",
3549 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003550 ret = btrfs_del_orphan_item(trans, root,
3551 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003552 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003553 if (ret)
3554 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003555 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003556 }
Josef Bacik7b128762008-07-24 12:17:14 -04003557
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003558 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003559
3560 /* this will do delete_inode and everything for us */
3561 iput(inode);
3562 }
Miao Xie3254c872011-11-10 20:45:05 -05003563 /* release the path since we're done with it */
3564 btrfs_release_path(path);
3565
Yan, Zhengd68fc572010-05-16 10:49:58 -04003566 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3567
Omar Sandovala575cee2018-05-11 13:13:38 -07003568 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003569 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003570 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003571 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003572 }
Josef Bacik7b128762008-07-24 12:17:14 -04003573
3574 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003575 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003576
3577out:
3578 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003579 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003580 btrfs_free_path(path);
3581 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003582}
3583
Chris Masond352ac62008-09-29 15:18:18 -04003584/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003585 * very simple check to peek ahead in the leaf looking for xattrs. If we
3586 * don't find any xattrs, we know there can't be any acls.
3587 *
3588 * slot is the slot the inode is in, objectid is the objectid of the inode
3589 */
3590static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003591 int slot, u64 objectid,
3592 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003593{
3594 u32 nritems = btrfs_header_nritems(leaf);
3595 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003596 static u64 xattr_access = 0;
3597 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003598 int scanned = 0;
3599
Josef Bacikf23b5a52013-06-19 10:16:26 -04003600 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003601 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3602 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3603 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3604 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003605 }
3606
Chris Mason46a53cc2009-04-27 11:47:50 -04003607 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003608 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003609 while (slot < nritems) {
3610 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3611
3612 /* we found a different objectid, there must not be acls */
3613 if (found_key.objectid != objectid)
3614 return 0;
3615
3616 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003617 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003618 if (*first_xattr_slot == -1)
3619 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003620 if (found_key.offset == xattr_access ||
3621 found_key.offset == xattr_default)
3622 return 1;
3623 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003624
3625 /*
3626 * we found a key greater than an xattr key, there can't
3627 * be any acls later on
3628 */
3629 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3630 return 0;
3631
3632 slot++;
3633 scanned++;
3634
3635 /*
3636 * it goes inode, inode backrefs, xattrs, extents,
3637 * so if there are a ton of hard links to an inode there can
3638 * be a lot of backrefs. Don't waste time searching too hard,
3639 * this is just an optimization
3640 */
3641 if (scanned >= 8)
3642 break;
3643 }
3644 /* we hit the end of the leaf before we found an xattr or
3645 * something larger than an xattr. We have to assume the inode
3646 * has acls
3647 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003648 if (*first_xattr_slot == -1)
3649 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003650 return 1;
3651}
3652
3653/*
Chris Masond352ac62008-09-29 15:18:18 -04003654 * read an inode from the btree into the in-memory inode
3655 */
Filipe Manana4222ea72018-10-24 10:13:03 +01003656static int btrfs_read_locked_inode(struct inode *inode,
3657 struct btrfs_path *in_path)
Chris Mason39279cc2007-06-12 06:35:45 -04003658{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003659 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Filipe Manana4222ea72018-10-24 10:13:03 +01003660 struct btrfs_path *path = in_path;
Chris Mason5f39d392007-10-15 16:14:19 -04003661 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003662 struct btrfs_inode_item *inode_item;
3663 struct btrfs_root *root = BTRFS_I(inode)->root;
3664 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003665 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003666 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003667 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003668 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003669 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003670 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003671
3672 ret = btrfs_fill_inode(inode, &rdev);
3673 if (!ret)
3674 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003675
Filipe Manana4222ea72018-10-24 10:13:03 +01003676 if (!path) {
3677 path = btrfs_alloc_path();
3678 if (!path)
3679 return -ENOMEM;
3680 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003681
Chris Mason39279cc2007-06-12 06:35:45 -04003682 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003683
Chris Mason39279cc2007-06-12 06:35:45 -04003684 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003685 if (ret) {
Filipe Manana4222ea72018-10-24 10:13:03 +01003686 if (path != in_path)
3687 btrfs_free_path(path);
Al Virof5b3a412018-07-29 23:04:51 +01003688 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003689 }
Chris Mason39279cc2007-06-12 06:35:45 -04003690
Chris Mason5f39d392007-10-15 16:14:19 -04003691 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003692
3693 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003694 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003695
Chris Mason5f39d392007-10-15 16:14:19 -04003696 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3697 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003698 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003699 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003700 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3701 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003702 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Josef Bacik41a2ee72020-01-17 09:02:21 -05003703 btrfs_inode_set_file_extent_range(BTRFS_I(inode), 0,
3704 round_up(i_size_read(inode), fs_info->sectorsize));
Chris Mason5f39d392007-10-15 16:14:19 -04003705
David Sterbaa937b972014-12-12 17:39:12 +01003706 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3707 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003708
David Sterbaa937b972014-12-12 17:39:12 +01003709 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3710 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003711
David Sterbaa937b972014-12-12 17:39:12 +01003712 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3713 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003714
chandan r9cc97d62012-07-04 12:48:07 +05303715 BTRFS_I(inode)->i_otime.tv_sec =
3716 btrfs_timespec_sec(leaf, &inode_item->otime);
3717 BTRFS_I(inode)->i_otime.tv_nsec =
3718 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003719
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003720 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003721 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003722 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3723
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003724 inode_set_iversion_queried(inode,
3725 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003726 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003727 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003728 rdev = btrfs_inode_rdev(leaf, inode_item);
3729
Josef Bacikaec74772008-07-24 12:12:38 -04003730 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003731 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003732
3733cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003734 /*
3735 * If we were modified in the current generation and evicted from memory
3736 * and then re-read we need to do a full sync since we don't have any
3737 * idea about which extents were modified before we were evicted from
3738 * cache.
3739 *
3740 * This is required for both inode re-read from disk and delayed inode
3741 * in delayed_nodes_tree.
3742 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003743 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003744 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3745 &BTRFS_I(inode)->runtime_flags);
3746
Filipe Mananabde6c242015-07-24 00:00:19 +01003747 /*
3748 * We don't persist the id of the transaction where an unlink operation
3749 * against the inode was last made. So here we assume the inode might
3750 * have been evicted, and therefore the exact value of last_unlink_trans
3751 * lost, and set it to last_trans to avoid metadata inconsistencies
3752 * between the inode and its parent if the inode is fsync'ed and the log
3753 * replayed. For example, in the scenario:
3754 *
3755 * touch mydir/foo
3756 * ln mydir/foo mydir/bar
3757 * sync
3758 * unlink mydir/bar
3759 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3760 * xfs_io -c fsync mydir/foo
3761 * <power failure>
3762 * mount fs, triggers fsync log replay
3763 *
3764 * We must make sure that when we fsync our inode foo we also log its
3765 * parent inode, otherwise after log replay the parent still has the
3766 * dentry with the "bar" name but our inode foo has a link count of 1
3767 * and doesn't have an inode ref with the name "bar" anymore.
3768 *
3769 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003770 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003771 * transaction commits on fsync if our inode is a directory, or if our
3772 * inode is not a directory, logging its parent unnecessarily.
3773 */
3774 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3775
Filipe Manana3ebac172020-07-15 12:30:43 +01003776 /*
3777 * Same logic as for last_unlink_trans. We don't persist the generation
3778 * of the last transaction where this inode was used for a reflink
3779 * operation, so after eviction and reloading the inode we must be
3780 * pessimistic and assume the last transaction that modified the inode.
3781 */
3782 BTRFS_I(inode)->last_reflink_trans = BTRFS_I(inode)->last_trans;
3783
Miao Xie67de1172013-12-26 13:07:06 +08003784 path->slots[0]++;
3785 if (inode->i_nlink != 1 ||
3786 path->slots[0] >= btrfs_header_nritems(leaf))
3787 goto cache_acl;
3788
3789 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003790 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003791 goto cache_acl;
3792
3793 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3794 if (location.type == BTRFS_INODE_REF_KEY) {
3795 struct btrfs_inode_ref *ref;
3796
3797 ref = (struct btrfs_inode_ref *)ptr;
3798 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3799 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3800 struct btrfs_inode_extref *extref;
3801
3802 extref = (struct btrfs_inode_extref *)ptr;
3803 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3804 extref);
3805 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003806cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003807 /*
3808 * try to precache a NULL acl entry for files that don't have
3809 * any xattrs or acls
3810 */
Li Zefan33345d012011-04-20 10:31:50 +08003811 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003812 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003813 if (first_xattr_slot != -1) {
3814 path->slots[0] = first_xattr_slot;
3815 ret = btrfs_load_inode_props(inode, path);
3816 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003817 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003818 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003819 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003820 root->root_key.objectid, ret);
3821 }
Filipe Manana4222ea72018-10-24 10:13:03 +01003822 if (path != in_path)
3823 btrfs_free_path(path);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003824
Al Viro72c04902009-06-24 16:58:48 -04003825 if (!maybe_acls)
3826 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003827
Chris Mason39279cc2007-06-12 06:35:45 -04003828 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003829 case S_IFREG:
3830 inode->i_mapping->a_ops = &btrfs_aops;
3831 inode->i_fop = &btrfs_file_operations;
3832 inode->i_op = &btrfs_file_inode_operations;
3833 break;
3834 case S_IFDIR:
3835 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003836 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003837 break;
3838 case S_IFLNK:
3839 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003840 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003841 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003842 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003843 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003844 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003845 init_special_inode(inode, inode->i_mode, rdev);
3846 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003847 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003848
David Sterba7b6a2212018-03-26 18:40:21 +02003849 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003850 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003851}
3852
Chris Masond352ac62008-09-29 15:18:18 -04003853/*
3854 * given a leaf and an inode, copy the inode fields into the leaf
3855 */
Chris Masone02119d2008-09-05 16:13:11 -04003856static void fill_inode_item(struct btrfs_trans_handle *trans,
3857 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003858 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003859 struct inode *inode)
3860{
Liu Bo51fab692012-12-27 09:01:21 +00003861 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003862
David Sterbac82f8232019-08-09 17:48:21 +02003863 btrfs_init_map_token(&token, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003864
David Sterbacc4c13d2020-04-29 02:15:56 +02003865 btrfs_set_token_inode_uid(&token, item, i_uid_read(inode));
3866 btrfs_set_token_inode_gid(&token, item, i_gid_read(inode));
3867 btrfs_set_token_inode_size(&token, item, BTRFS_I(inode)->disk_i_size);
3868 btrfs_set_token_inode_mode(&token, item, inode->i_mode);
3869 btrfs_set_token_inode_nlink(&token, item, inode->i_nlink);
Chris Mason5f39d392007-10-15 16:14:19 -04003870
David Sterbacc4c13d2020-04-29 02:15:56 +02003871 btrfs_set_token_timespec_sec(&token, &item->atime,
3872 inode->i_atime.tv_sec);
3873 btrfs_set_token_timespec_nsec(&token, &item->atime,
3874 inode->i_atime.tv_nsec);
Chris Mason5f39d392007-10-15 16:14:19 -04003875
David Sterbacc4c13d2020-04-29 02:15:56 +02003876 btrfs_set_token_timespec_sec(&token, &item->mtime,
3877 inode->i_mtime.tv_sec);
3878 btrfs_set_token_timespec_nsec(&token, &item->mtime,
3879 inode->i_mtime.tv_nsec);
Liu Bo51fab692012-12-27 09:01:21 +00003880
David Sterbacc4c13d2020-04-29 02:15:56 +02003881 btrfs_set_token_timespec_sec(&token, &item->ctime,
3882 inode->i_ctime.tv_sec);
3883 btrfs_set_token_timespec_nsec(&token, &item->ctime,
3884 inode->i_ctime.tv_nsec);
Liu Bo51fab692012-12-27 09:01:21 +00003885
David Sterbacc4c13d2020-04-29 02:15:56 +02003886 btrfs_set_token_timespec_sec(&token, &item->otime,
3887 BTRFS_I(inode)->i_otime.tv_sec);
3888 btrfs_set_token_timespec_nsec(&token, &item->otime,
3889 BTRFS_I(inode)->i_otime.tv_nsec);
chandan r9cc97d62012-07-04 12:48:07 +05303890
David Sterbacc4c13d2020-04-29 02:15:56 +02003891 btrfs_set_token_inode_nbytes(&token, item, inode_get_bytes(inode));
3892 btrfs_set_token_inode_generation(&token, item,
3893 BTRFS_I(inode)->generation);
3894 btrfs_set_token_inode_sequence(&token, item, inode_peek_iversion(inode));
3895 btrfs_set_token_inode_transid(&token, item, trans->transid);
3896 btrfs_set_token_inode_rdev(&token, item, inode->i_rdev);
3897 btrfs_set_token_inode_flags(&token, item, BTRFS_I(inode)->flags);
3898 btrfs_set_token_inode_block_group(&token, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003899}
3900
Chris Masond352ac62008-09-29 15:18:18 -04003901/*
3902 * copy everything in the in-memory inode into the btree.
3903 */
Chris Mason21151332011-11-10 20:39:08 -05003904static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Nikolay Borisovdfeb9e72020-11-02 16:48:58 +02003905 struct btrfs_root *root,
3906 struct btrfs_inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003907{
3908 struct btrfs_inode_item *inode_item;
3909 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003910 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003911 int ret;
3912
3913 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003914 if (!path)
3915 return -ENOMEM;
3916
Nikolay Borisovdfeb9e72020-11-02 16:48:58 +02003917 ret = btrfs_lookup_inode(trans, root, path, &inode->location, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003918 if (ret) {
3919 if (ret > 0)
3920 ret = -ENOENT;
3921 goto failed;
3922 }
3923
Chris Mason5f39d392007-10-15 16:14:19 -04003924 leaf = path->nodes[0];
3925 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003926 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003927
Nikolay Borisovdfeb9e72020-11-02 16:48:58 +02003928 fill_inode_item(trans, leaf, inode_item, &inode->vfs_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003929 btrfs_mark_buffer_dirty(leaf);
Nikolay Borisovdfeb9e72020-11-02 16:48:58 +02003930 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003931 ret = 0;
3932failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003933 btrfs_free_path(path);
3934 return ret;
3935}
3936
Chris Masond352ac62008-09-29 15:18:18 -04003937/*
Chris Mason21151332011-11-10 20:39:08 -05003938 * copy everything in the in-memory inode into the btree.
3939 */
3940noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003941 struct btrfs_root *root,
3942 struct btrfs_inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003943{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003944 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003945 int ret;
3946
3947 /*
3948 * If the inode is a free space inode, we can deadlock during commit
3949 * if we put it into the delayed code.
3950 *
3951 * The data relocation inode should also be directly updated
3952 * without delay
3953 */
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003954 if (!btrfs_is_free_space_inode(inode)
Josef Bacik1d52c782014-09-18 11:30:44 -04003955 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003956 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003957 btrfs_update_root_times(trans, root);
3958
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003959 ret = btrfs_delayed_update_inode(trans, root, inode);
Chris Mason21151332011-11-10 20:39:08 -05003960 if (!ret)
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003961 btrfs_set_inode_last_trans(trans, inode);
Chris Mason21151332011-11-10 20:39:08 -05003962 return ret;
3963 }
3964
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02003965 return btrfs_update_inode_item(trans, root, inode);
Chris Mason21151332011-11-10 20:39:08 -05003966}
3967
Nikolay Borisov729f7962020-11-02 16:49:06 +02003968int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3969 struct btrfs_root *root, struct btrfs_inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003970{
3971 int ret;
3972
Nikolay Borisov729f7962020-11-02 16:49:06 +02003973 ret = btrfs_update_inode(trans, root, inode);
Chris Mason21151332011-11-10 20:39:08 -05003974 if (ret == -ENOSPC)
Nikolay Borisov729f7962020-11-02 16:49:06 +02003975 return btrfs_update_inode_item(trans, root, inode);
Chris Mason21151332011-11-10 20:39:08 -05003976 return ret;
3977}
3978
3979/*
Chris Masond352ac62008-09-29 15:18:18 -04003980 * unlink helper that gets used here in inode.c and in the tree logging
3981 * recovery code. It remove a link in a directory with a given name, and
3982 * also drops the back refs in the inode to the directory
3983 */
Al Viro92986792011-03-04 17:14:37 +00003984static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3985 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003986 struct btrfs_inode *dir,
3987 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003988 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003989{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003990 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003991 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003992 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003993 struct btrfs_dir_item *di;
Josef Bacikaec74772008-07-24 12:12:38 -04003994 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003995 u64 ino = btrfs_ino(inode);
3996 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003997
3998 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003999 if (!path) {
4000 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00004001 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04004002 }
4003
Li Zefan33345d012011-04-20 10:31:50 +08004004 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04004005 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08004006 if (IS_ERR_OR_NULL(di)) {
4007 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04004008 goto err;
4009 }
Chris Mason39279cc2007-06-12 06:35:45 -04004010 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04004011 if (ret)
4012 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02004013 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004014
Miao Xie67de1172013-12-26 13:07:06 +08004015 /*
4016 * If we don't have dir index, we have to get it by looking up
4017 * the inode ref, since we get the inode ref, remove it directly,
4018 * it is unnecessary to do delayed deletion.
4019 *
4020 * But if we have dir index, needn't search inode ref to get it.
4021 * Since the inode ref is close to the inode item, it is better
4022 * that we delay to delete it, and just do this deletion when
4023 * we update the inode item.
4024 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004025 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08004026 ret = btrfs_delayed_delete_inode_ref(inode);
4027 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004028 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08004029 goto skip_backref;
4030 }
4031 }
4032
Li Zefan33345d012011-04-20 10:31:50 +08004033 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
4034 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004035 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004036 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004037 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004038 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04004039 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04004040 goto err;
4041 }
Miao Xie67de1172013-12-26 13:07:06 +08004042skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08004043 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004044 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004045 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004046 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004047 }
Chris Mason39279cc2007-06-12 06:35:45 -04004048
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004049 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
4050 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004051 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004052 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004053 goto err;
4054 }
Chris Masone02119d2008-09-05 16:13:11 -04004055
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004056 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
4057 index);
Chris Mason6418c962010-10-30 07:34:24 -04004058 if (ret == -ENOENT)
4059 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004060 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004061 btrfs_abort_transaction(trans, ret);
Josef Bacik63611e72019-06-18 10:59:18 -04004062
4063 /*
4064 * If we have a pending delayed iput we could end up with the final iput
4065 * being run in btrfs-cleaner context. If we have enough of these built
4066 * up we can end up burning a lot of time in btrfs-cleaner without any
4067 * way to throttle the unlinks. Since we're currently holding a ref on
4068 * the inode we can run the delayed iput here without any issues as the
4069 * final iput won't be done until after we drop the ref we're currently
4070 * holding.
4071 */
4072 btrfs_run_delayed_iput(fs_info, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004073err:
4074 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004075 if (ret)
4076 goto out;
4077
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004078 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004079 inode_inc_iversion(&inode->vfs_inode);
4080 inode_inc_iversion(&dir->vfs_inode);
4081 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
4082 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02004083 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04004084out:
Chris Mason39279cc2007-06-12 06:35:45 -04004085 return ret;
4086}
4087
Al Viro92986792011-03-04 17:14:37 +00004088int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4089 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004090 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004091 const char *name, int name_len)
4092{
4093 int ret;
4094 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4095 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004096 drop_nlink(&inode->vfs_inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02004097 ret = btrfs_update_inode(trans, root, inode);
Al Viro92986792011-03-04 17:14:37 +00004098 }
4099 return ret;
4100}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004101
4102/*
4103 * helper to start transaction for unlink and rmdir.
4104 *
Josef Bacikd52be812013-05-29 14:54:47 -04004105 * unlink and rmdir are special in btrfs, they do not always free space, so
4106 * if we cannot make our reservations the normal way try and see if there is
4107 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4108 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004109 */
Josef Bacikd52be812013-05-29 14:54:47 -04004110static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004111{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004112 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004113
Josef Bacike70bea52011-10-11 14:18:24 -04004114 /*
4115 * 1 for the possible orphan item
4116 * 1 for the dir item
4117 * 1 for the dir index
4118 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004119 * 1 for the inode
4120 */
Josef Bacik7f9fe612020-03-13 15:58:05 -04004121 return btrfs_start_transaction_fallback_global_rsv(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004122}
4123
Chris Mason39279cc2007-06-12 06:35:45 -04004124static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4125{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004126 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004127 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004128 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004129 int ret;
4130
Josef Bacikd52be812013-05-29 14:54:47 -04004131 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004132 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004133 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004134
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004135 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4136 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004137
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004138 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4139 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4140 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004141 if (ret)
4142 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004143
Yan, Zhenga22285a2010-05-16 10:48:46 -04004144 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004145 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004146 if (ret)
4147 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004148 }
Josef Bacik7b128762008-07-24 12:17:14 -04004149
Tsutomu Itohb5324022011-07-19 07:27:20 +00004150out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004151 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004152 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004153 return ret;
4154}
4155
Misono Tomohirof60a2362018-04-18 11:34:52 +09004156static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Josef Bacik045d3962019-12-18 17:20:27 -05004157 struct inode *dir, struct dentry *dentry)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004158{
Lu Fengqi401b3b12018-08-01 11:32:30 +08004159 struct btrfs_root *root = BTRFS_I(dir)->root;
Josef Bacik045d3962019-12-18 17:20:27 -05004160 struct btrfs_inode *inode = BTRFS_I(d_inode(dentry));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004161 struct btrfs_path *path;
4162 struct extent_buffer *leaf;
4163 struct btrfs_dir_item *di;
4164 struct btrfs_key key;
Josef Bacik045d3962019-12-18 17:20:27 -05004165 const char *name = dentry->d_name.name;
4166 int name_len = dentry->d_name.len;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004167 u64 index;
4168 int ret;
Josef Bacik045d3962019-12-18 17:20:27 -05004169 u64 objectid;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004170 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004171
Josef Bacik045d3962019-12-18 17:20:27 -05004172 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID) {
4173 objectid = inode->root->root_key.objectid;
4174 } else if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
4175 objectid = inode->location.objectid;
4176 } else {
4177 WARN_ON(1);
4178 return -EINVAL;
4179 }
4180
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004181 path = btrfs_alloc_path();
4182 if (!path)
4183 return -ENOMEM;
4184
Li Zefan33345d012011-04-20 10:31:50 +08004185 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004186 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004187 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08004188 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004189 goto out;
4190 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004191
4192 leaf = path->nodes[0];
4193 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4194 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4195 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004196 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004197 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004198 goto out;
4199 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004200 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004201
Josef Bacikd49d3282019-12-18 17:20:28 -05004202 /*
4203 * This is a placeholder inode for a subvolume we didn't have a
4204 * reference to at the time of the snapshot creation. In the meantime
4205 * we could have renamed the real subvol link into our snapshot, so
David Sterba1a9fd412021-05-21 17:42:23 +02004206 * depending on btrfs_del_root_ref to return -ENOENT here is incorrect.
Josef Bacikd49d3282019-12-18 17:20:28 -05004207 * Instead simply lookup the dir_index_item for this entry so we can
4208 * remove it. Otherwise we know we have a ref to the root and we can
4209 * call btrfs_del_root_ref, and it _shouldn't_ fail.
4210 */
4211 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) {
Li Zefan33345d012011-04-20 10:31:50 +08004212 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004213 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004214 if (IS_ERR_OR_NULL(di)) {
4215 if (!di)
4216 ret = -ENOENT;
4217 else
4218 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004219 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004220 goto out;
4221 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004222
4223 leaf = path->nodes[0];
4224 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004225 index = key.offset;
Josef Bacikd49d3282019-12-18 17:20:28 -05004226 btrfs_release_path(path);
4227 } else {
4228 ret = btrfs_del_root_ref(trans, objectid,
4229 root->root_key.objectid, dir_ino,
4230 &index, name, name_len);
4231 if (ret) {
4232 btrfs_abort_transaction(trans, ret);
4233 goto out;
4234 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004235 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004236
Lu Fengqi9add2942018-08-01 11:32:26 +08004237 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004238 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004239 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004240 goto out;
4241 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004242
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004243 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004244 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004245 dir->i_mtime = dir->i_ctime = current_time(dir);
Nikolay Borisov729f7962020-11-02 16:49:06 +02004246 ret = btrfs_update_inode_fallback(trans, root, BTRFS_I(dir));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004247 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004248 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004249out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004250 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004251 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004252}
4253
Misono Tomohiroec42f162018-04-18 11:34:13 +09004254/*
4255 * Helper to check if the subvolume references other subvolumes or if it's
4256 * default.
4257 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09004258static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09004259{
4260 struct btrfs_fs_info *fs_info = root->fs_info;
4261 struct btrfs_path *path;
4262 struct btrfs_dir_item *di;
4263 struct btrfs_key key;
4264 u64 dir_id;
4265 int ret;
4266
4267 path = btrfs_alloc_path();
4268 if (!path)
4269 return -ENOMEM;
4270
4271 /* Make sure this root isn't set as the default subvol */
4272 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4273 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4274 dir_id, "default", 7, 0);
4275 if (di && !IS_ERR(di)) {
4276 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4277 if (key.objectid == root->root_key.objectid) {
4278 ret = -EPERM;
4279 btrfs_err(fs_info,
4280 "deleting default subvolume %llu is not allowed",
4281 key.objectid);
4282 goto out;
4283 }
4284 btrfs_release_path(path);
4285 }
4286
4287 key.objectid = root->root_key.objectid;
4288 key.type = BTRFS_ROOT_REF_KEY;
4289 key.offset = (u64)-1;
4290
4291 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4292 if (ret < 0)
4293 goto out;
4294 BUG_ON(ret == 0);
4295
4296 ret = 0;
4297 if (path->slots[0] > 0) {
4298 path->slots[0]--;
4299 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4300 if (key.objectid == root->root_key.objectid &&
4301 key.type == BTRFS_ROOT_REF_KEY)
4302 ret = -ENOTEMPTY;
4303 }
4304out:
4305 btrfs_free_path(path);
4306 return ret;
4307}
4308
Nikolay Borisov20a68002018-04-27 14:36:24 +03004309/* Delete all dentries for inodes belonging to the root */
4310static void btrfs_prune_dentries(struct btrfs_root *root)
4311{
4312 struct btrfs_fs_info *fs_info = root->fs_info;
4313 struct rb_node *node;
4314 struct rb_node *prev;
4315 struct btrfs_inode *entry;
4316 struct inode *inode;
4317 u64 objectid = 0;
4318
4319 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4320 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4321
4322 spin_lock(&root->inode_lock);
4323again:
4324 node = root->inode_tree.rb_node;
4325 prev = NULL;
4326 while (node) {
4327 prev = node;
4328 entry = rb_entry(node, struct btrfs_inode, rb_node);
4329
David Sterba37508512018-06-29 10:56:40 +02004330 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004331 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02004332 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004333 node = node->rb_right;
4334 else
4335 break;
4336 }
4337 if (!node) {
4338 while (prev) {
4339 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004340 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03004341 node = prev;
4342 break;
4343 }
4344 prev = rb_next(prev);
4345 }
4346 }
4347 while (node) {
4348 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004349 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03004350 inode = igrab(&entry->vfs_inode);
4351 if (inode) {
4352 spin_unlock(&root->inode_lock);
4353 if (atomic_read(&inode->i_count) > 1)
4354 d_prune_aliases(inode);
4355 /*
4356 * btrfs_drop_inode will have it removed from the inode
4357 * cache when its usage count hits zero.
4358 */
4359 iput(inode);
4360 cond_resched();
4361 spin_lock(&root->inode_lock);
4362 goto again;
4363 }
4364
4365 if (cond_resched_lock(&root->inode_lock))
4366 goto again;
4367
4368 node = rb_next(node);
4369 }
4370 spin_unlock(&root->inode_lock);
4371}
4372
Misono Tomohirof60a2362018-04-18 11:34:52 +09004373int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4374{
4375 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4376 struct btrfs_root *root = BTRFS_I(dir)->root;
4377 struct inode *inode = d_inode(dentry);
4378 struct btrfs_root *dest = BTRFS_I(inode)->root;
4379 struct btrfs_trans_handle *trans;
4380 struct btrfs_block_rsv block_rsv;
4381 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004382 int ret;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004383
4384 /*
4385 * Don't allow to delete a subvolume with send in progress. This is
4386 * inside the inode lock so the error handling that has to drop the bit
4387 * again is not run concurrently.
4388 */
4389 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08004390 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004391 spin_unlock(&dest->root_item_lock);
4392 btrfs_warn(fs_info,
4393 "attempt to delete subvolume %llu during send",
4394 dest->root_key.objectid);
4395 return -EPERM;
4396 }
Lu Fengqia7176f72018-08-04 21:10:53 +08004397 root_flags = btrfs_root_flags(&dest->root_item);
4398 btrfs_set_root_flags(&dest->root_item,
4399 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4400 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004401
4402 down_write(&fs_info->subvol_sem);
4403
Nikolay Borisovee0d9042020-11-24 17:49:30 +02004404 ret = may_destroy_subvol(dest);
4405 if (ret)
Misono Tomohirof60a2362018-04-18 11:34:52 +09004406 goto out_up_write;
4407
4408 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4409 /*
4410 * One for dir inode,
4411 * two for dir entries,
4412 * two for root ref/backref.
4413 */
Nikolay Borisovee0d9042020-11-24 17:49:30 +02004414 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
4415 if (ret)
Misono Tomohirof60a2362018-04-18 11:34:52 +09004416 goto out_up_write;
4417
4418 trans = btrfs_start_transaction(root, 0);
4419 if (IS_ERR(trans)) {
Nikolay Borisovee0d9042020-11-24 17:49:30 +02004420 ret = PTR_ERR(trans);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004421 goto out_release;
4422 }
4423 trans->block_rsv = &block_rsv;
4424 trans->bytes_reserved = block_rsv.size;
4425
4426 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4427
Josef Bacik045d3962019-12-18 17:20:27 -05004428 ret = btrfs_unlink_subvol(trans, dir, dentry);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004429 if (ret) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004430 btrfs_abort_transaction(trans, ret);
4431 goto out_end_trans;
4432 }
4433
Josef Bacik2731f512021-03-12 15:25:04 -05004434 ret = btrfs_record_root_in_trans(trans, dest);
4435 if (ret) {
4436 btrfs_abort_transaction(trans, ret);
4437 goto out_end_trans;
4438 }
Misono Tomohirof60a2362018-04-18 11:34:52 +09004439
4440 memset(&dest->root_item.drop_progress, 0,
4441 sizeof(dest->root_item.drop_progress));
David Sterbac8422682020-09-15 21:44:52 +02004442 btrfs_set_root_drop_level(&dest->root_item, 0);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004443 btrfs_set_root_refs(&dest->root_item, 0);
4444
4445 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4446 ret = btrfs_insert_orphan_item(trans,
4447 fs_info->tree_root,
4448 dest->root_key.objectid);
4449 if (ret) {
4450 btrfs_abort_transaction(trans, ret);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004451 goto out_end_trans;
4452 }
4453 }
4454
Lu Fengqid1957792018-05-29 15:01:54 +08004455 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004456 BTRFS_UUID_KEY_SUBVOL,
4457 dest->root_key.objectid);
4458 if (ret && ret != -ENOENT) {
4459 btrfs_abort_transaction(trans, ret);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004460 goto out_end_trans;
4461 }
4462 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004463 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004464 dest->root_item.received_uuid,
4465 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4466 dest->root_key.objectid);
4467 if (ret && ret != -ENOENT) {
4468 btrfs_abort_transaction(trans, ret);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004469 goto out_end_trans;
4470 }
4471 }
4472
Qu Wenruo082b6c92020-06-16 10:17:37 +08004473 free_anon_bdev(dest->anon_dev);
4474 dest->anon_dev = 0;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004475out_end_trans:
4476 trans->block_rsv = NULL;
4477 trans->bytes_reserved = 0;
4478 ret = btrfs_end_transaction(trans);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004479 inode->i_flags |= S_DEAD;
4480out_release:
Qu Wenruoe85fde52020-07-24 14:46:10 +08004481 btrfs_subvolume_release_metadata(root, &block_rsv);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004482out_up_write:
4483 up_write(&fs_info->subvol_sem);
Nikolay Borisovee0d9042020-11-24 17:49:30 +02004484 if (ret) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004485 spin_lock(&dest->root_item_lock);
4486 root_flags = btrfs_root_flags(&dest->root_item);
4487 btrfs_set_root_flags(&dest->root_item,
4488 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4489 spin_unlock(&dest->root_item_lock);
4490 } else {
4491 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004492 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004493 ASSERT(dest->send_in_progress == 0);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004494 }
4495
Nikolay Borisovee0d9042020-11-24 17:49:30 +02004496 return ret;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004497}
4498
Chris Mason39279cc2007-06-12 06:35:45 -04004499static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4500{
David Howells2b0143b2015-03-17 22:25:59 +00004501 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004502 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004503 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004504 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004505 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004506
David Sterbab3ae2442012-09-13 16:04:34 -06004507 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004508 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004509 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004510 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004511
Josef Bacikd52be812013-05-29 14:54:47 -04004512 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004513 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004514 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004515
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004516 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05004517 err = btrfs_unlink_subvol(trans, dir, dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004518 goto out;
4519 }
4520
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004521 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004522 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004523 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004524
Filipe Manana44f714d2016-06-06 16:11:13 +01004525 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4526
Chris Mason39279cc2007-06-12 06:35:45 -04004527 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004528 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4529 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4530 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004531 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004532 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004533 /*
4534 * Propagate the last_unlink_trans value of the deleted dir to
4535 * its parent directory. This is to prevent an unrecoverable
4536 * log tree in the case we do something like this:
4537 * 1) create dir foo
4538 * 2) create snapshot under dir foo
4539 * 3) delete the snapshot
4540 * 4) rmdir foo
4541 * 5) mkdir foo
4542 * 6) fsync foo or some file inside foo
4543 */
4544 if (last_unlink_trans >= trans->transid)
4545 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4546 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004547out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004548 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004549 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004550
Chris Mason39279cc2007-06-12 06:35:45 -04004551 return err;
4552}
4553
Josef Bacikddfae632017-10-19 14:16:02 -04004554/*
4555 * Return this if we need to call truncate_block for the last bit of the
4556 * truncate.
4557 */
4558#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004559
Chris Mason323ac952008-10-01 19:05:46 -04004560/*
Filipe Manana4f7e6732021-05-24 11:35:54 +01004561 * Remove inode items from a given root.
Chris Mason39279cc2007-06-12 06:35:45 -04004562 *
Filipe Manana4f7e6732021-05-24 11:35:54 +01004563 * @trans: A transaction handle.
4564 * @root: The root from which to remove items.
4565 * @inode: The inode whose items we want to remove.
4566 * @new_size: The new i_size for the inode. This is only applicable when
4567 * @min_type is BTRFS_EXTENT_DATA_KEY, must be 0 otherwise.
4568 * @min_type: The minimum key type to remove. All keys with a type
4569 * greater than this value are removed and all keys with
4570 * this type are removed only if their offset is >= @new_size.
Filipe Manana0d7d3162021-05-24 11:35:55 +01004571 * @extents_found: Output parameter that will contain the number of file
4572 * extent items that were removed or adjusted to the new
4573 * inode i_size. The caller is responsible for initializing
4574 * the counter. Also, it can be NULL if the caller does not
4575 * need this counter.
Josef Bacik7b128762008-07-24 12:17:14 -04004576 *
Filipe Manana4f7e6732021-05-24 11:35:54 +01004577 * Remove all keys associated with the inode from the given root that have a key
4578 * with a type greater than or equals to @min_type. When @min_type has a value of
4579 * BTRFS_EXTENT_DATA_KEY, only remove file extent items that have an offset value
4580 * greater than or equals to @new_size. If a file extent item that starts before
4581 * @new_size and ends after it is found, its length is adjusted.
4582 *
4583 * Returns: 0 on success, < 0 on error and NEED_TRUNCATE_BLOCK when @min_type is
4584 * BTRFS_EXTENT_DATA_KEY and the caller must truncate the last block.
Chris Mason39279cc2007-06-12 06:35:45 -04004585 */
Yan, Zheng80825102009-11-12 09:35:36 +00004586int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4587 struct btrfs_root *root,
Nikolay Borisov50743392020-11-02 16:48:55 +02004588 struct btrfs_inode *inode,
Filipe Manana0d7d3162021-05-24 11:35:55 +01004589 u64 new_size, u32 min_type,
4590 u64 *extents_found)
Chris Mason39279cc2007-06-12 06:35:45 -04004591{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004592 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004593 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004594 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004595 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004596 struct btrfs_key key;
4597 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004598 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004599 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004600 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004601 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004602 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004603 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004604 int found_extent;
4605 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004606 int pending_del_nr = 0;
4607 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004608 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004609 int ret;
Nikolay Borisov50743392020-11-02 16:48:55 +02004610 u64 ino = btrfs_ino(inode);
Chris Mason28ed1342014-12-17 09:41:04 -08004611 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004612 bool be_nice = false;
4613 bool should_throttle = false;
Filipe Manana28553fa2020-02-07 12:23:09 +00004614 const u64 lock_start = ALIGN_DOWN(new_size, fs_info->sectorsize);
4615 struct extent_state *cached_state = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00004616
4617 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004618
Chris Mason28ed1342014-12-17 09:41:04 -08004619 /*
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004620 * For non-free space inodes and non-shareable roots, we want to back
4621 * off from time to time. This means all inodes in subvolume roots,
4622 * reloc roots, and data reloc roots.
Chris Mason28ed1342014-12-17 09:41:04 -08004623 */
Nikolay Borisov50743392020-11-02 16:48:55 +02004624 if (!btrfs_is_free_space_inode(inode) &&
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004625 test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004626 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004627
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004628 path = btrfs_alloc_path();
4629 if (!path)
4630 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004631 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004632
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004633 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Nikolay Borisov50743392020-11-02 16:48:55 +02004634 lock_extent_bits(&inode->io_tree, lock_start, (u64)-1,
Filipe Mananaa5ae50d2020-02-20 13:29:49 +00004635 &cached_state);
Filipe Manana28553fa2020-02-07 12:23:09 +00004636
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004637 /*
4638 * We want to drop from the next block forward in case this
4639 * new size is not block aligned since we will be keeping the
4640 * last block of the extent just the way it is.
4641 */
Nikolay Borisov50743392020-11-02 16:48:55 +02004642 btrfs_drop_extent_cache(inode, ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004643 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004644 (u64)-1, 0);
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004645 }
Yan, Zheng80825102009-11-12 09:35:36 +00004646
Miao Xie16cdcec2011-04-22 18:12:22 +08004647 /*
4648 * This function is also used to drop the items in the log tree before
4649 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
Andrea Gelmini52042d82018-11-28 12:05:13 +01004650 * it is used to drop the logged items. So we shouldn't kill the delayed
Miao Xie16cdcec2011-04-22 18:12:22 +08004651 * items.
4652 */
Nikolay Borisov50743392020-11-02 16:48:55 +02004653 if (min_type == 0 && root == inode->root)
4654 btrfs_kill_delayed_inode_items(inode);
Miao Xie16cdcec2011-04-22 18:12:22 +08004655
Li Zefan33345d012011-04-20 10:31:50 +08004656 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004657 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004658 key.type = (u8)-1;
4659
Chris Mason85e21ba2008-01-29 15:11:36 -05004660search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004661 /*
4662 * with a 16K leaf size and 128MB extents, you can actually queue
4663 * up a huge file in a single leaf. Most of the time that
4664 * bytes_deleted is > 0, it will be huge by the time we get here
4665 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004666 if (be_nice && bytes_deleted > SZ_32M &&
4667 btrfs_should_end_transaction(trans)) {
4668 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004669 goto out;
4670 }
Chris Masond3977122009-01-05 21:25:51 -05004671
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004672 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4673 if (ret < 0)
4674 goto out;
4675
Chris Mason85e21ba2008-01-29 15:11:36 -05004676 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004677 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004678 /* there are no items in the tree for us to truncate, we're
4679 * done
4680 */
Yan, Zheng80825102009-11-12 09:35:36 +00004681 if (path->slots[0] == 0)
4682 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004683 path->slots[0]--;
4684 }
4685
Chris Masond3977122009-01-05 21:25:51 -05004686 while (1) {
Josef Bacik9ddc9592020-01-17 09:02:22 -05004687 u64 clear_start = 0, clear_len = 0;
4688
Chris Mason39279cc2007-06-12 06:35:45 -04004689 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004690 leaf = path->nodes[0];
4691 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004692 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004693
Li Zefan33345d012011-04-20 10:31:50 +08004694 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004695 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004696
Chris Mason85e21ba2008-01-29 15:11:36 -05004697 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004698 break;
4699
Chris Mason5f39d392007-10-15 16:14:19 -04004700 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004701 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004702 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004703 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004704 extent_type = btrfs_file_extent_type(leaf, fi);
4705 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004706 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004707 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004708
4709 trace_btrfs_truncate_show_fi_regular(
Nikolay Borisov50743392020-11-02 16:48:55 +02004710 inode, leaf, fi, found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004711 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004712 item_end += btrfs_file_extent_ram_bytes(leaf,
4713 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004714
4715 trace_btrfs_truncate_show_fi_inline(
Nikolay Borisov50743392020-11-02 16:48:55 +02004716 inode, leaf, fi, path->slots[0],
Liu Bo09ed2f12017-03-10 11:09:48 -08004717 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004718 }
Yan008630c2007-11-07 13:31:09 -05004719 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004720 }
Yan, Zheng80825102009-11-12 09:35:36 +00004721 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004722 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004723 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004724 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004725 break;
4726 if (found_key.offset >= new_size)
4727 del_item = 1;
4728 else
4729 del_item = 0;
4730 }
Chris Mason39279cc2007-06-12 06:35:45 -04004731 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004732 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004733 if (found_type != BTRFS_EXTENT_DATA_KEY)
4734 goto delete;
4735
Filipe Manana0d7d3162021-05-24 11:35:55 +01004736 if (extents_found != NULL)
4737 (*extents_found)++;
4738
Chris Mason179e29e2007-11-01 11:28:41 -04004739 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004740 u64 num_dec;
Josef Bacik9ddc9592020-01-17 09:02:22 -05004741
4742 clear_start = found_key.offset;
Chris Masondb945352007-10-15 16:15:53 -04004743 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004744 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004745 u64 orig_num_bytes =
4746 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004747 extent_num_bytes = ALIGN(new_size -
4748 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004749 fs_info->sectorsize);
Josef Bacik9ddc9592020-01-17 09:02:22 -05004750 clear_start = ALIGN(new_size, fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004751 btrfs_set_file_extent_num_bytes(leaf, fi,
4752 extent_num_bytes);
4753 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004754 extent_num_bytes);
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004755 if (test_bit(BTRFS_ROOT_SHAREABLE,
Miao Xie27cdeb72014-04-02 19:51:05 +08004756 &root->state) &&
4757 extent_start != 0)
Nikolay Borisov50743392020-11-02 16:48:55 +02004758 inode_sub_bytes(&inode->vfs_inode,
4759 num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004760 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004761 } else {
Chris Masondb945352007-10-15 16:15:53 -04004762 extent_num_bytes =
4763 btrfs_file_extent_disk_num_bytes(leaf,
4764 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004765 extent_offset = found_key.offset -
4766 btrfs_file_extent_offset(leaf, fi);
4767
Chris Mason39279cc2007-06-12 06:35:45 -04004768 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004769 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004770 if (extent_start != 0) {
4771 found_extent = 1;
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004772 if (test_bit(BTRFS_ROOT_SHAREABLE,
Miao Xie27cdeb72014-04-02 19:51:05 +08004773 &root->state))
Nikolay Borisov50743392020-11-02 16:48:55 +02004774 inode_sub_bytes(&inode->vfs_inode,
4775 num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004776 }
4777 }
Josef Bacik9ddc9592020-01-17 09:02:22 -05004778 clear_len = num_dec;
Chris Mason90692182008-02-08 13:49:28 -05004779 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004780 /*
4781 * we can't truncate inline items that have had
4782 * special encodings
4783 */
4784 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004785 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004786 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4787 btrfs_file_extent_compression(leaf, fi) == 0) {
4788 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004789
Josef Bacikddfae632017-10-19 14:16:02 -04004790 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4791 size = btrfs_file_extent_calc_inline_size(size);
David Sterba78ac4f92019-03-20 14:49:12 +01004792 btrfs_truncate_item(path, size, 1);
Josef Bacikddfae632017-10-19 14:16:02 -04004793 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004794 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004795 * We have to bail so the last_size is set to
4796 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004797 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004798 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004799 break;
Josef Bacik9ddc9592020-01-17 09:02:22 -05004800 } else {
4801 /*
4802 * Inline extents are special, we just treat
4803 * them as a full sector worth in the file
4804 * extent tree just for simplicity sake.
4805 */
4806 clear_len = fs_info->sectorsize;
Chris Mason90692182008-02-08 13:49:28 -05004807 }
Josef Bacikddfae632017-10-19 14:16:02 -04004808
Qu Wenruo92a7cc42020-05-15 14:01:40 +08004809 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Nikolay Borisov50743392020-11-02 16:48:55 +02004810 inode_sub_bytes(&inode->vfs_inode,
4811 item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004812 }
Chris Mason179e29e2007-11-01 11:28:41 -04004813delete:
Josef Bacik9ddc9592020-01-17 09:02:22 -05004814 /*
4815 * We use btrfs_truncate_inode_items() to clean up log trees for
4816 * multiple fsyncs, and in this case we don't want to clear the
4817 * file extent range because it's just the log.
4818 */
Nikolay Borisov50743392020-11-02 16:48:55 +02004819 if (root == inode->root) {
4820 ret = btrfs_inode_clear_file_extent_range(inode,
Josef Bacik9ddc9592020-01-17 09:02:22 -05004821 clear_start, clear_len);
4822 if (ret) {
4823 btrfs_abort_transaction(trans, ret);
4824 break;
4825 }
4826 }
4827
Josef Bacikddfae632017-10-19 14:16:02 -04004828 if (del_item)
4829 last_size = found_key.offset;
4830 else
4831 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004832 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004833 if (!pending_del_nr) {
4834 /* no pending yet, add ourselves */
4835 pending_del_slot = path->slots[0];
4836 pending_del_nr = 1;
4837 } else if (pending_del_nr &&
4838 path->slots[0] + 1 == pending_del_slot) {
4839 /* hop on the pending chunk */
4840 pending_del_nr++;
4841 pending_del_slot = path->slots[0];
4842 } else {
Chris Masond3977122009-01-05 21:25:51 -05004843 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004844 }
Chris Mason39279cc2007-06-12 06:35:45 -04004845 } else {
4846 break;
4847 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004848 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004849
Miao Xie27cdeb72014-04-02 19:51:05 +08004850 if (found_extent &&
Qu Wenruo82028e0a2020-05-15 14:01:41 +08004851 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08004852 struct btrfs_ref ref = { 0 };
4853
Chris Mason28ed1342014-12-17 09:41:04 -08004854 bytes_deleted += extent_num_bytes;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08004855
4856 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
4857 extent_start, extent_num_bytes, 0);
4858 ref.real_root = root->root_key.objectid;
4859 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
4860 ino, extent_offset);
4861 ret = btrfs_free_extent(trans, &ref);
Omar Sandoval05522102018-05-11 13:13:31 -07004862 if (ret) {
4863 btrfs_abort_transaction(trans, ret);
4864 break;
4865 }
Chris Mason28f75a02015-02-04 06:59:29 -08004866 if (be_nice) {
Lu Fengqi7c861622018-10-11 13:40:36 +08004867 if (btrfs_should_throttle_delayed_refs(trans))
Thomas Meyer897ca812017-10-07 16:02:21 +02004868 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004869 }
Chris Mason39279cc2007-06-12 06:35:45 -04004870 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004871
Yan, Zheng80825102009-11-12 09:35:36 +00004872 if (found_type == BTRFS_INODE_ITEM_KEY)
4873 break;
4874
4875 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004876 path->slots[0] != pending_del_slot ||
Josef Bacik28bad212018-12-03 10:20:38 -05004877 should_throttle) {
Yan, Zheng80825102009-11-12 09:35:36 +00004878 if (pending_del_nr) {
4879 ret = btrfs_del_items(trans, root, path,
4880 pending_del_slot,
4881 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004882 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004883 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004884 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004885 }
Yan, Zheng80825102009-11-12 09:35:36 +00004886 pending_del_nr = 0;
4887 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004888 btrfs_release_path(path);
Josef Bacik28bad212018-12-03 10:20:38 -05004889
Chris Mason28f75a02015-02-04 06:59:29 -08004890 /*
Josef Bacik28bad212018-12-03 10:20:38 -05004891 * We can generate a lot of delayed refs, so we need to
4892 * throttle every once and a while and make sure we're
4893 * adding enough space to keep up with the work we are
4894 * generating. Since we hold a transaction here we
4895 * can't flush, and we don't want to FLUSH_LIMIT because
4896 * we could have generated too many delayed refs to
4897 * actually allocate, so just bail if we're short and
4898 * let the normal reservation dance happen higher up.
Chris Mason28f75a02015-02-04 06:59:29 -08004899 */
Josef Bacik28bad212018-12-03 10:20:38 -05004900 if (should_throttle) {
4901 ret = btrfs_delayed_refs_rsv_refill(fs_info,
4902 BTRFS_RESERVE_NO_FLUSH);
4903 if (ret) {
4904 ret = -EAGAIN;
4905 break;
4906 }
Chris Mason28f75a02015-02-04 06:59:29 -08004907 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004908 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004909 } else {
4910 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004911 }
Chris Mason39279cc2007-06-12 06:35:45 -04004912 }
Yan, Zheng80825102009-11-12 09:35:36 +00004913out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004914 if (ret >= 0 && pending_del_nr) {
4915 int err;
4916
4917 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004918 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004919 if (err) {
4920 btrfs_abort_transaction(trans, err);
4921 ret = err;
4922 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004923 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004924 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4925 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004926 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004927 last_size = new_size;
Nikolay Borisov50743392020-11-02 16:48:55 +02004928 btrfs_inode_safe_disk_i_size_write(inode, last_size);
4929 unlock_extent_cached(&inode->io_tree, lock_start, (u64)-1,
4930 &cached_state);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004931 }
Chris Mason28ed1342014-12-17 09:41:04 -08004932
Chris Mason39279cc2007-06-12 06:35:45 -04004933 btrfs_free_path(path);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004934 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004935}
4936
Chris Masona52d9a82007-08-27 16:49:44 -04004937/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304938 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004939 * @inode - inode that we're zeroing
4940 * @from - the offset to start zeroing
4941 * @len - the length to zero, 0 to zero the entire range respective to the
4942 * offset
4943 * @front - zero up to the offset instead of from the offset on
4944 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304945 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004946 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004947 */
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004948int btrfs_truncate_block(struct btrfs_inode *inode, loff_t from, loff_t len,
4949 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004950{
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004951 struct btrfs_fs_info *fs_info = inode->root->fs_info;
4952 struct address_space *mapping = inode->vfs_inode.i_mapping;
4953 struct extent_io_tree *io_tree = &inode->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004954 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004955 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004956 struct extent_changeset *data_reserved = NULL;
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004957 bool only_release_metadata = false;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004958 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004959 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304960 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004961 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004962 gfp_t mask = btrfs_alloc_write_mask(mapping);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004963 size_t write_bytes = blocksize;
Chris Masona52d9a82007-08-27 16:49:44 -04004964 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304965 u64 block_start;
4966 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004967
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004968 if (IS_ALIGNED(offset, blocksize) &&
4969 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004970 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304971
Josef Bacik8b62f872017-10-19 14:15:55 -04004972 block_start = round_down(from, blocksize);
4973 block_end = block_start + blocksize - 1;
4974
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004975 ret = btrfs_check_data_free_space(inode, &data_reserved, block_start,
4976 blocksize);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004977 if (ret < 0) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004978 if (btrfs_check_nocow_lock(inode, block_start, &write_bytes) > 0) {
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004979 /* For nocow case, no need to reserve data space */
4980 only_release_metadata = true;
4981 } else {
4982 goto out;
4983 }
4984 }
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004985 ret = btrfs_delalloc_reserve_metadata(inode, blocksize);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004986 if (ret < 0) {
4987 if (!only_release_metadata)
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004988 btrfs_free_reserved_data_space(inode, data_reserved,
4989 block_start, blocksize);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08004990 goto out;
4991 }
Chris Mason211c17f2008-05-15 09:13:45 -04004992again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004993 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004994 if (!page) {
Nikolay Borisov217f42e2020-11-02 16:49:03 +02004995 btrfs_delalloc_release_space(inode, data_reserved, block_start,
4996 blocksize, true);
4997 btrfs_delalloc_release_extents(inode, blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004998 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004999 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04005000 }
Qu Wenruo32443de2021-01-26 16:34:00 +08005001 ret = set_page_extent_mapped(page);
5002 if (ret < 0)
5003 goto out_unlock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005004
Chris Masona52d9a82007-08-27 16:49:44 -04005005 if (!PageUptodate(page)) {
5006 ret = btrfs_readpage(NULL, page);
5007 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04005008 if (page->mapping != mapping) {
5009 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005010 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04005011 goto again;
5012 }
Chris Masona52d9a82007-08-27 16:49:44 -04005013 if (!PageUptodate(page)) {
5014 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04005015 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04005016 }
5017 }
Chris Mason211c17f2008-05-15 09:13:45 -04005018 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005019
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305020 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005021
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005022 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005023 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305024 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01005025 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005026 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005027 put_page(page);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03005028 btrfs_start_ordered_extent(ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005029 btrfs_put_ordered_extent(ordered);
5030 goto again;
5031 }
5032
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005033 clear_extent_bit(&inode->io_tree, block_start, block_end,
Omar Sandovale1821632019-08-15 14:04:04 -07005034 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
5035 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04005036
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005037 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03005038 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005039 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305040 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01005041 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005042 goto out_unlock;
5043 }
5044
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305045 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04005046 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305047 len = blocksize - offset;
Josef Bacik2aaa6652012-08-29 14:27:18 -04005048 if (front)
Ira Weinyd048b9c2021-05-04 18:40:07 -07005049 memzero_page(page, (block_start - page_offset(page)),
5050 offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04005051 else
Ira Weinyd048b9c2021-05-04 18:40:07 -07005052 memzero_page(page, (block_start - page_offset(page)) + offset,
5053 len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005054 flush_dcache_page(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005055 }
Chris Mason247e7432008-07-17 12:53:51 -04005056 ClearPageChecked(page);
Qu Wenruo6c9ac8b2021-05-31 16:50:51 +08005057 btrfs_page_set_dirty(fs_info, page, block_start, block_end + 1 - block_start);
David Sterbae43bbe52017-12-12 21:43:52 +01005058 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04005059
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005060 if (only_release_metadata)
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005061 set_extent_bit(&inode->io_tree, block_start, block_end,
Nikolay Borisov1cab5e72020-11-05 11:08:00 +02005062 EXTENT_NORESERVE, 0, NULL, NULL, GFP_NOFS, NULL);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005063
Chris Mason89642222008-07-24 09:41:53 -04005064out_unlock:
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005065 if (ret) {
5066 if (only_release_metadata)
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005067 btrfs_delalloc_release_metadata(inode, blocksize, true);
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005068 else
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005069 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005070 block_start, blocksize, true);
5071 }
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005072 btrfs_delalloc_release_extents(inode, blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04005073 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005074 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04005075out:
Qu Wenruo6d4572a2020-06-24 07:23:50 +08005076 if (only_release_metadata)
Nikolay Borisov217f42e2020-11-02 16:49:03 +02005077 btrfs_check_nocow_unlock(inode);
Qu Wenruo364ecf32017-02-27 15:10:38 +08005078 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04005079 return ret;
5080}
5081
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005082static int maybe_insert_hole(struct btrfs_root *root, struct btrfs_inode *inode,
Josef Bacik16e75492013-10-22 12:18:51 -04005083 u64 offset, u64 len)
5084{
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005085 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik16e75492013-10-22 12:18:51 -04005086 struct btrfs_trans_handle *trans;
Filipe Manana5893dfb2020-11-04 11:07:32 +00005087 struct btrfs_drop_extents_args drop_args = { 0 };
Josef Bacik16e75492013-10-22 12:18:51 -04005088 int ret;
5089
5090 /*
5091 * Still need to make sure the inode looks like it's been updated so
5092 * that any holes get logged if we fsync.
5093 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005094 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005095 inode->last_trans = fs_info->generation;
5096 inode->last_sub_trans = root->log_transid;
5097 inode->last_log_commit = root->last_log_commit;
Josef Bacik16e75492013-10-22 12:18:51 -04005098 return 0;
5099 }
5100
5101 /*
5102 * 1 - for the one we're dropping
5103 * 1 - for the one we're adding
5104 * 1 - for updating the inode.
5105 */
5106 trans = btrfs_start_transaction(root, 3);
5107 if (IS_ERR(trans))
5108 return PTR_ERR(trans);
5109
Filipe Manana5893dfb2020-11-04 11:07:32 +00005110 drop_args.start = offset;
5111 drop_args.end = offset + len;
5112 drop_args.drop_cache = true;
5113
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005114 ret = btrfs_drop_extents(trans, root, inode, &drop_args);
Josef Bacik16e75492013-10-22 12:18:51 -04005115 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005116 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005117 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04005118 return ret;
5119 }
5120
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005121 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01005122 offset, 0, 0, len, 0, len, 0, 0, 0);
Filipe Manana2766ff62020-11-04 11:07:34 +00005123 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005124 btrfs_abort_transaction(trans, ret);
Filipe Manana2766ff62020-11-04 11:07:34 +00005125 } else {
Nikolay Borisova4ba6cc2020-11-02 16:49:00 +02005126 btrfs_update_inode_bytes(inode, 0, drop_args.bytes_found);
5127 btrfs_update_inode(trans, root, inode);
Filipe Manana2766ff62020-11-04 11:07:34 +00005128 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005129 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04005130 return ret;
5131}
5132
Josef Bacik695a0d02011-03-04 15:46:53 -05005133/*
5134 * This function puts in dummy file extents for the area we're creating a hole
5135 * for. So if we are truncating this file to a larger size we need to insert
5136 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
5137 * the range between oldsize and size
5138 */
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005139int btrfs_cont_expand(struct btrfs_inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04005140{
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005141 struct btrfs_root *root = inode->root;
5142 struct btrfs_fs_info *fs_info = root->fs_info;
5143 struct extent_io_tree *io_tree = &inode->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04005144 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005145 struct extent_state *cached_state = NULL;
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005146 struct extent_map_tree *em_tree = &inode->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005147 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
5148 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04005149 u64 last_byte;
5150 u64 cur_offset;
5151 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005152 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04005153
Josef Bacika71754f2013-06-17 17:14:39 -04005154 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305155 * If our size started in the middle of a block we need to zero out the
5156 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04005157 * expose stale data.
5158 */
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005159 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04005160 if (err)
5161 return err;
5162
Yan Zheng9036c102008-10-30 14:19:41 -04005163 if (size <= hole_start)
5164 return 0;
5165
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005166 btrfs_lock_and_flush_ordered_range(inode, hole_start, block_end - 1,
5167 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005168 cur_offset = hole_start;
5169 while (1) {
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005170 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
Omar Sandoval39b07b52019-12-02 17:34:23 -08005171 block_end - cur_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005172 if (IS_ERR(em)) {
5173 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00005174 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005175 break;
5176 }
Yan Zheng9036c102008-10-30 14:19:41 -04005177 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005178 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Josef Bacik9ddc9592020-01-17 09:02:22 -05005179 hole_size = last_byte - cur_offset;
5180
Yan, Zheng80825102009-11-12 09:35:36 +00005181 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04005182 struct extent_map *hole_em;
Yan, Zheng80825102009-11-12 09:35:36 +00005183
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005184 err = maybe_insert_hole(root, inode, cur_offset,
5185 hole_size);
Josef Bacik16e75492013-10-22 12:18:51 -04005186 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005187 break;
Josef Bacik9ddc9592020-01-17 09:02:22 -05005188
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005189 err = btrfs_inode_set_file_extent_range(inode,
Josef Bacik9ddc9592020-01-17 09:02:22 -05005190 cur_offset, hole_size);
5191 if (err)
5192 break;
5193
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005194 btrfs_drop_extent_cache(inode, cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005195 cur_offset + hole_size - 1, 0);
5196 hole_em = alloc_extent_map();
5197 if (!hole_em) {
5198 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005199 &inode->runtime_flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005200 goto next;
5201 }
5202 hole_em->start = cur_offset;
5203 hole_em->len = hole_size;
5204 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005205
Josef Bacik5dc562c2012-08-17 13:14:17 -04005206 hole_em->block_start = EXTENT_MAP_HOLE;
5207 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005208 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005209 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005210 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005211 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005212
5213 while (1) {
5214 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005215 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005216 write_unlock(&em_tree->lock);
5217 if (err != -EEXIST)
5218 break;
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005219 btrfs_drop_extent_cache(inode, cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005220 cur_offset +
5221 hole_size - 1, 0);
5222 }
5223 free_extent_map(hole_em);
Josef Bacik9ddc9592020-01-17 09:02:22 -05005224 } else {
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005225 err = btrfs_inode_set_file_extent_range(inode,
Josef Bacik9ddc9592020-01-17 09:02:22 -05005226 cur_offset, hole_size);
5227 if (err)
5228 break;
Yan Zheng9036c102008-10-30 14:19:41 -04005229 }
Josef Bacik16e75492013-10-22 12:18:51 -04005230next:
Yan Zheng9036c102008-10-30 14:19:41 -04005231 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005232 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005233 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005234 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005235 break;
5236 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005237 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005238 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005239 return err;
5240}
5241
Eric Sandeen3972f262013-01-12 02:57:22 +00005242static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005243{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005244 struct btrfs_root *root = BTRFS_I(inode)->root;
5245 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005246 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005247 loff_t newsize = attr->ia_size;
5248 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005249 int ret;
5250
Eric Sandeen3972f262013-01-12 02:57:22 +00005251 /*
5252 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5253 * special case where we need to update the times despite not having
5254 * these flags set. For all other operations the VFS set these flags
5255 * explicitly if it wants a timestamp update.
5256 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005257 if (newsize != oldsize) {
5258 inode_inc_iversion(inode);
5259 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5260 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005261 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005262 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005263
Josef Bacika41ad392011-01-31 15:30:16 -05005264 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005265 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005266 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005267 * This is to ensure the snapshot captures a fully consistent
5268 * state of this file - if the snapshot captures this expanding
5269 * truncation, it must capture all writes that happened before
5270 * this truncation.
5271 */
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02005272 btrfs_drew_write_lock(&root->snapshot_lock);
Nikolay Borisovb06359a2020-11-02 16:49:04 +02005273 ret = btrfs_cont_expand(BTRFS_I(inode), oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005274 if (ret) {
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02005275 btrfs_drew_write_unlock(&root->snapshot_lock);
Yan, Zheng80825102009-11-12 09:35:36 +00005276 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005277 }
Yan, Zheng80825102009-11-12 09:35:36 +00005278
Miao Xief4a2f4c2011-12-14 20:12:01 -05005279 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005280 if (IS_ERR(trans)) {
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02005281 btrfs_drew_write_unlock(&root->snapshot_lock);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005282 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005283 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005284
5285 i_size_write(inode, newsize);
Nikolay Borisov76aea532020-11-02 16:48:53 +02005286 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305287 pagecache_isize_extended(inode, oldsize, newsize);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02005288 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Nikolay Borisovdcc3eb92020-01-30 14:59:45 +02005289 btrfs_drew_write_unlock(&root->snapshot_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005290 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005291 } else {
Naohiro Aota24c0a722021-02-04 19:22:09 +09005292 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5293
5294 if (btrfs_is_zoned(fs_info)) {
5295 ret = btrfs_wait_ordered_range(inode,
5296 ALIGN(newsize, fs_info->sectorsize),
5297 (u64)-1);
5298 if (ret)
5299 return ret;
5300 }
Yan, Zheng80825102009-11-12 09:35:36 +00005301
Josef Bacika41ad392011-01-31 15:30:16 -05005302 /*
5303 * We're truncating a file that used to have good data down to
Nikolay Borisov1fd40332020-10-01 09:40:39 +03005304 * zero. Make sure any new writes to the file get on disk
5305 * on close.
Josef Bacika41ad392011-01-31 15:30:16 -05005306 */
5307 if (newsize == 0)
Nikolay Borisov1fd40332020-10-01 09:40:39 +03005308 set_bit(BTRFS_INODE_FLUSH_ON_CLOSE,
Josef Bacik72ac3c02012-05-23 14:13:11 -04005309 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005310
Josef Bacika41ad392011-01-31 15:30:16 -05005311 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005312
Miao Xie2e60a512013-02-08 07:01:08 +00005313 inode_dio_wait(inode);
Miao Xie2e60a512013-02-08 07:01:08 +00005314
Filipe Manana213e8c52018-02-06 20:40:31 +00005315 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005316 if (ret && inode->i_nlink) {
5317 int err;
5318
5319 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005320 * Truncate failed, so fix up the in-memory size. We
5321 * adjusted disk_i_size down as we removed extents, so
5322 * wait for disk_i_size to be stable and then update the
5323 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005324 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005325 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005326 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005327 return err;
5328 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005329 }
Yan, Zheng80825102009-11-12 09:35:36 +00005330 }
5331
Josef Bacika41ad392011-01-31 15:30:16 -05005332 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005333}
5334
Christian Brauner549c7292021-01-21 14:19:43 +01005335static int btrfs_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5336 struct iattr *attr)
Chris Mason39279cc2007-06-12 06:35:45 -04005337{
David Howells2b0143b2015-03-17 22:25:59 +00005338 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005339 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005340 int err;
5341
Li Zefanb83cc962010-12-20 16:04:08 +08005342 if (btrfs_root_readonly(root))
5343 return -EROFS;
5344
Christian Brauner2f221d62021-01-21 14:19:26 +01005345 err = setattr_prepare(&init_user_ns, dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005346 if (err)
5347 return err;
5348
Chris Mason5a3f23d2009-03-31 13:27:11 -04005349 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005350 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005351 if (err)
5352 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005353 }
Yan Zheng9036c102008-10-30 14:19:41 -04005354
Christoph Hellwig10257742010-06-04 11:30:02 +02005355 if (attr->ia_valid) {
Christian Brauner2f221d62021-01-21 14:19:26 +01005356 setattr_copy(&init_user_ns, inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005357 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005358 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005359
Josef Bacik22c44fe2011-11-30 10:45:38 -05005360 if (!err && attr->ia_valid & ATTR_MODE)
Christian Braunere65ce2a2021-01-21 14:19:27 +01005361 err = posix_acl_chmod(&init_user_ns, inode,
5362 inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005363 }
5364
Chris Mason39279cc2007-06-12 06:35:45 -04005365 return err;
5366}
Chris Mason61295eb2008-01-14 16:24:38 -05005367
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005368/*
5369 * While truncating the inode pages during eviction, we get the VFS calling
5370 * btrfs_invalidatepage() against each page of the inode. This is slow because
5371 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5372 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5373 * extent_state structures over and over, wasting lots of time.
5374 *
5375 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5376 * those expensive operations on a per page basis and do only the ordered io
5377 * finishing, while we release here the extent_map and extent_state structures,
5378 * without the excessive merging and splitting.
5379 */
5380static void evict_inode_truncate_pages(struct inode *inode)
5381{
5382 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5383 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5384 struct rb_node *node;
5385
5386 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005387 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005388
5389 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08005390 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005391 struct extent_map *em;
5392
Liu Bo07e1ce02018-08-23 03:51:52 +08005393 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005394 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005395 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5396 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005397 remove_extent_mapping(map_tree, em);
5398 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005399 if (need_resched()) {
5400 write_unlock(&map_tree->lock);
5401 cond_resched();
5402 write_lock(&map_tree->lock);
5403 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005404 }
5405 write_unlock(&map_tree->lock);
5406
Filipe Manana6ca07092015-05-26 00:55:42 +01005407 /*
5408 * Keep looping until we have no more ranges in the io tree.
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07005409 * We can have ongoing bios started by readahead that have
5410 * their endio callback (extent_io.c:end_bio_extent_readpage)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005411 * still in progress (unlocked the pages in the bio but did not yet
5412 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005413 * ranges can still be locked and eviction started because before
5414 * submitting those bios, which are executed by a separate task (work
5415 * queue kthread), inode references (inode->i_count) were not taken
5416 * (which would be dropped in the end io callback of each bio).
5417 * Therefore here we effectively end up waiting for those bios and
5418 * anyone else holding locked ranges without having bumped the inode's
5419 * reference count - if we don't do it, when they access the inode's
5420 * io_tree to unlock a range it may be too late, leading to an
5421 * use-after-free issue.
5422 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005423 spin_lock(&io_tree->lock);
5424 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5425 struct extent_state *state;
5426 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005427 u64 start;
5428 u64 end;
Filipe Manana421f0922018-10-12 13:02:48 +01005429 unsigned state_flags;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005430
5431 node = rb_first(&io_tree->state);
5432 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005433 start = state->start;
5434 end = state->end;
Filipe Manana421f0922018-10-12 13:02:48 +01005435 state_flags = state->state;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005436 spin_unlock(&io_tree->lock);
5437
David Sterbaff13db42015-12-03 14:30:40 +01005438 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005439
5440 /*
5441 * If still has DELALLOC flag, the extent didn't reach disk,
5442 * and its reserved space won't be freed by delayed_ref.
5443 * So we need to free its reserved space here.
5444 * (Refer to comment in btrfs_invalidatepage, case 2)
5445 *
5446 * Note, end is the bytenr of last byte, so we need + 1 here.
5447 */
Filipe Manana421f0922018-10-12 13:02:48 +01005448 if (state_flags & EXTENT_DELALLOC)
Nikolay Borisov8b8a9792020-06-03 08:55:11 +03005449 btrfs_qgroup_free_data(BTRFS_I(inode), NULL, start,
5450 end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005451
Filipe Manana6ca07092015-05-26 00:55:42 +01005452 clear_extent_bit(io_tree, start, end,
Omar Sandovale1821632019-08-15 14:04:04 -07005453 EXTENT_LOCKED | EXTENT_DELALLOC |
5454 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
5455 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005456
Filipe Manana7064dd52014-08-08 02:47:05 +01005457 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005458 spin_lock(&io_tree->lock);
5459 }
5460 spin_unlock(&io_tree->lock);
5461}
5462
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005463static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04005464 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005465{
5466 struct btrfs_fs_info *fs_info = root->fs_info;
5467 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikd3984c92019-08-01 18:19:37 -04005468 struct btrfs_trans_handle *trans;
Josef Bacik2bd36e72019-08-22 15:14:33 -04005469 u64 delayed_refs_extra = btrfs_calc_insert_metadata_size(fs_info, 1);
Josef Bacikd3984c92019-08-01 18:19:37 -04005470 int ret;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005471
Josef Bacikd3984c92019-08-01 18:19:37 -04005472 /*
5473 * Eviction should be taking place at some place safe because of our
5474 * delayed iputs. However the normal flushing code will run delayed
5475 * iputs, so we cannot use FLUSH_ALL otherwise we'll deadlock.
5476 *
5477 * We reserve the delayed_refs_extra here again because we can't use
5478 * btrfs_start_transaction(root, 0) for the same deadlocky reason as
5479 * above. We reserve our extra bit here because we generate a ton of
5480 * delayed refs activity by truncating.
5481 *
5482 * If we cannot make our reservation we'll attempt to steal from the
5483 * global reserve, because we really want to be able to free up space.
5484 */
5485 ret = btrfs_block_rsv_refill(root, rsv, rsv->size + delayed_refs_extra,
5486 BTRFS_RESERVE_FLUSH_EVICT);
5487 if (ret) {
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005488 /*
5489 * Try to steal from the global reserve if there is space for
5490 * it.
5491 */
Josef Bacikd3984c92019-08-01 18:19:37 -04005492 if (btrfs_check_space_for_delayed_refs(fs_info) ||
5493 btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, 0)) {
5494 btrfs_warn(fs_info,
5495 "could not allocate space for delete; will truncate on mount");
5496 return ERR_PTR(-ENOSPC);
5497 }
5498 delayed_refs_extra = 0;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005499 }
Josef Bacikd3984c92019-08-01 18:19:37 -04005500
5501 trans = btrfs_join_transaction(root);
5502 if (IS_ERR(trans))
5503 return trans;
5504
5505 if (delayed_refs_extra) {
5506 trans->block_rsv = &fs_info->trans_block_rsv;
5507 trans->bytes_reserved = delayed_refs_extra;
5508 btrfs_block_rsv_migrate(rsv, trans->block_rsv,
5509 delayed_refs_extra, 1);
5510 }
5511 return trans;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005512}
5513
Al Virobd555972010-06-07 11:35:40 -04005514void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005515{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005516 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005517 struct btrfs_trans_handle *trans;
5518 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005519 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005520 int ret;
5521
liubo1abe9b82011-03-24 11:18:59 +00005522 trace_btrfs_inode_evict(inode);
5523
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005524 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005525 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005526 return;
5527 }
5528
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005529 evict_inode_truncate_pages(inode);
5530
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005531 if (inode->i_nlink &&
5532 ((btrfs_root_refs(&root->root_item) != 0 &&
5533 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005534 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005535 goto no_delete;
5536
Omar Sandoval27919062018-05-11 13:13:37 -07005537 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005538 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005539
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005540 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005541
Omar Sandoval7b40b692018-05-11 13:13:33 -07005542 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005543 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005544
Yan, Zheng76dda932009-09-21 16:00:26 -04005545 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005546 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5547 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005548 goto no_delete;
5549 }
5550
Nikolay Borisovaa790212017-01-10 20:35:40 +02005551 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005552 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005553 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005554
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005555 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005556 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005557 goto no_delete;
Josef Bacik2bd36e72019-08-22 15:14:33 -04005558 rsv->size = btrfs_calc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005559 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005560
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005561 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005562
Yan, Zheng80825102009-11-12 09:35:36 +00005563 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005564 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005565 if (IS_ERR(trans))
5566 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005567
5568 trans->block_rsv = rsv;
5569
Nikolay Borisov50743392020-11-02 16:48:55 +02005570 ret = btrfs_truncate_inode_items(trans, root, BTRFS_I(inode),
Filipe Manana0d7d3162021-05-24 11:35:55 +01005571 0, 0, NULL);
Omar Sandoval27919062018-05-11 13:13:37 -07005572 trans->block_rsv = &fs_info->trans_block_rsv;
5573 btrfs_end_transaction(trans);
5574 btrfs_btree_balance_dirty(fs_info);
5575 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5576 goto free_rsv;
5577 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005578 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005579 }
5580
Josef Bacik4ef31a42013-08-13 14:10:08 -04005581 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005582 * Errors here aren't a big deal, it just means we leave orphan items in
5583 * the tree. They will be cleaned up on the next mount. If the inode
5584 * number gets reused, cleanup deletes the orphan item without doing
5585 * anything, and unlink reuses the existing orphan item.
5586 *
5587 * If it turns out that we are dropping too many of these, we might want
5588 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005589 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005590 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005591 if (!IS_ERR(trans)) {
5592 trans->block_rsv = rsv;
5593 btrfs_orphan_del(trans, BTRFS_I(inode));
5594 trans->block_rsv = &fs_info->trans_block_rsv;
5595 btrfs_end_transaction(trans);
5596 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005597
Omar Sandoval27919062018-05-11 13:13:37 -07005598free_rsv:
5599 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005600no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005601 /*
5602 * If we didn't successfully delete, the orphan item will still be in
5603 * the tree and we'll retry on the next mount. Again, we might also want
5604 * to retry these periodically in the future.
5605 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005606 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005607 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005608}
5609
5610/*
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005611 * Return the key found in the dir entry in the location pointer, fill @type
5612 * with BTRFS_FT_*, and return 0.
5613 *
Su Yue005d6712018-03-05 17:13:37 +08005614 * If no dir entries were found, returns -ENOENT.
5615 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005616 */
5617static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005618 struct btrfs_key *location, u8 *type)
Chris Mason39279cc2007-06-12 06:35:45 -04005619{
5620 const char *name = dentry->d_name.name;
5621 int namelen = dentry->d_name.len;
5622 struct btrfs_dir_item *di;
5623 struct btrfs_path *path;
5624 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005625 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005626
5627 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005628 if (!path)
5629 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005630
David Sterbaf85b7372017-01-20 14:54:07 +01005631 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5632 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005633 if (IS_ERR_OR_NULL(di)) {
5634 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005635 goto out;
5636 }
Chris Masond3977122009-01-05 21:25:51 -05005637
Chris Mason5f39d392007-10-15 16:14:19 -04005638 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005639 if (location->type != BTRFS_INODE_ITEM_KEY &&
5640 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005641 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005642 btrfs_warn(root->fs_info,
5643"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5644 __func__, name, btrfs_ino(BTRFS_I(dir)),
5645 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005646 }
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005647 if (!ret)
5648 *type = btrfs_dir_type(path->nodes[0], di);
Chris Mason39279cc2007-06-12 06:35:45 -04005649out:
Chris Mason39279cc2007-06-12 06:35:45 -04005650 btrfs_free_path(path);
5651 return ret;
5652}
5653
5654/*
5655 * when we hit a tree root in a directory, the btrfs part of the inode
5656 * needs to be changed to reflect the root directory of the tree root. This
5657 * is kind of like crossing a mount point.
5658 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005659static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005660 struct inode *dir,
5661 struct dentry *dentry,
5662 struct btrfs_key *location,
5663 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005664{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005665 struct btrfs_path *path;
5666 struct btrfs_root *new_root;
5667 struct btrfs_root_ref *ref;
5668 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005669 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005670 int ret;
5671 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005672
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005673 path = btrfs_alloc_path();
5674 if (!path) {
5675 err = -ENOMEM;
5676 goto out;
5677 }
Chris Mason39279cc2007-06-12 06:35:45 -04005678
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005679 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005680 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5681 key.type = BTRFS_ROOT_REF_KEY;
5682 key.offset = location->objectid;
5683
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005684 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005685 if (ret) {
5686 if (ret < 0)
5687 err = ret;
5688 goto out;
5689 }
Chris Mason39279cc2007-06-12 06:35:45 -04005690
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005691 leaf = path->nodes[0];
5692 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005693 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005694 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5695 goto out;
5696
5697 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5698 (unsigned long)(ref + 1),
5699 dentry->d_name.len);
5700 if (ret)
5701 goto out;
5702
David Sterbab3b4aa72011-04-21 01:20:15 +02005703 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005704
David Sterba56e93572020-05-15 19:35:55 +02005705 new_root = btrfs_get_fs_root(fs_info, location->objectid, true);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005706 if (IS_ERR(new_root)) {
5707 err = PTR_ERR(new_root);
5708 goto out;
5709 }
5710
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005711 *sub_root = new_root;
5712 location->objectid = btrfs_root_dirid(&new_root->root_item);
5713 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005714 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005715 err = 0;
5716out:
5717 btrfs_free_path(path);
5718 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005719}
5720
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005721static void inode_tree_add(struct inode *inode)
5722{
5723 struct btrfs_root *root = BTRFS_I(inode)->root;
5724 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005725 struct rb_node **p;
5726 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005727 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005728 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005729
Al Viro1d3382cb2010-10-23 15:19:20 -04005730 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005731 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005732 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005733 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005734 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005735 while (*p) {
5736 parent = *p;
5737 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5738
David Sterba37508512018-06-29 10:56:40 +02005739 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005740 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005741 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005742 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005743 else {
5744 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005745 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005746 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005747 RB_CLEAR_NODE(parent);
5748 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005749 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005750 }
5751 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005752 rb_link_node(new, parent, p);
5753 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005754 spin_unlock(&root->inode_lock);
5755}
5756
Nikolay Borisovb79b7242020-08-31 14:42:38 +03005757static void inode_tree_del(struct btrfs_inode *inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005758{
Nikolay Borisovb79b7242020-08-31 14:42:38 +03005759 struct btrfs_root *root = inode->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005760 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005761
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005762 spin_lock(&root->inode_lock);
Nikolay Borisovb79b7242020-08-31 14:42:38 +03005763 if (!RB_EMPTY_NODE(&inode->rb_node)) {
5764 rb_erase(&inode->rb_node, &root->inode_tree);
5765 RB_CLEAR_NODE(&inode->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005766 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005767 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005768 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005769
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005770 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005771 spin_lock(&root->inode_lock);
5772 empty = RB_EMPTY_ROOT(&root->inode_tree);
5773 spin_unlock(&root->inode_lock);
5774 if (empty)
5775 btrfs_add_dead_root(root);
5776 }
5777}
5778
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005779
Chris Masone02119d2008-09-05 16:13:11 -04005780static int btrfs_init_locked_inode(struct inode *inode, void *p)
5781{
5782 struct btrfs_iget_args *args = p;
David Sterba0202e832020-05-15 19:35:59 +02005783
5784 inode->i_ino = args->ino;
5785 BTRFS_I(inode)->location.objectid = args->ino;
5786 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
5787 BTRFS_I(inode)->location.offset = 0;
Josef Bacik5c8fd992020-02-14 16:11:43 -05005788 BTRFS_I(inode)->root = btrfs_grab_root(args->root);
5789 BUG_ON(args->root && !BTRFS_I(inode)->root);
Chris Mason39279cc2007-06-12 06:35:45 -04005790 return 0;
5791}
5792
5793static int btrfs_find_actor(struct inode *inode, void *opaque)
5794{
5795 struct btrfs_iget_args *args = opaque;
David Sterba0202e832020-05-15 19:35:59 +02005796
5797 return args->ino == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005798 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005799}
5800
David Sterba0202e832020-05-15 19:35:59 +02005801static struct inode *btrfs_iget_locked(struct super_block *s, u64 ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005802 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005803{
5804 struct inode *inode;
5805 struct btrfs_iget_args args;
David Sterba0202e832020-05-15 19:35:59 +02005806 unsigned long hashval = btrfs_inode_hash(ino, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005807
David Sterba0202e832020-05-15 19:35:59 +02005808 args.ino = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04005809 args.root = root;
5810
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005811 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005812 btrfs_init_locked_inode,
5813 (void *)&args);
5814 return inode;
5815}
5816
David Sterba4c66e0d2019-10-03 19:09:35 +02005817/*
David Sterba0202e832020-05-15 19:35:59 +02005818 * Get an inode object given its inode number and corresponding root.
David Sterba4c66e0d2019-10-03 19:09:35 +02005819 * Path can be preallocated to prevent recursing back to iget through
5820 * allocator. NULL is also valid but may require an additional allocation
5821 * later.
Balaji Rao1a54ef82008-07-21 02:01:04 +05305822 */
David Sterba0202e832020-05-15 19:35:59 +02005823struct inode *btrfs_iget_path(struct super_block *s, u64 ino,
David Sterba4c66e0d2019-10-03 19:09:35 +02005824 struct btrfs_root *root, struct btrfs_path *path)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305825{
5826 struct inode *inode;
5827
David Sterba0202e832020-05-15 19:35:59 +02005828 inode = btrfs_iget_locked(s, ino, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305829 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005830 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305831
5832 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005833 int ret;
5834
Filipe Manana4222ea72018-10-24 10:13:03 +01005835 ret = btrfs_read_locked_inode(inode, path);
Al Viro9bc2cef2018-07-29 23:04:50 +01005836 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005837 inode_tree_add(inode);
5838 unlock_new_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005839 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005840 iget_failed(inode);
5841 /*
5842 * ret > 0 can come from btrfs_search_slot called by
5843 * btrfs_read_locked_inode, this means the inode item
5844 * was not found.
5845 */
5846 if (ret > 0)
5847 ret = -ENOENT;
5848 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005849 }
5850 }
5851
Balaji Rao1a54ef82008-07-21 02:01:04 +05305852 return inode;
5853}
5854
David Sterba0202e832020-05-15 19:35:59 +02005855struct inode *btrfs_iget(struct super_block *s, u64 ino, struct btrfs_root *root)
Filipe Manana4222ea72018-10-24 10:13:03 +01005856{
David Sterba0202e832020-05-15 19:35:59 +02005857 return btrfs_iget_path(s, ino, root, NULL);
Filipe Manana4222ea72018-10-24 10:13:03 +01005858}
5859
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005860static struct inode *new_simple_dir(struct super_block *s,
5861 struct btrfs_key *key,
5862 struct btrfs_root *root)
5863{
5864 struct inode *inode = new_inode(s);
5865
5866 if (!inode)
5867 return ERR_PTR(-ENOMEM);
5868
Josef Bacik5c8fd992020-02-14 16:11:43 -05005869 BTRFS_I(inode)->root = btrfs_grab_root(root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005870 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005871 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005872
5873 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Omar Sandoval6bb6b512019-12-05 10:36:04 -08005874 /*
5875 * We only need lookup, the rest is read-only and there's no inode
5876 * associated with the dentry
5877 */
5878 inode->i_op = &simple_dir_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005879 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005880 inode->i_fop = &simple_dir_operations;
5881 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005882 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305883 inode->i_atime = inode->i_mtime;
5884 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005885 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005886
5887 return inode;
5888}
5889
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005890static inline u8 btrfs_inode_type(struct inode *inode)
5891{
5892 /*
5893 * Compile-time asserts that generic FT_* types still match
5894 * BTRFS_FT_* types
5895 */
5896 BUILD_BUG_ON(BTRFS_FT_UNKNOWN != FT_UNKNOWN);
5897 BUILD_BUG_ON(BTRFS_FT_REG_FILE != FT_REG_FILE);
5898 BUILD_BUG_ON(BTRFS_FT_DIR != FT_DIR);
5899 BUILD_BUG_ON(BTRFS_FT_CHRDEV != FT_CHRDEV);
5900 BUILD_BUG_ON(BTRFS_FT_BLKDEV != FT_BLKDEV);
5901 BUILD_BUG_ON(BTRFS_FT_FIFO != FT_FIFO);
5902 BUILD_BUG_ON(BTRFS_FT_SOCK != FT_SOCK);
5903 BUILD_BUG_ON(BTRFS_FT_SYMLINK != FT_SYMLINK);
5904
5905 return fs_umode_to_ftype(inode->i_mode);
5906}
5907
Chris Mason3de45862008-11-17 21:02:50 -05005908struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005909{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005910 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005911 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005912 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005913 struct btrfs_root *sub_root = root;
5914 struct btrfs_key location;
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005915 u8 di_type = 0;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005916 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005917
5918 if (dentry->d_name.len > BTRFS_NAME_LEN)
5919 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005920
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005921 ret = btrfs_inode_by_name(dir, dentry, &location, &di_type);
Chris Mason39279cc2007-06-12 06:35:45 -04005922 if (ret < 0)
5923 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005924
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005925 if (location.type == BTRFS_INODE_ITEM_KEY) {
David Sterba0202e832020-05-15 19:35:59 +02005926 inode = btrfs_iget(dir->i_sb, location.objectid, root);
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08005927 if (IS_ERR(inode))
5928 return inode;
5929
5930 /* Do extra check against inode mode with di_type */
5931 if (btrfs_inode_type(inode) != di_type) {
5932 btrfs_crit(fs_info,
5933"inode mode mismatch with dir: inode mode=0%o btrfs type=%u dir type=%u",
5934 inode->i_mode, btrfs_inode_type(inode),
5935 di_type);
5936 iput(inode);
5937 return ERR_PTR(-EUCLEAN);
5938 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005939 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005940 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005941
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005942 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005943 &location, &sub_root);
5944 if (ret < 0) {
5945 if (ret != -ENOENT)
5946 inode = ERR_PTR(ret);
5947 else
5948 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5949 } else {
David Sterba0202e832020-05-15 19:35:59 +02005950 inode = btrfs_iget(dir->i_sb, location.objectid, sub_root);
Chris Mason39279cc2007-06-12 06:35:45 -04005951 }
Josef Bacik87270022020-01-24 09:32:31 -05005952 if (root != sub_root)
Josef Bacik00246522020-01-24 09:33:01 -05005953 btrfs_put_root(sub_root);
Yan, Zheng76dda932009-09-21 16:00:26 -04005954
Julia Lawall34d19ba2011-01-24 19:55:19 +00005955 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005956 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005957 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005958 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005959 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005960 if (ret) {
5961 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005962 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005963 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005964 }
5965
Chris Mason3de45862008-11-17 21:02:50 -05005966 return inode;
5967}
5968
Nick Pigginfe15ce42011-01-07 17:49:23 +11005969static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005970{
5971 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005972 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005973
Li Zefan848cce02012-02-21 17:04:28 +08005974 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005975 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005976
Li Zefan848cce02012-02-21 17:04:28 +08005977 if (inode) {
5978 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005979 if (btrfs_root_refs(&root->root_item) == 0)
5980 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005981
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005982 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005983 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005984 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005985 return 0;
5986}
5987
Chris Mason3de45862008-11-17 21:02:50 -05005988static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005989 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005990{
Al Viro3837d202018-10-10 16:38:27 -04005991 struct inode *inode = btrfs_lookup_dentry(dir, dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005992
Al Viro3837d202018-10-10 16:38:27 -04005993 if (inode == ERR_PTR(-ENOENT))
5994 inode = NULL;
Al Viro41d28bc2014-10-12 22:24:21 -04005995 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005996}
5997
Josef Bacik23b5ec72017-07-24 15:14:25 -04005998/*
5999 * All this infrastructure exists because dir_emit can fault, and we are holding
6000 * the tree lock when doing readdir. For now just allocate a buffer and copy
6001 * our information into that, and then dir_emit from the buffer. This is
6002 * similar to what NFS does, only we don't keep the buffer around in pagecache
6003 * because I'm afraid I'll mess that up. Long term we need to make filldir do
6004 * copy_to_user_inatomic so we don't have to worry about page faulting under the
6005 * tree lock.
6006 */
6007static int btrfs_opendir(struct inode *inode, struct file *file)
6008{
6009 struct btrfs_file_private *private;
6010
6011 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
6012 if (!private)
6013 return -ENOMEM;
6014 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
6015 if (!private->filldir_buf) {
6016 kfree(private);
6017 return -ENOMEM;
6018 }
6019 file->private_data = private;
6020 return 0;
6021}
6022
6023struct dir_entry {
6024 u64 ino;
6025 u64 offset;
6026 unsigned type;
6027 int name_len;
6028};
6029
6030static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
6031{
6032 while (entries--) {
6033 struct dir_entry *entry = addr;
6034 char *name = (char *)(entry + 1);
6035
David Sterba92d32172018-04-16 21:10:14 +02006036 ctx->pos = get_unaligned(&entry->offset);
6037 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
6038 get_unaligned(&entry->ino),
6039 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04006040 return 1;
David Sterba92d32172018-04-16 21:10:14 +02006041 addr += sizeof(struct dir_entry) +
6042 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006043 ctx->pos++;
6044 }
6045 return 0;
6046}
6047
Al Viro9cdda8d2013-05-22 16:48:09 -04006048static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04006049{
Al Viro9cdda8d2013-05-22 16:48:09 -04006050 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04006051 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04006052 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04006053 struct btrfs_dir_item *di;
6054 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04006055 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04006056 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04006057 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08006058 struct list_head ins_list;
6059 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04006060 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04006061 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04006062 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04006063 char *name_ptr;
6064 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04006065 int entries = 0;
6066 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07006067 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006068 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04006069
Al Viro9cdda8d2013-05-22 16:48:09 -04006070 if (!dir_emit_dots(file, ctx))
6071 return 0;
6072
David Woodhouse49593bf2008-08-17 17:08:36 +01006073 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08006074 if (!path)
6075 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04006076
Josef Bacik23b5ec72017-07-24 15:14:25 -04006077 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01006078 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01006079
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006080 INIT_LIST_HEAD(&ins_list);
6081 INIT_LIST_HEAD(&del_list);
6082 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08006083
Josef Bacik23b5ec72017-07-24 15:14:25 -04006084again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006085 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04006086 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006087 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04006088
Chris Mason39279cc2007-06-12 06:35:45 -04006089 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6090 if (ret < 0)
6091 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01006092
6093 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04006094 struct dir_entry *entry;
6095
Chris Mason5f39d392007-10-15 16:14:19 -04006096 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04006097 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08006098 if (slot >= btrfs_header_nritems(leaf)) {
6099 ret = btrfs_next_leaf(root, path);
6100 if (ret < 0)
6101 goto err;
6102 else if (ret > 0)
6103 break;
6104 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04006105 }
Chris Mason3de45862008-11-17 21:02:50 -05006106
Chris Mason5f39d392007-10-15 16:14:19 -04006107 btrfs_item_key_to_cpu(leaf, &found_key, slot);
6108
6109 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04006110 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006111 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04006112 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04006113 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08006114 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006115 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08006116 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04006117 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006118 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006119 if ((total_len + sizeof(struct dir_entry) + name_len) >=
6120 PAGE_SIZE) {
6121 btrfs_release_path(path);
6122 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6123 if (ret)
6124 goto nopos;
6125 addr = private->filldir_buf;
6126 entries = 0;
6127 total_len = 0;
6128 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04006129 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04006130
6131 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02006132 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006133 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006134 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
6135 name_len);
Phillip Potter7d157c32019-03-26 21:39:34 +00006136 put_unaligned(fs_ftype_to_dtype(btrfs_dir_type(leaf, di)),
David Sterba92d32172018-04-16 21:10:14 +02006137 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006138 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02006139 put_unaligned(location.objectid, &entry->ino);
6140 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04006141 entries++;
6142 addr += sizeof(struct dir_entry) + name_len;
6143 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08006144next:
6145 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04006146 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04006147 btrfs_release_path(path);
6148
6149 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
6150 if (ret)
6151 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01006152
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04006153 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006154 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01006155 goto nopos;
6156
Zach Browndb62efb2013-07-11 16:19:42 -07006157 /*
6158 * Stop new entries from being returned after we return the last
6159 * entry.
6160 *
6161 * New directory entries are assigned a strictly increasing
6162 * offset. This means that new entries created during readdir
6163 * are *guaranteed* to be seen in the future by that readdir.
6164 * This has broken buggy programs which operate on names as
6165 * they're returned by readdir. Until we re-use freed offsets
6166 * we have this hack to stop new entries from being returned
6167 * under the assumption that they'll never reach this huge
6168 * offset.
6169 *
6170 * This is being careful not to overflow 32bit loff_t unless the
6171 * last entry requires it because doing so has broken 32bit apps
6172 * in the past.
6173 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01006174 if (ctx->pos >= INT_MAX)
6175 ctx->pos = LLONG_MAX;
6176 else
6177 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04006178nopos:
6179 ret = 0;
6180err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07006181 if (put)
6182 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04006183 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006184 return ret;
6185}
6186
Chris Mason39279cc2007-06-12 06:35:45 -04006187/*
Chris Mason54aa1f42007-06-22 14:16:25 -04006188 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04006189 * inode changes. But, it is most likely to find the inode in cache.
6190 * FIXME, needs more benchmarking...there are no reasons other than performance
6191 * to keep or drop this code.
6192 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00006193static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006194{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006195 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006196 struct btrfs_root *root = BTRFS_I(inode)->root;
6197 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006198 int ret;
6199
Josef Bacik72ac3c02012-05-23 14:13:11 -04006200 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05006201 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006202
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006203 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006204 if (IS_ERR(trans))
6205 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006206
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006207 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Nikolay Borisov4d14c5c2021-02-22 18:40:44 +02006208 if (ret && (ret == -ENOSPC || ret == -EDQUOT)) {
Chris Mason94b60442010-05-26 11:02:00 -04006209 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006210 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006211 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006212 if (IS_ERR(trans))
6213 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006214
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006215 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Mason94b60442010-05-26 11:02:00 -04006216 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006217 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006218 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006219 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006220
6221 return ret;
6222}
6223
6224/*
6225 * This is a copy of file_update_time. We need this so we can return error on
6226 * ENOSPC for updating the inode in the case of file write and mmap writes.
6227 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07006228static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04006229 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006230{
Alexander Block2bc5565282012-06-15 09:49:33 +02006231 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006232 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02006233
6234 if (btrfs_root_readonly(root))
6235 return -EROFS;
6236
Josef Bacike41f9412012-03-26 09:46:47 -04006237 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05006238 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04006239 if (flags & S_CTIME)
6240 inode->i_ctime = *now;
6241 if (flags & S_MTIME)
6242 inode->i_mtime = *now;
6243 if (flags & S_ATIME)
6244 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006245 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006246}
6247
Chris Masond352ac62008-09-29 15:18:18 -04006248/*
6249 * find the highest existing sequence number in a directory
6250 * and then set the in-memory index_cnt variable to reflect
6251 * free sequence numbers
6252 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006253static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006254{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006255 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006256 struct btrfs_key key, found_key;
6257 struct btrfs_path *path;
6258 struct extent_buffer *leaf;
6259 int ret;
6260
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006261 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006262 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006263 key.offset = (u64)-1;
6264
6265 path = btrfs_alloc_path();
6266 if (!path)
6267 return -ENOMEM;
6268
6269 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6270 if (ret < 0)
6271 goto out;
6272 /* FIXME: we should be able to handle this */
6273 if (ret == 0)
6274 goto out;
6275 ret = 0;
6276
6277 /*
6278 * MAGIC NUMBER EXPLANATION:
6279 * since we search a directory based on f_pos we have to start at 2
6280 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6281 * else has to start at 2
6282 */
6283 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006284 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006285 goto out;
6286 }
6287
6288 path->slots[0]--;
6289
6290 leaf = path->nodes[0];
6291 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6292
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006293 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006294 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006295 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006296 goto out;
6297 }
6298
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006299 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006300out:
6301 btrfs_free_path(path);
6302 return ret;
6303}
6304
Chris Masond352ac62008-09-29 15:18:18 -04006305/*
6306 * helper to find a free sequence number in a given directory. This current
6307 * code is very simple, later versions will do smarter things in the btree
6308 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006309int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006310{
6311 int ret = 0;
6312
Nikolay Borisov877574e2017-02-20 13:50:33 +02006313 if (dir->index_cnt == (u64)-1) {
6314 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006315 if (ret) {
6316 ret = btrfs_set_inode_index_count(dir);
6317 if (ret)
6318 return ret;
6319 }
Josef Bacikaec74772008-07-24 12:12:38 -04006320 }
6321
Nikolay Borisov877574e2017-02-20 13:50:33 +02006322 *index = dir->index_cnt;
6323 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006324
6325 return ret;
6326}
6327
Chris Masonb0d5d102014-09-08 13:08:51 -07006328static int btrfs_insert_inode_locked(struct inode *inode)
6329{
6330 struct btrfs_iget_args args;
David Sterba0202e832020-05-15 19:35:59 +02006331
6332 args.ino = BTRFS_I(inode)->location.objectid;
Chris Masonb0d5d102014-09-08 13:08:51 -07006333 args.root = BTRFS_I(inode)->root;
6334
6335 return insert_inode_locked4(inode,
6336 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6337 btrfs_find_actor, &args);
6338}
6339
Anand Jain19aee8d2017-07-18 17:37:05 +08006340/*
6341 * Inherit flags from the parent inode.
6342 *
6343 * Currently only the compression flags and the cow flags are inherited.
6344 */
6345static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6346{
6347 unsigned int flags;
6348
6349 if (!dir)
6350 return;
6351
6352 flags = BTRFS_I(dir)->flags;
6353
6354 if (flags & BTRFS_INODE_NOCOMPRESS) {
6355 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6356 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6357 } else if (flags & BTRFS_INODE_COMPRESS) {
6358 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6359 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6360 }
6361
6362 if (flags & BTRFS_INODE_NODATACOW) {
6363 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6364 if (S_ISREG(inode->i_mode))
6365 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6366 }
6367
David Sterba7b6a2212018-03-26 18:40:21 +02006368 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08006369}
6370
Chris Mason39279cc2007-06-12 06:35:45 -04006371static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6372 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006373 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006374 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006375 u64 ref_objectid, u64 objectid,
6376 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006377{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006378 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006379 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006380 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006381 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006382 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006383 struct btrfs_inode_ref *ref;
6384 struct btrfs_key key[2];
6385 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006386 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006387 unsigned long ptr;
Josef Bacik11a19a92019-09-09 10:12:04 -04006388 unsigned int nofs_flag;
Chris Mason39279cc2007-06-12 06:35:45 -04006389 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006390
Chris Mason5f39d392007-10-15 16:14:19 -04006391 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006392 if (!path)
6393 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006394
Josef Bacik11a19a92019-09-09 10:12:04 -04006395 nofs_flag = memalloc_nofs_save();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006396 inode = new_inode(fs_info->sb);
Josef Bacik11a19a92019-09-09 10:12:04 -04006397 memalloc_nofs_restore(nofs_flag);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006398 if (!inode) {
6399 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006400 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006401 }
Chris Mason39279cc2007-06-12 06:35:45 -04006402
Li Zefan581bb052011-04-20 10:06:11 +08006403 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006404 * O_TMPFILE, set link count to 0, so that after this point,
6405 * we fill in an inode item with the correct link count.
6406 */
6407 if (!name)
6408 set_nlink(inode, 0);
6409
6410 /*
Li Zefan581bb052011-04-20 10:06:11 +08006411 * we have to initialize this early, so we can reclaim the inode
6412 * number if we fail afterwards in this function.
6413 */
6414 inode->i_ino = objectid;
6415
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006416 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006417 trace_btrfs_inode_request(dir);
6418
Nikolay Borisov877574e2017-02-20 13:50:33 +02006419 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006420 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006421 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006422 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006423 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006424 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006425 } else if (dir) {
6426 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006427 }
6428 /*
6429 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006430 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006431 * number
6432 */
6433 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006434 BTRFS_I(inode)->dir_index = *index;
Josef Bacik5c8fd992020-02-14 16:11:43 -05006435 BTRFS_I(inode)->root = btrfs_grab_root(root);
Chris Masone02119d2008-09-05 16:13:11 -04006436 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006437 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006438
Josef Bacik5dc562c2012-08-17 13:14:17 -04006439 /*
6440 * We could have gotten an inode number from somebody who was fsynced
6441 * and then removed in this same transaction, so let's just set full
6442 * sync since it will be a full sync anyway and this will blow away the
6443 * old info in the log.
6444 */
6445 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6446
Chris Mason9c583092008-01-29 15:15:18 -05006447 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006448 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006449 key[0].offset = 0;
6450
Chris Mason9c583092008-01-29 15:15:18 -05006451 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006452
6453 if (name) {
6454 /*
6455 * Start new inodes with an inode_ref. This is slightly more
6456 * efficient for small numbers of hard links since they will
6457 * be packed into one item. Extended refs will kick in if we
6458 * add more hard links than can fit in the ref item.
6459 */
6460 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006461 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006462 key[1].offset = ref_objectid;
6463
6464 sizes[1] = name_len + sizeof(*ref);
6465 }
Chris Mason9c583092008-01-29 15:15:18 -05006466
Chris Masonb0d5d102014-09-08 13:08:51 -07006467 location = &BTRFS_I(inode)->location;
6468 location->objectid = objectid;
6469 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006470 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006471
6472 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006473 if (ret < 0) {
6474 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006475 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006476 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006477
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006478 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006479 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006480 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006481
Christian Brauner21cb47b2021-01-21 14:19:25 +01006482 inode_init_owner(&init_user_ns, inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006483 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306484
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006485 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306486 inode->i_atime = inode->i_mtime;
6487 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006488 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306489
Chris Mason5f39d392007-10-15 16:14:19 -04006490 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6491 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006492 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006493 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006494 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006495
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006496 if (name) {
6497 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6498 struct btrfs_inode_ref);
6499 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6500 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6501 ptr = (unsigned long)(ref + 1);
6502 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6503 }
Chris Mason9c583092008-01-29 15:15:18 -05006504
Chris Mason5f39d392007-10-15 16:14:19 -04006505 btrfs_mark_buffer_dirty(path->nodes[0]);
6506 btrfs_free_path(path);
6507
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006508 btrfs_inherit_iflags(inode, dir);
6509
Al Viro569254b2011-07-24 17:08:40 -04006510 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006511 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006512 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006513 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006514 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6515 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006516 }
6517
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006518 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006519
6520 trace_btrfs_inode_new(inode);
Nikolay Borisovd9094412020-06-05 10:41:13 +03006521 btrfs_set_inode_last_trans(trans, BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +00006522
Alexander Block8ea05e32012-07-25 17:35:53 +02006523 btrfs_update_root_times(trans, root);
6524
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006525 ret = btrfs_inode_inherit_props(trans, inode, dir);
6526 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006527 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006528 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006529 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006530
Chris Mason39279cc2007-06-12 06:35:45 -04006531 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006532
6533fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006534 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006535fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006536 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006537 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006538 btrfs_free_path(path);
6539 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006540}
6541
Chris Masond352ac62008-09-29 15:18:18 -04006542/*
6543 * utility function to add 'inode' into 'parent_inode' with
6544 * a give name and a given sequence number.
6545 * if 'add_backref' is true, also insert a backref from the
6546 * inode to the parent directory.
6547 */
Chris Masone02119d2008-09-05 16:13:11 -04006548int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006549 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006550 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006551{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006552 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006553 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006554 struct btrfs_root *root = parent_inode->root;
6555 u64 ino = btrfs_ino(inode);
6556 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006557
Li Zefan33345d012011-04-20 10:31:50 +08006558 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006559 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006560 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006561 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006562 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006563 key.offset = 0;
6564 }
Chris Mason39279cc2007-06-12 06:35:45 -04006565
Li Zefan33345d012011-04-20 10:31:50 +08006566 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006567 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006568 root->root_key.objectid, parent_ino,
6569 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006570 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006571 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6572 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006573 }
6574
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006575 /* Nothing to clean up yet */
6576 if (ret)
6577 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006578
Lu Fengqi684572d2018-08-04 21:10:57 +08006579 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006580 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006581 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006582 goto fail_dir_item;
6583 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006584 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006585 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006586 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006587
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006588 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006589 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006590 inode_inc_iversion(&parent_inode->vfs_inode);
Filipe Manana5338e432019-05-15 16:02:47 +01006591 /*
6592 * If we are replaying a log tree, we do not want to update the mtime
6593 * and ctime of the parent directory with the current time, since the
6594 * log replay procedure is responsible for setting them to their correct
6595 * values (the ones it had when the fsync was done).
6596 */
6597 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags)) {
6598 struct timespec64 now = current_time(&parent_inode->vfs_inode);
6599
6600 parent_inode->vfs_inode.i_mtime = now;
6601 parent_inode->vfs_inode.i_ctime = now;
6602 }
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006603 ret = btrfs_update_inode(trans, root, parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006604 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006605 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006606 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006607
6608fail_dir_item:
6609 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6610 u64 local_index;
6611 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006612 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006613 root->root_key.objectid, parent_ino,
6614 &local_index, name, name_len);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006615 if (err)
6616 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006617 } else if (add_backref) {
6618 u64 local_index;
6619 int err;
6620
6621 err = btrfs_del_inode_ref(trans, root, name, name_len,
6622 ino, parent_ino, &local_index);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006623 if (err)
6624 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006625 }
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006626
6627 /* Return the original error code */
Chris Masonfe66a052012-02-20 08:40:56 -05006628 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006629}
6630
6631static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006632 struct btrfs_inode *dir, struct dentry *dentry,
6633 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006634{
Josef Bacika1b075d2010-11-19 20:36:11 +00006635 int err = btrfs_add_link(trans, dir, inode,
6636 dentry->d_name.name, dentry->d_name.len,
6637 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006638 if (err > 0)
6639 err = -EEXIST;
6640 return err;
6641}
6642
Christian Brauner549c7292021-01-21 14:19:43 +01006643static int btrfs_mknod(struct user_namespace *mnt_userns, struct inode *dir,
6644 struct dentry *dentry, umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006645{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006646 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006647 struct btrfs_trans_handle *trans;
6648 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006649 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006650 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006651 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006652 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006653
Josef Bacik9ed74f22009-09-11 16:12:44 -04006654 /*
6655 * 2 for inode item and ref
6656 * 2 for dir items
6657 * 1 for xattr if selinux is on
6658 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006659 trans = btrfs_start_transaction(root, 5);
6660 if (IS_ERR(trans))
6661 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006662
Nikolay Borisov543068a2020-12-07 17:32:33 +02006663 err = btrfs_get_free_objectid(root, &objectid);
Li Zefan581bb052011-04-20 10:06:11 +08006664 if (err)
6665 goto out_unlock;
6666
Josef Bacikaec74772008-07-24 12:12:38 -04006667 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006668 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6669 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006670 if (IS_ERR(inode)) {
6671 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006672 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006673 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006674 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006675
Casey Schauflerad19db72011-12-15 10:09:07 -05006676 /*
6677 * If the active LSM wants to access the inode during
6678 * d_instantiate it needs these. Smack checks to see
6679 * if the filesystem supports xattrs by looking at the
6680 * ops vector.
6681 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006682 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006683 init_special_inode(inode, inode->i_mode, rdev);
6684
6685 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006686 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006687 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006688
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006689 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6690 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006691 if (err)
6692 goto out_unlock;
6693
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006694 btrfs_update_inode(trans, root, BTRFS_I(inode));
Al Viro32955c52018-05-16 12:20:05 -04006695 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006696
Josef Bacik618e21d2007-07-11 10:18:17 -04006697out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006698 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006699 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006700 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006701 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006702 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006703 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006704 return err;
6705}
6706
Christian Brauner549c7292021-01-21 14:19:43 +01006707static int btrfs_create(struct user_namespace *mnt_userns, struct inode *dir,
6708 struct dentry *dentry, umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006709{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006710 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006711 struct btrfs_trans_handle *trans;
6712 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006713 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006714 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006715 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006716 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006717
Josef Bacik9ed74f22009-09-11 16:12:44 -04006718 /*
6719 * 2 for inode item and ref
6720 * 2 for dir items
6721 * 1 for xattr if selinux is on
6722 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006723 trans = btrfs_start_transaction(root, 5);
6724 if (IS_ERR(trans))
6725 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006726
Nikolay Borisov543068a2020-12-07 17:32:33 +02006727 err = btrfs_get_free_objectid(root, &objectid);
Li Zefan581bb052011-04-20 10:06:11 +08006728 if (err)
6729 goto out_unlock;
6730
Josef Bacikaec74772008-07-24 12:12:38 -04006731 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006732 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6733 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006734 if (IS_ERR(inode)) {
6735 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006736 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006737 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006738 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006739 /*
6740 * If the active LSM wants to access the inode during
6741 * d_instantiate it needs these. Smack checks to see
6742 * if the filesystem supports xattrs by looking at the
6743 * ops vector.
6744 */
6745 inode->i_fop = &btrfs_file_operations;
6746 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006747 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006748
6749 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6750 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006751 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006752
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006753 err = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Masonb0d5d102014-09-08 13:08:51 -07006754 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006755 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006756
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006757 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6758 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006759 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006760 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006761
Al Viro1e2e5472018-05-04 08:23:01 -04006762 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006763
Chris Mason39279cc2007-06-12 06:35:45 -04006764out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006765 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006766 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006767 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006768 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006769 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006770 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006771 return err;
6772}
6773
6774static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6775 struct dentry *dentry)
6776{
Filipe Manana271dba452016-01-05 16:24:05 +00006777 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006778 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006779 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006780 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006781 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006782 int err;
6783 int drop_inode = 0;
6784
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006785 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006786 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006787 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006788
Mark Fashehf1863732012-08-08 11:32:27 -07006789 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006790 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006791
Nikolay Borisov877574e2017-02-20 13:50:33 +02006792 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006793 if (err)
6794 goto fail;
6795
Yan, Zhenga22285a2010-05-16 10:48:46 -04006796 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006797 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006798 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006799 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006800 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006801 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006802 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006803 if (IS_ERR(trans)) {
6804 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006805 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006806 goto fail;
6807 }
Chris Mason5f39d392007-10-15 16:14:19 -04006808
Miao Xie67de1172013-12-26 13:07:06 +08006809 /* There are several dir indexes for this inode, clear the cache. */
6810 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006811 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006812 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006813 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006814 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006815 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006816
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006817 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6818 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006819
Yan, Zhenga5719522009-09-24 09:17:31 -04006820 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006821 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006822 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006823 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006824
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006825 err = btrfs_update_inode(trans, root, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006826 if (err)
6827 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006828 if (inode->i_nlink == 1) {
6829 /*
6830 * If new hard link count is 1, it's a file created
6831 * with open(2) O_TMPFILE flag.
6832 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006833 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006834 if (err)
6835 goto fail;
6836 }
Al Viro08c422c2011-12-23 07:58:13 -05006837 d_instantiate(dentry, inode);
Filipe Manana75b463d2020-08-11 12:43:48 +01006838 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006839 }
Chris Mason39279cc2007-06-12 06:35:45 -04006840
Chris Mason1832a6d2007-12-21 16:27:21 -05006841fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006842 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006843 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006844 if (drop_inode) {
6845 inode_dec_link_count(inode);
6846 iput(inode);
6847 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006848 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006849 return err;
6850}
6851
Christian Brauner549c7292021-01-21 14:19:43 +01006852static int btrfs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
6853 struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006854{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006855 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006856 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006857 struct btrfs_trans_handle *trans;
6858 struct btrfs_root *root = BTRFS_I(dir)->root;
6859 int err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006860 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006861 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006862
Josef Bacik9ed74f22009-09-11 16:12:44 -04006863 /*
6864 * 2 items for inode and ref
6865 * 2 items for dir items
6866 * 1 for xattr if selinux is on
6867 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006868 trans = btrfs_start_transaction(root, 5);
6869 if (IS_ERR(trans))
6870 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006871
Nikolay Borisov543068a2020-12-07 17:32:33 +02006872 err = btrfs_get_free_objectid(root, &objectid);
Li Zefan581bb052011-04-20 10:06:11 +08006873 if (err)
6874 goto out_fail;
6875
Josef Bacikaec74772008-07-24 12:12:38 -04006876 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006877 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6878 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006879 if (IS_ERR(inode)) {
6880 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006881 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006882 goto out_fail;
6883 }
Chris Mason5f39d392007-10-15 16:14:19 -04006884
Chris Masonb0d5d102014-09-08 13:08:51 -07006885 /* these must be set before we unlock the inode */
6886 inode->i_op = &btrfs_dir_inode_operations;
6887 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006888
Eric Paris2a7dba32011-02-01 11:05:39 -05006889 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006890 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006891 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006892
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006893 btrfs_i_size_write(BTRFS_I(inode), 0);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02006894 err = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04006895 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006896 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006897
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006898 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6899 dentry->d_name.name,
6900 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006901 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006902 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006903
Al Viro1e2e5472018-05-04 08:23:01 -04006904 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006905
6906out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006907 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006908 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006909 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006910 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006911 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006912 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006913 return err;
6914}
6915
Chris Masonc8b97812008-10-29 14:49:59 -04006916static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006917 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006918 size_t pg_offset, u64 extent_offset,
6919 struct btrfs_file_extent_item *item)
6920{
6921 int ret;
6922 struct extent_buffer *leaf = path->nodes[0];
6923 char *tmp;
6924 size_t max_size;
6925 unsigned long inline_size;
6926 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006927 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006928
6929 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006930 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006931 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6932 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006933 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006934 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006935 if (!tmp)
6936 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006937 ptr = btrfs_file_extent_inline_start(item);
6938
6939 read_extent_buffer(leaf, tmp, ptr, inline_size);
6940
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006941 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006942 ret = btrfs_decompress(compress_type, tmp, page,
6943 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006944
6945 /*
6946 * decompression code contains a memset to fill in any space between the end
6947 * of the uncompressed data and the end of max_size in case the decompressed
6948 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6949 * the end of an inline extent and the beginning of the next block, so we
6950 * cover that region here.
6951 */
6952
Ira Weinyd048b9c2021-05-04 18:40:07 -07006953 if (max_size + pg_offset < PAGE_SIZE)
6954 memzero_page(page, pg_offset + max_size,
6955 PAGE_SIZE - max_size - pg_offset);
Chris Masonc8b97812008-10-29 14:49:59 -04006956 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006957 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006958}
6959
Omar Sandoval39b07b52019-12-02 17:34:23 -08006960/**
6961 * btrfs_get_extent - Lookup the first extent overlapping a range in a file.
6962 * @inode: file to search in
6963 * @page: page to read extent data into if the extent is inline
6964 * @pg_offset: offset into @page to copy to
6965 * @start: file offset
6966 * @len: length of range starting at @start
Chris Masond352ac62008-09-29 15:18:18 -04006967 *
Omar Sandoval39b07b52019-12-02 17:34:23 -08006968 * This returns the first &struct extent_map which overlaps with the given
6969 * range, reading it from the B-tree and caching it if necessary. Note that
6970 * there may be more extents which overlap the given range after the returned
6971 * extent_map.
6972 *
6973 * If @page is not NULL and the extent is inline, this also reads the extent
6974 * data directly into the page and marks the extent up to date in the io_tree.
6975 *
6976 * Return: ERR_PTR on error, non-NULL extent_map on success.
Chris Masond352ac62008-09-29 15:18:18 -04006977 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006978struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Omar Sandoval39b07b52019-12-02 17:34:23 -08006979 struct page *page, size_t pg_offset,
6980 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -04006981{
David Sterba3ffbd682018-06-29 10:56:42 +02006982 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03006983 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006984 u64 extent_start = 0;
6985 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006986 u64 objectid = btrfs_ino(inode);
Linus Torvalds7e74e232019-05-01 12:19:20 -07006987 int extent_type = -1;
Chris Masonf4219502008-07-22 11:18:09 -04006988 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006989 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006990 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006991 struct extent_buffer *leaf;
6992 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006993 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006994 struct extent_map_tree *em_tree = &inode->extent_tree;
6995 struct extent_io_tree *io_tree = &inode->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006996
Chris Mason890871b2009-09-02 16:24:52 -04006997 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006998 em = lookup_extent_mapping(em_tree, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006999 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05007000
Chris Masona52d9a82007-08-27 16:49:44 -04007001 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04007002 if (em->start > start || em->start + em->len <= start)
7003 free_extent_map(em);
7004 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05007005 free_extent_map(em);
7006 else
7007 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04007008 }
David Sterba172ddd62011-04-21 00:48:27 +02007009 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04007010 if (!em) {
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007011 ret = -ENOMEM;
Chris Masond1310b22008-01-24 16:13:08 -05007012 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04007013 }
Chris Masond1310b22008-01-24 16:13:08 -05007014 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05007015 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05007016 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04007017 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04007018
Liu Bobee6ec82018-08-17 05:05:28 +08007019 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04007020 if (!path) {
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007021 ret = -ENOMEM;
Liu Bobee6ec82018-08-17 05:05:28 +08007022 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04007023 }
7024
Liu Bobee6ec82018-08-17 05:05:28 +08007025 /* Chances are we'll be called again, so go ahead and do readahead */
7026 path->reada = READA_FORWARD;
Josef Bacik4d7240f2020-10-23 09:58:09 -04007027
7028 /*
7029 * The same explanation in load_free_space_cache applies here as well,
7030 * we only read when we're loading the free space cache, and at that
7031 * point the commit_root has everything we need.
7032 */
7033 if (btrfs_is_free_space_inode(inode)) {
7034 path->search_commit_root = 1;
7035 path->skip_locking = 1;
7036 }
Josef Bacik51899412020-08-20 11:46:01 -04007037
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02007038 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04007039 if (ret < 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04007040 goto out;
Nikolay Borisovb8eeab72018-12-17 11:49:00 +02007041 } else if (ret > 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04007042 if (path->slots[0] == 0)
7043 goto not_found;
7044 path->slots[0]--;
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007045 ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007046 }
7047
Chris Mason5f39d392007-10-15 16:14:19 -04007048 leaf = path->nodes[0];
7049 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04007050 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04007051 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04007052 if (found_key.objectid != objectid ||
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007053 found_key.type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04007054 /*
7055 * If we backup past the first extent we want to move forward
7056 * and see if there is an extent in front of us, otherwise we'll
7057 * say there is a hole for our whole search range which can
7058 * cause problems.
7059 */
7060 extent_end = start;
7061 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04007062 }
7063
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007064 extent_type = btrfs_file_extent_type(leaf, item);
Chris Mason5f39d392007-10-15 16:14:19 -04007065 extent_start = found_key.offset;
Filipe Mananaa5eeb3d2020-03-09 12:41:06 +00007066 extent_end = btrfs_file_extent_end(path);
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007067 if (extent_type == BTRFS_FILE_EXTENT_REG ||
7068 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08007069 /* Only regular file could have regular/prealloc extent */
7070 if (!S_ISREG(inode->vfs_inode.i_mode)) {
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007071 ret = -EUCLEAN;
Qu Wenruo6bf9e4b2019-03-13 13:55:11 +08007072 btrfs_crit(fs_info,
7073 "regular/prealloc extent found for non-regular inode %llu",
7074 btrfs_ino(inode));
7075 goto out;
7076 }
Liu Bo09ed2f12017-03-10 11:09:48 -08007077 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
7078 extent_start);
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007079 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Liu Bo09ed2f12017-03-10 11:09:48 -08007080 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
7081 path->slots[0],
7082 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04007083 }
Josef Bacik25a50342013-10-14 12:08:38 -04007084next:
Yan Zheng9036c102008-10-30 14:19:41 -04007085 if (start >= extent_end) {
7086 path->slots[0]++;
7087 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
7088 ret = btrfs_next_leaf(root, path);
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007089 if (ret < 0)
Yan Zheng9036c102008-10-30 14:19:41 -04007090 goto out;
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007091 else if (ret > 0)
Yan Zheng9036c102008-10-30 14:19:41 -04007092 goto not_found;
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007093
Yan Zheng9036c102008-10-30 14:19:41 -04007094 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04007095 }
Yan Zheng9036c102008-10-30 14:19:41 -04007096 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7097 if (found_key.objectid != objectid ||
7098 found_key.type != BTRFS_EXTENT_DATA_KEY)
7099 goto not_found;
7100 if (start + len <= found_key.offset)
7101 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08007102 if (start > found_key.offset)
7103 goto next;
Nikolay Borisov02a033d2018-12-17 10:36:02 +02007104
7105 /* New extent overlaps with existing one */
Yan Zheng9036c102008-10-30 14:19:41 -04007106 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007107 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04007108 em->len = found_key.offset - start;
Nikolay Borisov02a033d2018-12-17 10:36:02 +02007109 em->block_start = EXTENT_MAP_HOLE;
7110 goto insert;
Yan Zheng9036c102008-10-30 14:19:41 -04007111 }
7112
Omar Sandoval39b07b52019-12-02 17:34:23 -08007113 btrfs_extent_item_to_extent_map(inode, path, item, !page, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01007114
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007115 if (extent_type == BTRFS_FILE_EXTENT_REG ||
7116 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04007117 goto insert;
Nikolay Borisov694c12e2018-12-17 10:35:59 +02007118 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04007119 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04007120 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04007121 size_t size;
7122 size_t extent_offset;
7123 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04007124
Omar Sandoval39b07b52019-12-02 17:34:23 -08007125 if (!page)
Yan689f9342007-10-29 11:41:07 -04007126 goto out;
Yan689f9342007-10-29 11:41:07 -04007127
Qu Wenruoe41ca582018-06-06 15:41:49 +08007128 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04007129 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007130 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
7131 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04007132 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007133 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05007134 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04007135 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04007136 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08007137
Edmund Nadolskibf46f522017-11-20 13:24:49 -07007138 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08007139 if (btrfs_file_extent_compression(leaf, item) !=
7140 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09007141 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04007142 extent_offset, item);
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007143 if (ret)
Zach Brown166ae5a2014-05-09 17:15:10 -04007144 goto out;
Chris Masonc8b97812008-10-29 14:49:59 -04007145 } else {
Ira Weiny58c1a352021-02-16 18:48:23 -08007146 map = kmap_local_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -04007147 read_extent_buffer(leaf, map + pg_offset, ptr,
7148 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007149 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04007150 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007151 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04007152 copy_size);
7153 }
Ira Weiny58c1a352021-02-16 18:48:23 -08007154 kunmap_local(map);
Chris Masonc8b97812008-10-29 14:49:59 -04007155 }
Chris Mason179e29e2007-11-01 11:28:41 -04007156 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04007157 }
Chris Masond1310b22008-01-24 16:13:08 -05007158 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00007159 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04007160 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04007161 }
7162not_found:
7163 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007164 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05007165 em->len = len;
Chris Mason5f39d392007-10-15 16:14:19 -04007166 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04007167insert:
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007168 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02007169 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05007170 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007171 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007172 "bad extent! em: [%llu %llu] passed [%llu %llu]",
7173 em->start, em->len, start, len);
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007174 ret = -EIO;
Chris Masona52d9a82007-08-27 16:49:44 -04007175 goto out;
7176 }
Chris Masond1310b22008-01-24 16:13:08 -05007177
Chris Mason890871b2009-09-02 16:24:52 -04007178 write_lock(&em_tree->lock);
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007179 ret = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04007180 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007181out:
Liu Boc6414282018-08-23 07:36:17 +08007182 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00007183
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007184 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00007185
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007186 if (ret) {
Chris Masona52d9a82007-08-27 16:49:44 -04007187 free_extent_map(em);
Nikolay Borisov1028d1c2020-08-03 12:58:46 +03007188 return ERR_PTR(ret);
Chris Masona52d9a82007-08-27 16:49:44 -04007189 }
7190 return em;
7191}
7192
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007193struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02007194 u64 start, u64 len)
Chris Masonec29ed52011-02-23 16:23:20 -05007195{
7196 struct extent_map *em;
7197 struct extent_map *hole_em = NULL;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007198 u64 delalloc_start = start;
Chris Masonec29ed52011-02-23 16:23:20 -05007199 u64 end;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007200 u64 delalloc_len;
7201 u64 delalloc_end;
Chris Masonec29ed52011-02-23 16:23:20 -05007202 int err = 0;
7203
Omar Sandoval39b07b52019-12-02 17:34:23 -08007204 em = btrfs_get_extent(inode, NULL, 0, start, len);
Chris Masonec29ed52011-02-23 16:23:20 -05007205 if (IS_ERR(em))
7206 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03007207 /*
7208 * If our em maps to:
7209 * - a hole or
7210 * - a pre-alloc extent,
7211 * there might actually be delalloc bytes behind it.
7212 */
7213 if (em->block_start != EXTENT_MAP_HOLE &&
7214 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7215 return em;
7216 else
7217 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007218
7219 /* check to see if we've wrapped (len == -1 or similar) */
7220 end = start + len;
7221 if (end < start)
7222 end = (u64)-1;
7223 else
7224 end -= 1;
7225
7226 em = NULL;
7227
7228 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007229 delalloc_len = count_range_bits(&inode->io_tree, &delalloc_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007230 end, len, EXTENT_DELALLOC, 1);
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007231 delalloc_end = delalloc_start + delalloc_len;
7232 if (delalloc_end < delalloc_start)
7233 delalloc_end = (u64)-1;
Chris Masonec29ed52011-02-23 16:23:20 -05007234
7235 /*
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007236 * We didn't find anything useful, return the original results from
7237 * get_extent()
Chris Masonec29ed52011-02-23 16:23:20 -05007238 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007239 if (delalloc_start > end || delalloc_end <= start) {
Chris Masonec29ed52011-02-23 16:23:20 -05007240 em = hole_em;
7241 hole_em = NULL;
7242 goto out;
7243 }
7244
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007245 /*
7246 * Adjust the delalloc_start to make sure it doesn't go backwards from
7247 * the start they passed in
Chris Masonec29ed52011-02-23 16:23:20 -05007248 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007249 delalloc_start = max(start, delalloc_start);
7250 delalloc_len = delalloc_end - delalloc_start;
Chris Masonec29ed52011-02-23 16:23:20 -05007251
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007252 if (delalloc_len > 0) {
7253 u64 hole_start;
Nikolay Borisov02950af2018-12-12 09:42:34 +02007254 u64 hole_len;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007255 const u64 hole_end = extent_map_end(hole_em);
Chris Masonec29ed52011-02-23 16:23:20 -05007256
David Sterba172ddd62011-04-21 00:48:27 +02007257 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007258 if (!em) {
7259 err = -ENOMEM;
7260 goto out;
7261 }
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007262
7263 ASSERT(hole_em);
7264 /*
7265 * When btrfs_get_extent can't find anything it returns one
7266 * huge hole
7267 *
7268 * Make sure what it found really fits our range, and adjust to
7269 * make sure it is based on the start from the caller
7270 */
7271 if (hole_end <= start || hole_em->start > end) {
7272 free_extent_map(hole_em);
7273 hole_em = NULL;
7274 } else {
7275 hole_start = max(hole_em->start, start);
7276 hole_len = hole_end - hole_start;
7277 }
7278
7279 if (hole_em && delalloc_start > hole_start) {
7280 /*
7281 * Our hole starts before our delalloc, so we have to
7282 * return just the parts of the hole that go until the
7283 * delalloc starts
Chris Masonec29ed52011-02-23 16:23:20 -05007284 */
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007285 em->len = min(hole_len, delalloc_start - hole_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007286 em->start = hole_start;
7287 em->orig_start = hole_start;
7288 /*
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007289 * Don't adjust block start at all, it is fixed at
7290 * EXTENT_MAP_HOLE
Chris Masonec29ed52011-02-23 16:23:20 -05007291 */
7292 em->block_start = hole_em->block_start;
7293 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007294 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7295 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007296 } else {
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007297 /*
7298 * Hole is out of passed range or it starts after
7299 * delalloc range
7300 */
7301 em->start = delalloc_start;
7302 em->len = delalloc_len;
7303 em->orig_start = delalloc_start;
Chris Masonec29ed52011-02-23 16:23:20 -05007304 em->block_start = EXTENT_MAP_DELALLOC;
Nikolay Borisovf3714ef2018-12-12 09:42:33 +02007305 em->block_len = delalloc_len;
Chris Masonec29ed52011-02-23 16:23:20 -05007306 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007307 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007308 return hole_em;
7309 }
7310out:
7311
7312 free_extent_map(hole_em);
7313 if (err) {
7314 free_extent_map(em);
7315 return ERR_PTR(err);
7316 }
7317 return em;
7318}
7319
Nikolay Borisov64f54182020-06-03 08:55:31 +03007320static struct extent_map *btrfs_create_dio_extent(struct btrfs_inode *inode,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007321 const u64 start,
7322 const u64 len,
7323 const u64 orig_start,
7324 const u64 block_start,
7325 const u64 block_len,
7326 const u64 orig_block_len,
7327 const u64 ram_bytes,
7328 const int type)
7329{
7330 struct extent_map *em = NULL;
7331 int ret;
7332
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007333 if (type != BTRFS_ORDERED_NOCOW) {
Nikolay Borisov64f54182020-06-03 08:55:31 +03007334 em = create_io_em(inode, start, len, orig_start, block_start,
7335 block_len, orig_block_len, ram_bytes,
Liu Bo6f9994d2017-01-31 07:50:22 -08007336 BTRFS_COMPRESS_NONE, /* compress_type */
7337 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007338 if (IS_ERR(em))
7339 goto out;
7340 }
Nikolay Borisov64f54182020-06-03 08:55:31 +03007341 ret = btrfs_add_ordered_extent_dio(inode, start, block_start, len,
7342 block_len, type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007343 if (ret) {
7344 if (em) {
7345 free_extent_map(em);
Nikolay Borisov64f54182020-06-03 08:55:31 +03007346 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007347 }
7348 em = ERR_PTR(ret);
7349 }
7350 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007351
7352 return em;
7353}
7354
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007355static struct extent_map *btrfs_new_extent_direct(struct btrfs_inode *inode,
Josef Bacik4b46fce2010-05-23 11:00:55 -04007356 u64 start, u64 len)
7357{
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007358 struct btrfs_root *root = inode->root;
7359 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik70c8a912012-10-11 16:54:30 -04007360 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007361 struct btrfs_key ins;
7362 u64 alloc_hint;
7363 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007364
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007365 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007366 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007367 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007368 if (ret)
7369 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007370
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007371 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007372 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007373 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007374 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007375 if (IS_ERR(em))
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007376 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset,
7377 1);
Josef Bacik00361582013-08-14 14:02:47 -04007378
Josef Bacik4b46fce2010-05-23 11:00:55 -04007379 return em;
7380}
7381
Anand Jainf4639632021-02-10 21:25:16 -08007382static bool btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Anand Jain05947ae2021-02-10 21:25:15 -08007383{
7384 struct btrfs_block_group *block_group;
Anand Jainf4639632021-02-10 21:25:16 -08007385 bool readonly = false;
Anand Jain05947ae2021-02-10 21:25:15 -08007386
7387 block_group = btrfs_lookup_block_group(fs_info, bytenr);
7388 if (!block_group || block_group->ro)
Anand Jainf4639632021-02-10 21:25:16 -08007389 readonly = true;
Anand Jain05947ae2021-02-10 21:25:15 -08007390 if (block_group)
7391 btrfs_put_block_group(block_group);
7392 return readonly;
7393}
7394
Chris Mason46bfbb52010-05-26 11:04:10 -04007395/*
Qu Wenruoe4ecaf92020-06-24 07:23:51 +08007396 * Check if we can do nocow write into the range [@offset, @offset + @len)
7397 *
7398 * @offset: File offset
7399 * @len: The length to write, will be updated to the nocow writeable
7400 * range
7401 * @orig_start: (optional) Return the original file offset of the file extent
7402 * @orig_len: (optional) Return the original on-disk length of the file extent
7403 * @ram_bytes: (optional) Return the ram_bytes of the file extent
Boris Burkova84d5d42020-08-18 11:00:05 -07007404 * @strict: if true, omit optimizations that might force us into unnecessary
7405 * cow. e.g., don't trust generation number.
Qu Wenruoe4ecaf92020-06-24 07:23:51 +08007406 *
Qu Wenruoe4ecaf92020-06-24 07:23:51 +08007407 * Return:
7408 * >0 and update @len if we can do nocow write
7409 * 0 if we can't do nocow write
7410 * <0 if error happened
7411 *
7412 * NOTE: This only checks the file extents, caller is responsible to wait for
7413 * any ordered extents.
Chris Mason46bfbb52010-05-26 11:04:10 -04007414 */
Josef Bacik00361582013-08-14 14:02:47 -04007415noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007416 u64 *orig_start, u64 *orig_block_len,
Boris Burkova84d5d42020-08-18 11:00:05 -07007417 u64 *ram_bytes, bool strict)
Chris Mason46bfbb52010-05-26 11:04:10 -04007418{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007419 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007420 struct btrfs_path *path;
7421 int ret;
7422 struct extent_buffer *leaf;
7423 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007424 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007425 struct btrfs_file_extent_item *fi;
7426 struct btrfs_key key;
7427 u64 disk_bytenr;
7428 u64 backref_offset;
7429 u64 extent_end;
7430 u64 num_bytes;
7431 int slot;
7432 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007433 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007434
Chris Mason46bfbb52010-05-26 11:04:10 -04007435 path = btrfs_alloc_path();
7436 if (!path)
7437 return -ENOMEM;
7438
David Sterbaf85b7372017-01-20 14:54:07 +01007439 ret = btrfs_lookup_file_extent(NULL, root, path,
7440 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007441 if (ret < 0)
7442 goto out;
7443
7444 slot = path->slots[0];
7445 if (ret == 1) {
7446 if (slot == 0) {
7447 /* can't find the item, must cow */
7448 ret = 0;
7449 goto out;
7450 }
7451 slot--;
7452 }
7453 ret = 0;
7454 leaf = path->nodes[0];
7455 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007456 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007457 key.type != BTRFS_EXTENT_DATA_KEY) {
7458 /* not our file or wrong item type, must cow */
7459 goto out;
7460 }
7461
7462 if (key.offset > offset) {
7463 /* Wrong offset, must cow */
7464 goto out;
7465 }
7466
7467 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7468 found_type = btrfs_file_extent_type(leaf, fi);
7469 if (found_type != BTRFS_FILE_EXTENT_REG &&
7470 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7471 /* not a regular extent, must cow */
7472 goto out;
7473 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007474
7475 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7476 goto out;
7477
Miao Xiee77751a2013-12-27 21:11:50 +08007478 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7479 if (extent_end <= offset)
7480 goto out;
7481
Chris Mason46bfbb52010-05-26 11:04:10 -04007482 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007483 if (disk_bytenr == 0)
7484 goto out;
7485
7486 if (btrfs_file_extent_compression(leaf, fi) ||
7487 btrfs_file_extent_encryption(leaf, fi) ||
7488 btrfs_file_extent_other_encoding(leaf, fi))
7489 goto out;
7490
Ethan Lien78d42952018-05-17 14:58:29 +08007491 /*
7492 * Do the same check as in btrfs_cross_ref_exist but without the
7493 * unnecessary search.
7494 */
Boris Burkova84d5d42020-08-18 11:00:05 -07007495 if (!strict &&
7496 (btrfs_file_extent_generation(leaf, fi) <=
7497 btrfs_root_last_snapshot(&root->root_item)))
Ethan Lien78d42952018-05-17 14:58:29 +08007498 goto out;
7499
Chris Mason46bfbb52010-05-26 11:04:10 -04007500 backref_offset = btrfs_file_extent_offset(leaf, fi);
7501
Josef Bacik7ee9e442013-06-21 16:37:03 -04007502 if (orig_start) {
7503 *orig_start = key.offset - backref_offset;
7504 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7505 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7506 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007507
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007508 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007509 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007510
7511 num_bytes = min(offset + *len, extent_end) - offset;
7512 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7513 u64 range_end;
7514
Jeff Mahoneyda170662016-06-15 09:22:56 -04007515 range_end = round_up(offset + num_bytes,
7516 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007517 ret = test_range_bit(io_tree, offset, range_end,
7518 EXTENT_DELALLOC, 0, NULL);
7519 if (ret) {
7520 ret = -EAGAIN;
7521 goto out;
7522 }
7523 }
7524
Josef Bacik1bda19e2013-10-18 12:10:36 -04007525 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007526
7527 /*
7528 * look for other files referencing this extent, if we
7529 * find any we must cow
7530 */
Josef Bacik00361582013-08-14 14:02:47 -04007531
Liu Boe4c3b2d2017-01-30 12:25:28 -08007532 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Boris Burkova84d5d42020-08-18 11:00:05 -07007533 key.offset - backref_offset, disk_bytenr,
7534 strict);
Josef Bacik00361582013-08-14 14:02:47 -04007535 if (ret) {
7536 ret = 0;
7537 goto out;
7538 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007539
7540 /*
7541 * adjust disk_bytenr and num_bytes to cover just the bytes
7542 * in this extent we are about to write. If there
7543 * are any csums in that range we have to cow in order
7544 * to keep the csums correct
7545 */
7546 disk_bytenr += backref_offset;
7547 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007548 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7549 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007550 /*
7551 * all of the above have passed, it is safe to overwrite this extent
7552 * without cow
7553 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007554 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007555 ret = 1;
7556out:
7557 btrfs_free_path(path);
7558 return ret;
7559}
7560
Josef Bacikeb838e72012-07-31 16:28:48 -04007561static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007562 struct extent_state **cached_state, bool writing)
Josef Bacikeb838e72012-07-31 16:28:48 -04007563{
7564 struct btrfs_ordered_extent *ordered;
7565 int ret = 0;
7566
7567 while (1) {
7568 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007569 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007570 /*
7571 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007572 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007573 * extents in this range.
7574 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007575 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007576 lockend - lockstart + 1);
7577
7578 /*
7579 * We need to make sure there are no buffered pages in this
7580 * range either, we could have raced between the invalidate in
7581 * generic_file_direct_write and locking the extent. The
7582 * invalidate needs to happen so that reads after a write do not
7583 * get stale data.
7584 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007585 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007586 (!writing || !filemap_range_has_page(inode->i_mapping,
7587 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007588 break;
7589
7590 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007591 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007592
7593 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007594 /*
7595 * If we are doing a DIO read and the ordered extent we
7596 * found is for a buffered write, we can not wait for it
7597 * to complete and retry, because if we do so we can
7598 * deadlock with concurrent buffered writes on page
7599 * locks. This happens only if our DIO read covers more
7600 * than one extent map, if at this point has already
7601 * created an ordered extent for a previous extent map
7602 * and locked its range in the inode's io tree, and a
7603 * concurrent write against that previous extent map's
7604 * range and this range started (we unlock the ranges
7605 * in the io tree only when the bios complete and
7606 * buffered writes always lock pages before attempting
7607 * to lock range in the io tree).
7608 */
7609 if (writing ||
7610 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
Nikolay Borisovc0a43602020-09-18 12:15:53 +03007611 btrfs_start_ordered_extent(ordered, 1);
Filipe Mananaade77022016-02-18 14:28:55 +00007612 else
7613 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007614 btrfs_put_ordered_extent(ordered);
7615 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007616 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007617 * We could trigger writeback for this range (and wait
7618 * for it to complete) and then invalidate the pages for
7619 * this range (through invalidate_inode_pages2_range()),
7620 * but that can lead us to a deadlock with a concurrent
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07007621 * call to readahead (a buffered read or a defrag call
Filipe Mananab850ae12015-12-08 16:23:16 +00007622 * triggered a readahead) on a page lock due to an
7623 * ordered dio extent we created before but did not have
7624 * yet a corresponding bio submitted (whence it can not
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07007625 * complete), which makes readahead wait for that
Filipe Mananab850ae12015-12-08 16:23:16 +00007626 * ordered extent to complete while holding a lock on
7627 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007628 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007629 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007630 }
7631
Filipe Mananaade77022016-02-18 14:28:55 +00007632 if (ret)
7633 break;
7634
Josef Bacikeb838e72012-07-31 16:28:48 -04007635 cond_resched();
7636 }
7637
7638 return ret;
7639}
7640
Liu Bo6f9994d2017-01-31 07:50:22 -08007641/* The callers of this must take lock_extent() */
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007642static struct extent_map *create_io_em(struct btrfs_inode *inode, u64 start,
7643 u64 len, u64 orig_start, u64 block_start,
Liu Bo6f9994d2017-01-31 07:50:22 -08007644 u64 block_len, u64 orig_block_len,
7645 u64 ram_bytes, int compress_type,
7646 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007647{
7648 struct extent_map_tree *em_tree;
7649 struct extent_map *em;
Josef Bacik69ffb542012-09-11 15:40:07 -04007650 int ret;
7651
Liu Bo6f9994d2017-01-31 07:50:22 -08007652 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7653 type == BTRFS_ORDERED_COMPRESSED ||
7654 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007655 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007656
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007657 em_tree = &inode->extent_tree;
Josef Bacik69ffb542012-09-11 15:40:07 -04007658 em = alloc_extent_map();
7659 if (!em)
7660 return ERR_PTR(-ENOMEM);
7661
7662 em->start = start;
7663 em->orig_start = orig_start;
7664 em->len = len;
7665 em->block_len = block_len;
7666 em->block_start = block_start;
Josef Bacikb4939682012-12-03 10:31:19 -05007667 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007668 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007669 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007670 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007671 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007672 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007673 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007674 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7675 em->compress_type = compress_type;
7676 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007677
7678 do {
Nikolay Borisov4b67c112020-06-03 08:55:05 +03007679 btrfs_drop_extent_cache(inode, em->start,
7680 em->start + em->len - 1, 0);
Josef Bacik69ffb542012-09-11 15:40:07 -04007681 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007682 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007683 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007684 /*
7685 * The caller has taken lock_extent(), who could race with us
7686 * to add em?
7687 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007688 } while (ret == -EEXIST);
7689
7690 if (ret) {
7691 free_extent_map(em);
7692 return ERR_PTR(ret);
7693 }
7694
Liu Bo6f9994d2017-01-31 07:50:22 -08007695 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007696 return em;
7697}
7698
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007699
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007700static int btrfs_get_blocks_direct_write(struct extent_map **map,
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007701 struct inode *inode,
7702 struct btrfs_dio_data *dio_data,
7703 u64 start, u64 len)
7704{
7705 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7706 struct extent_map *em = *map;
7707 int ret = 0;
7708
7709 /*
7710 * We don't allocate a new extent in the following cases
7711 *
7712 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7713 * existing extent.
7714 * 2) The extent is marked as PREALLOC. We're good to go here and can
7715 * just use the extent.
7716 *
7717 */
7718 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7719 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7720 em->block_start != EXTENT_MAP_HOLE)) {
7721 int type;
7722 u64 block_start, orig_start, orig_block_len, ram_bytes;
7723
7724 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7725 type = BTRFS_ORDERED_PREALLOC;
7726 else
7727 type = BTRFS_ORDERED_NOCOW;
7728 len = min(len, em->len - (start - em->start));
7729 block_start = em->block_start + (start - em->start);
7730
7731 if (can_nocow_extent(inode, start, &len, &orig_start,
Boris Burkova84d5d42020-08-18 11:00:05 -07007732 &orig_block_len, &ram_bytes, false) == 1 &&
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007733 btrfs_inc_nocow_writers(fs_info, block_start)) {
7734 struct extent_map *em2;
7735
Nikolay Borisov64f54182020-06-03 08:55:31 +03007736 em2 = btrfs_create_dio_extent(BTRFS_I(inode), start, len,
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007737 orig_start, block_start,
7738 len, orig_block_len,
7739 ram_bytes, type);
7740 btrfs_dec_nocow_writers(fs_info, block_start);
7741 if (type == BTRFS_ORDERED_PREALLOC) {
7742 free_extent_map(em);
7743 *map = em = em2;
7744 }
7745
7746 if (em2 && IS_ERR(em2)) {
7747 ret = PTR_ERR(em2);
7748 goto out;
7749 }
7750 /*
7751 * For inode marked NODATACOW or extent marked PREALLOC,
7752 * use the existing or preallocated extent, so does not
7753 * need to adjust btrfs_space_info's bytes_may_use.
7754 */
Nikolay Borisov9db5d512020-06-03 08:55:38 +03007755 btrfs_free_reserved_data_space_noquota(fs_info, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007756 goto skip_cow;
7757 }
7758 }
7759
7760 /* this will cow the extent */
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007761 free_extent_map(em);
Nikolay Borisov9fc6f912020-06-03 08:55:32 +03007762 *map = em = btrfs_new_extent_direct(BTRFS_I(inode), start, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007763 if (IS_ERR(em)) {
7764 ret = PTR_ERR(em);
7765 goto out;
7766 }
7767
7768 len = min(len, em->len - (start - em->start));
7769
7770skip_cow:
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007771 /*
7772 * Need to update the i_size under the extent lock so buffered
7773 * readers will get the updated i_size when we unlock.
7774 */
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007775 if (start + len > i_size_read(inode))
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007776 i_size_write(inode, start + len);
7777
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007778 dio_data->reserve -= len;
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007779out:
7780 return ret;
7781}
7782
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007783static int btrfs_dio_iomap_begin(struct inode *inode, loff_t start,
7784 loff_t length, unsigned int flags, struct iomap *iomap,
7785 struct iomap *srcmap)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007786{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007787 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007788 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007789 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307790 struct btrfs_dio_data *dio_data = NULL;
Josef Bacikeb838e72012-07-31 16:28:48 -04007791 u64 lockstart, lockend;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007792 const bool write = !!(flags & IOMAP_WRITE);
Miao Xie09348562013-02-07 10:12:07 +00007793 int ret = 0;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007794 u64 len = length;
7795 bool unlock_extents = false;
Josef Bacikeb838e72012-07-31 16:28:48 -04007796
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007797 if (!write)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007798 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007799
Josef Bacikc3298612012-08-03 16:49:19 -04007800 lockstart = start;
7801 lockend = start + len - 1;
7802
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007803 /*
7804 * The generic stuff only does filemap_write_and_wait_range, which
7805 * isn't enough if we've written compressed pages to this area, so we
7806 * need to flush the dirty pages again to make absolutely sure that any
7807 * outstanding dirty pages are on disk.
7808 */
7809 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
7810 &BTRFS_I(inode)->runtime_flags)) {
7811 ret = filemap_fdatawrite_range(inode->i_mapping, start,
7812 start + length - 1);
7813 if (ret)
7814 return ret;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007815 }
7816
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007817 dio_data = kzalloc(sizeof(*dio_data), GFP_NOFS);
7818 if (!dio_data)
7819 return -ENOMEM;
7820
7821 dio_data->length = length;
7822 if (write) {
7823 dio_data->reserve = round_up(length, fs_info->sectorsize);
7824 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode),
7825 &dio_data->data_reserved,
7826 start, dio_data->reserve);
7827 if (ret) {
7828 extent_changeset_free(dio_data->data_reserved);
7829 kfree(dio_data);
7830 return ret;
7831 }
7832 }
7833 iomap->private = dio_data;
7834
7835
Josef Bacikeb838e72012-07-31 16:28:48 -04007836 /*
7837 * If this errors out it's because we couldn't invalidate pagecache for
7838 * this range and we need to fallback to buffered.
7839 */
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007840 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, write)) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007841 ret = -ENOTBLK;
7842 goto err;
7843 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007844
Omar Sandoval39b07b52019-12-02 17:34:23 -08007845 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007846 if (IS_ERR(em)) {
7847 ret = PTR_ERR(em);
7848 goto unlock_err;
7849 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007850
7851 /*
7852 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7853 * io. INLINE is special, and we could probably kludge it in here, but
7854 * it's still buffered so for safety lets just fall back to the generic
7855 * buffered path.
7856 *
7857 * For COMPRESSED we _have_ to read the entire extent in so we can
7858 * decompress it, so there will be buffering required no matter what we
7859 * do, so go ahead and fallback to buffered.
7860 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007861 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007862 * to buffered IO. Don't blame me, this is the price we pay for using
7863 * the generic code.
7864 */
7865 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7866 em->block_start == EXTENT_MAP_INLINE) {
7867 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007868 ret = -ENOTBLK;
7869 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007870 }
7871
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007872 len = min(len, em->len - (start - em->start));
7873 if (write) {
7874 ret = btrfs_get_blocks_direct_write(&em, inode, dio_data,
7875 start, len);
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007876 if (ret < 0)
7877 goto unlock_err;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007878 unlock_extents = true;
7879 /* Recalc len in case the new em is smaller than requested */
7880 len = min(len, em->len - (start - em->start));
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007881 } else {
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007882 /*
7883 * We need to unlock only the end area that we aren't using.
7884 * The rest is going to be unlocked by the endio routine.
7885 */
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007886 lockstart = start + len;
7887 if (lockstart < lockend)
7888 unlock_extents = true;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007889 }
7890
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007891 if (unlock_extents)
7892 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
7893 lockstart, lockend, &cached_state);
7894 else
7895 free_extent_state(cached_state);
7896
7897 /*
7898 * Translate extent map information to iomap.
7899 * We trim the extents (and move the addr) even though iomap code does
7900 * that, since we have locked only the parts we are performing I/O in.
7901 */
7902 if ((em->block_start == EXTENT_MAP_HOLE) ||
7903 (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) && !write)) {
7904 iomap->addr = IOMAP_NULL_ADDR;
7905 iomap->type = IOMAP_HOLE;
7906 } else {
7907 iomap->addr = em->block_start + (start - em->start);
7908 iomap->type = IOMAP_MAPPED;
7909 }
7910 iomap->offset = start;
7911 iomap->bdev = fs_info->fs_devices->latest_bdev;
7912 iomap->length = len;
7913
Johannes Thumshirne380adf2021-05-19 00:40:27 +09007914 if (write && btrfs_use_zone_append(BTRFS_I(inode), em->block_start))
Naohiro Aota544d24f2021-02-04 19:22:06 +09007915 iomap->flags |= IOMAP_F_ZONE_APPEND;
7916
Josef Bacik4b46fce2010-05-23 11:00:55 -04007917 free_extent_map(em);
7918
7919 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007920
7921unlock_err:
Omar Sandovale1821632019-08-15 14:04:04 -07007922 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7923 &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007924err:
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007925 if (dio_data) {
7926 btrfs_delalloc_release_space(BTRFS_I(inode),
7927 dio_data->data_reserved, start,
7928 dio_data->reserve, true);
7929 btrfs_delalloc_release_extents(BTRFS_I(inode), dio_data->reserve);
7930 extent_changeset_free(dio_data->data_reserved);
7931 kfree(dio_data);
7932 }
7933 return ret;
7934}
7935
7936static int btrfs_dio_iomap_end(struct inode *inode, loff_t pos, loff_t length,
7937 ssize_t written, unsigned int flags, struct iomap *iomap)
7938{
7939 int ret = 0;
7940 struct btrfs_dio_data *dio_data = iomap->private;
7941 size_t submitted = dio_data->submitted;
7942 const bool write = !!(flags & IOMAP_WRITE);
7943
7944 if (!write && (iomap->type == IOMAP_HOLE)) {
7945 /* If reading from a hole, unlock and return */
7946 unlock_extent(&BTRFS_I(inode)->io_tree, pos, pos + length - 1);
7947 goto out;
7948 }
7949
7950 if (submitted < length) {
7951 pos += submitted;
7952 length -= submitted;
7953 if (write)
7954 __endio_write_update_ordered(BTRFS_I(inode), pos,
7955 length, false);
7956 else
7957 unlock_extent(&BTRFS_I(inode)->io_tree, pos,
7958 pos + length - 1);
7959 ret = -ENOTBLK;
7960 }
7961
7962 if (write) {
7963 if (dio_data->reserve)
7964 btrfs_delalloc_release_space(BTRFS_I(inode),
7965 dio_data->data_reserved, pos,
7966 dio_data->reserve, true);
7967 btrfs_delalloc_release_extents(BTRFS_I(inode), dio_data->length);
7968 extent_changeset_free(dio_data->data_reserved);
7969 }
7970out:
7971 kfree(dio_data);
7972 iomap->private = NULL;
7973
Josef Bacikeb838e72012-07-31 16:28:48 -04007974 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007975}
7976
Omar Sandoval769b4f22020-04-16 14:46:22 -07007977static void btrfs_dio_private_put(struct btrfs_dio_private *dip)
7978{
7979 /*
7980 * This implies a barrier so that stores to dio_bio->bi_status before
7981 * this and loads of dio_bio->bi_status after this are fully ordered.
7982 */
7983 if (!refcount_dec_and_test(&dip->refs))
7984 return;
7985
Naohiro Aotacfe94442021-02-04 19:21:59 +09007986 if (btrfs_op(dip->dio_bio) == BTRFS_MAP_WRITE) {
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03007987 __endio_write_update_ordered(BTRFS_I(dip->inode),
7988 dip->logical_offset,
Omar Sandoval769b4f22020-04-16 14:46:22 -07007989 dip->bytes,
7990 !dip->dio_bio->bi_status);
7991 } else {
7992 unlock_extent(&BTRFS_I(dip->inode)->io_tree,
7993 dip->logical_offset,
7994 dip->logical_offset + dip->bytes - 1);
7995 }
7996
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05007997 bio_endio(dip->dio_bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07007998 kfree(dip);
7999}
8000
Omar Sandoval77d5d682020-04-16 14:46:25 -07008001static blk_status_t submit_dio_repair_bio(struct inode *inode, struct bio *bio,
8002 int mirror_num,
8003 unsigned long bio_flags)
Miao Xie8b110e32014-09-12 18:44:03 +08008004{
Omar Sandoval77d5d682020-04-16 14:46:25 -07008005 struct btrfs_dio_private *dip = bio->bi_private;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008006 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008007 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08008008
Mike Christie37226b22016-06-05 14:31:52 -05008009 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08008010
Omar Sandoval5c047a62020-04-16 14:46:24 -07008011 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Miao Xie8b110e32014-09-12 18:44:03 +08008012 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02008013 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08008014
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008015 refcount_inc(&dip->refs);
Chris Mason08635ba2019-07-10 12:28:14 -07008016 ret = btrfs_map_bio(fs_info, bio, mirror_num);
Omar Sandoval77d5d682020-04-16 14:46:25 -07008017 if (ret)
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008018 refcount_dec(&dip->refs);
Miao Xie8b110e32014-09-12 18:44:03 +08008019 return ret;
8020}
8021
Omar Sandoval769b4f22020-04-16 14:46:22 -07008022static blk_status_t btrfs_check_read_dio_bio(struct inode *inode,
8023 struct btrfs_io_bio *io_bio,
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008024 const bool uptodate)
Miao Xie8b110e32014-09-12 18:44:03 +08008025{
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008026 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
8027 const u32 sectorsize = fs_info->sectorsize;
Josef Bacik7870d082017-05-05 11:57:15 -04008028 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008029 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8030 const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
Liu Bo17347ce2017-05-15 15:33:27 -07008031 struct bio_vec bvec;
8032 struct bvec_iter iter;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008033 u64 start = io_bio->logical;
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08008034 u32 bio_offset = 0;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008035 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08008036
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008037 __bio_for_each_segment(bvec, &io_bio->bio, iter, io_bio->iter) {
8038 unsigned int i, nr_sectors, pgoff;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308039
Liu Bo17347ce2017-05-15 15:33:27 -07008040 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
8041 pgoff = bvec.bv_offset;
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008042 for (i = 0; i < nr_sectors; i++) {
Liu Bo97bf5a52017-04-07 13:11:10 -07008043 ASSERT(pgoff < PAGE_SIZE);
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008044 if (uptodate &&
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08008045 (!csum || !check_data_csum(inode, io_bio,
Omar Sandovalc1d6abd2021-03-16 12:43:00 -07008046 bio_offset, bvec.bv_page,
8047 pgoff, start))) {
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008048 clean_io_failure(fs_info, failure_tree, io_tree,
8049 start, bvec.bv_page,
8050 btrfs_ino(BTRFS_I(inode)),
8051 pgoff);
8052 } else {
Qu Wenruo150e4b02021-05-03 10:08:55 +08008053 int ret;
Miao Xie8b110e32014-09-12 18:44:03 +08008054
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08008055 ASSERT((start - io_bio->logical) < UINT_MAX);
Qu Wenruo150e4b02021-05-03 10:08:55 +08008056 ret = btrfs_repair_one_sector(inode,
8057 &io_bio->bio,
8058 start - io_bio->logical,
8059 bvec.bv_page, pgoff,
8060 start, io_bio->mirror_num,
8061 submit_dio_repair_bio);
8062 if (ret)
8063 err = errno_to_blk_status(ret);
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008064 }
8065 start += sectorsize;
Qu Wenruo7ffd27e2020-12-02 14:47:58 +08008066 ASSERT(bio_offset + sectorsize > bio_offset);
8067 bio_offset += sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308068 pgoff += sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308069 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008070 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008071 return err;
8072}
8073
Nikolay Borisovb672b5c2020-06-03 08:55:24 +03008074static void __endio_write_update_ordered(struct btrfs_inode *inode,
Qu Wenruo524272602017-03-08 10:25:52 +08008075 const u64 offset, const u64 bytes,
8076 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008077{
Qu Wenruoe65f1522021-04-01 15:15:06 +08008078 btrfs_mark_ordered_io_finished(inode, NULL, offset, bytes,
8079 finish_ordered_fn, uptodate);
Filipe Manana14543772015-11-24 16:23:54 +00008080}
8081
Qu Wenruo8896a082020-10-21 14:24:53 +08008082static blk_status_t btrfs_submit_bio_start_direct_io(struct inode *inode,
Qu Wenruo1941b642020-12-02 14:47:57 +08008083 struct bio *bio,
8084 u64 dio_file_offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04008085{
Qu Wenruo1941b642020-12-02 14:47:57 +08008086 return btrfs_csum_one_bio(BTRFS_I(inode), bio, dio_file_offset, 1);
Chris Masoneaf25d92010-05-25 09:48:28 -04008087}
8088
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008089static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008090{
8091 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008092 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008093
Miao Xie8b110e32014-09-12 18:44:03 +08008094 if (err)
8095 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008096 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008097 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
David Sterba1201b582020-11-26 15:41:27 +01008098 bio->bi_opf, bio->bi_iter.bi_sector,
Miao Xie8b110e32014-09-12 18:44:03 +08008099 bio->bi_iter.bi_size, err);
8100
Omar Sandoval769b4f22020-04-16 14:46:22 -07008101 if (bio_op(bio) == REQ_OP_READ) {
8102 err = btrfs_check_read_dio_bio(dip->inode, btrfs_io_bio(bio),
Omar Sandovalfd9d6672020-04-16 14:46:23 -07008103 !err);
Miao Xiee65e1532010-11-22 03:04:43 +00008104 }
8105
Omar Sandoval769b4f22020-04-16 14:46:22 -07008106 if (err)
8107 dip->dio_bio->bi_status = err;
Miao Xiee65e1532010-11-22 03:04:43 +00008108
Naohiro Aota544d24f2021-02-04 19:22:06 +09008109 btrfs_record_physical_zoned(dip->inode, dip->logical_offset, bio);
8110
Miao Xiee65e1532010-11-22 03:04:43 +00008111 bio_put(bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07008112 btrfs_dio_private_put(dip);
Miao Xiec1dc0892014-09-12 18:43:56 +08008113}
8114
David Sterbad0ee3932018-03-08 14:35:48 +01008115static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8116 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008117{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008118 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008119 struct btrfs_dio_private *dip = bio->bi_private;
Naohiro Aotacfe94442021-02-04 19:21:59 +09008120 bool write = btrfs_op(bio) == BTRFS_MAP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008121 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008122
Liu Bo4c274bc2017-11-01 17:19:27 -06008123 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008124 if (async_submit)
8125 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8126
Josef Bacik5fd02042012-05-02 14:00:54 -04008127 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008128 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008129 if (ret)
8130 goto err;
8131 }
Miao Xiee65e1532010-11-22 03:04:43 +00008132
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008133 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008134 goto map;
8135
8136 if (write && async_submit) {
Qu Wenruo1941b642020-12-02 14:47:57 +08008137 ret = btrfs_wq_submit_bio(inode, bio, 0, 0, file_offset,
David Sterbae288c082018-07-18 17:36:24 +02008138 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00008139 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008140 } else if (write) {
8141 /*
8142 * If we aren't doing async submit, calculate the csum of the
8143 * bio now.
8144 */
Nikolay Borisovbd242a02020-06-03 08:55:07 +03008145 ret = btrfs_csum_one_bio(BTRFS_I(inode), bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008146 if (ret)
8147 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008148 } else {
Omar Sandoval85879572020-04-16 14:46:21 -07008149 u64 csum_offset;
8150
8151 csum_offset = file_offset - dip->logical_offset;
David Sterba265fdfa2020-07-01 21:19:09 +02008152 csum_offset >>= fs_info->sectorsize_bits;
David Sterba55fc29b2020-06-30 02:01:31 +02008153 csum_offset *= fs_info->csum_size;
Omar Sandoval85879572020-04-16 14:46:21 -07008154 btrfs_io_bio(bio)->csum = dip->csums + csum_offset;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008155 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008156map:
Chris Mason08635ba2019-07-10 12:28:14 -07008157 ret = btrfs_map_bio(fs_info, bio, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008158err:
Miao Xiee65e1532010-11-22 03:04:43 +00008159 return ret;
8160}
8161
Omar Sandovalc36cac22020-04-16 14:46:13 -07008162/*
8163 * If this succeeds, the btrfs_dio_private is responsible for cleaning up locked
8164 * or ordered extents whether or not we submit any bios.
8165 */
8166static struct btrfs_dio_private *btrfs_create_dio_private(struct bio *dio_bio,
8167 struct inode *inode,
8168 loff_t file_offset)
Miao Xiee65e1532010-11-22 03:04:43 +00008169{
Naohiro Aotacfe94442021-02-04 19:21:59 +09008170 const bool write = (btrfs_op(dio_bio) == BTRFS_MAP_WRITE);
Omar Sandoval85879572020-04-16 14:46:21 -07008171 const bool csum = !(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM);
8172 size_t dip_size;
Omar Sandovalc36cac22020-04-16 14:46:13 -07008173 struct btrfs_dio_private *dip;
Omar Sandovalc36cac22020-04-16 14:46:13 -07008174
Omar Sandoval85879572020-04-16 14:46:21 -07008175 dip_size = sizeof(*dip);
8176 if (!write && csum) {
8177 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval85879572020-04-16 14:46:21 -07008178 size_t nblocks;
8179
David Sterba265fdfa2020-07-01 21:19:09 +02008180 nblocks = dio_bio->bi_iter.bi_size >> fs_info->sectorsize_bits;
David Sterba223486c2020-07-02 11:27:30 +02008181 dip_size += fs_info->csum_size * nblocks;
Omar Sandoval85879572020-04-16 14:46:21 -07008182 }
8183
8184 dip = kzalloc(dip_size, GFP_NOFS);
Omar Sandovalc36cac22020-04-16 14:46:13 -07008185 if (!dip)
8186 return NULL;
8187
Omar Sandovalc36cac22020-04-16 14:46:13 -07008188 dip->inode = inode;
8189 dip->logical_offset = file_offset;
8190 dip->bytes = dio_bio->bi_iter.bi_size;
David Sterba1201b582020-11-26 15:41:27 +01008191 dip->disk_bytenr = dio_bio->bi_iter.bi_sector << 9;
Omar Sandovalc36cac22020-04-16 14:46:13 -07008192 dip->dio_bio = dio_bio;
Omar Sandovale3b318d2020-04-16 14:46:20 -07008193 refcount_set(&dip->refs, 1);
Omar Sandovalc36cac22020-04-16 14:46:13 -07008194 return dip;
8195}
8196
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008197static blk_qc_t btrfs_submit_direct(struct inode *inode, struct iomap *iomap,
8198 struct bio *dio_bio, loff_t file_offset)
Omar Sandovalc36cac22020-04-16 14:46:13 -07008199{
Naohiro Aotacfe94442021-02-04 19:21:59 +09008200 const bool write = (btrfs_op(dio_bio) == BTRFS_MAP_WRITE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008201 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval769b4f22020-04-16 14:46:22 -07008202 const bool raid56 = (btrfs_data_alloc_profile(fs_info) &
8203 BTRFS_BLOCK_GROUP_RAID56_MASK);
Omar Sandovalc36cac22020-04-16 14:46:13 -07008204 struct btrfs_dio_private *dip;
Miao Xiee65e1532010-11-22 03:04:43 +00008205 struct bio *bio;
Omar Sandovalc36cac22020-04-16 14:46:13 -07008206 u64 start_sector;
Josef Bacik1ae39932011-04-06 14:41:34 -04008207 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008208 u64 submit_len;
8209 int clone_offset = 0;
8210 int clone_len;
Michal Rostecki42034312021-01-27 14:57:27 +01008211 u64 logical;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308212 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008213 blk_status_t status;
Nikolay Borisov89b798a2019-06-03 12:05:05 +03008214 struct btrfs_io_geometry geom;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008215 struct btrfs_dio_data *dio_data = iomap->private;
Michal Rostecki42034312021-01-27 14:57:27 +01008216 struct extent_map *em = NULL;
Miao Xiee65e1532010-11-22 03:04:43 +00008217
Omar Sandovalc36cac22020-04-16 14:46:13 -07008218 dip = btrfs_create_dio_private(dio_bio, inode, file_offset);
8219 if (!dip) {
8220 if (!write) {
8221 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8222 file_offset + dio_bio->bi_iter.bi_size - 1);
8223 }
8224 dio_bio->bi_status = BLK_STS_RESOURCE;
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008225 bio_endio(dio_bio);
8226 return BLK_QC_T_NONE;
Josef Bacik02f57c72011-04-06 14:25:44 -04008227 }
8228
Josef Bacik334c16d2020-10-16 11:29:14 -04008229 if (!write) {
Omar Sandoval85879572020-04-16 14:46:21 -07008230 /*
8231 * Load the csums up front to reduce csum tree searches and
8232 * contention when submitting bios.
Josef Bacik334c16d2020-10-16 11:29:14 -04008233 *
8234 * If we have csums disabled this will do nothing.
Omar Sandoval85879572020-04-16 14:46:21 -07008235 */
Qu Wenruo62751932020-12-02 14:48:06 +08008236 status = btrfs_lookup_bio_sums(inode, dio_bio, dip->csums);
Omar Sandoval85879572020-04-16 14:46:21 -07008237 if (status != BLK_STS_OK)
8238 goto out_err;
8239 }
David Woodhouse53b381b2013-01-29 18:40:14 -05008240
Omar Sandoval769b4f22020-04-16 14:46:22 -07008241 start_sector = dio_bio->bi_iter.bi_sector;
8242 submit_len = dio_bio->bi_iter.bi_size;
Miao Xiee65e1532010-11-22 03:04:43 +00008243
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008244 do {
Michal Rostecki42034312021-01-27 14:57:27 +01008245 logical = start_sector << 9;
8246 em = btrfs_get_chunk_map(fs_info, logical, submit_len);
8247 if (IS_ERR(em)) {
8248 status = errno_to_blk_status(PTR_ERR(em));
8249 em = NULL;
8250 goto out_err_em;
8251 }
8252 ret = btrfs_get_io_geometry(fs_info, em, btrfs_op(dio_bio),
Qu Wenruo43c0d1a2021-04-13 17:58:48 +08008253 logical, &geom);
Omar Sandoval769b4f22020-04-16 14:46:22 -07008254 if (ret) {
8255 status = errno_to_blk_status(ret);
Michal Rostecki42034312021-01-27 14:57:27 +01008256 goto out_err_em;
Omar Sandoval769b4f22020-04-16 14:46:22 -07008257 }
8258 ASSERT(geom.len <= INT_MAX);
8259
Nikolay Borisov89b798a2019-06-03 12:05:05 +03008260 clone_len = min_t(int, submit_len, geom.len);
Josef Bacik02f57c72011-04-06 14:25:44 -04008261
Liu Bo725130b2017-05-16 09:51:39 -07008262 /*
8263 * This will never fail as it's passing GPF_NOFS and
8264 * the allocation is backed by btrfs_bioset.
8265 */
Omar Sandoval769b4f22020-04-16 14:46:22 -07008266 bio = btrfs_bio_clone_partial(dio_bio, clone_offset, clone_len);
Liu Bo725130b2017-05-16 09:51:39 -07008267 bio->bi_private = dip;
8268 bio->bi_end_io = btrfs_end_dio_bio;
8269 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008270
Naohiro Aota544d24f2021-02-04 19:22:06 +09008271 if (bio_op(bio) == REQ_OP_ZONE_APPEND) {
8272 status = extract_ordered_extent(BTRFS_I(inode), bio,
8273 file_offset);
8274 if (status) {
8275 bio_put(bio);
8276 goto out_err;
8277 }
8278 }
8279
Liu Bo725130b2017-05-16 09:51:39 -07008280 ASSERT(submit_len >= clone_len);
8281 submit_len -= clone_len;
Miao Xiee65e1532010-11-22 03:04:43 +00008282
Liu Bo725130b2017-05-16 09:51:39 -07008283 /*
8284 * Increase the count before we submit the bio so we know
8285 * the end IO handler won't happen before we increase the
8286 * count. Otherwise, the dip might get freed before we're
8287 * done setting it up.
Omar Sandoval769b4f22020-04-16 14:46:22 -07008288 *
8289 * We transfer the initial reference to the last bio, so we
8290 * don't need to increment the reference count for the last one.
Liu Bo725130b2017-05-16 09:51:39 -07008291 */
Omar Sandoval769b4f22020-04-16 14:46:22 -07008292 if (submit_len > 0) {
8293 refcount_inc(&dip->refs);
8294 /*
8295 * If we are submitting more than one bio, submit them
8296 * all asynchronously. The exception is RAID 5 or 6, as
8297 * asynchronous checksums make it difficult to collect
8298 * full stripe writes.
8299 */
8300 if (!raid56)
8301 async_submit = 1;
8302 }
Miao Xiee65e1532010-11-22 03:04:43 +00008303
David Sterbad0ee3932018-03-08 14:35:48 +01008304 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008305 async_submit);
8306 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008307 bio_put(bio);
Omar Sandoval769b4f22020-04-16 14:46:22 -07008308 if (submit_len > 0)
8309 refcount_dec(&dip->refs);
Michal Rostecki42034312021-01-27 14:57:27 +01008310 goto out_err_em;
Miao Xiee65e1532010-11-22 03:04:43 +00008311 }
Liu Bo725130b2017-05-16 09:51:39 -07008312
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008313 dio_data->submitted += clone_len;
Liu Bo725130b2017-05-16 09:51:39 -07008314 clone_offset += clone_len;
8315 start_sector += clone_len >> 9;
8316 file_offset += clone_len;
Michal Rostecki42034312021-01-27 14:57:27 +01008317
8318 free_extent_map(em);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008319 } while (submit_len > 0);
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008320 return BLK_QC_T_NONE;
Miao Xiee65e1532010-11-22 03:04:43 +00008321
Michal Rostecki42034312021-01-27 14:57:27 +01008322out_err_em:
8323 free_extent_map(em);
Miao Xiee65e1532010-11-22 03:04:43 +00008324out_err:
Omar Sandoval769b4f22020-04-16 14:46:22 -07008325 dip->dio_bio->bi_status = status;
8326 btrfs_dio_private_put(dip);
Michal Rostecki42034312021-01-27 14:57:27 +01008327
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008328 return BLK_QC_T_NONE;
Miao Xiee65e1532010-11-22 03:04:43 +00008329}
8330
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05008331const struct iomap_ops btrfs_dio_iomap_ops = {
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008332 .iomap_begin = btrfs_dio_iomap_begin,
8333 .iomap_end = btrfs_dio_iomap_end,
8334};
8335
Goldwyn Rodrigues4e4cabe2020-09-24 11:39:12 -05008336const struct iomap_dio_ops btrfs_dio_ops = {
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -05008337 .submit_io = btrfs_submit_direct,
8338};
8339
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008340static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterbabab16e22020-06-23 20:56:12 +02008341 u64 start, u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008342{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008343 int ret;
8344
Christoph Hellwig45dd0522020-05-23 09:30:14 +02008345 ret = fiemap_prep(inode, fieinfo, start, &len, 0);
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008346 if (ret)
8347 return ret;
8348
Nikolay Borisovfacee0a2020-08-31 14:42:49 +03008349 return extent_fiemap(BTRFS_I(inode), fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008350}
8351
Chris Mason9ebefb182007-06-15 13:50:00 -04008352int btrfs_readpage(struct file *file, struct page *page)
8353{
Nikolay Borisov0f208812020-09-14 14:39:16 +03008354 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
8355 u64 start = page_offset(page);
8356 u64 end = start + PAGE_SIZE - 1;
Qu Wenruo390ed292021-04-14 16:42:15 +08008357 struct btrfs_bio_ctrl bio_ctrl = { 0 };
Nikolay Borisovc1be9c12020-09-14 12:37:08 +03008358 int ret;
8359
Nikolay Borisov0f208812020-09-14 14:39:16 +03008360 btrfs_lock_and_flush_ordered_range(inode, start, end, NULL);
8361
Qu Wenruo390ed292021-04-14 16:42:15 +08008362 ret = btrfs_do_readpage(page, NULL, &bio_ctrl, 0, NULL);
8363 if (bio_ctrl.bio)
8364 ret = submit_one_bio(bio_ctrl.bio, 0, bio_ctrl.bio_flags);
Nikolay Borisovc1be9c12020-09-14 12:37:08 +03008365 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008366}
Chris Mason1832a6d2007-12-21 16:27:21 -05008367
Chris Mason39279cc2007-06-12 06:35:45 -04008368static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8369{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008370 struct inode *inode = page->mapping->host;
8371 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008372
8373 if (current->flags & PF_MEMALLOC) {
8374 redirty_page_for_writepage(wbc, page);
8375 unlock_page(page);
8376 return 0;
8377 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008378
8379 /*
8380 * If we are under memory pressure we will call this directly from the
8381 * VM, we need to make sure we have the inode referenced for the ordered
8382 * extent. If not just return like we didn't do anything.
8383 */
8384 if (!igrab(inode)) {
8385 redirty_page_for_writepage(wbc, page);
8386 return AOP_WRITEPAGE_ACTIVATE;
8387 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008388 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008389 btrfs_add_delayed_iput(inode);
8390 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008391}
Chris Mason39279cc2007-06-12 06:35:45 -04008392
Eric Sandeen48a3b632013-04-25 20:41:01 +00008393static int btrfs_writepages(struct address_space *mapping,
8394 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008395{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008396 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008397}
8398
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07008399static void btrfs_readahead(struct readahead_control *rac)
Chris Mason3ab2fb52007-11-08 10:59:22 -05008400{
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -07008401 extent_readahead(rac);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008402}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008403
Chris Masone6dcd2d2008-07-17 12:53:50 -04008404static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008405{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008406 int ret = try_release_extent_mapping(page, gfp_flags);
Guoqing Jiangd1b89bc2020-06-01 21:47:45 -07008407 if (ret == 1)
Qu Wenruo32443de2021-01-26 16:34:00 +08008408 clear_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008409 return ret;
8410}
Chris Mason39279cc2007-06-12 06:35:45 -04008411
Chris Masone6dcd2d2008-07-17 12:53:50 -04008412static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8413{
Chris Mason98509cf2008-09-11 15:51:43 -04008414 if (PageWriteback(page) || PageDirty(page))
8415 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008416 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008417}
8418
Roman Gushchinf8e66082020-03-04 16:57:35 -08008419#ifdef CONFIG_MIGRATION
8420static int btrfs_migratepage(struct address_space *mapping,
8421 struct page *newpage, struct page *page,
8422 enum migrate_mode mode)
8423{
8424 int ret;
8425
8426 ret = migrate_page_move_mapping(mapping, newpage, page, 0);
8427 if (ret != MIGRATEPAGE_SUCCESS)
8428 return ret;
8429
Guoqing Jiangd1b89bc2020-06-01 21:47:45 -07008430 if (page_has_private(page))
8431 attach_page_private(newpage, detach_page_private(page));
Roman Gushchinf8e66082020-03-04 16:57:35 -08008432
Qu Wenruof57ad932021-04-07 19:22:13 +08008433 if (PageOrdered(page)) {
8434 ClearPageOrdered(page);
8435 SetPageOrdered(newpage);
Roman Gushchinf8e66082020-03-04 16:57:35 -08008436 }
8437
8438 if (mode != MIGRATE_SYNC_NO_COPY)
8439 migrate_page_copy(newpage, page);
8440 else
8441 migrate_page_states(newpage, page);
8442 return MIGRATEPAGE_SUCCESS;
8443}
8444#endif
8445
Lukas Czernerd47992f2013-05-21 23:17:23 -04008446static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8447 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008448{
Nikolay Borisov53ac7ea2020-08-31 14:42:43 +03008449 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Qu Wenruob945a462021-05-31 16:50:46 +08008450 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Nikolay Borisov53ac7ea2020-08-31 14:42:43 +03008451 struct extent_io_tree *tree = &inode->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008452 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008453 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008454 u64 page_end = page_start + PAGE_SIZE - 1;
Qu Wenruo3b835842021-04-06 19:54:53 +08008455 u64 cur;
Nikolay Borisov53ac7ea2020-08-31 14:42:43 +03008456 int inode_evicting = inode->vfs_inode.i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008457
Chris Mason8b62b722009-09-02 16:53:46 -04008458 /*
Qu Wenruo266a2582021-04-06 08:27:18 +08008459 * We have page locked so no new ordered extent can be created on this
8460 * page, nor bio can be submitted for this page.
Chris Mason8b62b722009-09-02 16:53:46 -04008461 *
Qu Wenruo266a2582021-04-06 08:27:18 +08008462 * But already submitted bio can still be finished on this page.
Qu Wenruof57ad932021-04-07 19:22:13 +08008463 * Furthermore, endio function won't skip page which has Ordered
8464 * (Private2) already cleared, so it's possible for endio and
8465 * invalidatepage to do the same ordered extent accounting twice
8466 * on one page.
Qu Wenruo266a2582021-04-06 08:27:18 +08008467 *
8468 * So here we wait for any submitted bios to finish, so that we won't
8469 * do double ordered extent accounting on the same page.
Chris Mason8b62b722009-09-02 16:53:46 -04008470 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008471 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008472
Qu Wenruobcd77452021-05-31 16:50:55 +08008473 /*
8474 * For subpage case, we have call sites like
8475 * btrfs_punch_hole_lock_range() which passes range not aligned to
8476 * sectorsize.
8477 * If the range doesn't cover the full page, we don't need to and
8478 * shouldn't clear page extent mapped, as page->private can still
8479 * record subpage dirty bits for other part of the range.
8480 *
8481 * For cases that can invalidate the full even the range doesn't
8482 * cover the full page, like invalidating the last page, we're
8483 * still safe to wait for ordered extent to finish.
8484 */
8485 if (!(offset == 0 && length == PAGE_SIZE)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008486 btrfs_releasepage(page, GFP_NOFS);
8487 return;
8488 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008489
8490 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008491 lock_extent_bits(tree, page_start, page_end, &cached_state);
Qu Wenruo951c80f2021-01-27 14:38:48 +08008492
Qu Wenruo3b835842021-04-06 19:54:53 +08008493 cur = page_start;
8494 while (cur < page_end) {
8495 struct btrfs_ordered_extent *ordered;
8496 bool delete_states;
8497 u64 range_end;
Qu Wenruob945a462021-05-31 16:50:46 +08008498 u32 range_len;
Qu Wenruo3b835842021-04-06 19:54:53 +08008499
8500 ordered = btrfs_lookup_first_ordered_range(inode, cur,
8501 page_end + 1 - cur);
8502 if (!ordered) {
8503 range_end = page_end;
8504 /*
8505 * No ordered extent covering this range, we are safe
8506 * to delete all extent states in the range.
8507 */
8508 delete_states = true;
8509 goto next;
8510 }
8511 if (ordered->file_offset > cur) {
8512 /*
8513 * There is a range between [cur, oe->file_offset) not
8514 * covered by any ordered extent.
8515 * We are safe to delete all extent states, and handle
8516 * the ordered extent in the next iteration.
8517 */
8518 range_end = ordered->file_offset - 1;
8519 delete_states = true;
8520 goto next;
8521 }
8522
8523 range_end = min(ordered->file_offset + ordered->num_bytes - 1,
8524 page_end);
Qu Wenruob945a462021-05-31 16:50:46 +08008525 ASSERT(range_end + 1 - cur < U32_MAX);
8526 range_len = range_end + 1 - cur;
8527 if (!btrfs_page_test_ordered(fs_info, page, cur, range_len)) {
Qu Wenruo3b835842021-04-06 19:54:53 +08008528 /*
Qu Wenruof57ad932021-04-07 19:22:13 +08008529 * If Ordered (Private2) is cleared, it means endio has
8530 * already been executed for the range.
Qu Wenruo3b835842021-04-06 19:54:53 +08008531 * We can't delete the extent states as
8532 * btrfs_finish_ordered_io() may still use some of them.
8533 */
8534 delete_states = false;
8535 goto next;
8536 }
Qu Wenruob945a462021-05-31 16:50:46 +08008537 btrfs_page_clear_ordered(fs_info, page, cur, range_len);
Qu Wenruo3b835842021-04-06 19:54:53 +08008538
Chris Masoneb84ae02008-07-17 13:53:27 -04008539 /*
Filipe Manana2766ff62020-11-04 11:07:34 +00008540 * IO on this page will never be started, so we need to account
8541 * for any ordered extents now. Don't clear EXTENT_DELALLOC_NEW
8542 * here, must leave that up for the ordered extent completion.
Qu Wenruo3b835842021-04-06 19:54:53 +08008543 *
8544 * This will also unlock the range for incoming
8545 * btrfs_finish_ordered_io().
Chris Masoneb84ae02008-07-17 13:53:27 -04008546 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008547 if (!inode_evicting)
Qu Wenruo3b835842021-04-06 19:54:53 +08008548 clear_extent_bit(tree, cur, range_end,
Filipe Manana2766ff62020-11-04 11:07:34 +00008549 EXTENT_DELALLOC |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008550 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008551 EXTENT_DEFRAG, 1, 0, &cached_state);
Qu Wenruo3b835842021-04-06 19:54:53 +08008552
8553 spin_lock_irq(&inode->ordered_tree.lock);
8554 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
8555 ordered->truncated_len = min(ordered->truncated_len,
8556 cur - ordered->file_offset);
8557 spin_unlock_irq(&inode->ordered_tree.lock);
8558
8559 if (btrfs_dec_test_ordered_pending(inode, &ordered,
8560 cur, range_end + 1 - cur, 1)) {
8561 btrfs_finish_ordered_io(ordered);
8562 /*
8563 * The ordered extent has finished, now we're again
8564 * safe to delete all extent states of the range.
8565 */
8566 delete_states = true;
8567 } else {
8568 /*
8569 * btrfs_finish_ordered_io() will get executed by endio
8570 * of other pages, thus we can't delete extent states
8571 * anymore
8572 */
8573 delete_states = false;
8574 }
8575next:
8576 if (ordered)
8577 btrfs_put_ordered_extent(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008578 /*
Qu Wenruo3b835842021-04-06 19:54:53 +08008579 * Qgroup reserved space handler
8580 * Sector(s) here will be either:
Qu Wenruo266a2582021-04-06 08:27:18 +08008581 *
Qu Wenruo3b835842021-04-06 19:54:53 +08008582 * 1) Already written to disk or bio already finished
8583 * Then its QGROUP_RESERVED bit in io_tree is already cleared.
8584 * Qgroup will be handled by its qgroup_record then.
8585 * btrfs_qgroup_free_data() call will do nothing here.
8586 *
8587 * 2) Not written to disk yet
8588 * Then btrfs_qgroup_free_data() call will clear the
8589 * QGROUP_RESERVED bit of its io_tree, and free the qgroup
8590 * reserved data space.
8591 * Since the IO will never happen for this page.
Chris Mason8b62b722009-09-02 16:53:46 -04008592 */
Qu Wenruo3b835842021-04-06 19:54:53 +08008593 btrfs_qgroup_free_data(inode, NULL, cur, range_end + 1 - cur);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008594 if (!inode_evicting) {
Qu Wenruo3b835842021-04-06 19:54:53 +08008595 clear_extent_bit(tree, cur, range_end, EXTENT_LOCKED |
Filipe Manana2766ff62020-11-04 11:07:34 +00008596 EXTENT_DELALLOC | EXTENT_UPTODATE |
8597 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1,
Qu Wenruo3b835842021-04-06 19:54:53 +08008598 delete_states, &cached_state);
8599 }
8600 cur = range_end + 1;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008601 }
Qu Wenruo3b835842021-04-06 19:54:53 +08008602 /*
8603 * We have iterated through all ordered extents of the page, the page
Qu Wenruof57ad932021-04-07 19:22:13 +08008604 * should not have Ordered (Private2) anymore, or the above iteration
8605 * did something wrong.
Qu Wenruo3b835842021-04-06 19:54:53 +08008606 */
Qu Wenruof57ad932021-04-07 19:22:13 +08008607 ASSERT(!PageOrdered(page));
Qu Wenruo3b835842021-04-06 19:54:53 +08008608 if (!inode_evicting)
8609 __btrfs_releasepage(page, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04008610 ClearPageChecked(page);
Qu Wenruo32443de2021-01-26 16:34:00 +08008611 clear_page_extent_mapped(page);
Chris Mason39279cc2007-06-12 06:35:45 -04008612}
8613
Chris Mason9ebefb182007-06-15 13:50:00 -04008614/*
8615 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8616 * called from a page fault handler when a page is first dirtied. Hence we must
8617 * be careful to check for EOF conditions here. We set the page up correctly
8618 * for a written page which means we get ENOSPC checking when writing into
8619 * holes and correct delalloc and unwritten extent mapping on filesystems that
8620 * support these features.
8621 *
8622 * We are not allowed to take the i_mutex here so we have to play games to
8623 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008624 * truncate_setsize() writes the inode size before removing pages, once we have
8625 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008626 * beyond EOF, then the page is guaranteed safe against truncation until we
8627 * unlock the page.
8628 */
Souptick Joardera528a242018-06-06 19:54:44 +05308629vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008630{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008631 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008632 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008633 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008634 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8635 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008636 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008637 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008638 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008639 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308640 vm_fault_t ret;
8641 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008642 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308643 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008644 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008645 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308646 u64 end;
8647
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008648 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008649
Jan Karab2b5ef52012-06-12 16:20:45 +02008650 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008651 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008652 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308653 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008654
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308655 /*
8656 * Reserving delalloc space after obtaining the page lock can lead to
8657 * deadlock. For example, if a dirty page is locked by this function
8658 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8659 * dirty page write out, then the btrfs_writepage() function could
8660 * end up waiting indefinitely to get a lock on the page currently
8661 * being processed by btrfs_page_mkwrite() function.
8662 */
Nikolay Borisove5b7231e2020-06-03 08:55:42 +03008663 ret2 = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
8664 page_start, reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308665 if (!ret2) {
8666 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008667 reserved = 1;
8668 }
Souptick Joardera528a242018-06-06 19:54:44 +05308669 if (ret2) {
8670 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008671 if (reserved)
8672 goto out;
8673 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008674 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008675
Nick Piggin56a76f82009-03-31 15:23:23 -07008676 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008677again:
Josef Bacik8318ba72021-02-10 17:14:33 -05008678 down_read(&BTRFS_I(inode)->i_mmap_lock);
Chris Mason9ebefb182007-06-15 13:50:00 -04008679 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008680 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008681
Chris Mason9ebefb182007-06-15 13:50:00 -04008682 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008683 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008684 /* page got truncated out from underneath us */
8685 goto out_unlock;
8686 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008687 wait_on_page_writeback(page);
8688
David Sterbaff13db42015-12-03 14:30:40 +01008689 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Qu Wenruo32443de2021-01-26 16:34:00 +08008690 ret2 = set_page_extent_mapped(page);
8691 if (ret2 < 0) {
8692 ret = vmf_error(ret2);
8693 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
8694 goto out_unlock;
8695 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008696
Chris Masoneb84ae02008-07-17 13:53:27 -04008697 /*
8698 * we can't set the delalloc bits if there are pending ordered
8699 * extents. Drop our locks and wait for them to finish
8700 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008701 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8702 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008703 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008704 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008705 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008706 unlock_page(page);
Josef Bacik8318ba72021-02-10 17:14:33 -05008707 up_read(&BTRFS_I(inode)->i_mmap_lock);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03008708 btrfs_start_ordered_extent(ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008709 btrfs_put_ordered_extent(ordered);
8710 goto again;
8711 }
8712
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008713 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008714 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008715 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008716 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308717 end = page_start + reserved_space - 1;
Nikolay Borisov86d52922020-06-03 08:55:40 +03008718 btrfs_delalloc_release_space(BTRFS_I(inode),
8719 data_reserved, page_start,
8720 PAGE_SIZE - reserved_space, true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308721 }
8722 }
8723
Josef Bacikfbf19082009-10-01 17:10:23 -04008724 /*
Liu Bo54160342016-12-13 12:15:19 -08008725 * page_mkwrite gets called when the page is firstly dirtied after it's
8726 * faulted in, but write(2) could also dirty a page and set delalloc
8727 * bits, thus in this case for space account reason, we still need to
8728 * clear any delalloc bits within this page range since we have to
8729 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008730 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308731 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Omar Sandovale1821632019-08-15 14:04:04 -07008732 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8733 EXTENT_DEFRAG, 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008734
Nikolay Borisovc2566f22020-06-03 08:55:35 +03008735 ret2 = btrfs_set_extent_delalloc(BTRFS_I(inode), page_start, end, 0,
Nikolay Borisov330a5822019-07-17 16:18:17 +03008736 &cached_state);
Souptick Joardera528a242018-06-06 19:54:44 +05308737 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008738 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008739 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008740 ret = VM_FAULT_SIGBUS;
8741 goto out_unlock;
8742 }
Chris Mason9ebefb182007-06-15 13:50:00 -04008743
8744 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008745 if (page_start + PAGE_SIZE > size)
Johannes Thumshirn70730172018-12-05 15:23:03 +01008746 zero_start = offset_in_page(size);
Chris Mason9ebefb182007-06-15 13:50:00 -04008747 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008748 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008749
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008750 if (zero_start != PAGE_SIZE) {
Ira Weinyd048b9c2021-05-04 18:40:07 -07008751 memzero_page(page, zero_start, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008752 flush_dcache_page(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008753 }
Chris Mason247e7432008-07-17 12:53:51 -04008754 ClearPageChecked(page);
Qu Wenruo2d8ec402021-05-31 16:50:52 +08008755 btrfs_page_set_dirty(fs_info, page, page_start, end + 1 - page_start);
8756 btrfs_page_set_uptodate(fs_info, page, page_start, end + 1 - page_start);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008757
Filipe Mananabc0939f2021-02-23 12:08:48 +00008758 btrfs_set_inode_last_sub_trans(BTRFS_I(inode));
Chris Mason257c62e2009-10-13 13:21:08 -04008759
David Sterbae43bbe52017-12-12 21:43:52 +01008760 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Josef Bacik8318ba72021-02-10 17:14:33 -05008761 up_read(&BTRFS_I(inode)->i_mmap_lock);
Chris Mason9ebefb182007-06-15 13:50:00 -04008762
Yunfeng Ye76de60e2019-12-03 16:59:25 +08008763 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
8764 sb_end_pagefault(inode->i_sb);
8765 extent_changeset_free(data_reserved);
8766 return VM_FAULT_LOCKED;
Chris Mason717beb92018-06-25 10:03:41 -07008767
8768out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008769 unlock_page(page);
Josef Bacik8318ba72021-02-10 17:14:33 -05008770 up_read(&BTRFS_I(inode)->i_mmap_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -05008771out:
Qu Wenruo8702ba92019-10-14 14:34:51 +08008772 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
Nikolay Borisov86d52922020-06-03 08:55:40 +03008773 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008774 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008775out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008776 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008777 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008778 return ret;
8779}
8780
Filipe Manana213e8c52018-02-06 20:40:31 +00008781static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008782{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008783 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008784 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008785 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008786 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008787 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008788 u64 mask = fs_info->sectorsize - 1;
Josef Bacik2bd36e72019-08-22 15:14:33 -04008789 u64 min_size = btrfs_calc_metadata_size(fs_info, 1);
Filipe Manana0d7d3162021-05-24 11:35:55 +01008790 u64 extents_found = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008791
Filipe Manana213e8c52018-02-06 20:40:31 +00008792 if (!skip_writeback) {
8793 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8794 (u64)-1);
8795 if (ret)
8796 return ret;
8797 }
Chris Mason39279cc2007-06-12 06:35:45 -04008798
Josef Bacikfcb80c22011-05-03 10:40:22 -04008799 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008800 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8801 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008802 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008803 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008804 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008805 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008806 * be free'd up by the truncate operation, but also have some slack
8807 * space reserved in case it uses space during the truncate (thank you
8808 * very much snapshotting).
8809 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008810 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008811 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008812 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008813 * doesn't end up using space reserved for updating the inode. We also
8814 * need to be able to stop the transaction and start a new one, which
8815 * means we need to be able to update the inode several times, and we
8816 * have no idea of knowing how many times that will be, so we can't just
8817 * reserve 1 item for the entirety of the operation, so that has to be
8818 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008819 *
8820 * So that leaves us with
8821 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008822 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008823 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008824 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008825 * updating the inode.
8826 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008827 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008828 if (!rsv)
8829 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008830 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008831 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008832
Josef Bacik907cbce2011-08-08 13:46:15 -04008833 /*
Josef Bacik07127182011-08-19 10:29:59 -04008834 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008835 * 1 for updating the inode.
8836 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008837 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008838 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008839 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008840 goto out;
8841 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008842
Josef Bacik907cbce2011-08-08 13:46:15 -04008843 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008844 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08008845 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008846 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008847
Josef Bacikca7e70f2012-08-27 17:48:15 -04008848 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008849
Yan, Zheng80825102009-11-12 09:35:36 +00008850 while (1) {
Nikolay Borisov50743392020-11-02 16:48:55 +02008851 ret = btrfs_truncate_inode_items(trans, root, BTRFS_I(inode),
Yan, Zheng80825102009-11-12 09:35:36 +00008852 inode->i_size,
Filipe Manana0d7d3162021-05-24 11:35:55 +01008853 BTRFS_EXTENT_DATA_KEY,
8854 &extents_found);
Josef Bacikddfae632017-10-19 14:16:02 -04008855 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008856 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00008857 break;
Chris Mason39279cc2007-06-12 06:35:45 -04008858
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02008859 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008860 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05008861 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008862
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04008863 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008864 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008865
8866 trans = btrfs_start_transaction(root, 2);
8867 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008868 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008869 trans = NULL;
8870 break;
8871 }
8872
Nikolay Borisov63f018b2020-03-10 10:59:31 +02008873 btrfs_block_rsv_release(fs_info, rsv, -1, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008874 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08008875 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008876 BUG_ON(ret); /* shouldn't happen */
8877 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00008878 }
8879
Josef Bacikddfae632017-10-19 14:16:02 -04008880 /*
8881 * We can't call btrfs_truncate_block inside a trans handle as we could
8882 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
8883 * we've truncated everything except the last little bit, and can do
8884 * btrfs_truncate_block and then update the disk_i_size.
8885 */
8886 if (ret == NEED_TRUNCATE_BLOCK) {
8887 btrfs_end_transaction(trans);
8888 btrfs_btree_balance_dirty(fs_info);
8889
Nikolay Borisov217f42e2020-11-02 16:49:03 +02008890 ret = btrfs_truncate_block(BTRFS_I(inode), inode->i_size, 0, 0);
Josef Bacikddfae632017-10-19 14:16:02 -04008891 if (ret)
8892 goto out;
8893 trans = btrfs_start_transaction(root, 1);
8894 if (IS_ERR(trans)) {
8895 ret = PTR_ERR(trans);
8896 goto out;
8897 }
Nikolay Borisov76aea532020-11-02 16:48:53 +02008898 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
Josef Bacikddfae632017-10-19 14:16:02 -04008899 }
8900
Chris Mason917c16b2011-11-08 14:49:59 -05008901 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008902 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04008903
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008904 trans->block_rsv = &fs_info->trans_block_rsv;
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02008905 ret2 = btrfs_update_inode(trans, root, BTRFS_I(inode));
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008906 if (ret2 && !ret)
8907 ret = ret2;
8908
8909 ret2 = btrfs_end_transaction(trans);
8910 if (ret2 && !ret)
8911 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008912 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05008913 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04008914out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008915 btrfs_free_block_rsv(fs_info, rsv);
Filipe Manana0d7d3162021-05-24 11:35:55 +01008916 /*
8917 * So if we truncate and then write and fsync we normally would just
8918 * write the extents that changed, which is a problem if we need to
8919 * first truncate that entire inode. So set this flag so we write out
8920 * all of the extents in the inode to the sync log so we're completely
8921 * safe.
8922 *
8923 * If no extents were dropped or trimmed we don't need to force the next
8924 * fsync to truncate all the inode's items from the log and re-log them
8925 * all. This means the truncate operation did not change the file size,
8926 * or changed it to a smaller size but there was only an implicit hole
8927 * between the old i_size and the new i_size, and there were no prealloc
8928 * extents beyond i_size to drop.
8929 */
8930 if (extents_found > 0)
8931 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008932
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008933 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008934}
8935
Sven Wegener3b963622008-06-09 21:57:42 -04008936/*
Chris Masond352ac62008-09-29 15:18:18 -04008937 * create a new subvolume directory/inode (helper for the ioctl).
8938 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05008939int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008940 struct btrfs_root *new_root,
Nikolay Borisov69948022020-12-07 17:32:37 +02008941 struct btrfs_root *parent_root)
Chris Mason39279cc2007-06-12 06:35:45 -04008942{
Chris Mason39279cc2007-06-12 06:35:45 -04008943 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04008944 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008945 u64 index = 0;
Nikolay Borisov23125102020-12-07 17:32:36 +02008946 u64 ino;
Chris Mason39279cc2007-06-12 06:35:45 -04008947
Nikolay Borisov23125102020-12-07 17:32:36 +02008948 err = btrfs_get_free_objectid(new_root, &ino);
8949 if (err < 0)
8950 return err;
8951
8952 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, ino, ino,
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01008953 S_IFDIR | (~current_umask() & S_IRWXUGO),
8954 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04008955 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008956 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008957 inode->i_op = &btrfs_dir_inode_operations;
8958 inode->i_fop = &btrfs_dir_file_operations;
8959
Miklos Szeredibfe86842011-10-28 14:13:29 +02008960 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02008961 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07008962 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04008963
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008964 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8965 if (err)
8966 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02008967 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00008968 new_root->root_key.objectid, err);
8969
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02008970 err = btrfs_update_inode(trans, new_root, BTRFS_I(inode));
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04008971
Yan, Zheng76dda932009-09-21 16:00:26 -04008972 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07008973 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04008974}
8975
Chris Mason39279cc2007-06-12 06:35:45 -04008976struct inode *btrfs_alloc_inode(struct super_block *sb)
8977{
Josef Bacik69fe2d72017-10-19 14:15:57 -04008978 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008979 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008980 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04008981
David Sterba712e36c2017-10-31 17:08:27 +01008982 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04008983 if (!ei)
8984 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008985
8986 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008987 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04008988 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04008989 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04008990 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008991 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008992 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08008993 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008994 ei->disk_i_size = 0;
8995 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04008996 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008997 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08008998 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04008999 ei->last_unlink_trans = 0;
Filipe Manana3ebac172020-07-15 12:30:43 +01009000 ei->last_reflink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009001 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009002
Josef Bacik9e0baf62011-07-15 15:16:44 +00009003 spin_lock_init(&ei->lock);
9004 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009005 if (sb->s_magic != BTRFS_TEST_MAGIC)
9006 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9007 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009008 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009009 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009010 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009011
Miao Xie16cdcec2011-04-22 18:12:22 +08009012 ei->delayed_node = NULL;
9013
chandan r9cc97d62012-07-04 12:48:07 +05309014 ei->i_otime.tv_sec = 0;
9015 ei->i_otime.tv_nsec = 0;
9016
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009017 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009018 extent_map_tree_init(&ei->extent_tree);
Qu Wenruo43eb5f22019-03-01 10:47:59 +08009019 extent_io_tree_init(fs_info, &ei->io_tree, IO_TREE_INODE_IO, inode);
9020 extent_io_tree_init(fs_info, &ei->io_failure_tree,
9021 IO_TREE_INODE_IO_FAILURE, inode);
Josef Bacik41a2ee72020-01-17 09:02:21 -05009022 extent_io_tree_init(fs_info, &ei->file_extent_tree,
9023 IO_TREE_INODE_FILE_EXTENT, inode);
David Sterba7b439732019-03-11 15:58:30 +01009024 ei->io_tree.track_uptodate = true;
9025 ei->io_failure_tree.track_uptodate = true;
Josef Bacikb812ce22012-11-16 13:56:32 -05009026 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009027 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009028 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009029 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009030 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009031 RB_CLEAR_NODE(&ei->rb_node);
Josef Bacik8318ba72021-02-10 17:14:33 -05009032 init_rwsem(&ei->i_mmap_lock);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009033
9034 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009035}
9036
Josef Bacikaaedb552013-10-11 14:44:09 -04009037#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9038void btrfs_test_destroy_inode(struct inode *inode)
9039{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009040 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009041 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9042}
9043#endif
9044
Al Viro26602ca2019-04-10 15:14:41 -04009045void btrfs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009046{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009047 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9048}
9049
Nikolay Borisov633cc812020-09-18 12:15:49 +03009050void btrfs_destroy_inode(struct inode *vfs_inode)
Chris Mason39279cc2007-06-12 06:35:45 -04009051{
Chris Masone6dcd2d2008-07-17 12:53:50 -04009052 struct btrfs_ordered_extent *ordered;
Nikolay Borisov633cc812020-09-18 12:15:49 +03009053 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
9054 struct btrfs_root *root = inode->root;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009055
Nikolay Borisov633cc812020-09-18 12:15:49 +03009056 WARN_ON(!hlist_empty(&vfs_inode->i_dentry));
9057 WARN_ON(vfs_inode->i_data.nrpages);
9058 WARN_ON(inode->block_rsv.reserved);
9059 WARN_ON(inode->block_rsv.size);
9060 WARN_ON(inode->outstanding_extents);
9061 WARN_ON(inode->delalloc_bytes);
9062 WARN_ON(inode->new_delalloc_bytes);
9063 WARN_ON(inode->csum_bytes);
9064 WARN_ON(inode->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009065
Chris Mason5a3f23d2009-03-31 13:27:11 -04009066 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009067 * This can happen where we create an inode, but somebody else also
9068 * created the same inode and we need to destroy the one we already
9069 * created.
9070 */
9071 if (!root)
Al Viro26602ca2019-04-10 15:14:41 -04009072 return;
Josef Bacika6dbd422009-11-11 15:53:34 -05009073
Chris Masond3977122009-01-05 21:25:51 -05009074 while (1) {
Nikolay Borisov633cc812020-09-18 12:15:49 +03009075 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009076 if (!ordered)
9077 break;
9078 else {
Nikolay Borisov633cc812020-09-18 12:15:49 +03009079 btrfs_err(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009080 "found ordered extent %llu %llu on inode cleanup",
Omar Sandovalbffe6332019-12-02 17:34:19 -08009081 ordered->file_offset, ordered->num_bytes);
Nikolay Borisov71fe0a52020-09-18 12:15:50 +03009082 btrfs_remove_ordered_extent(inode, ordered);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009083 btrfs_put_ordered_extent(ordered);
9084 btrfs_put_ordered_extent(ordered);
9085 }
9086 }
Nikolay Borisov633cc812020-09-18 12:15:49 +03009087 btrfs_qgroup_check_reserved_leak(inode);
9088 inode_tree_del(inode);
9089 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
9090 btrfs_inode_clear_file_extent_range(inode, 0, (u64)-1);
9091 btrfs_put_root(inode->root);
Chris Mason39279cc2007-06-12 06:35:45 -04009092}
9093
Al Viro45321ac2010-06-07 13:43:19 -04009094int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009095{
9096 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009097
Naohiro Aota6379ef92013-06-06 09:56:34 +00009098 if (root == NULL)
9099 return 1;
9100
Liu Bofa6ac872013-02-20 14:10:23 +00009101 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009102 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009103 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009104 else
Al Viro45321ac2010-06-07 13:43:19 -04009105 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009106}
9107
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009108static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009109{
9110 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9111
9112 inode_init_once(&ei->vfs_inode);
9113}
9114
David Sterbae67c7182018-02-19 17:24:18 +01009115void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009116{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009117 /*
9118 * Make sure all delayed rcu free inodes are flushed before we
9119 * destroy cache.
9120 */
9121 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009122 kmem_cache_destroy(btrfs_inode_cachep);
9123 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009124 kmem_cache_destroy(btrfs_path_cachep);
9125 kmem_cache_destroy(btrfs_free_space_cachep);
Christophe Leroy3acd4852019-08-21 15:05:55 +00009126 kmem_cache_destroy(btrfs_free_space_bitmap_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009127}
9128
Liu Bof5c29bd2017-11-02 17:21:50 -06009129int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009130{
David Sterba837e1972012-09-07 03:00:48 -06009131 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009132 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009133 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9134 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009135 if (!btrfs_inode_cachep)
9136 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009137
David Sterba837e1972012-09-07 03:00:48 -06009138 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009139 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009140 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009141 if (!btrfs_trans_handle_cachep)
9142 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009143
David Sterba837e1972012-09-07 03:00:48 -06009144 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009145 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009146 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009147 if (!btrfs_path_cachep)
9148 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009149
David Sterba837e1972012-09-07 03:00:48 -06009150 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009151 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009152 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009153 if (!btrfs_free_space_cachep)
9154 goto fail;
9155
Christophe Leroy3acd4852019-08-21 15:05:55 +00009156 btrfs_free_space_bitmap_cachep = kmem_cache_create("btrfs_free_space_bitmap",
9157 PAGE_SIZE, PAGE_SIZE,
David Sterba34e49992021-03-15 15:18:24 +01009158 SLAB_MEM_SPREAD, NULL);
Christophe Leroy3acd4852019-08-21 15:05:55 +00009159 if (!btrfs_free_space_bitmap_cachep)
9160 goto fail;
9161
Chris Mason39279cc2007-06-12 06:35:45 -04009162 return 0;
9163fail:
9164 btrfs_destroy_cachep();
9165 return -ENOMEM;
9166}
9167
Christian Brauner549c7292021-01-21 14:19:43 +01009168static int btrfs_getattr(struct user_namespace *mnt_userns,
9169 const struct path *path, struct kstat *stat,
David Howellsa528d352017-01-31 16:46:22 +00009170 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009171{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009172 u64 delalloc_bytes;
Filipe Manana2766ff62020-11-04 11:07:34 +00009173 u64 inode_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009174 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009175 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009176 u32 bi_flags = BTRFS_I(inode)->flags;
9177
9178 stat->result_mask |= STATX_BTIME;
9179 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9180 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9181 if (bi_flags & BTRFS_INODE_APPEND)
9182 stat->attributes |= STATX_ATTR_APPEND;
9183 if (bi_flags & BTRFS_INODE_COMPRESS)
9184 stat->attributes |= STATX_ATTR_COMPRESSED;
9185 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9186 stat->attributes |= STATX_ATTR_IMMUTABLE;
9187 if (bi_flags & BTRFS_INODE_NODUMP)
9188 stat->attributes |= STATX_ATTR_NODUMP;
9189
9190 stat->attributes_mask |= (STATX_ATTR_APPEND |
9191 STATX_ATTR_COMPRESSED |
9192 STATX_ATTR_IMMUTABLE |
9193 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009194
Christian Brauner0d56a452021-01-21 14:19:30 +01009195 generic_fillattr(&init_user_ns, inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009196 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009197
9198 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009199 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Filipe Manana2766ff62020-11-04 11:07:34 +00009200 inode_bytes = inode_get_bytes(inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009201 spin_unlock(&BTRFS_I(inode)->lock);
Filipe Manana2766ff62020-11-04 11:07:34 +00009202 stat->blocks = (ALIGN(inode_bytes, blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009203 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009204 return 0;
9205}
9206
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009207static int btrfs_rename_exchange(struct inode *old_dir,
9208 struct dentry *old_dentry,
9209 struct inode *new_dir,
9210 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009211{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009212 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009213 struct btrfs_trans_handle *trans;
9214 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009215 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009216 struct inode *new_inode = new_dentry->d_inode;
9217 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07009218 struct timespec64 ctime = current_time(old_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009219 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9220 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009221 u64 old_idx = 0;
9222 u64 new_idx = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009223 int ret;
Filipe Manana75b463d2020-08-11 12:43:48 +01009224 int ret2;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009225 bool root_log_pinned = false;
9226 bool dest_log_pinned = false;
Josef Bacikdc09ef32021-05-19 14:04:21 -04009227 bool need_abort = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009228
NeilBrown3f79f6f2021-08-06 14:26:24 +10009229 /*
9230 * For non-subvolumes allow exchange only within one subvolume, in the
9231 * same inode namespace. Two subvolumes (represented as directory) can
9232 * be exchanged as they're a logical link and have a fixed inode number.
9233 */
9234 if (root != dest &&
9235 (old_ino != BTRFS_FIRST_FREE_OBJECTID ||
9236 new_ino != BTRFS_FIRST_FREE_OBJECTID))
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009237 return -EXDEV;
9238
9239 /* close the race window with snapshot create/destroy ioctl */
Josef Bacik943eb3b2019-11-19 13:59:20 -05009240 if (old_ino == BTRFS_FIRST_FREE_OBJECTID ||
9241 new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009242 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009243
9244 /*
9245 * We want to reserve the absolute worst case amount of items. So if
9246 * both inodes are subvols and we need to unlink them then that would
9247 * require 4 item modifications, but if they are both normal inodes it
9248 * would require 5 item modifications, so we'll assume their normal
9249 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9250 * should cover the worst case number of items we'll modify.
9251 */
9252 trans = btrfs_start_transaction(root, 12);
9253 if (IS_ERR(trans)) {
9254 ret = PTR_ERR(trans);
9255 goto out_notrans;
9256 }
9257
Josef Bacik00aa8e82021-03-12 15:25:02 -05009258 if (dest != root) {
9259 ret = btrfs_record_root_in_trans(trans, dest);
9260 if (ret)
9261 goto out_fail;
9262 }
Josef Bacik3e174092019-11-15 15:43:06 -05009263
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009264 /*
9265 * We need to find a free sequence number both in the source and
9266 * in the destination directory for the exchange.
9267 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009268 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009269 if (ret)
9270 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009271 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009272 if (ret)
9273 goto out_fail;
9274
9275 BTRFS_I(old_inode)->dir_index = 0ULL;
9276 BTRFS_I(new_inode)->dir_index = 0ULL;
9277
9278 /* Reference for the source. */
9279 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9280 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01009281 btrfs_set_log_full_commit(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009282 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009283 btrfs_pin_log_trans(root);
9284 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009285 ret = btrfs_insert_inode_ref(trans, dest,
9286 new_dentry->d_name.name,
9287 new_dentry->d_name.len,
9288 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009289 btrfs_ino(BTRFS_I(new_dir)),
9290 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009291 if (ret)
9292 goto out_fail;
Josef Bacikdc09ef32021-05-19 14:04:21 -04009293 need_abort = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009294 }
9295
9296 /* And now for the dest. */
9297 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9298 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01009299 btrfs_set_log_full_commit(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009300 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009301 btrfs_pin_log_trans(dest);
9302 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009303 ret = btrfs_insert_inode_ref(trans, root,
9304 old_dentry->d_name.name,
9305 old_dentry->d_name.len,
9306 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009307 btrfs_ino(BTRFS_I(old_dir)),
9308 new_idx);
Josef Bacikdc09ef32021-05-19 14:04:21 -04009309 if (ret) {
9310 if (need_abort)
9311 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009312 goto out_fail;
Josef Bacikdc09ef32021-05-19 14:04:21 -04009313 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009314 }
9315
9316 /* Update inode version and ctime/mtime. */
9317 inode_inc_iversion(old_dir);
9318 inode_inc_iversion(new_dir);
9319 inode_inc_iversion(old_inode);
9320 inode_inc_iversion(new_inode);
9321 old_dir->i_ctime = old_dir->i_mtime = ctime;
9322 new_dir->i_ctime = new_dir->i_mtime = ctime;
9323 old_inode->i_ctime = ctime;
9324 new_inode->i_ctime = ctime;
9325
9326 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009327 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9328 BTRFS_I(old_inode), 1);
9329 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9330 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009331 }
9332
9333 /* src is a subvolume */
9334 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik045d3962019-12-18 17:20:27 -05009335 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009336 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009337 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9338 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009339 old_dentry->d_name.name,
9340 old_dentry->d_name.len);
9341 if (!ret)
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02009342 ret = btrfs_update_inode(trans, root, BTRFS_I(old_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009343 }
9344 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009345 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009346 goto out_fail;
9347 }
9348
9349 /* dest is a subvolume */
9350 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik045d3962019-12-18 17:20:27 -05009351 ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009352 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009353 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9354 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009355 new_dentry->d_name.name,
9356 new_dentry->d_name.len);
9357 if (!ret)
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02009358 ret = btrfs_update_inode(trans, dest, BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009359 }
9360 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009361 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009362 goto out_fail;
9363 }
9364
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009365 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009366 new_dentry->d_name.name,
9367 new_dentry->d_name.len, 0, old_idx);
9368 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009369 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009370 goto out_fail;
9371 }
9372
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009373 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009374 old_dentry->d_name.name,
9375 old_dentry->d_name.len, 0, new_idx);
9376 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009377 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009378 goto out_fail;
9379 }
9380
9381 if (old_inode->i_nlink == 1)
9382 BTRFS_I(old_inode)->dir_index = old_idx;
9383 if (new_inode->i_nlink == 1)
9384 BTRFS_I(new_inode)->dir_index = new_idx;
9385
Filipe Manana86e8aa02016-05-05 02:02:27 +01009386 if (root_log_pinned) {
Filipe Manana75b463d2020-08-11 12:43:48 +01009387 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9388 new_dentry->d_parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009389 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009390 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009391 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009392 if (dest_log_pinned) {
Filipe Manana75b463d2020-08-11 12:43:48 +01009393 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9394 old_dentry->d_parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009395 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009396 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009397 }
9398out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009399 /*
9400 * If we have pinned a log and an error happened, we unpin tasks
9401 * trying to sync the log and force them to fallback to a transaction
9402 * commit if the log currently contains any of the inodes involved in
9403 * this rename operation (to ensure we do not persist a log with an
9404 * inconsistent state for any of these inodes or leading to any
9405 * inconsistencies when replayed). If the transaction was aborted, the
9406 * abortion reason is propagated to userspace when attempting to commit
9407 * the transaction. If the log does not contain any of these inodes, we
9408 * allow the tasks to sync it.
9409 */
9410 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009411 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9412 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9413 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009414 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009415 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
David Sterba90787762019-03-20 13:28:05 +01009416 btrfs_set_log_full_commit(trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009417
9418 if (root_log_pinned) {
9419 btrfs_end_log_trans(root);
9420 root_log_pinned = false;
9421 }
9422 if (dest_log_pinned) {
9423 btrfs_end_log_trans(dest);
9424 dest_log_pinned = false;
9425 }
9426 }
Filipe Manana75b463d2020-08-11 12:43:48 +01009427 ret2 = btrfs_end_transaction(trans);
9428 ret = ret ? ret : ret2;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009429out_notrans:
Josef Bacik943eb3b2019-11-19 13:59:20 -05009430 if (new_ino == BTRFS_FIRST_FREE_OBJECTID ||
9431 old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009432 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009433
9434 return ret;
9435}
9436
9437static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9438 struct btrfs_root *root,
9439 struct inode *dir,
9440 struct dentry *dentry)
9441{
9442 int ret;
9443 struct inode *inode;
9444 u64 objectid;
9445 u64 index;
9446
Nikolay Borisov543068a2020-12-07 17:32:33 +02009447 ret = btrfs_get_free_objectid(root, &objectid);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009448 if (ret)
9449 return ret;
9450
9451 inode = btrfs_new_inode(trans, root, dir,
9452 dentry->d_name.name,
9453 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009454 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009455 objectid,
9456 S_IFCHR | WHITEOUT_MODE,
9457 &index);
9458
9459 if (IS_ERR(inode)) {
9460 ret = PTR_ERR(inode);
9461 return ret;
9462 }
9463
9464 inode->i_op = &btrfs_special_inode_operations;
9465 init_special_inode(inode, inode->i_mode,
9466 WHITEOUT_DEV);
9467
9468 ret = btrfs_init_inode_security(trans, inode, dir,
9469 &dentry->d_name);
9470 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009471 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009472
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009473 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9474 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009475 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009476 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009477
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02009478 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananac9901612016-05-05 01:41:57 +01009479out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009480 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009481 if (ret)
9482 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009483 iput(inode);
9484
Filipe Mananac9901612016-05-05 01:41:57 +01009485 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009486}
9487
Chris Mason39279cc2007-06-12 06:35:45 -04009488static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009489 struct inode *new_dir, struct dentry *new_dentry,
9490 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009491{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009492 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009493 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009494 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009495 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9496 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009497 struct inode *new_inode = d_inode(new_dentry);
9498 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009499 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009500 int ret;
Filipe Manana75b463d2020-08-11 12:43:48 +01009501 int ret2;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009502 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009503 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009504
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009505 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009506 return -EPERM;
9507
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009508 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009509 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009510 return -EXDEV;
9511
Li Zefan33345d012011-04-20 10:31:50 +08009512 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009513 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009514 return -ENOTEMPTY;
9515
Chris Mason39279cc2007-06-12 06:35:45 -04009516 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009517 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009518 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009519
9520
9521 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009522 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009523 new_dentry->d_name.name,
9524 new_dentry->d_name.len);
9525
9526 if (ret) {
9527 if (ret == -EEXIST) {
9528 /* we shouldn't get
9529 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309530 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009531 return ret;
9532 }
9533 } else {
9534 /* maybe -EOVERFLOW */
9535 return ret;
9536 }
9537 }
9538 ret = 0;
9539
Chris Mason5a3f23d2009-03-31 13:27:11 -04009540 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009541 * we're using rename to replace one file with another. Start IO on it
9542 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009543 */
Chris Mason8d875f92014-08-12 10:47:42 -07009544 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009545 filemap_flush(old_inode->i_mapping);
9546
Yan, Zheng76dda932009-09-21 16:00:26 -04009547 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009548 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009549 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009550 /*
9551 * We want to reserve the absolute worst case amount of items. So if
9552 * both inodes are subvols and we need to unlink them then that would
9553 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009554 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009555 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9556 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009557 * If our rename has the whiteout flag, we need more 5 units for the
9558 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9559 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009560 */
Filipe Manana5062af32016-05-05 10:26:26 +01009561 trans_num_items = 11;
9562 if (flags & RENAME_WHITEOUT)
9563 trans_num_items += 5;
9564 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009565 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009566 ret = PTR_ERR(trans);
9567 goto out_notrans;
9568 }
Chris Mason5f39d392007-10-15 16:14:19 -04009569
Josef Bacikb0fec6f2021-03-12 15:25:03 -05009570 if (dest != root) {
9571 ret = btrfs_record_root_in_trans(trans, dest);
9572 if (ret)
9573 goto out_fail;
9574 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009575
Nikolay Borisov877574e2017-02-20 13:50:33 +02009576 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009577 if (ret)
9578 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009579
Miao Xie67de1172013-12-26 13:07:06 +08009580 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009581 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009582 /* force full log commit if subvolume involved. */
David Sterba90787762019-03-20 13:28:05 +01009583 btrfs_set_log_full_commit(trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009584 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009585 btrfs_pin_log_trans(root);
9586 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009587 ret = btrfs_insert_inode_ref(trans, dest,
9588 new_dentry->d_name.name,
9589 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009590 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009591 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009592 if (ret)
9593 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009594 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009595
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009596 inode_inc_iversion(old_dir);
9597 inode_inc_iversion(new_dir);
9598 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009599 old_dir->i_ctime = old_dir->i_mtime =
9600 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009601 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009602
Chris Mason12fcfd22009-03-24 10:24:20 -04009603 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009604 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9605 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009606
Li Zefan33345d012011-04-20 10:31:50 +08009607 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05009608 ret = btrfs_unlink_subvol(trans, old_dir, old_dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009609 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009610 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9611 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009612 old_dentry->d_name.name,
9613 old_dentry->d_name.len);
9614 if (!ret)
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +02009615 ret = btrfs_update_inode(trans, root, BTRFS_I(old_inode));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009616 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009617 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009618 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009619 goto out_fail;
9620 }
Chris Mason39279cc2007-06-12 06:35:45 -04009621
9622 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009623 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009624 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009625 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009626 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Josef Bacik045d3962019-12-18 17:20:27 -05009627 ret = btrfs_unlink_subvol(trans, new_dir, new_dentry);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009628 BUG_ON(new_inode->i_nlink == 0);
9629 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009630 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9631 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009632 new_dentry->d_name.name,
9633 new_dentry->d_name.len);
9634 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009635 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009636 ret = btrfs_orphan_add(trans,
9637 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009638 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009639 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009640 goto out_fail;
9641 }
Chris Mason39279cc2007-06-12 06:35:45 -04009642 }
Josef Bacikaec74772008-07-24 12:12:38 -04009643
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009644 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009645 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009646 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009647 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009648 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009649 goto out_fail;
9650 }
Chris Mason39279cc2007-06-12 06:35:45 -04009651
Miao Xie67de1172013-12-26 13:07:06 +08009652 if (old_inode->i_nlink == 1)
9653 BTRFS_I(old_inode)->dir_index = index;
9654
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009655 if (log_pinned) {
Filipe Manana75b463d2020-08-11 12:43:48 +01009656 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9657 new_dentry->d_parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009658 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009659 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009660 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009661
9662 if (flags & RENAME_WHITEOUT) {
9663 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9664 old_dentry);
9665
9666 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009667 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009668 goto out_fail;
9669 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009670 }
Chris Mason39279cc2007-06-12 06:35:45 -04009671out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009672 /*
9673 * If we have pinned the log and an error happened, we unpin tasks
9674 * trying to sync the log and force them to fallback to a transaction
9675 * commit if the log currently contains any of the inodes involved in
9676 * this rename operation (to ensure we do not persist a log with an
9677 * inconsistent state for any of these inodes or leading to any
9678 * inconsistencies when replayed). If the transaction was aborted, the
9679 * abortion reason is propagated to userspace when attempting to commit
9680 * the transaction. If the log does not contain any of these inodes, we
9681 * allow the tasks to sync it.
9682 */
9683 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009684 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9685 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9686 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009687 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009688 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
David Sterba90787762019-03-20 13:28:05 +01009689 btrfs_set_log_full_commit(trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009690
9691 btrfs_end_log_trans(root);
9692 log_pinned = false;
9693 }
Filipe Manana75b463d2020-08-11 12:43:48 +01009694 ret2 = btrfs_end_transaction(trans);
9695 ret = ret ? ret : ret2;
Johann Lombardib44c59a2011-03-31 13:23:47 +00009696out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009697 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009698 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009699
Chris Mason39279cc2007-06-12 06:35:45 -04009700 return ret;
9701}
9702
Christian Brauner549c7292021-01-21 14:19:43 +01009703static int btrfs_rename2(struct user_namespace *mnt_userns, struct inode *old_dir,
9704 struct dentry *old_dentry, struct inode *new_dir,
9705 struct dentry *new_dentry, unsigned int flags)
Miklos Szeredi80ace852014-07-23 15:15:32 +02009706{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009707 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009708 return -EINVAL;
9709
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009710 if (flags & RENAME_EXCHANGE)
9711 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9712 new_dentry);
9713
9714 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009715}
9716
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009717struct btrfs_delalloc_work {
9718 struct inode *inode;
9719 struct completion completion;
9720 struct list_head list;
9721 struct btrfs_work work;
9722};
9723
Miao Xie8ccf6f192012-10-25 09:28:04 +00009724static void btrfs_run_delalloc_work(struct btrfs_work *work)
9725{
9726 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009727 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009728
9729 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9730 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009731 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009732 filemap_flush(inode->i_mapping);
9733 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9734 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009735 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009736
Nikolay Borisov076da912018-04-23 10:54:16 +03009737 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009738 complete(&delalloc_work->completion);
9739}
9740
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009741static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009742{
9743 struct btrfs_delalloc_work *work;
9744
David Sterba100d5702015-12-08 14:39:32 +01009745 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009746 if (!work)
9747 return NULL;
9748
9749 init_completion(&work->completion);
9750 INIT_LIST_HEAD(&work->list);
9751 work->inode = inode;
Omar Sandovala0cac0e2019-09-16 11:30:57 -07009752 btrfs_init_work(&work->work, btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009753
9754 return work;
9755}
9756
Chris Masond352ac62008-09-29 15:18:18 -04009757/*
9758 * some fairly slow code that needs optimization. This walks the list
9759 * of all the inodes with pending delalloc and forces them to disk.
9760 */
Josef Bacike076ab2a2021-01-07 17:08:30 -05009761static int start_delalloc_inodes(struct btrfs_root *root,
9762 struct writeback_control *wbc, bool snapshot,
Filipe Manana3d45f222020-12-02 11:55:58 +00009763 bool in_reclaim_context)
Chris Masonea8c2812008-08-04 23:17:27 -04009764{
Chris Masonea8c2812008-08-04 23:17:27 -04009765 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009766 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009767 struct btrfs_delalloc_work *work, *next;
9768 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009769 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009770 int ret = 0;
Josef Bacike076ab2a2021-01-07 17:08:30 -05009771 bool full_flush = wbc->nr_to_write == LONG_MAX;
Chris Masonea8c2812008-08-04 23:17:27 -04009772
Miao Xie8ccf6f192012-10-25 09:28:04 +00009773 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009774 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009775
Miao Xie573bfb72014-03-06 13:55:03 +08009776 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009777 spin_lock(&root->delalloc_lock);
9778 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009779 while (!list_empty(&splice)) {
9780 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009781 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009782
Miao Xieeb73c1b2013-05-15 07:48:22 +00009783 list_move_tail(&binode->delalloc_inodes,
9784 &root->delalloc_inodes);
Filipe Manana3d45f222020-12-02 11:55:58 +00009785
9786 if (in_reclaim_context &&
9787 test_bit(BTRFS_INODE_NO_DELALLOC_FLUSH, &binode->runtime_flags))
9788 continue;
9789
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009790 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009791 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009792 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009793 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009794 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009795 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009796
Ethan Lien3cd24c62018-11-01 14:49:03 +08009797 if (snapshot)
9798 set_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
9799 &binode->runtime_flags);
Josef Bacike076ab2a2021-01-07 17:08:30 -05009800 if (full_flush) {
9801 work = btrfs_alloc_delalloc_work(inode);
9802 if (!work) {
9803 iput(inode);
9804 ret = -ENOMEM;
9805 goto out;
9806 }
9807 list_add_tail(&work->list, &works);
9808 btrfs_queue_work(root->fs_info->flush_workers,
9809 &work->work);
9810 } else {
9811 ret = sync_inode(inode, wbc);
9812 if (!ret &&
9813 test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9814 &BTRFS_I(inode)->runtime_flags))
9815 ret = sync_inode(inode, wbc);
9816 btrfs_add_delayed_iput(inode);
9817 if (ret || wbc->nr_to_write <= 0)
Josef Bacikb4912132020-07-21 10:22:12 -04009818 goto out;
9819 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009820 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009821 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009822 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009823 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009824
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009825out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009826 list_for_each_entry_safe(work, next, &works, list) {
9827 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +03009828 wait_for_completion(&work->completion);
9829 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009830 }
9831
Nikolay Borisov81f1d392018-04-19 10:46:37 +03009832 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009833 spin_lock(&root->delalloc_lock);
9834 list_splice_tail(&splice, &root->delalloc_inodes);
9835 spin_unlock(&root->delalloc_lock);
9836 }
Miao Xie573bfb72014-03-06 13:55:03 +08009837 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009838 return ret;
9839}
9840
Filipe Mananaf9baa502021-04-22 12:08:05 +01009841int btrfs_start_delalloc_snapshot(struct btrfs_root *root, bool in_reclaim_context)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009842{
Josef Bacike076ab2a2021-01-07 17:08:30 -05009843 struct writeback_control wbc = {
9844 .nr_to_write = LONG_MAX,
9845 .sync_mode = WB_SYNC_NONE,
9846 .range_start = 0,
9847 .range_end = LLONG_MAX,
9848 };
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009849 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009850
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009851 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009852 return -EROFS;
9853
Filipe Mananaf9baa502021-04-22 12:08:05 +01009854 return start_delalloc_inodes(root, &wbc, true, in_reclaim_context);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009855}
9856
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02009857int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, long nr,
Filipe Manana3d45f222020-12-02 11:55:58 +00009858 bool in_reclaim_context)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009859{
Josef Bacike076ab2a2021-01-07 17:08:30 -05009860 struct writeback_control wbc = {
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02009861 .nr_to_write = nr,
Josef Bacike076ab2a2021-01-07 17:08:30 -05009862 .sync_mode = WB_SYNC_NONE,
9863 .range_start = 0,
9864 .range_end = LLONG_MAX,
9865 };
Miao Xieeb73c1b2013-05-15 07:48:22 +00009866 struct btrfs_root *root;
9867 struct list_head splice;
9868 int ret;
9869
Wang Shilong2c21b4d2014-01-14 19:42:20 +08009870 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009871 return -EROFS;
9872
9873 INIT_LIST_HEAD(&splice);
9874
Miao Xie573bfb72014-03-06 13:55:03 +08009875 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009876 spin_lock(&fs_info->delalloc_root_lock);
9877 list_splice_init(&fs_info->delalloc_roots, &splice);
Nikolay Borisovd7830b72021-01-11 12:58:12 +02009878 while (!list_empty(&splice)) {
Josef Bacike076ab2a2021-01-07 17:08:30 -05009879 /*
9880 * Reset nr_to_write here so we know that we're doing a full
9881 * flush.
9882 */
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02009883 if (nr == LONG_MAX)
Josef Bacike076ab2a2021-01-07 17:08:30 -05009884 wbc.nr_to_write = LONG_MAX;
9885
Miao Xieeb73c1b2013-05-15 07:48:22 +00009886 root = list_first_entry(&splice, struct btrfs_root,
9887 delalloc_root);
Josef Bacik00246522020-01-24 09:33:01 -05009888 root = btrfs_grab_root(root);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009889 BUG_ON(!root);
9890 list_move_tail(&root->delalloc_root,
9891 &fs_info->delalloc_roots);
9892 spin_unlock(&fs_info->delalloc_root_lock);
9893
Josef Bacike076ab2a2021-01-07 17:08:30 -05009894 ret = start_delalloc_inodes(root, &wbc, false, in_reclaim_context);
Josef Bacik00246522020-01-24 09:33:01 -05009895 btrfs_put_root(root);
Josef Bacike076ab2a2021-01-07 17:08:30 -05009896 if (ret < 0 || wbc.nr_to_write <= 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009897 goto out;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009898 spin_lock(&fs_info->delalloc_root_lock);
9899 }
9900 spin_unlock(&fs_info->delalloc_root_lock);
9901
Miao Xie6c255e62014-03-06 13:55:01 +08009902 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009903out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +03009904 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009905 spin_lock(&fs_info->delalloc_root_lock);
9906 list_splice_tail(&splice, &fs_info->delalloc_roots);
9907 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009908 }
Miao Xie573bfb72014-03-06 13:55:03 +08009909 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009910 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04009911}
9912
Christian Brauner549c7292021-01-21 14:19:43 +01009913static int btrfs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
9914 struct dentry *dentry, const char *symname)
Chris Mason39279cc2007-06-12 06:35:45 -04009915{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009916 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009917 struct btrfs_trans_handle *trans;
9918 struct btrfs_root *root = BTRFS_I(dir)->root;
9919 struct btrfs_path *path;
9920 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05009921 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009922 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04009923 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309924 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009925 int name_len;
9926 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04009927 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04009928 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04009929 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04009930
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +01009931 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009932 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -04009933 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05009934
Josef Bacik9ed74f22009-09-11 16:12:44 -04009935 /*
9936 * 2 items for inode item and ref
9937 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +00009938 * 1 item for updating parent inode item
9939 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -04009940 * 1 item for xattr if selinux is on
9941 */
Filipe Manana9269d122015-12-31 18:16:29 +00009942 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009943 if (IS_ERR(trans))
9944 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05009945
Nikolay Borisov543068a2020-12-07 17:32:33 +02009946 err = btrfs_get_free_objectid(root, &objectid);
Li Zefan581bb052011-04-20 10:06:11 +08009947 if (err)
9948 goto out_unlock;
9949
Josef Bacikaec74772008-07-24 12:12:38 -04009950 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01009951 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
9952 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009953 if (IS_ERR(inode)) {
9954 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04009955 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04009956 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04009957 }
Chris Mason39279cc2007-06-12 06:35:45 -04009958
Casey Schauflerad19db72011-12-15 10:09:07 -05009959 /*
9960 * If the active LSM wants to access the inode during
9961 * d_instantiate it needs these. Smack checks to see
9962 * if the filesystem supports xattrs by looking at the
9963 * ops vector.
9964 */
9965 inode->i_fop = &btrfs_file_operations;
9966 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07009967 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07009968
9969 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
9970 if (err)
Al Viro32955c52018-05-16 12:20:05 -04009971 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05009972
Chris Mason39279cc2007-06-12 06:35:45 -04009973 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009974 if (!path) {
9975 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -04009976 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -07009977 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009978 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04009979 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009980 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04009981 datasize = btrfs_file_extent_calc_inline_size(name_len);
9982 err = btrfs_insert_empty_item(trans, root, path, &key,
9983 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04009984 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +00009985 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -04009986 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -04009987 }
Chris Mason5f39d392007-10-15 16:14:19 -04009988 leaf = path->nodes[0];
9989 ei = btrfs_item_ptr(leaf, path->slots[0],
9990 struct btrfs_file_extent_item);
9991 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
9992 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04009993 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04009994 btrfs_set_file_extent_encryption(leaf, ei, 0);
9995 btrfs_set_file_extent_compression(leaf, ei, 0);
9996 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
9997 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
9998
Chris Mason39279cc2007-06-12 06:35:45 -04009999 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010000 write_extent_buffer(leaf, symname, ptr, name_len);
10001 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010002 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010003
Chris Mason39279cc2007-06-12 06:35:45 -040010004 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010005 inode_nohighmem(inode);
Yan Zhengd899e052008-10-30 14:25:28 -040010006 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010007 btrfs_i_size_write(BTRFS_I(inode), name_len);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +020010008 err = btrfs_update_inode(trans, root, BTRFS_I(inode));
Filipe Mananad50866d2015-12-31 18:08:24 +000010009 /*
10010 * Last step, add directory indexes for our symlink inode. This is the
10011 * last step to avoid extra cleanup of these indexes if an error happens
10012 * elsewhere above.
10013 */
10014 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010015 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10016 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -040010017 if (err)
10018 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -070010019
Al Viro1e2e5472018-05-04 08:23:01 -040010020 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010021
10022out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010023 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010024 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -040010025 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -040010026 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010027 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010028 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010029 return err;
10030}
Chris Mason16432982008-04-10 10:23:21 -040010031
Filipe Manana8fccebf2020-09-08 11:27:20 +010010032static struct btrfs_trans_handle *insert_prealloc_file_extent(
10033 struct btrfs_trans_handle *trans_in,
Nikolay Borisov90dffd02020-11-02 16:48:54 +020010034 struct btrfs_inode *inode,
10035 struct btrfs_key *ins,
Qu Wenruo203f44c52020-06-10 09:04:40 +080010036 u64 file_offset)
10037{
10038 struct btrfs_file_extent_item stack_fi;
Filipe Mananabf385642020-09-08 11:27:22 +010010039 struct btrfs_replace_extent_info extent_info;
Filipe Manana8fccebf2020-09-08 11:27:20 +010010040 struct btrfs_trans_handle *trans = trans_in;
10041 struct btrfs_path *path;
Qu Wenruo203f44c52020-06-10 09:04:40 +080010042 u64 start = ins->objectid;
10043 u64 len = ins->offset;
Qu Wenruofbf48bb2021-03-03 18:41:51 +080010044 int qgroup_released;
Qu Wenruo9729f102020-06-10 09:04:41 +080010045 int ret;
Qu Wenruo203f44c52020-06-10 09:04:40 +080010046
10047 memset(&stack_fi, 0, sizeof(stack_fi));
10048
10049 btrfs_set_stack_file_extent_type(&stack_fi, BTRFS_FILE_EXTENT_PREALLOC);
10050 btrfs_set_stack_file_extent_disk_bytenr(&stack_fi, start);
10051 btrfs_set_stack_file_extent_disk_num_bytes(&stack_fi, len);
10052 btrfs_set_stack_file_extent_num_bytes(&stack_fi, len);
10053 btrfs_set_stack_file_extent_ram_bytes(&stack_fi, len);
10054 btrfs_set_stack_file_extent_compression(&stack_fi, BTRFS_COMPRESS_NONE);
10055 /* Encryption and other encoding is reserved and all 0 */
10056
Qu Wenruofbf48bb2021-03-03 18:41:51 +080010057 qgroup_released = btrfs_qgroup_release_data(inode, file_offset, len);
10058 if (qgroup_released < 0)
10059 return ERR_PTR(qgroup_released);
Filipe Manana8fccebf2020-09-08 11:27:20 +010010060
10061 if (trans) {
Nikolay Borisov90dffd02020-11-02 16:48:54 +020010062 ret = insert_reserved_file_extent(trans, inode,
Filipe Manana2766ff62020-11-04 11:07:34 +000010063 file_offset, &stack_fi,
Qu Wenruofbf48bb2021-03-03 18:41:51 +080010064 true, qgroup_released);
Filipe Manana8fccebf2020-09-08 11:27:20 +010010065 if (ret)
Qu Wenruoa3ee79b2021-03-03 18:41:52 +080010066 goto free_qgroup;
Filipe Manana8fccebf2020-09-08 11:27:20 +010010067 return trans;
10068 }
10069
10070 extent_info.disk_offset = start;
10071 extent_info.disk_len = len;
10072 extent_info.data_offset = 0;
10073 extent_info.data_len = len;
10074 extent_info.file_offset = file_offset;
10075 extent_info.extent_buf = (char *)&stack_fi;
Filipe Manana8fccebf2020-09-08 11:27:20 +010010076 extent_info.is_new_extent = true;
Qu Wenruofbf48bb2021-03-03 18:41:51 +080010077 extent_info.qgroup_reserved = qgroup_released;
Filipe Manana8fccebf2020-09-08 11:27:20 +010010078 extent_info.insertions = 0;
10079
10080 path = btrfs_alloc_path();
Qu Wenruoa3ee79b2021-03-03 18:41:52 +080010081 if (!path) {
10082 ret = -ENOMEM;
10083 goto free_qgroup;
10084 }
Filipe Manana8fccebf2020-09-08 11:27:20 +010010085
Nikolay Borisovbfc78472021-02-17 15:12:47 +020010086 ret = btrfs_replace_file_extents(inode, path, file_offset,
Filipe Manana8fccebf2020-09-08 11:27:20 +010010087 file_offset + len - 1, &extent_info,
10088 &trans);
10089 btrfs_free_path(path);
10090 if (ret)
Qu Wenruoa3ee79b2021-03-03 18:41:52 +080010091 goto free_qgroup;
Filipe Manana8fccebf2020-09-08 11:27:20 +010010092 return trans;
Qu Wenruoa3ee79b2021-03-03 18:41:52 +080010093
10094free_qgroup:
10095 /*
10096 * We have released qgroup data range at the beginning of the function,
10097 * and normally qgroup_released bytes will be freed when committing
10098 * transaction.
10099 * But if we error out early, we have to free what we have released
10100 * or we leak qgroup data reservation.
10101 */
10102 btrfs_qgroup_free_refroot(inode->root->fs_info,
10103 inode->root->root_key.objectid, qgroup_released,
10104 BTRFS_QGROUP_RSV_DATA);
10105 return ERR_PTR(ret);
Qu Wenruo203f44c52020-06-10 09:04:40 +080010106}
Filipe Manana8fccebf2020-09-08 11:27:20 +010010107
Josef Bacik0af3d002010-06-21 14:48:16 -040010108static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10109 u64 start, u64 num_bytes, u64 min_size,
10110 loff_t actual_len, u64 *alloc_hint,
10111 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010112{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010113 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010114 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10115 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010116 struct btrfs_root *root = BTRFS_I(inode)->root;
10117 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010118 u64 cur_offset = start;
Josef Bacikb778cf92020-02-13 10:47:31 -050010119 u64 clear_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010120 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010121 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010122 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010123 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010124 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010125 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010126
Josef Bacik0af3d002010-06-21 14:48:16 -040010127 if (trans)
10128 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010129 while (num_bytes > 0) {
Byongho Leeee221842015-12-15 01:42:10 +090010130 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010131 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010132 /*
10133 * If we are severely fragmented we could end up with really
10134 * small allocations, so if the allocator is returning small
10135 * chunks lets make its job easier by only searching for those
10136 * sized chunks.
10137 */
10138 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010139 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10140 min_size, 0, *alloc_hint, &ins, 1, 0);
Filipe Manana8fccebf2020-09-08 11:27:20 +010010141 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -040010142 break;
Josef Bacikb778cf92020-02-13 10:47:31 -050010143
10144 /*
10145 * We've reserved this space, and thus converted it from
10146 * ->bytes_may_use to ->bytes_reserved. Any error that happens
10147 * from here on out we will only need to clear our reservation
10148 * for the remaining unreserved area, so advance our
10149 * clear_offset by our extent size.
10150 */
10151 clear_offset += ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010152
Josef Bacik0b670dc2015-09-23 17:11:16 -040010153 last_alloc = ins.offset;
Nikolay Borisov90dffd02020-11-02 16:48:54 +020010154 trans = insert_prealloc_file_extent(trans, BTRFS_I(inode),
10155 &ins, cur_offset);
Filipe Manana1afc7082020-10-14 10:10:36 +010010156 /*
10157 * Now that we inserted the prealloc extent we can finally
10158 * decrement the number of reservations in the block group.
10159 * If we did it before, we could race with relocation and have
10160 * relocation miss the reserved extent, making it fail later.
10161 */
10162 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana8fccebf2020-09-08 11:27:20 +010010163 if (IS_ERR(trans)) {
10164 ret = PTR_ERR(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010165 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010166 ins.offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010167 break;
10168 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010169
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010170 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010171 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010172
Josef Bacik5dc562c2012-08-17 13:14:17 -040010173 em = alloc_extent_map();
10174 if (!em) {
10175 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10176 &BTRFS_I(inode)->runtime_flags);
10177 goto next;
10178 }
10179
10180 em->start = cur_offset;
10181 em->orig_start = cur_offset;
10182 em->len = ins.offset;
10183 em->block_start = ins.objectid;
10184 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010185 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010186 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010187 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10188 em->generation = trans->transid;
10189
10190 while (1) {
10191 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010192 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010193 write_unlock(&em_tree->lock);
10194 if (ret != -EEXIST)
10195 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010196 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010197 cur_offset + ins.offset - 1,
10198 0);
10199 }
10200 free_extent_map(em);
10201next:
Yan Zhengd899e052008-10-30 14:25:28 -040010202 num_bytes -= ins.offset;
10203 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010204 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010205
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010206 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010207 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010208 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010209 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010210 (actual_len > inode->i_size) &&
10211 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010212 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010213 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010214 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010215 i_size = cur_offset;
10216 i_size_write(inode, i_size);
Nikolay Borisov76aea532020-11-02 16:48:53 +020010217 btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010218 }
10219
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +020010220 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010221
10222 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010223 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010224 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010225 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010226 break;
10227 }
Yan Zhengd899e052008-10-30 14:25:28 -040010228
Filipe Manana8fccebf2020-09-08 11:27:20 +010010229 if (own_trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010230 btrfs_end_transaction(trans);
Filipe Manana8fccebf2020-09-08 11:27:20 +010010231 trans = NULL;
10232 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010233 }
Josef Bacikb778cf92020-02-13 10:47:31 -050010234 if (clear_offset < end)
Nikolay Borisov25ce28c2020-06-03 08:55:39 +030010235 btrfs_free_reserved_data_space(BTRFS_I(inode), NULL, clear_offset,
Josef Bacikb778cf92020-02-13 10:47:31 -050010236 end - clear_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010237 return ret;
10238}
10239
Josef Bacik0af3d002010-06-21 14:48:16 -040010240int btrfs_prealloc_file_range(struct inode *inode, int mode,
10241 u64 start, u64 num_bytes, u64 min_size,
10242 loff_t actual_len, u64 *alloc_hint)
10243{
10244 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10245 min_size, actual_len, alloc_hint,
10246 NULL);
10247}
10248
10249int btrfs_prealloc_file_range_trans(struct inode *inode,
10250 struct btrfs_trans_handle *trans, int mode,
10251 u64 start, u64 num_bytes, u64 min_size,
10252 loff_t actual_len, u64 *alloc_hint)
10253{
10254 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10255 min_size, actual_len, alloc_hint, trans);
10256}
10257
Chris Masone6dcd2d2008-07-17 12:53:50 -040010258static int btrfs_set_page_dirty(struct page *page)
10259{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010260 return __set_page_dirty_nobuffers(page);
10261}
10262
Christian Brauner549c7292021-01-21 14:19:43 +010010263static int btrfs_permission(struct user_namespace *mnt_userns,
10264 struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010265{
Li Zefanb83cc962010-12-20 16:04:08 +080010266 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010267 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010268
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010269 if (mask & MAY_WRITE &&
10270 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10271 if (btrfs_root_readonly(root))
10272 return -EROFS;
10273 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10274 return -EACCES;
10275 }
Christian Brauner47291ba2021-01-21 14:19:24 +010010276 return generic_permission(&init_user_ns, inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010277}
Chris Mason39279cc2007-06-12 06:35:45 -040010278
Christian Brauner549c7292021-01-21 14:19:43 +010010279static int btrfs_tmpfile(struct user_namespace *mnt_userns, struct inode *dir,
10280 struct dentry *dentry, umode_t mode)
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010281{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010282 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010283 struct btrfs_trans_handle *trans;
10284 struct btrfs_root *root = BTRFS_I(dir)->root;
10285 struct inode *inode = NULL;
10286 u64 objectid;
10287 u64 index;
10288 int ret = 0;
10289
10290 /*
10291 * 5 units required for adding orphan entry
10292 */
10293 trans = btrfs_start_transaction(root, 5);
10294 if (IS_ERR(trans))
10295 return PTR_ERR(trans);
10296
Nikolay Borisov543068a2020-12-07 17:32:33 +020010297 ret = btrfs_get_free_objectid(root, &objectid);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010298 if (ret)
10299 goto out;
10300
10301 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010302 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010303 if (IS_ERR(inode)) {
10304 ret = PTR_ERR(inode);
10305 inode = NULL;
10306 goto out;
10307 }
10308
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010309 inode->i_fop = &btrfs_file_operations;
10310 inode->i_op = &btrfs_file_inode_operations;
10311
10312 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010313
Chris Masonb0d5d102014-09-08 13:08:51 -070010314 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10315 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010316 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -070010317
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +020010318 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Chris Masonb0d5d102014-09-08 13:08:51 -070010319 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010320 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010321 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010322 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010323 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010324
Filipe Manana5762b5c2014-08-01 00:10:32 +010010325 /*
10326 * We set number of links to 0 in btrfs_new_inode(), and here we set
10327 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10328 * through:
10329 *
10330 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10331 */
10332 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010333 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -040010334 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010335 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010336out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010337 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010338 if (ret && inode)
10339 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010340 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010341 return ret;
10342}
10343
Qu Wenruod2a91062021-05-31 16:50:49 +080010344void btrfs_set_range_writeback(struct btrfs_inode *inode, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -040010345{
Qu Wenruod2a91062021-05-31 16:50:49 +080010346 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacikc6100a42017-05-05 11:57:13 -040010347 unsigned long index = start >> PAGE_SHIFT;
10348 unsigned long end_index = end >> PAGE_SHIFT;
10349 struct page *page;
Qu Wenruod2a91062021-05-31 16:50:49 +080010350 u32 len;
Josef Bacikc6100a42017-05-05 11:57:13 -040010351
Qu Wenruod2a91062021-05-31 16:50:49 +080010352 ASSERT(end + 1 - start <= U32_MAX);
10353 len = end + 1 - start;
Josef Bacikc6100a42017-05-05 11:57:13 -040010354 while (index <= end_index) {
Qu Wenruod2a91062021-05-31 16:50:49 +080010355 page = find_get_page(inode->vfs_inode.i_mapping, index);
Josef Bacikc6100a42017-05-05 11:57:13 -040010356 ASSERT(page); /* Pages should be in the extent_io_tree */
Qu Wenruod2a91062021-05-31 16:50:49 +080010357
10358 btrfs_page_set_writeback(fs_info, page, start, len);
Josef Bacikc6100a42017-05-05 11:57:13 -040010359 put_page(page);
10360 index++;
10361 }
10362}
10363
Omar Sandovaled46ff32016-11-03 10:28:14 -070010364#ifdef CONFIG_SWAP
10365/*
10366 * Add an entry indicating a block group or device which is pinned by a
10367 * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
10368 * negative errno on failure.
10369 */
10370static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr,
10371 bool is_block_group)
10372{
10373 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10374 struct btrfs_swapfile_pin *sp, *entry;
10375 struct rb_node **p;
10376 struct rb_node *parent = NULL;
10377
10378 sp = kmalloc(sizeof(*sp), GFP_NOFS);
10379 if (!sp)
10380 return -ENOMEM;
10381 sp->ptr = ptr;
10382 sp->inode = inode;
10383 sp->is_block_group = is_block_group;
Filipe Manana195a49e2021-02-05 12:55:37 +000010384 sp->bg_extent_count = 1;
Omar Sandovaled46ff32016-11-03 10:28:14 -070010385
10386 spin_lock(&fs_info->swapfile_pins_lock);
10387 p = &fs_info->swapfile_pins.rb_node;
10388 while (*p) {
10389 parent = *p;
10390 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
10391 if (sp->ptr < entry->ptr ||
10392 (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
10393 p = &(*p)->rb_left;
10394 } else if (sp->ptr > entry->ptr ||
10395 (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
10396 p = &(*p)->rb_right;
10397 } else {
Filipe Manana195a49e2021-02-05 12:55:37 +000010398 if (is_block_group)
10399 entry->bg_extent_count++;
Omar Sandovaled46ff32016-11-03 10:28:14 -070010400 spin_unlock(&fs_info->swapfile_pins_lock);
10401 kfree(sp);
10402 return 1;
10403 }
10404 }
10405 rb_link_node(&sp->node, parent, p);
10406 rb_insert_color(&sp->node, &fs_info->swapfile_pins);
10407 spin_unlock(&fs_info->swapfile_pins_lock);
10408 return 0;
10409}
10410
10411/* Free all of the entries pinned by this swapfile. */
10412static void btrfs_free_swapfile_pins(struct inode *inode)
10413{
10414 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10415 struct btrfs_swapfile_pin *sp;
10416 struct rb_node *node, *next;
10417
10418 spin_lock(&fs_info->swapfile_pins_lock);
10419 node = rb_first(&fs_info->swapfile_pins);
10420 while (node) {
10421 next = rb_next(node);
10422 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
10423 if (sp->inode == inode) {
10424 rb_erase(&sp->node, &fs_info->swapfile_pins);
Filipe Manana195a49e2021-02-05 12:55:37 +000010425 if (sp->is_block_group) {
10426 btrfs_dec_block_group_swap_extents(sp->ptr,
10427 sp->bg_extent_count);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010428 btrfs_put_block_group(sp->ptr);
Filipe Manana195a49e2021-02-05 12:55:37 +000010429 }
Omar Sandovaled46ff32016-11-03 10:28:14 -070010430 kfree(sp);
10431 }
10432 node = next;
10433 }
10434 spin_unlock(&fs_info->swapfile_pins_lock);
10435}
10436
10437struct btrfs_swap_info {
10438 u64 start;
10439 u64 block_start;
10440 u64 block_len;
10441 u64 lowest_ppage;
10442 u64 highest_ppage;
10443 unsigned long nr_pages;
10444 int nr_extents;
10445};
10446
10447static int btrfs_add_swap_extent(struct swap_info_struct *sis,
10448 struct btrfs_swap_info *bsi)
10449{
10450 unsigned long nr_pages;
10451 u64 first_ppage, first_ppage_reported, next_ppage;
10452 int ret;
10453
10454 first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT;
10455 next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len,
10456 PAGE_SIZE) >> PAGE_SHIFT;
10457
10458 if (first_ppage >= next_ppage)
10459 return 0;
10460 nr_pages = next_ppage - first_ppage;
10461
10462 first_ppage_reported = first_ppage;
10463 if (bsi->start == 0)
10464 first_ppage_reported++;
10465 if (bsi->lowest_ppage > first_ppage_reported)
10466 bsi->lowest_ppage = first_ppage_reported;
10467 if (bsi->highest_ppage < (next_ppage - 1))
10468 bsi->highest_ppage = next_ppage - 1;
10469
10470 ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage);
10471 if (ret < 0)
10472 return ret;
10473 bsi->nr_extents += ret;
10474 bsi->nr_pages += nr_pages;
10475 return 0;
10476}
10477
10478static void btrfs_swap_deactivate(struct file *file)
10479{
10480 struct inode *inode = file_inode(file);
10481
10482 btrfs_free_swapfile_pins(inode);
10483 atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles);
10484}
10485
10486static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10487 sector_t *span)
10488{
10489 struct inode *inode = file_inode(file);
Filipe Mananadd0734f2021-02-05 12:55:38 +000010490 struct btrfs_root *root = BTRFS_I(inode)->root;
10491 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovaled46ff32016-11-03 10:28:14 -070010492 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
10493 struct extent_state *cached_state = NULL;
10494 struct extent_map *em = NULL;
10495 struct btrfs_device *device = NULL;
10496 struct btrfs_swap_info bsi = {
10497 .lowest_ppage = (sector_t)-1ULL,
10498 };
10499 int ret = 0;
10500 u64 isize;
10501 u64 start;
10502
10503 /*
10504 * If the swap file was just created, make sure delalloc is done. If the
10505 * file changes again after this, the user is doing something stupid and
10506 * we don't really care.
10507 */
10508 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
10509 if (ret)
10510 return ret;
10511
10512 /*
10513 * The inode is locked, so these flags won't change after we check them.
10514 */
10515 if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) {
10516 btrfs_warn(fs_info, "swapfile must not be compressed");
10517 return -EINVAL;
10518 }
10519 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) {
10520 btrfs_warn(fs_info, "swapfile must not be copy-on-write");
10521 return -EINVAL;
10522 }
10523 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
10524 btrfs_warn(fs_info, "swapfile must not be checksummed");
10525 return -EINVAL;
10526 }
10527
10528 /*
10529 * Balance or device remove/replace/resize can move stuff around from
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -050010530 * under us. The exclop protection makes sure they aren't running/won't
10531 * run concurrently while we are mapping the swap extents, and
10532 * fs_info->swapfile_pins prevents them from running while the swap
10533 * file is active and moving the extents. Note that this also prevents
10534 * a concurrent device add which isn't actually necessary, but it's not
Omar Sandovaled46ff32016-11-03 10:28:14 -070010535 * really worth the trouble to allow it.
10536 */
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -050010537 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_SWAP_ACTIVATE)) {
Omar Sandovaled46ff32016-11-03 10:28:14 -070010538 btrfs_warn(fs_info,
10539 "cannot activate swapfile while exclusive operation is running");
10540 return -EBUSY;
10541 }
Filipe Mananadd0734f2021-02-05 12:55:38 +000010542
10543 /*
10544 * Prevent snapshot creation while we are activating the swap file.
10545 * We do not want to race with snapshot creation. If snapshot creation
10546 * already started before we bumped nr_swapfiles from 0 to 1 and
10547 * completes before the first write into the swap file after it is
10548 * activated, than that write would fallback to COW.
10549 */
10550 if (!btrfs_drew_try_write_lock(&root->snapshot_lock)) {
10551 btrfs_exclop_finish(fs_info);
10552 btrfs_warn(fs_info,
10553 "cannot activate swapfile because snapshot creation is in progress");
10554 return -EINVAL;
10555 }
Omar Sandovaled46ff32016-11-03 10:28:14 -070010556 /*
10557 * Snapshots can create extents which require COW even if NODATACOW is
10558 * set. We use this counter to prevent snapshots. We must increment it
10559 * before walking the extents because we don't want a concurrent
10560 * snapshot to run after we've already checked the extents.
10561 */
Filipe Mananadd0734f2021-02-05 12:55:38 +000010562 atomic_inc(&root->nr_swapfiles);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010563
10564 isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize);
10565
10566 lock_extent_bits(io_tree, 0, isize - 1, &cached_state);
10567 start = 0;
10568 while (start < isize) {
10569 u64 logical_block_start, physical_block_start;
David Sterba32da53862019-10-29 19:20:18 +010010570 struct btrfs_block_group *bg;
Omar Sandovaled46ff32016-11-03 10:28:14 -070010571 u64 len = isize - start;
10572
Omar Sandoval39b07b52019-12-02 17:34:23 -080010573 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010574 if (IS_ERR(em)) {
10575 ret = PTR_ERR(em);
10576 goto out;
10577 }
10578
10579 if (em->block_start == EXTENT_MAP_HOLE) {
10580 btrfs_warn(fs_info, "swapfile must not have holes");
10581 ret = -EINVAL;
10582 goto out;
10583 }
10584 if (em->block_start == EXTENT_MAP_INLINE) {
10585 /*
10586 * It's unlikely we'll ever actually find ourselves
10587 * here, as a file small enough to fit inline won't be
10588 * big enough to store more than the swap header, but in
10589 * case something changes in the future, let's catch it
10590 * here rather than later.
10591 */
10592 btrfs_warn(fs_info, "swapfile must not be inline");
10593 ret = -EINVAL;
10594 goto out;
10595 }
10596 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
10597 btrfs_warn(fs_info, "swapfile must not be compressed");
10598 ret = -EINVAL;
10599 goto out;
10600 }
10601
10602 logical_block_start = em->block_start + (start - em->start);
10603 len = min(len, em->len - (start - em->start));
10604 free_extent_map(em);
10605 em = NULL;
10606
Boris Burkova84d5d42020-08-18 11:00:05 -070010607 ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL, true);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010608 if (ret < 0) {
10609 goto out;
10610 } else if (ret) {
10611 ret = 0;
10612 } else {
10613 btrfs_warn(fs_info,
10614 "swapfile must not be copy-on-write");
10615 ret = -EINVAL;
10616 goto out;
10617 }
10618
10619 em = btrfs_get_chunk_map(fs_info, logical_block_start, len);
10620 if (IS_ERR(em)) {
10621 ret = PTR_ERR(em);
10622 goto out;
10623 }
10624
10625 if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
10626 btrfs_warn(fs_info,
10627 "swapfile must have single data profile");
10628 ret = -EINVAL;
10629 goto out;
10630 }
10631
10632 if (device == NULL) {
10633 device = em->map_lookup->stripes[0].dev;
10634 ret = btrfs_add_swapfile_pin(inode, device, false);
10635 if (ret == 1)
10636 ret = 0;
10637 else if (ret)
10638 goto out;
10639 } else if (device != em->map_lookup->stripes[0].dev) {
10640 btrfs_warn(fs_info, "swapfile must be on one device");
10641 ret = -EINVAL;
10642 goto out;
10643 }
10644
10645 physical_block_start = (em->map_lookup->stripes[0].physical +
10646 (logical_block_start - em->start));
10647 len = min(len, em->len - (logical_block_start - em->start));
10648 free_extent_map(em);
10649 em = NULL;
10650
10651 bg = btrfs_lookup_block_group(fs_info, logical_block_start);
10652 if (!bg) {
10653 btrfs_warn(fs_info,
10654 "could not find block group containing swapfile");
10655 ret = -EINVAL;
10656 goto out;
10657 }
10658
Filipe Manana195a49e2021-02-05 12:55:37 +000010659 if (!btrfs_inc_block_group_swap_extents(bg)) {
10660 btrfs_warn(fs_info,
10661 "block group for swapfile at %llu is read-only%s",
10662 bg->start,
10663 atomic_read(&fs_info->scrubs_running) ?
10664 " (scrub running)" : "");
10665 btrfs_put_block_group(bg);
10666 ret = -EINVAL;
10667 goto out;
10668 }
10669
Omar Sandovaled46ff32016-11-03 10:28:14 -070010670 ret = btrfs_add_swapfile_pin(inode, bg, true);
10671 if (ret) {
10672 btrfs_put_block_group(bg);
10673 if (ret == 1)
10674 ret = 0;
10675 else
10676 goto out;
10677 }
10678
10679 if (bsi.block_len &&
10680 bsi.block_start + bsi.block_len == physical_block_start) {
10681 bsi.block_len += len;
10682 } else {
10683 if (bsi.block_len) {
10684 ret = btrfs_add_swap_extent(sis, &bsi);
10685 if (ret)
10686 goto out;
10687 }
10688 bsi.start = start;
10689 bsi.block_start = physical_block_start;
10690 bsi.block_len = len;
10691 }
10692
10693 start += len;
10694 }
10695
10696 if (bsi.block_len)
10697 ret = btrfs_add_swap_extent(sis, &bsi);
10698
10699out:
10700 if (!IS_ERR_OR_NULL(em))
10701 free_extent_map(em);
10702
10703 unlock_extent_cached(io_tree, 0, isize - 1, &cached_state);
10704
10705 if (ret)
10706 btrfs_swap_deactivate(file);
10707
Filipe Mananadd0734f2021-02-05 12:55:38 +000010708 btrfs_drew_write_unlock(&root->snapshot_lock);
10709
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -050010710 btrfs_exclop_finish(fs_info);
Omar Sandovaled46ff32016-11-03 10:28:14 -070010711
10712 if (ret)
10713 return ret;
10714
10715 if (device)
10716 sis->bdev = device->bdev;
10717 *span = bsi.highest_ppage - bsi.lowest_ppage + 1;
10718 sis->max = bsi.nr_pages;
10719 sis->pages = bsi.nr_pages - 1;
10720 sis->highest_bit = bsi.nr_pages - 1;
10721 return bsi.nr_extents;
10722}
10723#else
10724static void btrfs_swap_deactivate(struct file *file)
10725{
10726}
10727
10728static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10729 sector_t *span)
10730{
10731 return -EOPNOTSUPP;
10732}
10733#endif
10734
Filipe Manana2766ff62020-11-04 11:07:34 +000010735/*
10736 * Update the number of bytes used in the VFS' inode. When we replace extents in
10737 * a range (clone, dedupe, fallocate's zero range), we must update the number of
10738 * bytes used by the inode in an atomic manner, so that concurrent stat(2) calls
10739 * always get a correct value.
10740 */
10741void btrfs_update_inode_bytes(struct btrfs_inode *inode,
10742 const u64 add_bytes,
10743 const u64 del_bytes)
10744{
10745 if (add_bytes == del_bytes)
10746 return;
10747
10748 spin_lock(&inode->lock);
10749 if (del_bytes > 0)
10750 inode_sub_bytes(&inode->vfs_inode, del_bytes);
10751 if (add_bytes > 0)
10752 inode_add_bytes(&inode->vfs_inode, add_bytes);
10753 spin_unlock(&inode->lock);
10754}
10755
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010756static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010757 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010758 .lookup = btrfs_lookup,
10759 .create = btrfs_create,
10760 .unlink = btrfs_unlink,
10761 .link = btrfs_link,
10762 .mkdir = btrfs_mkdir,
10763 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010764 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010765 .symlink = btrfs_symlink,
10766 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010767 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010768 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010769 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010770 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010771 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010772 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010773 .tmpfile = btrfs_tmpfile,
Miklos Szeredi97fc2972021-04-07 14:36:43 +020010774 .fileattr_get = btrfs_fileattr_get,
10775 .fileattr_set = btrfs_fileattr_set,
Chris Mason39279cc2007-06-12 06:35:45 -040010776};
Yan, Zheng76dda932009-09-21 16:00:26 -040010777
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010778static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010779 .llseek = generic_file_llseek,
10780 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010781 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010782 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010783 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010784#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010785 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010786#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010787 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010788 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010789};
10790
Chris Mason35054392009-01-21 13:11:13 -050010791/*
10792 * btrfs doesn't support the bmap operation because swapfiles
10793 * use bmap to make a mapping of extents in the file. They assume
10794 * these extents won't change over the life of the file and they
10795 * use the bmap result to do IO directly to the drive.
10796 *
10797 * the btrfs bmap call would return logical addresses that aren't
10798 * suitable for IO and they also will change frequently as COW
10799 * operations happen. So, swapfile + btrfs == corruption.
10800 *
10801 * For now we're avoiding this by dropping bmap.
10802 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010803static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010804 .readpage = btrfs_readpage,
10805 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010806 .writepages = btrfs_writepages,
Matthew Wilcox (Oracle)ba206a02020-06-01 21:47:05 -070010807 .readahead = btrfs_readahead,
Goldwyn Rodriguesf85781f2020-08-17 11:18:21 -050010808 .direct_IO = noop_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010809 .invalidatepage = btrfs_invalidatepage,
10810 .releasepage = btrfs_releasepage,
Roman Gushchinf8e66082020-03-04 16:57:35 -080010811#ifdef CONFIG_MIGRATION
10812 .migratepage = btrfs_migratepage,
10813#endif
Chris Masone6dcd2d2008-07-17 12:53:50 -040010814 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010815 .error_remove_page = generic_error_remove_page,
Omar Sandovaled46ff32016-11-03 10:28:14 -070010816 .swap_activate = btrfs_swap_activate,
10817 .swap_deactivate = btrfs_swap_deactivate,
Chris Mason39279cc2007-06-12 06:35:45 -040010818};
10819
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010820static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010821 .getattr = btrfs_getattr,
10822 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010823 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010824 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010825 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010826 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010827 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010828 .update_time = btrfs_update_time,
Miklos Szeredi97fc2972021-04-07 14:36:43 +020010829 .fileattr_get = btrfs_fileattr_get,
10830 .fileattr_set = btrfs_fileattr_set,
Chris Mason39279cc2007-06-12 06:35:45 -040010831};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010832static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010833 .getattr = btrfs_getattr,
10834 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010835 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010836 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010837 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010838 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010839 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010840};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010841static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010842 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010843 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010844 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010845 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010846 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010847 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010848};
Yan, Zheng76dda932009-09-21 16:00:26 -040010849
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010850const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010851 .d_delete = btrfs_dentry_delete,
10852};