blob: 6c476dc81b8e0f6aca8106f7169627c5b667f621 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason8f18cf12008-04-25 16:53:30 -04006#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -05007#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -04008#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -04009#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040010#include <linux/fs.h>
11#include <linux/pagemap.h>
12#include <linux/highmem.h>
13#include <linux/time.h>
14#include <linux/init.h>
15#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040016#include <linux/backing-dev.h>
Chris Mason39279cc2007-06-12 06:35:45 -040017#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040018#include <linux/compat.h>
Josef Bacik5103e942007-11-16 11:45:54 -050019#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040020#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040021#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020023#include <linux/ratelimit.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000024#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050025#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040026#include <linux/posix_acl_xattr.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080027#include <linux/uio.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040028#include <linux/magic.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050029#include <linux/iversion.h>
David Sterba92d32172018-04-16 21:10:14 +020030#include <asm/unaligned.h>
Chris Mason39279cc2007-06-12 06:35:45 -040031#include "ctree.h"
32#include "disk-io.h"
33#include "transaction.h"
34#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040035#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040036#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040037#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040038#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020039#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040040#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050041#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050042#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080043#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000044#include "backref.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000045#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080046#include "qgroup.h"
Wang Xiaoguangdda32452016-07-11 11:05:29 +080047#include "dedupe.h"
Chris Mason39279cc2007-06-12 06:35:45 -040048
49struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080050 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040051 struct btrfs_root *root;
52};
53
Filipe Mananaf28a4922015-12-08 19:23:20 +000054struct btrfs_dio_data {
Filipe Mananaf28a4922015-12-08 19:23:20 +000055 u64 reserve;
56 u64 unsubmitted_oe_range_start;
57 u64 unsubmitted_oe_range_end;
Liu Bo4aaedfb2016-12-14 22:36:05 -080058 int overwrite;
Filipe Mananaf28a4922015-12-08 19:23:20 +000059};
60
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070061static const struct inode_operations btrfs_dir_inode_operations;
62static const struct inode_operations btrfs_symlink_inode_operations;
63static const struct inode_operations btrfs_dir_ro_inode_operations;
64static const struct inode_operations btrfs_special_inode_operations;
65static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070066static const struct address_space_operations btrfs_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070067static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010068static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040069
70static struct kmem_cache *btrfs_inode_cachep;
71struct kmem_cache *btrfs_trans_handle_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040072struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050073struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040074
75#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010076static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040077 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
78 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
79 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
80 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
81 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
82 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
83 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
84};
85
Eric Sandeen3972f262013-01-12 02:57:22 +000086static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Filipe Manana213e8c52018-02-06 20:40:31 +000087static int btrfs_truncate(struct inode *inode, bool skip_writeback);
Josef Bacik5fd02042012-05-02 14:00:54 -040088static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050089static noinline int cow_file_range(struct inode *inode,
90 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +080091 u64 start, u64 end, u64 delalloc_end,
92 int *page_started, unsigned long *nr_written,
93 int unlock, struct btrfs_dedupe_hash *hash);
Liu Bo6f9994d2017-01-31 07:50:22 -080094static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
95 u64 orig_start, u64 block_start,
96 u64 block_len, u64 orig_block_len,
97 u64 ram_bytes, int compress_type,
98 int type);
Josef Bacik7b128762008-07-24 12:17:14 -040099
Qu Wenruo524272602017-03-08 10:25:52 +0800100static void __endio_write_update_ordered(struct inode *inode,
101 const u64 offset, const u64 bytes,
102 const bool uptodate);
103
104/*
105 * Cleanup all submitted ordered extents in specified range to handle errors
106 * from the fill_dellaloc() callback.
107 *
108 * NOTE: caller must ensure that when an error happens, it can not call
109 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
110 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
111 * to be released, which we want to happen only when finishing the ordered
112 * extent (btrfs_finish_ordered_io()). Also note that the caller of the
113 * fill_delalloc() callback already does proper cleanup for the first page of
114 * the range, that is, it invokes the callback writepage_end_io_hook() for the
115 * range of the first page.
116 */
117static inline void btrfs_cleanup_ordered_extents(struct inode *inode,
118 const u64 offset,
119 const u64 bytes)
120{
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900121 unsigned long index = offset >> PAGE_SHIFT;
122 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
123 struct page *page;
124
125 while (index <= end_index) {
126 page = find_get_page(inode->i_mapping, index);
127 index++;
128 if (!page)
129 continue;
130 ClearPagePrivate2(page);
131 put_page(page);
132 }
Qu Wenruo524272602017-03-08 10:25:52 +0800133 return __endio_write_update_ordered(inode, offset + PAGE_SIZE,
134 bytes - PAGE_SIZE, false);
135}
136
Eric Sandeen48a3b632013-04-25 20:41:01 +0000137static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400138
Josef Bacik6a3891c2015-03-16 17:38:52 -0400139#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
140void btrfs_test_inode_set_ops(struct inode *inode)
141{
142 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
143}
144#endif
145
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000146static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500147 struct inode *inode, struct inode *dir,
148 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500149{
150 int err;
151
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000152 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500153 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500154 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500155 return err;
156}
157
Chris Masond352ac62008-09-29 15:18:18 -0400158/*
Chris Masonc8b97812008-10-29 14:49:59 -0400159 * this does all the hard work for inserting an inline extent into
160 * the btree. The caller should have done a btrfs_drop_extents so that
161 * no overlapping inline items exist in the btree
162 */
Chris Mason40f76582014-05-21 13:35:51 -0700163static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000164 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400165 struct btrfs_root *root, struct inode *inode,
166 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000167 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct page **compressed_pages)
169{
Chris Masonc8b97812008-10-29 14:49:59 -0400170 struct extent_buffer *leaf;
171 struct page *page = NULL;
172 char *kaddr;
173 unsigned long ptr;
174 struct btrfs_file_extent_item *ei;
Chris Masonc8b97812008-10-29 14:49:59 -0400175 int ret;
176 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400177 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400178
Li Zefanfe3f5662011-03-28 08:30:38 +0000179 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400180 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400181
Chris Masonc8b97812008-10-29 14:49:59 -0400182 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000183
184 if (!extent_inserted) {
185 struct btrfs_key key;
186 size_t datasize;
187
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200188 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000189 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200190 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000191
192 datasize = btrfs_file_extent_calc_inline_size(cur_size);
193 path->leave_spinning = 1;
194 ret = btrfs_insert_empty_item(trans, root, path, &key,
195 datasize);
David Sterba79b4f4c2017-06-15 19:09:51 +0200196 if (ret)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000197 goto fail;
Chris Masonc8b97812008-10-29 14:49:59 -0400198 }
199 leaf = path->nodes[0];
200 ei = btrfs_item_ptr(leaf, path->slots[0],
201 struct btrfs_file_extent_item);
202 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
203 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
204 btrfs_set_file_extent_encryption(leaf, ei, 0);
205 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
206 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
207 ptr = btrfs_file_extent_inline_start(ei);
208
Li Zefan261507a02010-12-17 14:21:50 +0800209 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400210 struct page *cpage;
211 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500212 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400213 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500214 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300215 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400216
Cong Wang7ac687d2011-11-25 23:14:28 +0800217 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400218 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800219 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400220
221 i++;
222 ptr += cur_size;
223 compressed_size -= cur_size;
224 }
225 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800226 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400227 } else {
228 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300229 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400230 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800231 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300232 offset = start & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400233 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800234 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300235 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400236 }
237 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000238 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400239
Yan, Zhengc2167752009-11-12 09:34:21 +0000240 /*
241 * we're an inline extent, so nobody can
242 * extend the file past i_size without locking
243 * a page we already have locked.
244 *
245 * We must do any isize and inode updates
246 * before we unlock the pages. Otherwise we
247 * could end up racing with unlink.
248 */
Chris Masonc8b97812008-10-29 14:49:59 -0400249 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100250 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000251
Chris Masonc8b97812008-10-29 14:49:59 -0400252fail:
David Sterba79b4f4c2017-06-15 19:09:51 +0200253 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400254}
255
256
257/*
258 * conditionally insert an inline extent into the file. This
259 * does the checks required to make sure the data is small enough
260 * to fit as an inline extent.
261 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200262static noinline int cow_file_range_inline(struct inode *inode, u64 start,
Josef Bacik00361582013-08-14 14:02:47 -0400263 u64 end, size_t compressed_size,
264 int compress_type,
265 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400266{
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200267 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400268 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400269 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400270 u64 isize = i_size_read(inode);
271 u64 actual_end = min(end + 1, isize);
272 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400273 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400274 u64 data_len = inline_len;
275 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000276 struct btrfs_path *path;
277 int extent_inserted = 0;
278 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400279
280 if (compressed_size)
281 data_len = compressed_size;
282
283 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400284 actual_end > fs_info->sectorsize ||
285 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400286 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400287 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400288 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400289 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400290 return 1;
291 }
292
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000293 path = btrfs_alloc_path();
294 if (!path)
295 return -ENOMEM;
296
Josef Bacik00361582013-08-14 14:02:47 -0400297 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000298 if (IS_ERR(trans)) {
299 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400300 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000301 }
Josef Bacik69fe2d72017-10-19 14:15:57 -0400302 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400303
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000304 if (compressed_size && compressed_pages)
305 extent_item_size = btrfs_file_extent_calc_inline_size(
306 compressed_size);
307 else
308 extent_item_size = btrfs_file_extent_calc_inline_size(
309 inline_len);
310
311 ret = __btrfs_drop_extents(trans, root, inode, path,
312 start, aligned_end, NULL,
313 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400314 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400315 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400316 goto out;
317 }
Chris Masonc8b97812008-10-29 14:49:59 -0400318
319 if (isize > actual_end)
320 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000321 ret = insert_inline_extent(trans, path, extent_inserted,
322 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400323 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000324 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400325 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400326 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400327 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400328 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400329 ret = 1;
330 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100331 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400332
Josef Bacikbdc20e62013-02-28 13:23:38 -0500333 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200334 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400335out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800336 /*
337 * Don't forget to free the reserved space, as for inlined extent
338 * it won't count as data extent, free them directly here.
339 * And at reserve time, it's always aligned to page size, so
340 * just free one page here.
341 */
Qu Wenruobc42bda2017-02-27 15:10:39 +0800342 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000343 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400344 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400345 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400346}
347
Chris Mason771ed682008-11-06 22:02:51 -0500348struct async_extent {
349 u64 start;
350 u64 ram_size;
351 u64 compressed_size;
352 struct page **pages;
353 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800354 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500355 struct list_head list;
356};
357
358struct async_cow {
359 struct inode *inode;
360 struct btrfs_root *root;
361 struct page *locked_page;
362 u64 start;
363 u64 end;
Liu Bof82b7352017-10-23 23:18:16 -0600364 unsigned int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500365 struct list_head extents;
366 struct btrfs_work work;
367};
368
369static noinline int add_async_extent(struct async_cow *cow,
370 u64 start, u64 ram_size,
371 u64 compressed_size,
372 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800373 unsigned long nr_pages,
374 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500375{
376 struct async_extent *async_extent;
377
378 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100379 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500380 async_extent->start = start;
381 async_extent->ram_size = ram_size;
382 async_extent->compressed_size = compressed_size;
383 async_extent->pages = pages;
384 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800385 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500386 list_add_tail(&async_extent->list, &cow->extents);
387 return 0;
388}
389
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300390static inline int inode_need_compress(struct inode *inode, u64 start, u64 end)
Wang Shilongf79707b2014-07-17 11:44:09 +0800391{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400392 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800393
394 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400395 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800396 return 1;
David Sterbaeec63c62017-07-17 19:41:31 +0200397 /* defrag ioctl */
398 if (BTRFS_I(inode)->defrag_compress)
399 return 1;
Wang Shilongf79707b2014-07-17 11:44:09 +0800400 /* bad compression ratios */
401 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
402 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400403 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800404 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
David Sterbab52aa8c2017-07-17 19:17:20 +0200405 BTRFS_I(inode)->prop_compress)
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300406 return btrfs_compress_heuristic(inode, start, end);
Wang Shilongf79707b2014-07-17 11:44:09 +0800407 return 0;
408}
409
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200410static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800411 u64 start, u64 end, u64 num_bytes, u64 small_write)
412{
413 /* If this is a small write inside eof, kick off a defrag */
414 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200415 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800416 btrfs_add_inode_defrag(NULL, inode);
417}
418
Chris Masonc8b97812008-10-29 14:49:59 -0400419/*
Chris Mason771ed682008-11-06 22:02:51 -0500420 * we create compressed extents in two phases. The first
421 * phase compresses a range of pages that have already been
422 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400423 *
Chris Mason771ed682008-11-06 22:02:51 -0500424 * This is done inside an ordered work queue, and the compression
425 * is spread across many cpus. The actual IO submission is step
426 * two, and the ordered work queue takes care of making sure that
427 * happens in the same order things were put onto the queue by
428 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400429 *
Chris Mason771ed682008-11-06 22:02:51 -0500430 * If this code finds it can't get good compression, it puts an
431 * entry onto the work queue to write the uncompressed bytes. This
432 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300433 * are written in the same order that the flusher thread sent them
434 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400435 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100436static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500437 struct page *locked_page,
438 u64 start, u64 end,
439 struct async_cow *async_cow,
440 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400441{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400442 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400443 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400444 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500445 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400446 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400447 struct page **pages = NULL;
448 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400449 unsigned long total_compressed = 0;
450 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400451 int i;
452 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400453 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400454 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400455
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200456 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
457 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400458
Chris Mason42dc7ba2008-12-15 11:44:56 -0500459 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400460again:
461 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300462 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100463 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
464 nr_pages = min_t(unsigned long, nr_pages,
465 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400466
Chris Masonf03d9301f2009-02-04 09:31:06 -0500467 /*
468 * we don't want to send crud past the end of i_size through
469 * compression, that's just a waste of CPU time. So, if the
470 * end of the file is before the start of our current
471 * requested range of bytes, we bail out to the uncompressed
472 * cleanup code that can deal with all of this.
473 *
474 * It isn't really the fastest way to fix things, but this is a
475 * very uncommon corner.
476 */
477 if (actual_end <= start)
478 goto cleanup_and_bail_uncompressed;
479
Chris Masonc8b97812008-10-29 14:49:59 -0400480 total_compressed = actual_end - start;
481
Shilong Wang4bcbb332014-10-07 18:44:35 -0400482 /*
483 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400484 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400485 */
486 if (total_compressed <= blocksize &&
487 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
488 goto cleanup_and_bail_uncompressed;
489
David Sterba069eac72017-02-14 19:36:54 +0100490 total_compressed = min_t(unsigned long, total_compressed,
491 BTRFS_MAX_UNCOMPRESSED);
Chris Masonc8b97812008-10-29 14:49:59 -0400492 total_in = 0;
493 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400494
Chris Mason771ed682008-11-06 22:02:51 -0500495 /*
496 * we do compression for mount -o compress and when the
497 * inode has not been flagged as nocompress. This flag can
498 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400499 */
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300500 if (inode_need_compress(inode, start, end)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400501 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100502 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800503 if (!pages) {
504 /* just bail out to the uncompressed code */
505 goto cont;
506 }
Chris Mason179e29e2007-11-01 11:28:41 -0400507
David Sterbaeec63c62017-07-17 19:41:31 +0200508 if (BTRFS_I(inode)->defrag_compress)
509 compress_type = BTRFS_I(inode)->defrag_compress;
510 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200511 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800512
Chris Mason4adaa612013-03-26 13:07:00 -0400513 /*
514 * we need to call clear_page_dirty_for_io on each
515 * page in the range. Otherwise applications with the file
516 * mmap'd can wander in and change the page contents while
517 * we are compressing them.
518 *
519 * If the compression fails for any reason, we set the pages
520 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300521 *
522 * Note that the remaining part is redirtied, the start pointer
523 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400524 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300525 if (!redirty) {
526 extent_range_clear_dirty_for_io(inode, start, end);
527 redirty = 1;
528 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200529
530 /* Compression level is applied here and only here */
531 ret = btrfs_compress_pages(
532 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800533 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100534 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100535 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800536 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100537 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400538
539 if (!ret) {
540 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300541 (PAGE_SIZE - 1);
David Sterba4d3a8002017-02-14 19:04:07 +0100542 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400543 char *kaddr;
544
545 /* zero the tail end of the last page, we might be
546 * sending it down to disk
547 */
548 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800549 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400550 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300551 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800552 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400553 }
554 will_compress = 1;
555 }
556 }
Li Zefan560f7d72011-09-08 10:22:01 +0800557cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400558 if (start == 0) {
559 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300560 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400561 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500562 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400563 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200564 ret = cow_file_range_inline(inode, start, end, 0,
565 BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400566 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500567 /* try making a compressed inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200568 ret = cow_file_range_inline(inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000569 total_compressed,
570 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400571 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100572 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400573 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400574 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
575 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100576 unsigned long page_error_op;
577
Filipe Mananae6eb4312014-10-10 10:45:12 +0100578 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400579
Chris Mason771ed682008-11-06 22:02:51 -0500580 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100581 * inline extent creation worked or returned error,
582 * we don't need to create any more async work items.
583 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400584 *
585 * We use DO_ACCOUNTING here because we need the
586 * delalloc_release_metadata to be done _after_ we drop
587 * our outstanding extent for clearing delalloc for this
588 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500589 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800590 extent_clear_unlock_delalloc(inode, start, end, end,
591 NULL, clear_flags,
592 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400593 PAGE_CLEAR_DIRTY |
594 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100595 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400596 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400597 goto free_pages_out;
598 }
599 }
600
601 if (will_compress) {
602 /*
603 * we aren't doing an inline extent round the compressed size
604 * up to a block size boundary so the allocator does sane
605 * things
606 */
Qu Wenruofda28322013-02-26 08:10:22 +0000607 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400608
609 /*
610 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300611 * win, compare the page count read with the blocks on disk,
612 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400613 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300614 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300615 if (total_compressed + blocksize <= total_in) {
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700616 *num_added += 1;
617
618 /*
619 * The async work queues will take care of doing actual
620 * allocation on disk for these compressed pages, and
621 * will submit them to the elevator.
622 */
Timofey Titovets11708622017-10-03 18:06:01 +0300623 add_async_extent(async_cow, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100624 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700625 compress_type);
626
Timofey Titovets11708622017-10-03 18:06:01 +0300627 if (start + total_in < end) {
628 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700629 pages = NULL;
630 cond_resched();
631 goto again;
632 }
633 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400634 }
635 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700636 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400637 /*
638 * the compression code ran but failed to make things smaller,
639 * free any pages it allocated and our page pointer array
640 */
David Sterba4d3a8002017-02-14 19:04:07 +0100641 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400642 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300643 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400644 }
645 kfree(pages);
646 pages = NULL;
647 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100648 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400649
650 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400651 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200652 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500653 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500654 }
Chris Masonc8b97812008-10-29 14:49:59 -0400655 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500656cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700657 /*
658 * No compression, but we still need to write the pages in the file
659 * we've been given so far. redirty the locked page if it corresponds
660 * to our extent and set things up for the async work queue to run
661 * cow_file_range to do the normal delalloc dance.
662 */
663 if (page_offset(locked_page) >= start &&
664 page_offset(locked_page) <= end)
665 __set_page_dirty_nobuffers(locked_page);
666 /* unlocked later on in the async handlers */
667
668 if (redirty)
669 extent_range_redirty_for_io(inode, start, end);
670 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
671 BTRFS_COMPRESS_NONE);
672 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500673
Filipe Mananac44f6492014-10-09 21:15:44 +0100674 return;
Chris Mason771ed682008-11-06 22:02:51 -0500675
676free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100677 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500678 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300679 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500680 }
Chris Masond3977122009-01-05 21:25:51 -0500681 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500682}
Chris Mason771ed682008-11-06 22:02:51 -0500683
Filipe Manana40ae8372014-10-06 22:14:24 +0100684static void free_async_extent_pages(struct async_extent *async_extent)
685{
686 int i;
687
688 if (!async_extent->pages)
689 return;
690
691 for (i = 0; i < async_extent->nr_pages; i++) {
692 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300693 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100694 }
695 kfree(async_extent->pages);
696 async_extent->nr_pages = 0;
697 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500698}
699
700/*
701 * phase two of compressed writeback. This is the ordered portion
702 * of the code, which only gets called in the order the work was
703 * queued. We walk all the async extents created by compress_file_range
704 * and send them down to the disk.
705 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100706static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500707 struct async_cow *async_cow)
708{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400709 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500710 struct async_extent *async_extent;
711 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500712 struct btrfs_key ins;
713 struct extent_map *em;
714 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500715 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500716 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500717
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500718again:
Chris Masond3977122009-01-05 21:25:51 -0500719 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500720 async_extent = list_entry(async_cow->extents.next,
721 struct async_extent, list);
722 list_del(&async_extent->list);
723
724 io_tree = &BTRFS_I(inode)->io_tree;
725
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500726retry:
Chris Mason771ed682008-11-06 22:02:51 -0500727 /* did the compression code fall back to uncompressed IO? */
728 if (!async_extent->pages) {
729 int page_started = 0;
730 unsigned long nr_written = 0;
731
732 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000733 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100734 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500735
736 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500737 ret = cow_file_range(inode, async_cow->locked_page,
738 async_extent->start,
739 async_extent->start +
740 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800741 async_extent->start +
742 async_extent->ram_size - 1,
743 &page_started, &nr_written, 0,
744 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500745
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100746 /* JDM XXX */
747
Chris Mason771ed682008-11-06 22:02:51 -0500748 /*
749 * if page_started, cow_file_range inserted an
750 * inline extent and took care of all the unlocking
751 * and IO for us. Otherwise, we need to submit
752 * all those pages down to the drive.
753 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500754 if (!page_started && !ret)
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200755 extent_write_locked_range(inode,
756 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500757 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500758 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500759 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500760 else if (ret)
761 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500762 kfree(async_extent);
763 cond_resched();
764 continue;
765 }
766
767 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100768 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500769
Wang Xiaoguang18513092016-07-25 15:51:40 +0800770 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500771 async_extent->compressed_size,
772 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800773 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500774 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100775 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500776
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400777 if (ret == -ENOSPC) {
778 unlock_extent(io_tree, async_extent->start,
779 async_extent->start +
780 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800781
782 /*
783 * we need to redirty the pages if we decide to
784 * fallback to uncompressed IO, otherwise we
785 * will not submit these pages down to lower
786 * layers.
787 */
788 extent_range_redirty_for_io(inode,
789 async_extent->start,
790 async_extent->start +
791 async_extent->ram_size - 1);
792
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100793 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400794 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500795 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500796 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000797 /*
798 * here we're doing allocation and writeback of the
799 * compressed pages
800 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800801 em = create_io_em(inode, async_extent->start,
802 async_extent->ram_size, /* len */
803 async_extent->start, /* orig_start */
804 ins.objectid, /* block_start */
805 ins.offset, /* block_len */
806 ins.offset, /* orig_block_len */
807 async_extent->ram_size, /* ram_bytes */
808 async_extent->compress_type,
809 BTRFS_ORDERED_COMPRESSED);
810 if (IS_ERR(em))
811 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500812 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800813 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500814
Li Zefan261507a02010-12-17 14:21:50 +0800815 ret = btrfs_add_ordered_extent_compress(inode,
816 async_extent->start,
817 ins.objectid,
818 async_extent->ram_size,
819 ins.offset,
820 BTRFS_ORDERED_COMPRESSED,
821 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100822 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200823 btrfs_drop_extent_cache(BTRFS_I(inode),
824 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100825 async_extent->start +
826 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500827 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100828 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400829 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500830
Chris Mason771ed682008-11-06 22:02:51 -0500831 /*
832 * clear dirty, set writeback and unlock the pages.
833 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400834 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400835 async_extent->start +
836 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800837 async_extent->start +
838 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400839 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
840 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400841 PAGE_SET_WRITEBACK);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200842 if (btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500843 async_extent->start,
844 async_extent->ram_size,
845 ins.objectid,
846 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600847 async_extent->nr_pages,
848 async_cow->write_flags)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100849 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
850 struct page *p = async_extent->pages[0];
851 const u64 start = async_extent->start;
852 const u64 end = start + async_extent->ram_size - 1;
853
854 p->mapping = inode->i_mapping;
855 tree->ops->writepage_end_io_hook(p, start, end,
856 NULL, 0);
857 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800858 extent_clear_unlock_delalloc(inode, start, end, end,
859 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100860 PAGE_END_WRITEBACK |
861 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100862 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100863 }
Chris Mason771ed682008-11-06 22:02:51 -0500864 alloc_hint = ins.objectid + ins.offset;
865 kfree(async_extent);
866 cond_resched();
867 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100868 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500869out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400870 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400871 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100872out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400873 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500874 async_extent->start +
875 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800876 async_extent->start +
877 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400878 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100879 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400880 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
881 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100882 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
883 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100884 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100885 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500886 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500887}
888
Josef Bacik4b46fce2010-05-23 11:00:55 -0400889static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
890 u64 num_bytes)
891{
892 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
893 struct extent_map *em;
894 u64 alloc_hint = 0;
895
896 read_lock(&em_tree->lock);
897 em = search_extent_mapping(em_tree, start, num_bytes);
898 if (em) {
899 /*
900 * if block start isn't an actual block number then find the
901 * first block in this inode and use that as a hint. If that
902 * block is also bogus then just don't worry about it.
903 */
904 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
905 free_extent_map(em);
906 em = search_extent_mapping(em_tree, 0, 0);
907 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
908 alloc_hint = em->block_start;
909 if (em)
910 free_extent_map(em);
911 } else {
912 alloc_hint = em->block_start;
913 free_extent_map(em);
914 }
915 }
916 read_unlock(&em_tree->lock);
917
918 return alloc_hint;
919}
920
Chris Mason771ed682008-11-06 22:02:51 -0500921/*
922 * when extent_io.c finds a delayed allocation range in the file,
923 * the call backs end up in this code. The basic idea is to
924 * allocate extents on disk for the range, and create ordered data structs
925 * in ram to track those extents.
926 *
927 * locked_page is the page that writepage had locked already. We use
928 * it to make sure we don't do extra locks or unlocks.
929 *
930 * *page_started is set to one if we unlock locked_page and do everything
931 * required to start IO on it. It may be clean and already done with
932 * IO when we return.
933 */
Josef Bacik00361582013-08-14 14:02:47 -0400934static noinline int cow_file_range(struct inode *inode,
935 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800936 u64 start, u64 end, u64 delalloc_end,
937 int *page_started, unsigned long *nr_written,
938 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500939{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400940 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400941 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500942 u64 alloc_hint = 0;
943 u64 num_bytes;
944 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +0000945 u64 cur_alloc_size = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400946 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500947 struct btrfs_key ins;
948 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000949 unsigned clear_bits;
950 unsigned long page_ops;
951 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500952 int ret = 0;
953
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200954 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400955 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500956 ret = -EINVAL;
957 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400958 }
Chris Mason771ed682008-11-06 22:02:51 -0500959
Qu Wenruofda28322013-02-26 08:10:22 +0000960 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500961 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +0800962 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -0500963
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200964 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400965
Chris Mason771ed682008-11-06 22:02:51 -0500966 if (start == 0) {
967 /* lets try to make an inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200968 ret = cow_file_range_inline(inode, start, end, 0,
969 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500970 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -0400971 /*
972 * We use DO_ACCOUNTING here because we need the
973 * delalloc_release_metadata to be run _after_ we drop
974 * our outstanding extent for clearing delalloc for this
975 * range.
976 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800977 extent_clear_unlock_delalloc(inode, start, end,
978 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400979 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400980 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
981 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400982 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
983 PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500984 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300985 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500986 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500987 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100988 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100989 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500990 }
991 }
Chris Masonc8b97812008-10-29 14:49:59 -0400992
Josef Bacik4b46fce2010-05-23 11:00:55 -0400993 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200994 btrfs_drop_extent_cache(BTRFS_I(inode), start,
995 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400996
Anand Jain3752d222018-02-15 12:29:38 +0800997 while (num_bytes > 0) {
998 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +0800999 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001000 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001001 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001002 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001003 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001004 cur_alloc_size = ins.offset;
1005 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001006
Chris Mason771ed682008-11-06 22:02:51 -05001007 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -08001008 em = create_io_em(inode, start, ins.offset, /* len */
1009 start, /* orig_start */
1010 ins.objectid, /* block_start */
1011 ins.offset, /* block_len */
1012 ins.offset, /* orig_block_len */
1013 ram_size, /* ram_bytes */
1014 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001015 BTRFS_ORDERED_REGULAR /* type */);
Su Yue090a127a2018-05-30 16:48:56 +08001016 if (IS_ERR(em)) {
1017 ret = PTR_ERR(em);
Liu Boace68ba2013-04-22 10:53:47 +00001018 goto out_reserve;
Su Yue090a127a2018-05-30 16:48:56 +08001019 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001020 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001021
Chris Masone6dcd2d2008-07-17 12:53:50 -04001022 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001023 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001024 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001025 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001026
Yan Zheng17d217f2008-12-12 10:03:38 -05001027 if (root->root_key.objectid ==
1028 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1029 ret = btrfs_reloc_clone_csums(inode, start,
1030 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001031 /*
1032 * Only drop cache here, and process as normal.
1033 *
1034 * We must not allow extent_clear_unlock_delalloc()
1035 * at out_unlock label to free meta of this ordered
1036 * extent, as its meta should be freed by
1037 * btrfs_finish_ordered_io().
1038 *
1039 * So we must continue until @start is increased to
1040 * skip current ordered extent.
1041 */
Josef Bacik00361582013-08-14 14:02:47 -04001042 if (ret)
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001043 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1044 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001045 }
1046
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001047 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001048
Chris Masonc8b97812008-10-29 14:49:59 -04001049 /* we're not doing compressed IO, don't unlock the first
1050 * page (which the caller expects to stay locked), don't
1051 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001052 *
1053 * Do set the Private2 bit so we know this page was properly
1054 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001055 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001056 page_ops = unlock ? PAGE_UNLOCK : 0;
1057 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001058
Josef Bacikc2790a22013-07-29 11:20:47 -04001059 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001060 start + ram_size - 1,
1061 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001062 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001063 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001064 if (num_bytes < cur_alloc_size)
1065 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001066 else
Anand Jain3752d222018-02-15 12:29:38 +08001067 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001068 alloc_hint = ins.objectid + ins.offset;
1069 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001070 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001071
1072 /*
1073 * btrfs_reloc_clone_csums() error, since start is increased
1074 * extent_clear_unlock_delalloc() at out_unlock label won't
1075 * free metadata of current ordered extent, we're OK to exit.
1076 */
1077 if (ret)
1078 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001079 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001080out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001081 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001082
Filipe Mananad9f85962014-08-25 10:43:00 +01001083out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001084 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001085out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001086 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001087 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001088out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001089 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1090 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001091 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1092 PAGE_END_WRITEBACK;
1093 /*
1094 * If we reserved an extent for our delalloc range (or a subrange) and
1095 * failed to create the respective ordered extent, then it means that
1096 * when we reserved the extent we decremented the extent's size from
1097 * the data space_info's bytes_may_use counter and incremented the
1098 * space_info's bytes_reserved counter by the same amount. We must make
1099 * sure extent_clear_unlock_delalloc() does not try to decrement again
1100 * the data space_info's bytes_may_use counter, therefore we do not pass
1101 * it the flag EXTENT_CLEAR_DATA_RESV.
1102 */
1103 if (extent_reserved) {
1104 extent_clear_unlock_delalloc(inode, start,
1105 start + cur_alloc_size,
1106 start + cur_alloc_size,
1107 locked_page,
1108 clear_bits,
1109 page_ops);
1110 start += cur_alloc_size;
1111 if (start >= end)
1112 goto out;
1113 }
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001114 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1115 locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001116 clear_bits | EXTENT_CLEAR_DATA_RESV,
1117 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001118 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001119}
Chris Masonc8b97812008-10-29 14:49:59 -04001120
Chris Mason771ed682008-11-06 22:02:51 -05001121/*
1122 * work queue call back to started compression on a file and pages
1123 */
1124static noinline void async_cow_start(struct btrfs_work *work)
1125{
1126 struct async_cow *async_cow;
1127 int num_added = 0;
1128 async_cow = container_of(work, struct async_cow, work);
1129
1130 compress_file_range(async_cow->inode, async_cow->locked_page,
1131 async_cow->start, async_cow->end, async_cow,
1132 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001133 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001134 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001135 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001136 }
Chris Mason771ed682008-11-06 22:02:51 -05001137}
1138
1139/*
1140 * work queue call back to submit previously compressed pages
1141 */
1142static noinline void async_cow_submit(struct btrfs_work *work)
1143{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001144 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001145 struct async_cow *async_cow;
1146 struct btrfs_root *root;
1147 unsigned long nr_pages;
1148
1149 async_cow = container_of(work, struct async_cow, work);
1150
1151 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001152 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001153 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1154 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001155
David Sterba093258e2018-02-26 16:15:17 +01001156 /* atomic_sub_return implies a barrier */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001157 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
David Sterba093258e2018-02-26 16:15:17 +01001158 5 * SZ_1M)
1159 cond_wake_up_nomb(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001160
Chris Masond3977122009-01-05 21:25:51 -05001161 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001162 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001163}
Chris Masonc8b97812008-10-29 14:49:59 -04001164
Chris Mason771ed682008-11-06 22:02:51 -05001165static noinline void async_cow_free(struct btrfs_work *work)
1166{
1167 struct async_cow *async_cow;
1168 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001169 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001170 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001171 kfree(async_cow);
1172}
1173
1174static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1175 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001176 unsigned long *nr_written,
1177 unsigned int write_flags)
Chris Mason771ed682008-11-06 22:02:51 -05001178{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001179 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001180 struct async_cow *async_cow;
1181 struct btrfs_root *root = BTRFS_I(inode)->root;
1182 unsigned long nr_pages;
1183 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001184
Chris Masona3429ab2009-10-08 12:30:20 -04001185 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
David Sterbaae0f1622017-10-31 16:37:52 +01001186 1, 0, NULL);
Chris Masond3977122009-01-05 21:25:51 -05001187 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001188 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001189 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001190 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001191 async_cow->root = root;
1192 async_cow->locked_page = locked_page;
1193 async_cow->start = start;
Liu Bof82b7352017-10-23 23:18:16 -06001194 async_cow->write_flags = write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05001195
Wang Shilongf79707b2014-07-17 11:44:09 +08001196 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001197 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001198 cur_end = end;
1199 else
Byongho Leeee221842015-12-15 01:42:10 +09001200 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001201
1202 async_cow->end = cur_end;
1203 INIT_LIST_HEAD(&async_cow->extents);
1204
Liu Bo9e0af232014-08-15 23:36:53 +08001205 btrfs_init_work(&async_cow->work,
1206 btrfs_delalloc_helper,
1207 async_cow_start, async_cow_submit,
1208 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001209
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001210 nr_pages = (cur_end - start + PAGE_SIZE) >>
1211 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001212 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001213
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001214 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001215
Chris Mason771ed682008-11-06 22:02:51 -05001216 *nr_written += nr_pages;
1217 start = cur_end + 1;
1218 }
1219 *page_started = 1;
1220 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001221}
1222
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001223static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001224 u64 bytenr, u64 num_bytes)
1225{
1226 int ret;
1227 struct btrfs_ordered_sum *sums;
1228 LIST_HEAD(list);
1229
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001230 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001231 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001232 if (ret == 0 && list_empty(&list))
1233 return 0;
1234
1235 while (!list_empty(&list)) {
1236 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1237 list_del(&sums->list);
1238 kfree(sums);
1239 }
Liu Bo58113752018-01-31 17:09:13 -07001240 if (ret < 0)
1241 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001242 return 1;
1243}
1244
Chris Masond352ac62008-09-29 15:18:18 -04001245/*
1246 * when nowcow writeback call back. This checks for snapshots or COW copies
1247 * of the extents that exist in the file, and COWs the file as required.
1248 *
1249 * If no cow copies or snapshots exist, we write directly to the existing
1250 * blocks on disk
1251 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001252static noinline int run_delalloc_nocow(struct inode *inode,
1253 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001254 u64 start, u64 end, int *page_started, int force,
1255 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001256{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001257 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001258 struct btrfs_root *root = BTRFS_I(inode)->root;
1259 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001260 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001261 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001262 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001263 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001264 u64 cow_start;
1265 u64 cur_offset;
1266 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001267 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001268 u64 disk_bytenr;
1269 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001270 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001271 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001272 int extent_type;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001273 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001274 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001275 int nocow;
1276 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001277 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001278 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001279
1280 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001281 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001282 extent_clear_unlock_delalloc(inode, start, end, end,
1283 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001284 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001285 EXTENT_DO_ACCOUNTING |
1286 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001287 PAGE_CLEAR_DIRTY |
1288 PAGE_SET_WRITEBACK |
1289 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001290 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001291 }
Li Zefan82d59022011-04-20 10:33:24 +08001292
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001293 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001294
Yan Zheng80ff3852008-10-30 14:20:02 -04001295 cow_start = (u64)-1;
1296 cur_offset = start;
1297 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001298 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001299 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001300 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001301 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001302 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1303 leaf = path->nodes[0];
1304 btrfs_item_key_to_cpu(leaf, &found_key,
1305 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001306 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001307 found_key.type == BTRFS_EXTENT_DATA_KEY)
1308 path->slots[0]--;
1309 }
1310 check_prev = 0;
1311next_slot:
1312 leaf = path->nodes[0];
1313 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1314 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001315 if (ret < 0) {
1316 if (cow_start != (u64)-1)
1317 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001318 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001319 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001320 if (ret > 0)
1321 break;
1322 leaf = path->nodes[0];
1323 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001324
Yan Zheng80ff3852008-10-30 14:20:02 -04001325 nocow = 0;
1326 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001327 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001328 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001329
Filipe Manana1d512cb2015-11-09 00:33:58 +00001330 if (found_key.objectid > ino)
1331 break;
1332 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1333 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1334 path->slots[0]++;
1335 goto next_slot;
1336 }
1337 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001338 found_key.offset > end)
1339 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001340
Yan Zheng80ff3852008-10-30 14:20:02 -04001341 if (found_key.offset > cur_offset) {
1342 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001343 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001344 goto out_check;
1345 }
Chris Masonc31f8832008-01-08 15:46:31 -05001346
Yan Zheng80ff3852008-10-30 14:20:02 -04001347 fi = btrfs_item_ptr(leaf, path->slots[0],
1348 struct btrfs_file_extent_item);
1349 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001350
Josef Bacikcc95bef2013-04-04 14:31:27 -04001351 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001352 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1353 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001354 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001355 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 extent_end = found_key.offset +
1357 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001358 disk_num_bytes =
1359 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001360 if (extent_end <= start) {
1361 path->slots[0]++;
1362 goto next_slot;
1363 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001364 if (disk_bytenr == 0)
1365 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001366 if (btrfs_file_extent_compression(leaf, fi) ||
1367 btrfs_file_extent_encryption(leaf, fi) ||
1368 btrfs_file_extent_other_encoding(leaf, fi))
1369 goto out_check;
Ethan Lien78d42952018-05-17 14:58:29 +08001370 /*
1371 * Do the same check as in btrfs_cross_ref_exist but
1372 * without the unnecessary search.
1373 */
1374 if (btrfs_file_extent_generation(leaf, fi) <=
1375 btrfs_root_last_snapshot(&root->root_item))
1376 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001377 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1378 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001379 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001380 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001381 ret = btrfs_cross_ref_exist(root, ino,
1382 found_key.offset -
1383 extent_offset, disk_bytenr);
1384 if (ret) {
1385 /*
1386 * ret could be -EIO if the above fails to read
1387 * metadata.
1388 */
1389 if (ret < 0) {
1390 if (cow_start != (u64)-1)
1391 cur_offset = cow_start;
1392 goto error;
1393 }
1394
1395 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001396 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001397 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001398 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001399 disk_bytenr += cur_offset - found_key.offset;
1400 num_bytes = min(end + 1, extent_end) - cur_offset;
1401 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001402 * if there are pending snapshots for this root,
1403 * we fall into common COW way.
1404 */
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001405 if (!nolock && atomic_read(&root->snapshot_force_cow))
1406 goto out_check;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001407 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001408 * force cow if csum exists in the range.
1409 * this ensure that csum for a given extent are
1410 * either valid or do not exist.
1411 */
Liu Bo58113752018-01-31 17:09:13 -07001412 ret = csum_exist_in_range(fs_info, disk_bytenr,
1413 num_bytes);
1414 if (ret) {
Liu Bo58113752018-01-31 17:09:13 -07001415 /*
1416 * ret could be -EIO if the above fails to read
1417 * metadata.
1418 */
1419 if (ret < 0) {
1420 if (cow_start != (u64)-1)
1421 cur_offset = cow_start;
1422 goto error;
1423 }
1424 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001425 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001426 }
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001427 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001428 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001429 nocow = 1;
1430 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1431 extent_end = found_key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +08001432 btrfs_file_extent_ram_bytes(leaf, fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001433 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001434 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001435 } else {
1436 BUG_ON(1);
1437 }
1438out_check:
1439 if (extent_end <= start) {
1440 path->slots[0]++;
Filipe Mananaf78c4362016-05-09 13:15:41 +01001441 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001442 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001443 goto next_slot;
1444 }
1445 if (!nocow) {
1446 if (cow_start == (u64)-1)
1447 cow_start = cur_offset;
1448 cur_offset = extent_end;
1449 if (cur_offset > end)
1450 break;
1451 path->slots[0]++;
1452 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001453 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001454
David Sterbab3b4aa72011-04-21 01:20:15 +02001455 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001456 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001457 ret = cow_file_range(inode, locked_page,
1458 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001459 end, page_started, nr_written, 1,
1460 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001461 if (ret) {
Filipe Mananaf78c4362016-05-09 13:15:41 +01001462 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001463 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001464 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001465 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001466 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001467 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001468 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001469
Yan Zhengd899e052008-10-30 14:25:28 -04001470 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001471 u64 orig_start = found_key.offset - extent_offset;
1472
1473 em = create_io_em(inode, cur_offset, num_bytes,
1474 orig_start,
1475 disk_bytenr, /* block_start */
1476 num_bytes, /* block_len */
1477 disk_num_bytes, /* orig_block_len */
1478 ram_bytes, BTRFS_COMPRESS_NONE,
1479 BTRFS_ORDERED_PREALLOC);
1480 if (IS_ERR(em)) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001481 if (nocow)
1482 btrfs_dec_nocow_writers(fs_info,
1483 disk_bytenr);
1484 ret = PTR_ERR(em);
1485 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001486 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001487 free_extent_map(em);
1488 }
1489
1490 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001491 type = BTRFS_ORDERED_PREALLOC;
1492 } else {
1493 type = BTRFS_ORDERED_NOCOW;
1494 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001495
1496 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001497 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001498 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001499 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001500 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001501
Yan, Zhengefa56462010-05-16 10:49:59 -04001502 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001503 BTRFS_DATA_RELOC_TREE_OBJECTID)
1504 /*
1505 * Error handled later, as we must prevent
1506 * extent_clear_unlock_delalloc() in error handler
1507 * from freeing metadata of created ordered extent.
1508 */
Yan, Zhengefa56462010-05-16 10:49:59 -04001509 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1510 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001511
Josef Bacikc2790a22013-07-29 11:20:47 -04001512 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001513 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001514 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001515 EXTENT_DELALLOC |
1516 EXTENT_CLEAR_DATA_RESV,
1517 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1518
Yan Zheng80ff3852008-10-30 14:20:02 -04001519 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001520
1521 /*
1522 * btrfs_reloc_clone_csums() error, now we're OK to call error
1523 * handler, as metadata for created ordered extent will only
1524 * be freed by btrfs_finish_ordered_io().
1525 */
1526 if (ret)
1527 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001528 if (cur_offset > end)
1529 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001530 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001531 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001532
Josef Bacik17ca04a2012-05-31 15:58:55 -04001533 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001534 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001535 cur_offset = end;
1536 }
1537
Yan Zheng80ff3852008-10-30 14:20:02 -04001538 if (cow_start != (u64)-1) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001539 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1540 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001541 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001542 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001543 }
1544
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001545error:
Josef Bacik17ca04a2012-05-31 15:58:55 -04001546 if (ret && cur_offset < end)
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001547 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001548 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001549 EXTENT_DELALLOC | EXTENT_DEFRAG |
1550 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1551 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001552 PAGE_SET_WRITEBACK |
1553 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001554 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001555 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001556}
1557
Wang Shilong47059d92014-07-03 18:22:07 +08001558static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1559{
1560
1561 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1562 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1563 return 0;
1564
1565 /*
1566 * @defrag_bytes is a hint value, no spinlock held here,
1567 * if is not zero, it means the file is defragging.
1568 * Force cow if given extent needs to be defragged.
1569 */
1570 if (BTRFS_I(inode)->defrag_bytes &&
1571 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1572 EXTENT_DEFRAG, 0, NULL))
1573 return 1;
1574
1575 return 0;
1576}
1577
Chris Masond352ac62008-09-29 15:18:18 -04001578/*
1579 * extent_io.c call back to do delayed allocation processing
1580 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001581static int run_delalloc_range(void *private_data, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001582 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001583 unsigned long *nr_written,
1584 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001585{
Josef Bacikc6100a42017-05-05 11:57:13 -04001586 struct inode *inode = private_data;
Chris Masonbe20aa92007-12-17 20:14:01 -05001587 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001588 int force_cow = need_force_cow(inode, start, end);
Liu Bof82b7352017-10-23 23:18:16 -06001589 unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Masona2135012008-06-25 16:01:30 -04001590
Wang Shilong47059d92014-07-03 18:22:07 +08001591 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001592 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001593 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001594 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001595 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001596 page_started, 0, nr_written);
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001597 } else if (!inode_need_compress(inode, start, end)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001598 ret = cow_file_range(inode, locked_page, start, end, end,
1599 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001600 } else {
1601 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1602 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001603 ret = cow_file_range_async(inode, locked_page, start, end,
Liu Bof82b7352017-10-23 23:18:16 -06001604 page_started, nr_written,
1605 write_flags);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001606 }
Qu Wenruo524272602017-03-08 10:25:52 +08001607 if (ret)
1608 btrfs_cleanup_ordered_extents(inode, start, end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001609 return ret;
1610}
1611
Josef Bacikc6100a42017-05-05 11:57:13 -04001612static void btrfs_split_extent_hook(void *private_data,
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001613 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001614{
Josef Bacikc6100a42017-05-05 11:57:13 -04001615 struct inode *inode = private_data;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001616 u64 size;
1617
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001618 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001619 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001620 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001621
Josef Bacikdcab6a32015-02-11 15:08:59 -05001622 size = orig->end - orig->start + 1;
1623 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001624 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001625 u64 new_size;
1626
1627 /*
Josef Bacikba117212015-03-13 15:01:24 -04001628 * See the explanation in btrfs_merge_extent_hook, the same
1629 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001630 */
1631 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001632 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001633 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001634 num_extents += count_max_extents(new_size);
1635 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001636 return;
1637 }
1638
Josef Bacik9e0baf62011-07-15 15:16:44 +00001639 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001640 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001641 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001642}
1643
1644/*
1645 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1646 * extents so we can keep track of new extents that are just merged onto old
1647 * extents, such as when we are doing sequential writes, so we can properly
1648 * account for the metadata space we'll need.
1649 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001650static void btrfs_merge_extent_hook(void *private_data,
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001651 struct extent_state *new,
1652 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001653{
Josef Bacikc6100a42017-05-05 11:57:13 -04001654 struct inode *inode = private_data;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001655 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001656 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001657
Josef Bacik9ed74f22009-09-11 16:12:44 -04001658 /* not delalloc, ignore it */
1659 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001660 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001661
Josef Bacik8461a3d2015-03-13 15:12:08 -04001662 if (new->start > other->start)
1663 new_size = new->end - other->start + 1;
1664 else
1665 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001666
1667 /* we're not bigger than the max, unreserve the space and go */
1668 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1669 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001670 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001671 spin_unlock(&BTRFS_I(inode)->lock);
1672 return;
1673 }
1674
1675 /*
Josef Bacikba117212015-03-13 15:01:24 -04001676 * We have to add up either side to figure out how many extents were
1677 * accounted for before we merged into one big extent. If the number of
1678 * extents we accounted for is <= the amount we need for the new range
1679 * then we can return, otherwise drop. Think of it like this
1680 *
1681 * [ 4k][MAX_SIZE]
1682 *
1683 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1684 * need 2 outstanding extents, on one side we have 1 and the other side
1685 * we have 1 so they are == and we can return. But in this case
1686 *
1687 * [MAX_SIZE+4k][MAX_SIZE+4k]
1688 *
1689 * Each range on their own accounts for 2 extents, but merged together
1690 * they are only 3 extents worth of accounting, so we need to drop in
1691 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001692 */
Josef Bacikba117212015-03-13 15:01:24 -04001693 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001694 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001695 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001696 num_extents += count_max_extents(old_size);
1697 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001698 return;
1699
Josef Bacik9e0baf62011-07-15 15:16:44 +00001700 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001701 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001702 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001703}
1704
Miao Xieeb73c1b2013-05-15 07:48:22 +00001705static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1706 struct inode *inode)
1707{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001708 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1709
Miao Xieeb73c1b2013-05-15 07:48:22 +00001710 spin_lock(&root->delalloc_lock);
1711 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1712 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1713 &root->delalloc_inodes);
1714 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1715 &BTRFS_I(inode)->runtime_flags);
1716 root->nr_delalloc_inodes++;
1717 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001718 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001719 BUG_ON(!list_empty(&root->delalloc_root));
1720 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001721 &fs_info->delalloc_roots);
1722 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001723 }
1724 }
1725 spin_unlock(&root->delalloc_lock);
1726}
1727
Nikolay Borisov2b877332018-04-27 12:21:51 +03001728
1729void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1730 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001731{
David Sterba3ffbd682018-06-29 10:56:42 +02001732 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001733
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001734 if (!list_empty(&inode->delalloc_inodes)) {
1735 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001736 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001737 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001738 root->nr_delalloc_inodes--;
1739 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03001740 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001741 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001742 BUG_ON(list_empty(&root->delalloc_root));
1743 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001744 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001745 }
1746 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03001747}
1748
1749static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1750 struct btrfs_inode *inode)
1751{
1752 spin_lock(&root->delalloc_lock);
1753 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001754 spin_unlock(&root->delalloc_lock);
1755}
1756
Chris Masond352ac62008-09-29 15:18:18 -04001757/*
1758 * extent_io.c set_bit_hook, used to track delayed allocation
1759 * bytes in this file, and to maintain the list of inodes that
1760 * have pending delalloc work to be done.
1761 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001762static void btrfs_set_bit_hook(void *private_data,
David Sterba9ee49a042015-01-14 19:52:13 +01001763 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001764{
Josef Bacikc6100a42017-05-05 11:57:13 -04001765 struct inode *inode = private_data;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001766
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001767 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1768
Wang Shilong47059d92014-07-03 18:22:07 +08001769 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1770 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001771 /*
1772 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001773 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001774 * bit, which is only set or cleared with irqs on
1775 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001776 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001777 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001778 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04001779 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001780 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001781
Josef Bacik8b62f872017-10-19 14:15:55 -04001782 spin_lock(&BTRFS_I(inode)->lock);
1783 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1784 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001785
Josef Bacik6a3891c2015-03-16 17:38:52 -04001786 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001787 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001788 return;
1789
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001790 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1791 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001792 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001793 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001794 if (*bits & EXTENT_DEFRAG)
1795 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001796 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001797 &BTRFS_I(inode)->runtime_flags))
1798 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001799 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001800 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001801
1802 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1803 (*bits & EXTENT_DELALLOC_NEW)) {
1804 spin_lock(&BTRFS_I(inode)->lock);
1805 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1806 state->start;
1807 spin_unlock(&BTRFS_I(inode)->lock);
1808 }
Chris Mason291d6732008-01-29 15:55:23 -05001809}
1810
Chris Masond352ac62008-09-29 15:18:18 -04001811/*
1812 * extent_io.c clear_bit_hook, see set_bit_hook for why
1813 */
Josef Bacikc6100a42017-05-05 11:57:13 -04001814static void btrfs_clear_bit_hook(void *private_data,
David Sterba41074882013-04-29 13:38:46 +00001815 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001816 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001817{
Josef Bacikc6100a42017-05-05 11:57:13 -04001818 struct btrfs_inode *inode = BTRFS_I((struct inode *)private_data);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001819 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001820 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001821 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001822
Filipe Manana4a4b9642017-07-27 19:52:55 +01001823 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1824 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001825 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01001826 spin_unlock(&inode->lock);
1827 }
Wang Shilong47059d92014-07-03 18:22:07 +08001828
Chris Mason75eff682008-12-15 15:54:40 -05001829 /*
1830 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001831 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001832 * bit, which is only set or cleared with irqs on
1833 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001834 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001835 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001836 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001837
Josef Bacik8b62f872017-10-19 14:15:55 -04001838 spin_lock(&inode->lock);
1839 btrfs_mod_outstanding_extents(inode, -num_extents);
1840 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001841
Josef Bacikb6d08f02013-09-27 14:57:43 -04001842 /*
1843 * We don't reserve metadata space for space cache inodes so we
1844 * don't need to call dellalloc_release_metadata if there is an
1845 * error.
1846 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001847 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001848 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08001849 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001850
Josef Bacik6a3891c2015-03-16 17:38:52 -04001851 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001852 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001853 return;
1854
Filipe Mananaa315e682017-03-06 23:04:20 +00001855 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1856 do_list && !(state->state & EXTENT_NORESERVE) &&
1857 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001858 btrfs_free_reserved_data_space_noquota(
1859 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001860 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001861
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001862 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1863 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001864 spin_lock(&inode->lock);
1865 inode->delalloc_bytes -= len;
1866 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001867 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001868 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001869 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001870 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001871 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001872
1873 if ((state->state & EXTENT_DELALLOC_NEW) &&
1874 (*bits & EXTENT_DELALLOC_NEW)) {
1875 spin_lock(&inode->lock);
1876 ASSERT(inode->new_delalloc_bytes >= len);
1877 inode->new_delalloc_bytes -= len;
1878 spin_unlock(&inode->lock);
1879 }
Chris Mason291d6732008-01-29 15:55:23 -05001880}
1881
Chris Masond352ac62008-09-29 15:18:18 -04001882/*
David Sterba00032d32018-07-18 19:28:09 +02001883 * Merge bio hook, this must check the chunk tree to make sure we don't create
1884 * bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001885 *
1886 * return 1 if page cannot be merged to bio
1887 * return 0 if page can be merged to bio
1888 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001889 */
Mike Christie81a75f672016-06-05 14:31:54 -05001890int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001891 size_t size, struct bio *bio,
1892 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001893{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001894 struct inode *inode = page->mapping->host;
1895 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001896 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001897 u64 length = 0;
1898 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001899 int ret;
1900
Chris Mason771ed682008-11-06 22:02:51 -05001901 if (bio_flags & EXTENT_BIO_COMPRESSED)
1902 return 0;
1903
Kent Overstreet4f024f32013-10-11 15:44:27 -07001904 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001905 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001906 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1907 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001908 if (ret < 0)
1909 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001910 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001911 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001912 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001913}
1914
Chris Masond352ac62008-09-29 15:18:18 -04001915/*
1916 * in order to insert checksums into the metadata in large chunks,
1917 * we wait until bio submission time. All the pages in the bio are
1918 * checksummed and sums are attached onto the ordered extent record.
1919 *
1920 * At IO completion time the cums attached on the ordered extent record
1921 * are inserted into the btree
1922 */
David Sterbad0ee3932018-03-08 14:35:48 +01001923static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001924 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001925{
Josef Bacikc6100a42017-05-05 11:57:13 -04001926 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001927 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001928
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001929 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001930 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001931 return 0;
1932}
Chris Masone0156402008-04-16 11:15:20 -04001933
Chris Mason4a69a412008-11-06 22:03:00 -05001934/*
1935 * in order to insert checksums into the metadata in large chunks,
1936 * we wait until bio submission time. All the pages in the bio are
1937 * checksummed and sums are attached onto the ordered extent record.
1938 *
1939 * At IO completion time the cums attached on the ordered extent record
1940 * are inserted into the btree
1941 */
David Sterbae288c082018-07-18 17:36:24 +02001942blk_status_t btrfs_submit_bio_done(void *private_data, struct bio *bio,
David Sterba6c553432018-03-08 13:47:33 +01001943 int mirror_num)
Chris Mason4a69a412008-11-06 22:03:00 -05001944{
Josef Bacikc6100a42017-05-05 11:57:13 -04001945 struct inode *inode = private_data;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001946 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001947 blk_status_t ret;
Stefan Behrens61891922012-11-05 18:51:52 +01001948
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001949 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001950 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001951 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001952 bio_endio(bio);
1953 }
Stefan Behrens61891922012-11-05 18:51:52 +01001954 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001955}
1956
Chris Masond352ac62008-09-29 15:18:18 -04001957/*
Chris Masoncad321a2008-12-17 14:51:42 -05001958 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06001959 * on write, or reading the csums from the tree before a read.
1960 *
1961 * Rules about async/sync submit,
1962 * a) read: sync submit
1963 *
1964 * b) write without checksum: sync submit
1965 *
1966 * c) write with checksum:
1967 * c-1) if bio is issued by fsync: sync submit
1968 * (sync_writers != 0)
1969 *
1970 * c-2) if root is reloc root: sync submit
1971 * (only in case of buffered IO)
1972 *
1973 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04001974 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001975static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
Josef Bacikc6100a42017-05-05 11:57:13 -04001976 int mirror_num, unsigned long bio_flags,
1977 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001978{
Josef Bacikc6100a42017-05-05 11:57:13 -04001979 struct inode *inode = private_data;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001980 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001981 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301982 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001983 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001984 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001985 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001986
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001987 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001988
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001989 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301990 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001991
Mike Christie37226b22016-06-05 14:31:52 -05001992 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001993 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001994 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001995 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001996
Chris Masond20f7042008-12-08 16:58:54 -05001997 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001998 ret = btrfs_submit_compressed_read(inode, bio,
1999 mirror_num,
2000 bio_flags);
2001 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002002 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002003 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002004 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01002005 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002006 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04002007 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05002008 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002009 /* csum items have already been cloned */
2010 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2011 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002012 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04002013 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
2014 bio_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02002015 btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01002016 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002017 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002018 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002019 if (ret)
2020 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002021 }
2022
Chris Mason0b86a832008-03-24 15:01:56 -04002023mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002024 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01002025
2026out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002027 if (ret) {
2028 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002029 bio_endio(bio);
2030 }
Stefan Behrens61891922012-11-05 18:51:52 +01002031 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002032}
Chris Mason6885f302008-02-20 16:11:05 -05002033
Chris Masond352ac62008-09-29 15:18:18 -04002034/*
2035 * given a list of ordered sums record them in the inode. This happens
2036 * at IO completion time based on sums calculated at bio submission time.
2037 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002038static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002039 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002040{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002041 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002042 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002043
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002044 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002045 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002046 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002047 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002048 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002049 if (ret)
2050 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002051 }
2052 return 0;
2053}
2054
Josef Bacik2ac55d42010-02-03 19:33:23 +00002055int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002056 unsigned int extra_bits,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002057 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002058{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002059 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002060 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002061 extra_bits, cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002062}
2063
Chris Masond352ac62008-09-29 15:18:18 -04002064/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002065struct btrfs_writepage_fixup {
2066 struct page *page;
2067 struct btrfs_work work;
2068};
2069
Christoph Hellwigb2950862008-12-02 09:54:17 -05002070static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002071{
2072 struct btrfs_writepage_fixup *fixup;
2073 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002074 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002075 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002076 struct page *page;
2077 struct inode *inode;
2078 u64 page_start;
2079 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002080 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002081
2082 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2083 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002084again:
Chris Mason247e7432008-07-17 12:53:51 -04002085 lock_page(page);
2086 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2087 ClearPageChecked(page);
2088 goto out_page;
2089 }
2090
2091 inode = page->mapping->host;
2092 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002093 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002094
David Sterbaff13db42015-12-03 14:30:40 +01002095 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002096 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002097
2098 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002099 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002100 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002101
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002102 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002103 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002104 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002105 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
David Sterbae43bbe52017-12-12 21:43:52 +01002106 page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002107 unlock_page(page);
2108 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002109 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002110 goto again;
2111 }
Chris Mason247e7432008-07-17 12:53:51 -04002112
Qu Wenruo364ecf32017-02-27 15:10:38 +08002113 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002114 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002115 if (ret) {
2116 mapping_set_error(page->mapping, ret);
2117 end_extent_writepage(page, ret, page_start, page_end);
2118 ClearPageChecked(page);
2119 goto out;
2120 }
2121
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002122 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2123 &cached_state, 0);
2124 if (ret) {
2125 mapping_set_error(page->mapping, ret);
2126 end_extent_writepage(page, ret, page_start, page_end);
2127 ClearPageChecked(page);
2128 goto out;
2129 }
2130
Chris Mason247e7432008-07-17 12:53:51 -04002131 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002132 set_page_dirty(page);
Qu Wenruo43b18592017-12-12 15:34:32 +08002133 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false);
Chris Mason247e7432008-07-17 12:53:51 -04002134out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002135 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002136 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002137out_page:
2138 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002139 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002140 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002141 extent_changeset_free(data_reserved);
Chris Mason247e7432008-07-17 12:53:51 -04002142}
2143
2144/*
2145 * There are a few paths in the higher layers of the kernel that directly
2146 * set the page dirty bit without asking the filesystem if it is a
2147 * good idea. This causes problems because we want to make sure COW
2148 * properly happens and the data=ordered rules are followed.
2149 *
Chris Masonc8b97812008-10-29 14:49:59 -04002150 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002151 * hasn't been properly setup for IO. We kick off an async process
2152 * to fix it up. The async helper will wait for ordered extents, set
2153 * the delalloc bit and make it safe to write the page.
2154 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002155static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002156{
2157 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002158 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002159 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002160
Chris Mason8b62b722009-09-02 16:53:46 -04002161 /* this page is properly in the ordered list */
2162 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002163 return 0;
2164
2165 if (PageChecked(page))
2166 return -EAGAIN;
2167
2168 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2169 if (!fixup)
2170 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002171
Chris Mason247e7432008-07-17 12:53:51 -04002172 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002173 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002174 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2175 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002176 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002177 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002178 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002179}
2180
Yan Zhengd899e052008-10-30 14:25:28 -04002181static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2182 struct inode *inode, u64 file_pos,
2183 u64 disk_bytenr, u64 disk_num_bytes,
2184 u64 num_bytes, u64 ram_bytes,
2185 u8 compression, u8 encryption,
2186 u16 other_encoding, int extent_type)
2187{
2188 struct btrfs_root *root = BTRFS_I(inode)->root;
2189 struct btrfs_file_extent_item *fi;
2190 struct btrfs_path *path;
2191 struct extent_buffer *leaf;
2192 struct btrfs_key ins;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002193 u64 qg_released;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002194 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002195 int ret;
2196
2197 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002198 if (!path)
2199 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002200
Chris Masona1ed8352009-09-11 12:27:37 -04002201 /*
2202 * we may be replacing one extent in the tree with another.
2203 * The new extent is pinned in the extent map, and we don't want
2204 * to drop it from the cache until it is completely in the btree.
2205 *
2206 * So, tell btrfs_drop_extents to leave this extent in the cache.
2207 * the caller is expected to unpin it and allow it to be merged
2208 * with the others.
2209 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002210 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2211 file_pos + num_bytes, NULL, 0,
2212 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002213 if (ret)
2214 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002215
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002216 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002217 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002218 ins.offset = file_pos;
2219 ins.type = BTRFS_EXTENT_DATA_KEY;
2220
2221 path->leave_spinning = 1;
2222 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2223 sizeof(*fi));
2224 if (ret)
2225 goto out;
2226 }
Yan Zhengd899e052008-10-30 14:25:28 -04002227 leaf = path->nodes[0];
2228 fi = btrfs_item_ptr(leaf, path->slots[0],
2229 struct btrfs_file_extent_item);
2230 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2231 btrfs_set_file_extent_type(leaf, fi, extent_type);
2232 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2233 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2234 btrfs_set_file_extent_offset(leaf, fi, 0);
2235 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2236 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2237 btrfs_set_file_extent_compression(leaf, fi, compression);
2238 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2239 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002240
Yan Zhengd899e052008-10-30 14:25:28 -04002241 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002242 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002243
2244 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002245
2246 ins.objectid = disk_bytenr;
2247 ins.offset = disk_num_bytes;
2248 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002249
Qu Wenruo297d7502015-09-08 17:08:37 +08002250 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002251 * Release the reserved range from inode dirty range map, as it is
2252 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002253 */
Qu Wenruoa12b8772017-02-27 15:10:37 +08002254 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2255 if (ret < 0)
2256 goto out;
2257 qg_released = ret;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002258 ret = btrfs_alloc_reserved_file_extent(trans, root,
2259 btrfs_ino(BTRFS_I(inode)),
2260 file_pos, qg_released, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002261out:
Yan Zhengd899e052008-10-30 14:25:28 -04002262 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002263
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002264 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002265}
2266
Liu Bo38c227d2013-01-29 03:18:40 +00002267/* snapshot-aware defrag */
2268struct sa_defrag_extent_backref {
2269 struct rb_node node;
2270 struct old_sa_defrag_extent *old;
2271 u64 root_id;
2272 u64 inum;
2273 u64 file_pos;
2274 u64 extent_offset;
2275 u64 num_bytes;
2276 u64 generation;
2277};
2278
2279struct old_sa_defrag_extent {
2280 struct list_head list;
2281 struct new_sa_defrag_extent *new;
2282
2283 u64 extent_offset;
2284 u64 bytenr;
2285 u64 offset;
2286 u64 len;
2287 int count;
2288};
2289
2290struct new_sa_defrag_extent {
2291 struct rb_root root;
2292 struct list_head head;
2293 struct btrfs_path *path;
2294 struct inode *inode;
2295 u64 file_pos;
2296 u64 len;
2297 u64 bytenr;
2298 u64 disk_len;
2299 u8 compress_type;
2300};
2301
2302static int backref_comp(struct sa_defrag_extent_backref *b1,
2303 struct sa_defrag_extent_backref *b2)
2304{
2305 if (b1->root_id < b2->root_id)
2306 return -1;
2307 else if (b1->root_id > b2->root_id)
2308 return 1;
2309
2310 if (b1->inum < b2->inum)
2311 return -1;
2312 else if (b1->inum > b2->inum)
2313 return 1;
2314
2315 if (b1->file_pos < b2->file_pos)
2316 return -1;
2317 else if (b1->file_pos > b2->file_pos)
2318 return 1;
2319
2320 /*
2321 * [------------------------------] ===> (a range of space)
2322 * |<--->| |<---->| =============> (fs/file tree A)
2323 * |<---------------------------->| ===> (fs/file tree B)
2324 *
2325 * A range of space can refer to two file extents in one tree while
2326 * refer to only one file extent in another tree.
2327 *
2328 * So we may process a disk offset more than one time(two extents in A)
2329 * and locate at the same extent(one extent in B), then insert two same
2330 * backrefs(both refer to the extent in B).
2331 */
2332 return 0;
2333}
2334
2335static void backref_insert(struct rb_root *root,
2336 struct sa_defrag_extent_backref *backref)
2337{
2338 struct rb_node **p = &root->rb_node;
2339 struct rb_node *parent = NULL;
2340 struct sa_defrag_extent_backref *entry;
2341 int ret;
2342
2343 while (*p) {
2344 parent = *p;
2345 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2346
2347 ret = backref_comp(backref, entry);
2348 if (ret < 0)
2349 p = &(*p)->rb_left;
2350 else
2351 p = &(*p)->rb_right;
2352 }
2353
2354 rb_link_node(&backref->node, parent, p);
2355 rb_insert_color(&backref->node, root);
2356}
2357
2358/*
2359 * Note the backref might has changed, and in this case we just return 0.
2360 */
2361static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2362 void *ctx)
2363{
2364 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002365 struct old_sa_defrag_extent *old = ctx;
2366 struct new_sa_defrag_extent *new = old->new;
2367 struct btrfs_path *path = new->path;
2368 struct btrfs_key key;
2369 struct btrfs_root *root;
2370 struct sa_defrag_extent_backref *backref;
2371 struct extent_buffer *leaf;
2372 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002373 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002374 int slot;
2375 int ret;
2376 u64 extent_offset;
2377 u64 num_bytes;
2378
2379 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002380 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002381 return 0;
2382
2383 key.objectid = root_id;
2384 key.type = BTRFS_ROOT_ITEM_KEY;
2385 key.offset = (u64)-1;
2386
Liu Bo38c227d2013-01-29 03:18:40 +00002387 root = btrfs_read_fs_root_no_name(fs_info, &key);
2388 if (IS_ERR(root)) {
2389 if (PTR_ERR(root) == -ENOENT)
2390 return 0;
2391 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002392 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002393 inum, offset, root_id);
2394 return PTR_ERR(root);
2395 }
2396
2397 key.objectid = inum;
2398 key.type = BTRFS_EXTENT_DATA_KEY;
2399 if (offset > (u64)-1 << 32)
2400 key.offset = 0;
2401 else
2402 key.offset = offset;
2403
2404 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302405 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002406 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002407 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002408
2409 while (1) {
2410 cond_resched();
2411
2412 leaf = path->nodes[0];
2413 slot = path->slots[0];
2414
2415 if (slot >= btrfs_header_nritems(leaf)) {
2416 ret = btrfs_next_leaf(root, path);
2417 if (ret < 0) {
2418 goto out;
2419 } else if (ret > 0) {
2420 ret = 0;
2421 goto out;
2422 }
2423 continue;
2424 }
2425
2426 path->slots[0]++;
2427
2428 btrfs_item_key_to_cpu(leaf, &key, slot);
2429
2430 if (key.objectid > inum)
2431 goto out;
2432
2433 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2434 continue;
2435
2436 extent = btrfs_item_ptr(leaf, slot,
2437 struct btrfs_file_extent_item);
2438
2439 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2440 continue;
2441
Liu Boe68afa42013-07-01 22:13:26 +08002442 /*
2443 * 'offset' refers to the exact key.offset,
2444 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2445 * (key.offset - extent_offset).
2446 */
2447 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002448 continue;
2449
Liu Boe68afa42013-07-01 22:13:26 +08002450 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002451 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002452
Liu Bo38c227d2013-01-29 03:18:40 +00002453 if (extent_offset >= old->extent_offset + old->offset +
2454 old->len || extent_offset + num_bytes <=
2455 old->extent_offset + old->offset)
2456 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002457 break;
2458 }
2459
2460 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2461 if (!backref) {
2462 ret = -ENOENT;
2463 goto out;
2464 }
2465
2466 backref->root_id = root_id;
2467 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002468 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002469 backref->num_bytes = num_bytes;
2470 backref->extent_offset = extent_offset;
2471 backref->generation = btrfs_file_extent_generation(leaf, extent);
2472 backref->old = old;
2473 backref_insert(&new->root, backref);
2474 old->count++;
2475out:
2476 btrfs_release_path(path);
2477 WARN_ON(ret);
2478 return ret;
2479}
2480
2481static noinline bool record_extent_backrefs(struct btrfs_path *path,
2482 struct new_sa_defrag_extent *new)
2483{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002484 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002485 struct old_sa_defrag_extent *old, *tmp;
2486 int ret;
2487
2488 new->path = path;
2489
2490 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002491 ret = iterate_inodes_from_logical(old->bytenr +
2492 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002493 path, record_one_backref,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002494 old, false);
Josef Bacik4724b102013-11-05 11:11:40 -05002495 if (ret < 0 && ret != -ENOENT)
2496 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002497
2498 /* no backref to be processed for this extent */
2499 if (!old->count) {
2500 list_del(&old->list);
2501 kfree(old);
2502 }
2503 }
2504
2505 if (list_empty(&new->head))
2506 return false;
2507
2508 return true;
2509}
2510
2511static int relink_is_mergable(struct extent_buffer *leaf,
2512 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002513 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002514{
Liu Bo116e0022013-08-02 16:30:40 +08002515 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002516 return 0;
2517
2518 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2519 return 0;
2520
Liu Bo116e0022013-08-02 16:30:40 +08002521 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2522 return 0;
2523
2524 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002525 btrfs_file_extent_other_encoding(leaf, fi))
2526 return 0;
2527
2528 return 1;
2529}
2530
2531/*
2532 * Note the backref might has changed, and in this case we just return 0.
2533 */
2534static noinline int relink_extent_backref(struct btrfs_path *path,
2535 struct sa_defrag_extent_backref *prev,
2536 struct sa_defrag_extent_backref *backref)
2537{
2538 struct btrfs_file_extent_item *extent;
2539 struct btrfs_file_extent_item *item;
2540 struct btrfs_ordered_extent *ordered;
2541 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002542 struct btrfs_root *root;
2543 struct btrfs_key key;
2544 struct extent_buffer *leaf;
2545 struct old_sa_defrag_extent *old = backref->old;
2546 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002547 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002548 struct inode *inode;
2549 struct extent_state *cached = NULL;
2550 int ret = 0;
2551 u64 start;
2552 u64 len;
2553 u64 lock_start;
2554 u64 lock_end;
2555 bool merge = false;
2556 int index;
2557
2558 if (prev && prev->root_id == backref->root_id &&
2559 prev->inum == backref->inum &&
2560 prev->file_pos + prev->num_bytes == backref->file_pos)
2561 merge = true;
2562
2563 /* step 1: get root */
2564 key.objectid = backref->root_id;
2565 key.type = BTRFS_ROOT_ITEM_KEY;
2566 key.offset = (u64)-1;
2567
Liu Bo38c227d2013-01-29 03:18:40 +00002568 index = srcu_read_lock(&fs_info->subvol_srcu);
2569
2570 root = btrfs_read_fs_root_no_name(fs_info, &key);
2571 if (IS_ERR(root)) {
2572 srcu_read_unlock(&fs_info->subvol_srcu, index);
2573 if (PTR_ERR(root) == -ENOENT)
2574 return 0;
2575 return PTR_ERR(root);
2576 }
Liu Bo38c227d2013-01-29 03:18:40 +00002577
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002578 if (btrfs_root_readonly(root)) {
2579 srcu_read_unlock(&fs_info->subvol_srcu, index);
2580 return 0;
2581 }
2582
Liu Bo38c227d2013-01-29 03:18:40 +00002583 /* step 2: get inode */
2584 key.objectid = backref->inum;
2585 key.type = BTRFS_INODE_ITEM_KEY;
2586 key.offset = 0;
2587
2588 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2589 if (IS_ERR(inode)) {
2590 srcu_read_unlock(&fs_info->subvol_srcu, index);
2591 return 0;
2592 }
2593
2594 srcu_read_unlock(&fs_info->subvol_srcu, index);
2595
2596 /* step 3: relink backref */
2597 lock_start = backref->file_pos;
2598 lock_end = backref->file_pos + backref->num_bytes - 1;
2599 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002600 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002601
2602 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2603 if (ordered) {
2604 btrfs_put_ordered_extent(ordered);
2605 goto out_unlock;
2606 }
2607
2608 trans = btrfs_join_transaction(root);
2609 if (IS_ERR(trans)) {
2610 ret = PTR_ERR(trans);
2611 goto out_unlock;
2612 }
2613
2614 key.objectid = backref->inum;
2615 key.type = BTRFS_EXTENT_DATA_KEY;
2616 key.offset = backref->file_pos;
2617
2618 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2619 if (ret < 0) {
2620 goto out_free_path;
2621 } else if (ret > 0) {
2622 ret = 0;
2623 goto out_free_path;
2624 }
2625
2626 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2627 struct btrfs_file_extent_item);
2628
2629 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2630 backref->generation)
2631 goto out_free_path;
2632
2633 btrfs_release_path(path);
2634
2635 start = backref->file_pos;
2636 if (backref->extent_offset < old->extent_offset + old->offset)
2637 start += old->extent_offset + old->offset -
2638 backref->extent_offset;
2639
2640 len = min(backref->extent_offset + backref->num_bytes,
2641 old->extent_offset + old->offset + old->len);
2642 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2643
2644 ret = btrfs_drop_extents(trans, root, inode, start,
2645 start + len, 1);
2646 if (ret)
2647 goto out_free_path;
2648again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002649 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002650 key.type = BTRFS_EXTENT_DATA_KEY;
2651 key.offset = start;
2652
Liu Boa09a0a72013-03-11 09:20:58 +00002653 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002654 if (merge) {
2655 struct btrfs_file_extent_item *fi;
2656 u64 extent_len;
2657 struct btrfs_key found_key;
2658
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002659 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002660 if (ret < 0)
2661 goto out_free_path;
2662
2663 path->slots[0]--;
2664 leaf = path->nodes[0];
2665 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2666
2667 fi = btrfs_item_ptr(leaf, path->slots[0],
2668 struct btrfs_file_extent_item);
2669 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2670
Liu Bo116e0022013-08-02 16:30:40 +08002671 if (extent_len + found_key.offset == start &&
2672 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002673 btrfs_set_file_extent_num_bytes(leaf, fi,
2674 extent_len + len);
2675 btrfs_mark_buffer_dirty(leaf);
2676 inode_add_bytes(inode, len);
2677
2678 ret = 1;
2679 goto out_free_path;
2680 } else {
2681 merge = false;
2682 btrfs_release_path(path);
2683 goto again;
2684 }
2685 }
2686
2687 ret = btrfs_insert_empty_item(trans, root, path, &key,
2688 sizeof(*extent));
2689 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002690 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002691 goto out_free_path;
2692 }
2693
2694 leaf = path->nodes[0];
2695 item = btrfs_item_ptr(leaf, path->slots[0],
2696 struct btrfs_file_extent_item);
2697 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2698 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2699 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2700 btrfs_set_file_extent_num_bytes(leaf, item, len);
2701 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2702 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2703 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2704 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2705 btrfs_set_file_extent_encryption(leaf, item, 0);
2706 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2707
2708 btrfs_mark_buffer_dirty(leaf);
2709 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002710 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002711
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002712 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002713 new->disk_len, 0,
2714 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002715 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002716 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002717 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002718 goto out_free_path;
2719 }
2720
2721 ret = 1;
2722out_free_path:
2723 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002724 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002725 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002726out_unlock:
2727 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002728 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002729 iput(inode);
2730 return ret;
2731}
2732
Liu Bo6f519562013-10-29 10:45:05 +08002733static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2734{
2735 struct old_sa_defrag_extent *old, *tmp;
2736
2737 if (!new)
2738 return;
2739
2740 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002741 kfree(old);
2742 }
2743 kfree(new);
2744}
2745
Liu Bo38c227d2013-01-29 03:18:40 +00002746static void relink_file_extents(struct new_sa_defrag_extent *new)
2747{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002748 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002749 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002750 struct sa_defrag_extent_backref *backref;
2751 struct sa_defrag_extent_backref *prev = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002752 struct rb_node *node;
2753 int ret;
2754
Liu Bo38c227d2013-01-29 03:18:40 +00002755 path = btrfs_alloc_path();
2756 if (!path)
2757 return;
2758
2759 if (!record_extent_backrefs(path, new)) {
2760 btrfs_free_path(path);
2761 goto out;
2762 }
2763 btrfs_release_path(path);
2764
2765 while (1) {
2766 node = rb_first(&new->root);
2767 if (!node)
2768 break;
2769 rb_erase(node, &new->root);
2770
2771 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2772
2773 ret = relink_extent_backref(path, prev, backref);
2774 WARN_ON(ret < 0);
2775
2776 kfree(prev);
2777
2778 if (ret == 1)
2779 prev = backref;
2780 else
2781 prev = NULL;
2782 cond_resched();
2783 }
2784 kfree(prev);
2785
2786 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002787out:
Liu Bo6f519562013-10-29 10:45:05 +08002788 free_sa_defrag_extent(new);
2789
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002790 atomic_dec(&fs_info->defrag_running);
2791 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002792}
2793
2794static struct new_sa_defrag_extent *
2795record_old_file_extents(struct inode *inode,
2796 struct btrfs_ordered_extent *ordered)
2797{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002798 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002799 struct btrfs_root *root = BTRFS_I(inode)->root;
2800 struct btrfs_path *path;
2801 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002802 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002803 struct new_sa_defrag_extent *new;
2804 int ret;
2805
2806 new = kmalloc(sizeof(*new), GFP_NOFS);
2807 if (!new)
2808 return NULL;
2809
2810 new->inode = inode;
2811 new->file_pos = ordered->file_offset;
2812 new->len = ordered->len;
2813 new->bytenr = ordered->start;
2814 new->disk_len = ordered->disk_len;
2815 new->compress_type = ordered->compress_type;
2816 new->root = RB_ROOT;
2817 INIT_LIST_HEAD(&new->head);
2818
2819 path = btrfs_alloc_path();
2820 if (!path)
2821 goto out_kfree;
2822
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002823 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002824 key.type = BTRFS_EXTENT_DATA_KEY;
2825 key.offset = new->file_pos;
2826
2827 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2828 if (ret < 0)
2829 goto out_free_path;
2830 if (ret > 0 && path->slots[0] > 0)
2831 path->slots[0]--;
2832
2833 /* find out all the old extents for the file range */
2834 while (1) {
2835 struct btrfs_file_extent_item *extent;
2836 struct extent_buffer *l;
2837 int slot;
2838 u64 num_bytes;
2839 u64 offset;
2840 u64 end;
2841 u64 disk_bytenr;
2842 u64 extent_offset;
2843
2844 l = path->nodes[0];
2845 slot = path->slots[0];
2846
2847 if (slot >= btrfs_header_nritems(l)) {
2848 ret = btrfs_next_leaf(root, path);
2849 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002850 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002851 else if (ret > 0)
2852 break;
2853 continue;
2854 }
2855
2856 btrfs_item_key_to_cpu(l, &key, slot);
2857
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002858 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002859 break;
2860 if (key.type != BTRFS_EXTENT_DATA_KEY)
2861 break;
2862 if (key.offset >= new->file_pos + new->len)
2863 break;
2864
2865 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2866
2867 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2868 if (key.offset + num_bytes < new->file_pos)
2869 goto next;
2870
2871 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2872 if (!disk_bytenr)
2873 goto next;
2874
2875 extent_offset = btrfs_file_extent_offset(l, extent);
2876
2877 old = kmalloc(sizeof(*old), GFP_NOFS);
2878 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002879 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002880
2881 offset = max(new->file_pos, key.offset);
2882 end = min(new->file_pos + new->len, key.offset + num_bytes);
2883
2884 old->bytenr = disk_bytenr;
2885 old->extent_offset = extent_offset;
2886 old->offset = offset - key.offset;
2887 old->len = end - offset;
2888 old->new = new;
2889 old->count = 0;
2890 list_add_tail(&old->list, &new->head);
2891next:
2892 path->slots[0]++;
2893 cond_resched();
2894 }
2895
2896 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002897 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002898
2899 return new;
2900
Liu Bo38c227d2013-01-29 03:18:40 +00002901out_free_path:
2902 btrfs_free_path(path);
2903out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002904 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002905 return NULL;
2906}
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{
2911 struct btrfs_block_group_cache *cache;
2912
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
Chris Masond352ac62008-09-29 15:18:18 -04002923/* as ordered data IO finishes, this gets called so we can finish
2924 * an ordered extent if the range of bytes in the file it covers are
2925 * fully written.
2926 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002927static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002928{
Josef Bacik5fd02042012-05-02 14:00:54 -04002929 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002930 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002931 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002932 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002933 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002934 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002935 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002936 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002937 int ret = 0;
2938 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002939 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002940 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002941 bool range_locked = false;
2942 bool clear_new_delalloc_bytes = false;
2943
2944 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2945 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2946 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2947 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002948
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002949 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002950
Josef Bacik5fd02042012-05-02 14:00:54 -04002951 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2952 ret = -EIO;
2953 goto out;
2954 }
2955
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002956 btrfs_free_io_failure_record(BTRFS_I(inode),
2957 ordered_extent->file_offset,
2958 ordered_extent->file_offset +
2959 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002960
Josef Bacik77cef2e2013-08-29 13:57:21 -04002961 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2962 truncated = true;
2963 logical_len = ordered_extent->truncated_len;
2964 /* Truncated the entire extent, don't bother adding */
2965 if (!logical_len)
2966 goto out;
2967 }
2968
Yan, Zhengc2167752009-11-12 09:34:21 +00002969 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002970 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002971
2972 /*
2973 * For mwrite(mmap + memset to write) case, we still reserve
2974 * space for NOCOW range.
2975 * As NOCOW won't cause a new delayed ref, just free the space
2976 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08002977 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
Qu Wenruo94ed9382015-09-08 17:25:56 +08002978 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002979 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2980 if (nolock)
2981 trans = btrfs_join_transaction_nolock(root);
2982 else
2983 trans = btrfs_join_transaction(root);
2984 if (IS_ERR(trans)) {
2985 ret = PTR_ERR(trans);
2986 trans = NULL;
2987 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002988 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04002989 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002990 ret = btrfs_update_inode_fallback(trans, root, inode);
2991 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002992 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002993 goto out;
2994 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002995
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002996 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002997 lock_extent_bits(io_tree, ordered_extent->file_offset,
2998 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002999 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003000
Liu Bo38c227d2013-01-29 03:18:40 +00003001 ret = test_range_bit(io_tree, ordered_extent->file_offset,
3002 ordered_extent->file_offset + ordered_extent->len - 1,
Liu Bo452e62b2017-05-26 17:44:23 -06003003 EXTENT_DEFRAG, 0, cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00003004 if (ret) {
3005 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05003006 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00003007 /* the inode is shared */
3008 new = record_old_file_extents(inode, ordered_extent);
3009
3010 clear_extent_bit(io_tree, ordered_extent->file_offset,
3011 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01003012 EXTENT_DEFRAG, 0, 0, &cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00003013 }
3014
Josef Bacik0cb59c92010-07-02 12:14:14 -04003015 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003016 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003017 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003018 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003019 if (IS_ERR(trans)) {
3020 ret = PTR_ERR(trans);
3021 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003022 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003023 }
Chris Masona79b7d42014-05-22 16:18:52 -07003024
Josef Bacik69fe2d72017-10-19 14:15:57 -04003025 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003026
Chris Masonc8b97812008-10-29 14:49:59 -04003027 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003028 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003029 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003030 BUG_ON(compress_type);
Justin Maggardb430b772017-10-30 15:29:10 -07003031 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3032 ordered_extent->len);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02003033 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04003034 ordered_extent->file_offset,
3035 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003036 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003037 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003038 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04003039 ret = insert_reserved_file_extent(trans, inode,
3040 ordered_extent->file_offset,
3041 ordered_extent->start,
3042 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04003043 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08003044 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04003045 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08003046 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003047 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08003048 ordered_extent->start,
3049 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003050 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003051 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3052 ordered_extent->file_offset, ordered_extent->len,
3053 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003054 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003055 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003056 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003057 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003058
Nikolay Borisovac01f262018-01-08 10:59:43 +02003059 ret = add_pending_csums(trans, inode, &ordered_extent->list);
3060 if (ret) {
3061 btrfs_abort_transaction(trans, ret);
3062 goto out;
3063 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003064
Josef Bacik6c760c02012-11-09 10:53:21 -05003065 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3066 ret = btrfs_update_inode_fallback(trans, root, inode);
3067 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003068 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003069 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003070 }
3071 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003072out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003073 if (range_locked || clear_new_delalloc_bytes) {
3074 unsigned int clear_bits = 0;
3075
3076 if (range_locked)
3077 clear_bits |= EXTENT_LOCKED;
3078 if (clear_new_delalloc_bytes)
3079 clear_bits |= EXTENT_DELALLOC_NEW;
3080 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3081 ordered_extent->file_offset,
3082 ordered_extent->file_offset +
3083 ordered_extent->len - 1,
3084 clear_bits,
3085 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
David Sterbaae0f1622017-10-31 16:37:52 +01003086 0, &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003087 }
3088
Miao Xiea698d0752012-09-20 01:51:59 -06003089 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003090 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003091
Josef Bacik77cef2e2013-08-29 13:57:21 -04003092 if (ret || truncated) {
3093 u64 start, end;
3094
3095 if (truncated)
3096 start = ordered_extent->file_offset + logical_len;
3097 else
3098 start = ordered_extent->file_offset;
3099 end = ordered_extent->file_offset + ordered_extent->len - 1;
David Sterbaf08dc362017-10-31 17:02:39 +01003100 clear_extent_uptodate(io_tree, start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003101
3102 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003103 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003104
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003105 /*
3106 * If the ordered extent had an IOERR or something else went
3107 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003108 * back to the allocator. We only free the extent in the
3109 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003110 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003111 if ((ret || !logical_len) &&
3112 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003113 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003114 btrfs_free_reserved_extent(fs_info,
3115 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003116 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003117 }
3118
3119
Josef Bacik5fd02042012-05-02 14:00:54 -04003120 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003121 * This needs to be done to make sure anybody waiting knows we are done
3122 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003123 */
3124 btrfs_remove_ordered_extent(inode, ordered_extent);
3125
Liu Bo38c227d2013-01-29 03:18:40 +00003126 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003127 if (new) {
3128 if (ret) {
3129 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003130 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003131 } else {
3132 relink_file_extents(new);
3133 }
3134 }
Liu Bo38c227d2013-01-29 03:18:40 +00003135
Chris Masone6dcd2d2008-07-17 12:53:50 -04003136 /* once for us */
3137 btrfs_put_ordered_extent(ordered_extent);
3138 /* once for the tree */
3139 btrfs_put_ordered_extent(ordered_extent);
3140
Ethan Liene73e81b2018-05-28 13:48:20 +08003141 /* Try to release some metadata so we don't get an OOM but don't wait */
3142 btrfs_btree_balance_dirty_nodelay(fs_info);
3143
Josef Bacik5fd02042012-05-02 14:00:54 -04003144 return ret;
3145}
3146
3147static void finish_ordered_fn(struct btrfs_work *work)
3148{
3149 struct btrfs_ordered_extent *ordered_extent;
3150 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3151 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003152}
3153
David Sterbac3988d62017-02-17 15:18:32 +01003154static void btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003155 struct extent_state *state, int uptodate)
3156{
Josef Bacik5fd02042012-05-02 14:00:54 -04003157 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003158 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003159 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003160 struct btrfs_workqueue *wq;
3161 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003162
liubo1abe9b82011-03-24 11:18:59 +00003163 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3164
Chris Mason8b62b722009-09-02 16:53:46 -04003165 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003166 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3167 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003168 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003169
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003170 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003171 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003172 func = btrfs_freespace_write_helper;
3173 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003174 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003175 func = btrfs_endio_write_helper;
3176 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003177
Liu Bo9e0af232014-08-15 23:36:53 +08003178 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3179 NULL);
3180 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003181}
3182
Miao Xiedc380ae2014-09-12 18:43:55 +08003183static int __readpage_endio_check(struct inode *inode,
3184 struct btrfs_io_bio *io_bio,
3185 int icsum, struct page *page,
3186 int pgoff, u64 start, size_t len)
3187{
3188 char *kaddr;
3189 u32 csum_expected;
3190 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003191
3192 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3193
3194 kaddr = kmap_atomic(page);
3195 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003196 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003197 if (csum != csum_expected)
3198 goto zeroit;
3199
3200 kunmap_atomic(kaddr);
3201 return 0;
3202zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003203 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003204 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003205 memset(kaddr + pgoff, 1, len);
3206 flush_dcache_page(page);
3207 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003208 return -EIO;
3209}
3210
Chris Masond352ac62008-09-29 15:18:18 -04003211/*
Chris Masond352ac62008-09-29 15:18:18 -04003212 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003213 * if there's a match, we allow the bio to finish. If not, the code in
3214 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003215 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003216static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3217 u64 phy_offset, struct page *page,
3218 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003219{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003220 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003221 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003222 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003223 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003224
Chris Masond20f7042008-12-08 16:58:54 -05003225 if (PageChecked(page)) {
3226 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003227 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003228 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003229
3230 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003231 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003232
Yan Zheng17d217f2008-12-12 10:03:38 -05003233 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003234 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003235 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003236 return 0;
3237 }
3238
Miao Xiefacc8a222013-07-25 19:22:34 +08003239 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003240 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3241 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003242}
Chris Masonb888db22007-08-27 16:49:44 -04003243
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003244/*
3245 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3246 *
3247 * @inode: The inode we want to perform iput on
3248 *
3249 * This function uses the generic vfs_inode::i_count to track whether we should
3250 * just decrement it (in case it's > 1) or if this is the last iput then link
3251 * the inode to the delayed iput machinery. Delayed iputs are processed at
3252 * transaction commit time/superblock commit/cleaner kthread.
3253 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003254void btrfs_add_delayed_iput(struct inode *inode)
3255{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003256 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003257 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003258
3259 if (atomic_add_unless(&inode->i_count, -1, 1))
3260 return;
3261
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003262 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003263 ASSERT(list_empty(&binode->delayed_iput));
3264 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003265 spin_unlock(&fs_info->delayed_iput_lock);
3266}
3267
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003268void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003269{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003270
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003271 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003272 while (!list_empty(&fs_info->delayed_iputs)) {
3273 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003274
David Sterba8089fe62015-11-19 14:15:51 +01003275 inode = list_first_entry(&fs_info->delayed_iputs,
3276 struct btrfs_inode, delayed_iput);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003277 list_del_init(&inode->delayed_iput);
David Sterba8089fe62015-11-19 14:15:51 +01003278 spin_unlock(&fs_info->delayed_iput_lock);
3279 iput(&inode->vfs_inode);
3280 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003281 }
David Sterba8089fe62015-11-19 14:15:51 +01003282 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003283}
3284
Yan, Zhengd68fc572010-05-16 10:49:58 -04003285/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003286 * This creates an orphan entry for the given inode in case something goes wrong
3287 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04003288 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003289int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07003290 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003291{
Yan, Zhengd68fc572010-05-16 10:49:58 -04003292 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003293
Omar Sandoval27919062018-05-11 13:13:37 -07003294 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3295 if (ret && ret != -EEXIST) {
3296 btrfs_abort_transaction(trans, ret);
3297 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003298 }
3299
Yan, Zhengd68fc572010-05-16 10:49:58 -04003300 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003301}
3302
3303/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003304 * We have done the delete so we can go ahead and remove the orphan item for
3305 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04003306 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003307static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003308 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003309{
Omar Sandoval27919062018-05-11 13:13:37 -07003310 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003311}
3312
3313/*
3314 * this cleans up any orphans that may be left on the list from the last use
3315 * of this root.
3316 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003317int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003318{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003319 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003320 struct btrfs_path *path;
3321 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003322 struct btrfs_key key, found_key;
3323 struct btrfs_trans_handle *trans;
3324 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003325 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003326 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003327
Yan, Zhengd68fc572010-05-16 10:49:58 -04003328 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003329 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003330
3331 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003332 if (!path) {
3333 ret = -ENOMEM;
3334 goto out;
3335 }
David Sterbae4058b52015-11-27 16:31:35 +01003336 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003337
3338 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003339 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003340 key.offset = (u64)-1;
3341
Josef Bacik7b128762008-07-24 12:17:14 -04003342 while (1) {
3343 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003344 if (ret < 0)
3345 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003346
3347 /*
3348 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003349 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003350 * find the key and see if we have stuff that matches
3351 */
3352 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003353 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003354 if (path->slots[0] == 0)
3355 break;
3356 path->slots[0]--;
3357 }
3358
3359 /* pull out the item */
3360 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003361 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3362
3363 /* make sure the item matches what we want */
3364 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3365 break;
David Sterba962a2982014-06-04 18:41:45 +02003366 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003367 break;
3368
3369 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003370 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003371
3372 /*
3373 * this is where we are basically btrfs_lookup, without the
3374 * crossing root thing. we store the inode number in the
3375 * offset of the orphan item.
3376 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003377
3378 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003379 btrfs_err(fs_info,
3380 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003381 ret = -EINVAL;
3382 goto out;
3383 }
3384
3385 last_objectid = found_key.offset;
3386
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003387 found_key.objectid = found_key.offset;
3388 found_key.type = BTRFS_INODE_ITEM_KEY;
3389 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003390 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303391 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003392 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003393 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003394
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003395 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003396 struct btrfs_root *dead_root;
3397 struct btrfs_fs_info *fs_info = root->fs_info;
3398 int is_dead_root = 0;
3399
3400 /*
3401 * this is an orphan in the tree root. Currently these
3402 * could come from 2 sources:
3403 * a) a snapshot deletion in progress
3404 * b) a free space cache inode
3405 * We need to distinguish those two, as the snapshot
3406 * orphan must not get deleted.
3407 * find_dead_roots already ran before us, so if this
3408 * is a snapshot deletion, we should find the root
3409 * in the dead_roots list
3410 */
3411 spin_lock(&fs_info->trans_lock);
3412 list_for_each_entry(dead_root, &fs_info->dead_roots,
3413 root_list) {
3414 if (dead_root->root_key.objectid ==
3415 found_key.objectid) {
3416 is_dead_root = 1;
3417 break;
3418 }
3419 }
3420 spin_unlock(&fs_info->trans_lock);
3421 if (is_dead_root) {
3422 /* prevent this orphan from being found again */
3423 key.offset = found_key.objectid - 1;
3424 continue;
3425 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003426
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003427 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003428
Josef Bacika8c9e572011-09-21 16:55:59 -04003429 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003430 * If we have an inode with links, there are a couple of
3431 * possibilities. Old kernels (before v3.12) used to create an
3432 * orphan item for truncate indicating that there were possibly
3433 * extent items past i_size that needed to be deleted. In v3.12,
3434 * truncate was changed to update i_size in sync with the extent
3435 * items, but the (useless) orphan item was still created. Since
3436 * v4.18, we don't create the orphan item for truncate at all.
3437 *
3438 * So, this item could mean that we need to do a truncate, but
3439 * only if this filesystem was last used on a pre-v3.12 kernel
3440 * and was not cleanly unmounted. The odds of that are quite
3441 * slim, and it's a pain to do the truncate now, so just delete
3442 * the orphan item.
3443 *
3444 * It's also possible that this orphan item was supposed to be
3445 * deleted but wasn't. The inode number may have been reused,
3446 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003447 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003448 if (ret == -ENOENT || inode->i_nlink) {
3449 if (!ret)
3450 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003451 trans = btrfs_start_transaction(root, 1);
3452 if (IS_ERR(trans)) {
3453 ret = PTR_ERR(trans);
3454 goto out;
3455 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003456 btrfs_debug(fs_info, "auto deleting %Lu",
3457 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003458 ret = btrfs_del_orphan_item(trans, root,
3459 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003460 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003461 if (ret)
3462 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003463 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003464 }
Josef Bacik7b128762008-07-24 12:17:14 -04003465
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003466 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003467
3468 /* this will do delete_inode and everything for us */
3469 iput(inode);
3470 }
Miao Xie3254c872011-11-10 20:45:05 -05003471 /* release the path since we're done with it */
3472 btrfs_release_path(path);
3473
Yan, Zhengd68fc572010-05-16 10:49:58 -04003474 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3475
Omar Sandovala575cee2018-05-11 13:13:38 -07003476 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003477 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003478 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003479 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003480 }
Josef Bacik7b128762008-07-24 12:17:14 -04003481
3482 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003483 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003484
3485out:
3486 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003487 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003488 btrfs_free_path(path);
3489 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003490}
3491
Chris Masond352ac62008-09-29 15:18:18 -04003492/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003493 * very simple check to peek ahead in the leaf looking for xattrs. If we
3494 * don't find any xattrs, we know there can't be any acls.
3495 *
3496 * slot is the slot the inode is in, objectid is the objectid of the inode
3497 */
3498static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003499 int slot, u64 objectid,
3500 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003501{
3502 u32 nritems = btrfs_header_nritems(leaf);
3503 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003504 static u64 xattr_access = 0;
3505 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003506 int scanned = 0;
3507
Josef Bacikf23b5a52013-06-19 10:16:26 -04003508 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003509 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3510 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3511 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3512 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003513 }
3514
Chris Mason46a53cc2009-04-27 11:47:50 -04003515 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003516 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003517 while (slot < nritems) {
3518 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3519
3520 /* we found a different objectid, there must not be acls */
3521 if (found_key.objectid != objectid)
3522 return 0;
3523
3524 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003525 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003526 if (*first_xattr_slot == -1)
3527 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003528 if (found_key.offset == xattr_access ||
3529 found_key.offset == xattr_default)
3530 return 1;
3531 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003532
3533 /*
3534 * we found a key greater than an xattr key, there can't
3535 * be any acls later on
3536 */
3537 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3538 return 0;
3539
3540 slot++;
3541 scanned++;
3542
3543 /*
3544 * it goes inode, inode backrefs, xattrs, extents,
3545 * so if there are a ton of hard links to an inode there can
3546 * be a lot of backrefs. Don't waste time searching too hard,
3547 * this is just an optimization
3548 */
3549 if (scanned >= 8)
3550 break;
3551 }
3552 /* we hit the end of the leaf before we found an xattr or
3553 * something larger than an xattr. We have to assume the inode
3554 * has acls
3555 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003556 if (*first_xattr_slot == -1)
3557 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003558 return 1;
3559}
3560
3561/*
Chris Masond352ac62008-09-29 15:18:18 -04003562 * read an inode from the btree into the in-memory inode
3563 */
Filipe Manana67710892016-06-06 11:51:25 +01003564static int btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003565{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003566 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04003567 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003568 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003569 struct btrfs_inode_item *inode_item;
3570 struct btrfs_root *root = BTRFS_I(inode)->root;
3571 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003572 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003573 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003574 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003575 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003576 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003577 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003578
3579 ret = btrfs_fill_inode(inode, &rdev);
3580 if (!ret)
3581 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003582
3583 path = btrfs_alloc_path();
Al Virof5b3a412018-07-29 23:04:51 +01003584 if (!path)
3585 return -ENOMEM;
Mark Fasheh1748f842011-07-12 11:25:31 -07003586
Chris Mason39279cc2007-06-12 06:35:45 -04003587 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003588
Chris Mason39279cc2007-06-12 06:35:45 -04003589 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003590 if (ret) {
Al Virof5b3a412018-07-29 23:04:51 +01003591 btrfs_free_path(path);
3592 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003593 }
Chris Mason39279cc2007-06-12 06:35:45 -04003594
Chris Mason5f39d392007-10-15 16:14:19 -04003595 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003596
3597 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003598 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003599
Chris Mason5f39d392007-10-15 16:14:19 -04003600 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3601 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003602 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003603 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003604 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3605 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003606 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003607
David Sterbaa937b972014-12-12 17:39:12 +01003608 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3609 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003610
David Sterbaa937b972014-12-12 17:39:12 +01003611 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3612 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003613
David Sterbaa937b972014-12-12 17:39:12 +01003614 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3615 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003616
chandan r9cc97d62012-07-04 12:48:07 +05303617 BTRFS_I(inode)->i_otime.tv_sec =
3618 btrfs_timespec_sec(leaf, &inode_item->otime);
3619 BTRFS_I(inode)->i_otime.tv_nsec =
3620 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003621
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003622 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003623 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003624 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3625
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003626 inode_set_iversion_queried(inode,
3627 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003628 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003629 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003630 rdev = btrfs_inode_rdev(leaf, inode_item);
3631
Josef Bacikaec74772008-07-24 12:12:38 -04003632 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003633 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003634
3635cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003636 /*
3637 * If we were modified in the current generation and evicted from memory
3638 * and then re-read we need to do a full sync since we don't have any
3639 * idea about which extents were modified before we were evicted from
3640 * cache.
3641 *
3642 * This is required for both inode re-read from disk and delayed inode
3643 * in delayed_nodes_tree.
3644 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003645 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003646 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3647 &BTRFS_I(inode)->runtime_flags);
3648
Filipe Mananabde6c242015-07-24 00:00:19 +01003649 /*
3650 * We don't persist the id of the transaction where an unlink operation
3651 * against the inode was last made. So here we assume the inode might
3652 * have been evicted, and therefore the exact value of last_unlink_trans
3653 * lost, and set it to last_trans to avoid metadata inconsistencies
3654 * between the inode and its parent if the inode is fsync'ed and the log
3655 * replayed. For example, in the scenario:
3656 *
3657 * touch mydir/foo
3658 * ln mydir/foo mydir/bar
3659 * sync
3660 * unlink mydir/bar
3661 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3662 * xfs_io -c fsync mydir/foo
3663 * <power failure>
3664 * mount fs, triggers fsync log replay
3665 *
3666 * We must make sure that when we fsync our inode foo we also log its
3667 * parent inode, otherwise after log replay the parent still has the
3668 * dentry with the "bar" name but our inode foo has a link count of 1
3669 * and doesn't have an inode ref with the name "bar" anymore.
3670 *
3671 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003672 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003673 * transaction commits on fsync if our inode is a directory, or if our
3674 * inode is not a directory, logging its parent unnecessarily.
3675 */
3676 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3677
Miao Xie67de1172013-12-26 13:07:06 +08003678 path->slots[0]++;
3679 if (inode->i_nlink != 1 ||
3680 path->slots[0] >= btrfs_header_nritems(leaf))
3681 goto cache_acl;
3682
3683 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003684 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003685 goto cache_acl;
3686
3687 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3688 if (location.type == BTRFS_INODE_REF_KEY) {
3689 struct btrfs_inode_ref *ref;
3690
3691 ref = (struct btrfs_inode_ref *)ptr;
3692 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3693 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3694 struct btrfs_inode_extref *extref;
3695
3696 extref = (struct btrfs_inode_extref *)ptr;
3697 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3698 extref);
3699 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003700cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003701 /*
3702 * try to precache a NULL acl entry for files that don't have
3703 * any xattrs or acls
3704 */
Li Zefan33345d012011-04-20 10:31:50 +08003705 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003706 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003707 if (first_xattr_slot != -1) {
3708 path->slots[0] = first_xattr_slot;
3709 ret = btrfs_load_inode_props(inode, path);
3710 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003711 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003712 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003713 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003714 root->root_key.objectid, ret);
3715 }
3716 btrfs_free_path(path);
3717
Al Viro72c04902009-06-24 16:58:48 -04003718 if (!maybe_acls)
3719 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003720
Chris Mason39279cc2007-06-12 06:35:45 -04003721 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003722 case S_IFREG:
3723 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003724 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003725 inode->i_fop = &btrfs_file_operations;
3726 inode->i_op = &btrfs_file_inode_operations;
3727 break;
3728 case S_IFDIR:
3729 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003730 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003731 break;
3732 case S_IFLNK:
3733 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003734 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003735 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003736 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003737 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003738 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003739 init_special_inode(inode, inode->i_mode, rdev);
3740 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003741 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003742
David Sterba7b6a2212018-03-26 18:40:21 +02003743 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003744 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003745}
3746
Chris Masond352ac62008-09-29 15:18:18 -04003747/*
3748 * given a leaf and an inode, copy the inode fields into the leaf
3749 */
Chris Masone02119d2008-09-05 16:13:11 -04003750static void fill_inode_item(struct btrfs_trans_handle *trans,
3751 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003752 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003753 struct inode *inode)
3754{
Liu Bo51fab692012-12-27 09:01:21 +00003755 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003756
Liu Bo51fab692012-12-27 09:01:21 +00003757 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003758
Liu Bo51fab692012-12-27 09:01:21 +00003759 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3760 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3761 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3762 &token);
3763 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3764 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003765
David Sterbaa937b972014-12-12 17:39:12 +01003766 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003767 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003768 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003769 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003770
David Sterbaa937b972014-12-12 17:39:12 +01003771 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003772 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003773 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003774 inode->i_mtime.tv_nsec, &token);
3775
David Sterbaa937b972014-12-12 17:39:12 +01003776 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003777 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003778 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003779 inode->i_ctime.tv_nsec, &token);
3780
chandan r9cc97d62012-07-04 12:48:07 +05303781 btrfs_set_token_timespec_sec(leaf, &item->otime,
3782 BTRFS_I(inode)->i_otime.tv_sec, &token);
3783 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3784 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3785
Liu Bo51fab692012-12-27 09:01:21 +00003786 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3787 &token);
3788 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3789 &token);
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003790 btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode),
3791 &token);
Liu Bo51fab692012-12-27 09:01:21 +00003792 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3793 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3794 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3795 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003796}
3797
Chris Masond352ac62008-09-29 15:18:18 -04003798/*
3799 * copy everything in the in-memory inode into the btree.
3800 */
Chris Mason21151332011-11-10 20:39:08 -05003801static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003802 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003803{
3804 struct btrfs_inode_item *inode_item;
3805 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003806 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003807 int ret;
3808
3809 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003810 if (!path)
3811 return -ENOMEM;
3812
Chris Masonb9473432009-03-13 11:00:37 -04003813 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003814 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3815 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003816 if (ret) {
3817 if (ret > 0)
3818 ret = -ENOENT;
3819 goto failed;
3820 }
3821
Chris Mason5f39d392007-10-15 16:14:19 -04003822 leaf = path->nodes[0];
3823 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003824 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003825
Chris Masone02119d2008-09-05 16:13:11 -04003826 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003827 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003828 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003829 ret = 0;
3830failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003831 btrfs_free_path(path);
3832 return ret;
3833}
3834
Chris Masond352ac62008-09-29 15:18:18 -04003835/*
Chris Mason21151332011-11-10 20:39:08 -05003836 * copy everything in the in-memory inode into the btree.
3837 */
3838noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3839 struct btrfs_root *root, struct inode *inode)
3840{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003841 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003842 int ret;
3843
3844 /*
3845 * If the inode is a free space inode, we can deadlock during commit
3846 * if we put it into the delayed code.
3847 *
3848 * The data relocation inode should also be directly updated
3849 * without delay
3850 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003851 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003852 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003853 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003854 btrfs_update_root_times(trans, root);
3855
Chris Mason21151332011-11-10 20:39:08 -05003856 ret = btrfs_delayed_update_inode(trans, root, inode);
3857 if (!ret)
3858 btrfs_set_inode_last_trans(trans, inode);
3859 return ret;
3860 }
3861
3862 return btrfs_update_inode_item(trans, root, inode);
3863}
3864
Josef Bacikbe6aef62012-10-22 15:43:12 -04003865noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3866 struct btrfs_root *root,
3867 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003868{
3869 int ret;
3870
3871 ret = btrfs_update_inode(trans, root, inode);
3872 if (ret == -ENOSPC)
3873 return btrfs_update_inode_item(trans, root, inode);
3874 return ret;
3875}
3876
3877/*
Chris Masond352ac62008-09-29 15:18:18 -04003878 * unlink helper that gets used here in inode.c and in the tree logging
3879 * recovery code. It remove a link in a directory with a given name, and
3880 * also drops the back refs in the inode to the directory
3881 */
Al Viro92986792011-03-04 17:14:37 +00003882static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3883 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003884 struct btrfs_inode *dir,
3885 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003886 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003887{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003888 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003889 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003890 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003891 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003892 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003893 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003894 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003895 u64 ino = btrfs_ino(inode);
3896 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003897
3898 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003899 if (!path) {
3900 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003901 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003902 }
3903
Chris Masonb9473432009-03-13 11:00:37 -04003904 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003905 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003906 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08003907 if (IS_ERR_OR_NULL(di)) {
3908 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003909 goto err;
3910 }
Chris Mason5f39d392007-10-15 16:14:19 -04003911 leaf = path->nodes[0];
3912 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003913 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003914 if (ret)
3915 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003916 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003917
Miao Xie67de1172013-12-26 13:07:06 +08003918 /*
3919 * If we don't have dir index, we have to get it by looking up
3920 * the inode ref, since we get the inode ref, remove it directly,
3921 * it is unnecessary to do delayed deletion.
3922 *
3923 * But if we have dir index, needn't search inode ref to get it.
3924 * Since the inode ref is close to the inode item, it is better
3925 * that we delay to delete it, and just do this deletion when
3926 * we update the inode item.
3927 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003928 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08003929 ret = btrfs_delayed_delete_inode_ref(inode);
3930 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003931 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003932 goto skip_backref;
3933 }
3934 }
3935
Li Zefan33345d012011-04-20 10:31:50 +08003936 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3937 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003938 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003939 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003940 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003941 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003942 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003943 goto err;
3944 }
Miao Xie67de1172013-12-26 13:07:06 +08003945skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08003946 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003947 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003948 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003949 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003950 }
Chris Mason39279cc2007-06-12 06:35:45 -04003951
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003952 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3953 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003954 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003955 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003956 goto err;
3957 }
Chris Masone02119d2008-09-05 16:13:11 -04003958
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003959 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3960 index);
Chris Mason6418c962010-10-30 07:34:24 -04003961 if (ret == -ENOENT)
3962 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003963 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003964 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003965err:
3966 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003967 if (ret)
3968 goto out;
3969
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003970 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003971 inode_inc_iversion(&inode->vfs_inode);
3972 inode_inc_iversion(&dir->vfs_inode);
3973 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3974 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3975 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003976out:
Chris Mason39279cc2007-06-12 06:35:45 -04003977 return ret;
3978}
3979
Al Viro92986792011-03-04 17:14:37 +00003980int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3981 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003982 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003983 const char *name, int name_len)
3984{
3985 int ret;
3986 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3987 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003988 drop_nlink(&inode->vfs_inode);
3989 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00003990 }
3991 return ret;
3992}
Yan, Zhenga22285a2010-05-16 10:48:46 -04003993
3994/*
3995 * helper to start transaction for unlink and rmdir.
3996 *
Josef Bacikd52be812013-05-29 14:54:47 -04003997 * unlink and rmdir are special in btrfs, they do not always free space, so
3998 * if we cannot make our reservations the normal way try and see if there is
3999 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4000 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004001 */
Josef Bacikd52be812013-05-29 14:54:47 -04004002static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004003{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004004 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004005
Josef Bacike70bea52011-10-11 14:18:24 -04004006 /*
4007 * 1 for the possible orphan item
4008 * 1 for the dir item
4009 * 1 for the dir index
4010 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004011 * 1 for the inode
4012 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004013 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004014}
4015
Chris Mason39279cc2007-06-12 06:35:45 -04004016static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4017{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004018 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004019 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004020 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004021 int ret;
4022
Josef Bacikd52be812013-05-29 14:54:47 -04004023 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004024 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004025 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004026
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004027 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4028 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004029
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004030 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4031 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4032 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004033 if (ret)
4034 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004035
Yan, Zhenga22285a2010-05-16 10:48:46 -04004036 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004037 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004038 if (ret)
4039 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004040 }
Josef Bacik7b128762008-07-24 12:17:14 -04004041
Tsutomu Itohb5324022011-07-19 07:27:20 +00004042out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004043 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004044 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004045 return ret;
4046}
4047
Misono Tomohirof60a2362018-04-18 11:34:52 +09004048static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Lu Fengqi401b3b12018-08-01 11:32:30 +08004049 struct inode *dir, u64 objectid,
4050 const char *name, int name_len)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004051{
Lu Fengqi401b3b12018-08-01 11:32:30 +08004052 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004053 struct btrfs_path *path;
4054 struct extent_buffer *leaf;
4055 struct btrfs_dir_item *di;
4056 struct btrfs_key key;
4057 u64 index;
4058 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004059 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004060
4061 path = btrfs_alloc_path();
4062 if (!path)
4063 return -ENOMEM;
4064
Li Zefan33345d012011-04-20 10:31:50 +08004065 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004066 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004067 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08004068 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004069 goto out;
4070 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004071
4072 leaf = path->nodes[0];
4073 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4074 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4075 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004076 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004077 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004078 goto out;
4079 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004080 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004081
Lu Fengqi3ee1c552018-08-01 11:32:28 +08004082 ret = btrfs_del_root_ref(trans, objectid, root->root_key.objectid,
4083 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004084 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004085 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004086 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004087 goto out;
4088 }
Li Zefan33345d012011-04-20 10:31:50 +08004089 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004090 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004091 if (IS_ERR_OR_NULL(di)) {
4092 if (!di)
4093 ret = -ENOENT;
4094 else
4095 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004096 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004097 goto out;
4098 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004099
4100 leaf = path->nodes[0];
4101 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004102 index = key.offset;
4103 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004104 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004105
Lu Fengqi9add2942018-08-01 11:32:26 +08004106 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004107 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004108 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004109 goto out;
4110 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004111
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004112 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004113 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004114 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004115 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004116 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004117 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004118out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004119 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004120 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004121}
4122
Misono Tomohiroec42f162018-04-18 11:34:13 +09004123/*
4124 * Helper to check if the subvolume references other subvolumes or if it's
4125 * default.
4126 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09004127static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09004128{
4129 struct btrfs_fs_info *fs_info = root->fs_info;
4130 struct btrfs_path *path;
4131 struct btrfs_dir_item *di;
4132 struct btrfs_key key;
4133 u64 dir_id;
4134 int ret;
4135
4136 path = btrfs_alloc_path();
4137 if (!path)
4138 return -ENOMEM;
4139
4140 /* Make sure this root isn't set as the default subvol */
4141 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4142 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4143 dir_id, "default", 7, 0);
4144 if (di && !IS_ERR(di)) {
4145 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4146 if (key.objectid == root->root_key.objectid) {
4147 ret = -EPERM;
4148 btrfs_err(fs_info,
4149 "deleting default subvolume %llu is not allowed",
4150 key.objectid);
4151 goto out;
4152 }
4153 btrfs_release_path(path);
4154 }
4155
4156 key.objectid = root->root_key.objectid;
4157 key.type = BTRFS_ROOT_REF_KEY;
4158 key.offset = (u64)-1;
4159
4160 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4161 if (ret < 0)
4162 goto out;
4163 BUG_ON(ret == 0);
4164
4165 ret = 0;
4166 if (path->slots[0] > 0) {
4167 path->slots[0]--;
4168 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4169 if (key.objectid == root->root_key.objectid &&
4170 key.type == BTRFS_ROOT_REF_KEY)
4171 ret = -ENOTEMPTY;
4172 }
4173out:
4174 btrfs_free_path(path);
4175 return ret;
4176}
4177
Nikolay Borisov20a68002018-04-27 14:36:24 +03004178/* Delete all dentries for inodes belonging to the root */
4179static void btrfs_prune_dentries(struct btrfs_root *root)
4180{
4181 struct btrfs_fs_info *fs_info = root->fs_info;
4182 struct rb_node *node;
4183 struct rb_node *prev;
4184 struct btrfs_inode *entry;
4185 struct inode *inode;
4186 u64 objectid = 0;
4187
4188 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4189 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4190
4191 spin_lock(&root->inode_lock);
4192again:
4193 node = root->inode_tree.rb_node;
4194 prev = NULL;
4195 while (node) {
4196 prev = node;
4197 entry = rb_entry(node, struct btrfs_inode, rb_node);
4198
David Sterba37508512018-06-29 10:56:40 +02004199 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004200 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02004201 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004202 node = node->rb_right;
4203 else
4204 break;
4205 }
4206 if (!node) {
4207 while (prev) {
4208 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004209 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03004210 node = prev;
4211 break;
4212 }
4213 prev = rb_next(prev);
4214 }
4215 }
4216 while (node) {
4217 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004218 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03004219 inode = igrab(&entry->vfs_inode);
4220 if (inode) {
4221 spin_unlock(&root->inode_lock);
4222 if (atomic_read(&inode->i_count) > 1)
4223 d_prune_aliases(inode);
4224 /*
4225 * btrfs_drop_inode will have it removed from the inode
4226 * cache when its usage count hits zero.
4227 */
4228 iput(inode);
4229 cond_resched();
4230 spin_lock(&root->inode_lock);
4231 goto again;
4232 }
4233
4234 if (cond_resched_lock(&root->inode_lock))
4235 goto again;
4236
4237 node = rb_next(node);
4238 }
4239 spin_unlock(&root->inode_lock);
4240}
4241
Misono Tomohirof60a2362018-04-18 11:34:52 +09004242int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4243{
4244 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4245 struct btrfs_root *root = BTRFS_I(dir)->root;
4246 struct inode *inode = d_inode(dentry);
4247 struct btrfs_root *dest = BTRFS_I(inode)->root;
4248 struct btrfs_trans_handle *trans;
4249 struct btrfs_block_rsv block_rsv;
4250 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004251 int ret;
4252 int err;
4253
4254 /*
4255 * Don't allow to delete a subvolume with send in progress. This is
4256 * inside the inode lock so the error handling that has to drop the bit
4257 * again is not run concurrently.
4258 */
4259 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08004260 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004261 spin_unlock(&dest->root_item_lock);
4262 btrfs_warn(fs_info,
4263 "attempt to delete subvolume %llu during send",
4264 dest->root_key.objectid);
4265 return -EPERM;
4266 }
Lu Fengqia7176f72018-08-04 21:10:53 +08004267 root_flags = btrfs_root_flags(&dest->root_item);
4268 btrfs_set_root_flags(&dest->root_item,
4269 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4270 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004271
4272 down_write(&fs_info->subvol_sem);
4273
4274 err = may_destroy_subvol(dest);
4275 if (err)
4276 goto out_up_write;
4277
4278 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4279 /*
4280 * One for dir inode,
4281 * two for dir entries,
4282 * two for root ref/backref.
4283 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +08004284 err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004285 if (err)
4286 goto out_up_write;
4287
4288 trans = btrfs_start_transaction(root, 0);
4289 if (IS_ERR(trans)) {
4290 err = PTR_ERR(trans);
4291 goto out_release;
4292 }
4293 trans->block_rsv = &block_rsv;
4294 trans->bytes_reserved = block_rsv.size;
4295
4296 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4297
Lu Fengqi401b3b12018-08-01 11:32:30 +08004298 ret = btrfs_unlink_subvol(trans, dir, dest->root_key.objectid,
4299 dentry->d_name.name, dentry->d_name.len);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004300 if (ret) {
4301 err = ret;
4302 btrfs_abort_transaction(trans, ret);
4303 goto out_end_trans;
4304 }
4305
4306 btrfs_record_root_in_trans(trans, dest);
4307
4308 memset(&dest->root_item.drop_progress, 0,
4309 sizeof(dest->root_item.drop_progress));
4310 dest->root_item.drop_level = 0;
4311 btrfs_set_root_refs(&dest->root_item, 0);
4312
4313 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4314 ret = btrfs_insert_orphan_item(trans,
4315 fs_info->tree_root,
4316 dest->root_key.objectid);
4317 if (ret) {
4318 btrfs_abort_transaction(trans, ret);
4319 err = ret;
4320 goto out_end_trans;
4321 }
4322 }
4323
Lu Fengqid1957792018-05-29 15:01:54 +08004324 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004325 BTRFS_UUID_KEY_SUBVOL,
4326 dest->root_key.objectid);
4327 if (ret && ret != -ENOENT) {
4328 btrfs_abort_transaction(trans, ret);
4329 err = ret;
4330 goto out_end_trans;
4331 }
4332 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004333 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004334 dest->root_item.received_uuid,
4335 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4336 dest->root_key.objectid);
4337 if (ret && ret != -ENOENT) {
4338 btrfs_abort_transaction(trans, ret);
4339 err = ret;
4340 goto out_end_trans;
4341 }
4342 }
4343
4344out_end_trans:
4345 trans->block_rsv = NULL;
4346 trans->bytes_reserved = 0;
4347 ret = btrfs_end_transaction(trans);
4348 if (ret && !err)
4349 err = ret;
4350 inode->i_flags |= S_DEAD;
4351out_release:
4352 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
4353out_up_write:
4354 up_write(&fs_info->subvol_sem);
4355 if (err) {
4356 spin_lock(&dest->root_item_lock);
4357 root_flags = btrfs_root_flags(&dest->root_item);
4358 btrfs_set_root_flags(&dest->root_item,
4359 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4360 spin_unlock(&dest->root_item_lock);
4361 } else {
4362 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004363 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004364 ASSERT(dest->send_in_progress == 0);
4365
4366 /* the last ref */
4367 if (dest->ino_cache_inode) {
4368 iput(dest->ino_cache_inode);
4369 dest->ino_cache_inode = NULL;
4370 }
4371 }
4372
4373 return err;
4374}
4375
Chris Mason39279cc2007-06-12 06:35:45 -04004376static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4377{
David Howells2b0143b2015-03-17 22:25:59 +00004378 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004379 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004380 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004381 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004382 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004383
David Sterbab3ae2442012-09-13 16:04:34 -06004384 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004385 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004386 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004387 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004388
Josef Bacikd52be812013-05-29 14:54:47 -04004389 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004390 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004391 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004392
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004393 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Lu Fengqi401b3b12018-08-01 11:32:30 +08004394 err = btrfs_unlink_subvol(trans, dir,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004395 BTRFS_I(inode)->location.objectid,
4396 dentry->d_name.name,
4397 dentry->d_name.len);
4398 goto out;
4399 }
4400
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004401 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004402 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004403 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004404
Filipe Manana44f714d2016-06-06 16:11:13 +01004405 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4406
Chris Mason39279cc2007-06-12 06:35:45 -04004407 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004408 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4409 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4410 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004411 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004412 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004413 /*
4414 * Propagate the last_unlink_trans value of the deleted dir to
4415 * its parent directory. This is to prevent an unrecoverable
4416 * log tree in the case we do something like this:
4417 * 1) create dir foo
4418 * 2) create snapshot under dir foo
4419 * 3) delete the snapshot
4420 * 4) rmdir foo
4421 * 5) mkdir foo
4422 * 6) fsync foo or some file inside foo
4423 */
4424 if (last_unlink_trans >= trans->transid)
4425 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4426 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004427out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004428 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004429 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004430
Chris Mason39279cc2007-06-12 06:35:45 -04004431 return err;
4432}
4433
Chris Mason28f75a02015-02-04 06:59:29 -08004434static int truncate_space_check(struct btrfs_trans_handle *trans,
4435 struct btrfs_root *root,
4436 u64 bytes_deleted)
4437{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004438 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004439 int ret;
4440
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004441 /*
4442 * This is only used to apply pressure to the enospc system, we don't
4443 * intend to use this reservation at all.
4444 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004445 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004446 bytes_deleted *= fs_info->nodesize;
4447 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004448 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004449 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004450 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004451 trans->transid,
4452 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004453 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004454 }
Chris Mason28f75a02015-02-04 06:59:29 -08004455 return ret;
4456
4457}
4458
Josef Bacikddfae632017-10-19 14:16:02 -04004459/*
4460 * Return this if we need to call truncate_block for the last bit of the
4461 * truncate.
4462 */
4463#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004464
Chris Mason323ac952008-10-01 19:05:46 -04004465/*
Chris Mason39279cc2007-06-12 06:35:45 -04004466 * this can truncate away extent items, csum items and directory items.
4467 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004468 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004469 *
4470 * csum items that cross the new i_size are truncated to the new size
4471 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004472 *
4473 * min_type is the minimum key type to truncate down to. If set to 0, this
4474 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004475 */
Yan, Zheng80825102009-11-12 09:35:36 +00004476int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4477 struct btrfs_root *root,
4478 struct inode *inode,
4479 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004480{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004481 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004482 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004483 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004484 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004485 struct btrfs_key key;
4486 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004487 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004488 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004489 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004490 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004491 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004492 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004493 int found_extent;
4494 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004495 int pending_del_nr = 0;
4496 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004497 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004498 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004499 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004500 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004501 bool be_nice = false;
4502 bool should_throttle = false;
4503 bool should_end = false;
Yan, Zheng80825102009-11-12 09:35:36 +00004504
4505 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004506
Chris Mason28ed1342014-12-17 09:41:04 -08004507 /*
4508 * for non-free space inodes and ref cows, we want to back off from
4509 * time to time
4510 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004511 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004512 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004513 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004514
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004515 path = btrfs_alloc_path();
4516 if (!path)
4517 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004518 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004519
Josef Bacik5dc562c2012-08-17 13:14:17 -04004520 /*
4521 * We want to drop from the next block forward in case this new size is
4522 * not block aligned since we will be keeping the last block of the
4523 * extent just the way it is.
4524 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004525 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004526 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004527 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004528 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004529 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004530
Miao Xie16cdcec2011-04-22 18:12:22 +08004531 /*
4532 * This function is also used to drop the items in the log tree before
4533 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4534 * it is used to drop the loged items. So we shouldn't kill the delayed
4535 * items.
4536 */
4537 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004538 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004539
Li Zefan33345d012011-04-20 10:31:50 +08004540 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004541 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004542 key.type = (u8)-1;
4543
Chris Mason85e21ba2008-01-29 15:11:36 -05004544search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004545 /*
4546 * with a 16K leaf size and 128MB extents, you can actually queue
4547 * up a huge file in a single leaf. Most of the time that
4548 * bytes_deleted is > 0, it will be huge by the time we get here
4549 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004550 if (be_nice && bytes_deleted > SZ_32M &&
4551 btrfs_should_end_transaction(trans)) {
4552 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004553 goto out;
4554 }
Chris Masond3977122009-01-05 21:25:51 -05004555
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004556 path->leave_spinning = 1;
4557 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4558 if (ret < 0)
4559 goto out;
4560
Chris Mason85e21ba2008-01-29 15:11:36 -05004561 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004562 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004563 /* there are no items in the tree for us to truncate, we're
4564 * done
4565 */
Yan, Zheng80825102009-11-12 09:35:36 +00004566 if (path->slots[0] == 0)
4567 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004568 path->slots[0]--;
4569 }
4570
Chris Masond3977122009-01-05 21:25:51 -05004571 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004572 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004573 leaf = path->nodes[0];
4574 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004575 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004576
Li Zefan33345d012011-04-20 10:31:50 +08004577 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004578 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004579
Chris Mason85e21ba2008-01-29 15:11:36 -05004580 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004581 break;
4582
Chris Mason5f39d392007-10-15 16:14:19 -04004583 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004584 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004585 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004586 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004587 extent_type = btrfs_file_extent_type(leaf, fi);
4588 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004589 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004590 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004591
4592 trace_btrfs_truncate_show_fi_regular(
4593 BTRFS_I(inode), leaf, fi,
4594 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004595 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004596 item_end += btrfs_file_extent_ram_bytes(leaf,
4597 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004598
4599 trace_btrfs_truncate_show_fi_inline(
4600 BTRFS_I(inode), leaf, fi, path->slots[0],
4601 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004602 }
Yan008630c2007-11-07 13:31:09 -05004603 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004604 }
Yan, Zheng80825102009-11-12 09:35:36 +00004605 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004606 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004607 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004608 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004609 break;
4610 if (found_key.offset >= new_size)
4611 del_item = 1;
4612 else
4613 del_item = 0;
4614 }
Chris Mason39279cc2007-06-12 06:35:45 -04004615 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004616 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004617 if (found_type != BTRFS_EXTENT_DATA_KEY)
4618 goto delete;
4619
4620 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004621 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004622 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004623 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004624 u64 orig_num_bytes =
4625 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004626 extent_num_bytes = ALIGN(new_size -
4627 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004628 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004629 btrfs_set_file_extent_num_bytes(leaf, fi,
4630 extent_num_bytes);
4631 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004632 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004633 if (test_bit(BTRFS_ROOT_REF_COWS,
4634 &root->state) &&
4635 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004636 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004637 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004638 } else {
Chris Masondb945352007-10-15 16:15:53 -04004639 extent_num_bytes =
4640 btrfs_file_extent_disk_num_bytes(leaf,
4641 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004642 extent_offset = found_key.offset -
4643 btrfs_file_extent_offset(leaf, fi);
4644
Chris Mason39279cc2007-06-12 06:35:45 -04004645 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004646 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004647 if (extent_start != 0) {
4648 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004649 if (test_bit(BTRFS_ROOT_REF_COWS,
4650 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004651 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004652 }
4653 }
Chris Mason90692182008-02-08 13:49:28 -05004654 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004655 /*
4656 * we can't truncate inline items that have had
4657 * special encodings
4658 */
4659 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004660 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004661 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4662 btrfs_file_extent_compression(leaf, fi) == 0) {
4663 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004664
Josef Bacikddfae632017-10-19 14:16:02 -04004665 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4666 size = btrfs_file_extent_calc_inline_size(size);
4667 btrfs_truncate_item(root->fs_info, path, size, 1);
4668 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004669 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004670 * We have to bail so the last_size is set to
4671 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004672 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004673 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004674 break;
Chris Mason90692182008-02-08 13:49:28 -05004675 }
Josef Bacikddfae632017-10-19 14:16:02 -04004676
4677 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4678 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004679 }
Chris Mason179e29e2007-11-01 11:28:41 -04004680delete:
Josef Bacikddfae632017-10-19 14:16:02 -04004681 if (del_item)
4682 last_size = found_key.offset;
4683 else
4684 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004685 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004686 if (!pending_del_nr) {
4687 /* no pending yet, add ourselves */
4688 pending_del_slot = path->slots[0];
4689 pending_del_nr = 1;
4690 } else if (pending_del_nr &&
4691 path->slots[0] + 1 == pending_del_slot) {
4692 /* hop on the pending chunk */
4693 pending_del_nr++;
4694 pending_del_slot = path->slots[0];
4695 } else {
Chris Masond3977122009-01-05 21:25:51 -05004696 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004697 }
Chris Mason39279cc2007-06-12 06:35:45 -04004698 } else {
4699 break;
4700 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004701 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004702
Miao Xie27cdeb72014-04-02 19:51:05 +08004703 if (found_extent &&
4704 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004705 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004706 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004707 bytes_deleted += extent_num_bytes;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04004708 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004709 extent_num_bytes, 0,
4710 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004711 ino, extent_offset);
Omar Sandoval05522102018-05-11 13:13:31 -07004712 if (ret) {
4713 btrfs_abort_transaction(trans, ret);
4714 break;
4715 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004716 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4717 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004718 trans->delayed_ref_updates * 2,
4719 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004720 if (be_nice) {
4721 if (truncate_space_check(trans, root,
4722 extent_num_bytes)) {
Thomas Meyer897ca812017-10-07 16:02:21 +02004723 should_end = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004724 }
4725 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004726 fs_info))
Thomas Meyer897ca812017-10-07 16:02:21 +02004727 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004728 }
Chris Mason39279cc2007-06-12 06:35:45 -04004729 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004730
Yan, Zheng80825102009-11-12 09:35:36 +00004731 if (found_type == BTRFS_INODE_ITEM_KEY)
4732 break;
4733
4734 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004735 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004736 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004737 if (pending_del_nr) {
4738 ret = btrfs_del_items(trans, root, path,
4739 pending_del_slot,
4740 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004741 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004742 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004743 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004744 }
Yan, Zheng80825102009-11-12 09:35:36 +00004745 pending_del_nr = 0;
4746 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004747 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004748 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004749 unsigned long updates = trans->delayed_ref_updates;
4750 if (updates) {
4751 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004752 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004753 updates * 2);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004754 if (ret)
4755 break;
Josef Bacik12621332015-02-03 07:50:16 -08004756 }
4757 }
Chris Mason28f75a02015-02-04 06:59:29 -08004758 /*
4759 * if we failed to refill our space rsv, bail out
4760 * and let the transaction restart
4761 */
4762 if (should_end) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004763 ret = -EAGAIN;
4764 break;
Chris Mason28f75a02015-02-04 06:59:29 -08004765 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004766 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004767 } else {
4768 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004769 }
Chris Mason39279cc2007-06-12 06:35:45 -04004770 }
Yan, Zheng80825102009-11-12 09:35:36 +00004771out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004772 if (ret >= 0 && pending_del_nr) {
4773 int err;
4774
4775 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004776 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004777 if (err) {
4778 btrfs_abort_transaction(trans, err);
4779 ret = err;
4780 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004781 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004782 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4783 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004784 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004785 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004786 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004787 }
Chris Mason28ed1342014-12-17 09:41:04 -08004788
Chris Mason39279cc2007-06-12 06:35:45 -04004789 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004790
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004791 if (be_nice && bytes_deleted > SZ_32M && (ret >= 0 || ret == -EAGAIN)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004792 unsigned long updates = trans->delayed_ref_updates;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004793 int err;
4794
Chris Mason28ed1342014-12-17 09:41:04 -08004795 if (updates) {
4796 trans->delayed_ref_updates = 0;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004797 err = btrfs_run_delayed_refs(trans, updates * 2);
4798 if (err)
4799 ret = err;
Chris Mason28ed1342014-12-17 09:41:04 -08004800 }
4801 }
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004802 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004803}
4804
Chris Masona52d9a82007-08-27 16:49:44 -04004805/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304806 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004807 * @inode - inode that we're zeroing
4808 * @from - the offset to start zeroing
4809 * @len - the length to zero, 0 to zero the entire range respective to the
4810 * offset
4811 * @front - zero up to the offset instead of from the offset on
4812 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304813 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004814 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004815 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304816int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004817 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004818{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004819 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004820 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004821 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4822 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004823 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004824 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004825 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004826 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004827 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304828 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004829 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004830 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004831 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304832 u64 block_start;
4833 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004834
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004835 if (IS_ALIGNED(offset, blocksize) &&
4836 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004837 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304838
Josef Bacik8b62f872017-10-19 14:15:55 -04004839 block_start = round_down(from, blocksize);
4840 block_end = block_start + blocksize - 1;
4841
Qu Wenruo364ecf32017-02-27 15:10:38 +08004842 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004843 block_start, blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004844 if (ret)
4845 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004846
Chris Mason211c17f2008-05-15 09:13:45 -04004847again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004848 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004849 if (!page) {
Qu Wenruobc42bda2017-02-27 15:10:39 +08004850 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08004851 block_start, blocksize, true);
4852 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, true);
Miao Xieac6a2b32012-12-05 10:56:13 +00004853 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004854 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004855 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004856
Chris Masona52d9a82007-08-27 16:49:44 -04004857 if (!PageUptodate(page)) {
4858 ret = btrfs_readpage(NULL, page);
4859 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004860 if (page->mapping != mapping) {
4861 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004862 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004863 goto again;
4864 }
Chris Masona52d9a82007-08-27 16:49:44 -04004865 if (!PageUptodate(page)) {
4866 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004867 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004868 }
4869 }
Chris Mason211c17f2008-05-15 09:13:45 -04004870 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004871
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304872 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004873 set_page_extent_mapped(page);
4874
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304875 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004876 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304877 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004878 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004879 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004880 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004881 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004882 btrfs_put_ordered_extent(ordered);
4883 goto again;
4884 }
4885
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304886 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004887 EXTENT_DIRTY | EXTENT_DELALLOC |
4888 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01004889 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004890
Filipe Mananae3b8a482017-11-04 00:16:59 +00004891 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004892 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004893 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304894 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004895 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004896 goto out_unlock;
4897 }
4898
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304899 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004900 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304901 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004902 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004903 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304904 memset(kaddr + (block_start - page_offset(page)),
4905 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004906 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304907 memset(kaddr + (block_start - page_offset(page)) + offset,
4908 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004909 flush_dcache_page(page);
4910 kunmap(page);
4911 }
Chris Mason247e7432008-07-17 12:53:51 -04004912 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004913 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004914 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004915
Chris Mason89642222008-07-24 09:41:53 -04004916out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004917 if (ret)
Qu Wenruobc42bda2017-02-27 15:10:39 +08004918 btrfs_delalloc_release_space(inode, data_reserved, block_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08004919 blocksize, true);
4920 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, (ret != 0));
Chris Mason39279cc2007-06-12 06:35:45 -04004921 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004922 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004923out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08004924 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004925 return ret;
4926}
4927
Josef Bacik16e75492013-10-22 12:18:51 -04004928static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4929 u64 offset, u64 len)
4930{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004931 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004932 struct btrfs_trans_handle *trans;
4933 int ret;
4934
4935 /*
4936 * Still need to make sure the inode looks like it's been updated so
4937 * that any holes get logged if we fsync.
4938 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004939 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4940 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004941 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4942 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4943 return 0;
4944 }
4945
4946 /*
4947 * 1 - for the one we're dropping
4948 * 1 - for the one we're adding
4949 * 1 - for updating the inode.
4950 */
4951 trans = btrfs_start_transaction(root, 3);
4952 if (IS_ERR(trans))
4953 return PTR_ERR(trans);
4954
4955 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4956 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004957 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004958 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004959 return ret;
4960 }
4961
David Sterbaf85b7372017-01-20 14:54:07 +01004962 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4963 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004964 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004965 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004966 else
4967 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004968 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004969 return ret;
4970}
4971
Josef Bacik695a0d02011-03-04 15:46:53 -05004972/*
4973 * This function puts in dummy file extents for the area we're creating a hole
4974 * for. So if we are truncating this file to a larger size we need to insert
4975 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4976 * the range between oldsize and size
4977 */
Josef Bacika41ad392011-01-31 15:30:16 -05004978int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004979{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004980 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004981 struct btrfs_root *root = BTRFS_I(inode)->root;
4982 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004983 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004984 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004985 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004986 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4987 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004988 u64 last_byte;
4989 u64 cur_offset;
4990 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004991 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004992
Josef Bacika71754f2013-06-17 17:14:39 -04004993 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304994 * If our size started in the middle of a block we need to zero out the
4995 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004996 * expose stale data.
4997 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304998 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004999 if (err)
5000 return err;
5001
Yan Zheng9036c102008-10-30 14:19:41 -04005002 if (size <= hole_start)
5003 return 0;
5004
Yan Zheng9036c102008-10-30 14:19:41 -04005005 while (1) {
5006 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08005007
David Sterbaff13db42015-12-03 14:30:40 +01005008 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005009 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02005010 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08005011 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04005012 if (!ordered)
5013 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005014 unlock_extent_cached(io_tree, hole_start, block_end - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01005015 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08005016 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04005017 btrfs_put_ordered_extent(ordered);
5018 }
5019
Yan Zheng9036c102008-10-30 14:19:41 -04005020 cur_offset = hole_start;
5021 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02005022 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04005023 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005024 if (IS_ERR(em)) {
5025 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00005026 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005027 break;
5028 }
Yan Zheng9036c102008-10-30 14:19:41 -04005029 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005030 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00005031 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04005032 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04005033 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005034
Josef Bacik16e75492013-10-22 12:18:51 -04005035 err = maybe_insert_hole(root, inode, cur_offset,
5036 hole_size);
5037 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005038 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005039 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005040 cur_offset + hole_size - 1, 0);
5041 hole_em = alloc_extent_map();
5042 if (!hole_em) {
5043 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5044 &BTRFS_I(inode)->runtime_flags);
5045 goto next;
5046 }
5047 hole_em->start = cur_offset;
5048 hole_em->len = hole_size;
5049 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005050
Josef Bacik5dc562c2012-08-17 13:14:17 -04005051 hole_em->block_start = EXTENT_MAP_HOLE;
5052 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005053 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005054 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005055 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005056 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005057 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005058
5059 while (1) {
5060 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005061 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005062 write_unlock(&em_tree->lock);
5063 if (err != -EEXIST)
5064 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005065 btrfs_drop_extent_cache(BTRFS_I(inode),
5066 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005067 cur_offset +
5068 hole_size - 1, 0);
5069 }
5070 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005071 }
Josef Bacik16e75492013-10-22 12:18:51 -04005072next:
Yan Zheng9036c102008-10-30 14:19:41 -04005073 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005074 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005075 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005076 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005077 break;
5078 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005079 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005080 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005081 return err;
5082}
5083
Eric Sandeen3972f262013-01-12 02:57:22 +00005084static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005085{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005086 struct btrfs_root *root = BTRFS_I(inode)->root;
5087 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005088 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005089 loff_t newsize = attr->ia_size;
5090 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005091 int ret;
5092
Eric Sandeen3972f262013-01-12 02:57:22 +00005093 /*
5094 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5095 * special case where we need to update the times despite not having
5096 * these flags set. For all other operations the VFS set these flags
5097 * explicitly if it wants a timestamp update.
5098 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005099 if (newsize != oldsize) {
5100 inode_inc_iversion(inode);
5101 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5102 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005103 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005104 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005105
Josef Bacika41ad392011-01-31 15:30:16 -05005106 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005107 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005108 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005109 * This is to ensure the snapshot captures a fully consistent
5110 * state of this file - if the snapshot captures this expanding
5111 * truncation, it must capture all writes that happened before
5112 * this truncation.
5113 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005114 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005115 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005116 if (ret) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005117 btrfs_end_write_no_snapshotting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005118 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005119 }
Yan, Zheng80825102009-11-12 09:35:36 +00005120
Miao Xief4a2f4c2011-12-14 20:12:01 -05005121 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005122 if (IS_ERR(trans)) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005123 btrfs_end_write_no_snapshotting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005124 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005125 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005126
5127 i_size_write(inode, newsize);
5128 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305129 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005130 ret = btrfs_update_inode(trans, root, inode);
David Sterbaea14b57f2017-06-22 02:19:11 +02005131 btrfs_end_write_no_snapshotting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005132 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005133 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005134
Josef Bacika41ad392011-01-31 15:30:16 -05005135 /*
5136 * We're truncating a file that used to have good data down to
5137 * zero. Make sure it gets into the ordered flush list so that
5138 * any new writes get down to disk quickly.
5139 */
5140 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005141 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5142 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005143
Josef Bacika41ad392011-01-31 15:30:16 -05005144 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005145
5146 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005147 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005148 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005149 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005150
Filipe Manana213e8c52018-02-06 20:40:31 +00005151 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005152 if (ret && inode->i_nlink) {
5153 int err;
5154
5155 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005156 * Truncate failed, so fix up the in-memory size. We
5157 * adjusted disk_i_size down as we removed extents, so
5158 * wait for disk_i_size to be stable and then update the
5159 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005160 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005161 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005162 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005163 return err;
5164 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005165 }
Yan, Zheng80825102009-11-12 09:35:36 +00005166 }
5167
Josef Bacika41ad392011-01-31 15:30:16 -05005168 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005169}
5170
Chris Mason39279cc2007-06-12 06:35:45 -04005171static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5172{
David Howells2b0143b2015-03-17 22:25:59 +00005173 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005174 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005175 int err;
5176
Li Zefanb83cc962010-12-20 16:04:08 +08005177 if (btrfs_root_readonly(root))
5178 return -EROFS;
5179
Jan Kara31051c82016-05-26 16:55:18 +02005180 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005181 if (err)
5182 return err;
5183
Chris Mason5a3f23d2009-03-31 13:27:11 -04005184 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005185 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005186 if (err)
5187 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005188 }
Yan Zheng9036c102008-10-30 14:19:41 -04005189
Christoph Hellwig10257742010-06-04 11:30:02 +02005190 if (attr->ia_valid) {
5191 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005192 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005193 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005194
Josef Bacik22c44fe2011-11-30 10:45:38 -05005195 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005196 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005197 }
5198
Chris Mason39279cc2007-06-12 06:35:45 -04005199 return err;
5200}
Chris Mason61295eb2008-01-14 16:24:38 -05005201
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005202/*
5203 * While truncating the inode pages during eviction, we get the VFS calling
5204 * btrfs_invalidatepage() against each page of the inode. This is slow because
5205 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5206 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5207 * extent_state structures over and over, wasting lots of time.
5208 *
5209 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5210 * those expensive operations on a per page basis and do only the ordered io
5211 * finishing, while we release here the extent_map and extent_state structures,
5212 * without the excessive merging and splitting.
5213 */
5214static void evict_inode_truncate_pages(struct inode *inode)
5215{
5216 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5217 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5218 struct rb_node *node;
5219
5220 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005221 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005222
5223 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08005224 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005225 struct extent_map *em;
5226
Liu Bo07e1ce02018-08-23 03:51:52 +08005227 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005228 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005229 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5230 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005231 remove_extent_mapping(map_tree, em);
5232 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005233 if (need_resched()) {
5234 write_unlock(&map_tree->lock);
5235 cond_resched();
5236 write_lock(&map_tree->lock);
5237 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005238 }
5239 write_unlock(&map_tree->lock);
5240
Filipe Manana6ca07092015-05-26 00:55:42 +01005241 /*
5242 * Keep looping until we have no more ranges in the io tree.
5243 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005244 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5245 * still in progress (unlocked the pages in the bio but did not yet
5246 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005247 * ranges can still be locked and eviction started because before
5248 * submitting those bios, which are executed by a separate task (work
5249 * queue kthread), inode references (inode->i_count) were not taken
5250 * (which would be dropped in the end io callback of each bio).
5251 * Therefore here we effectively end up waiting for those bios and
5252 * anyone else holding locked ranges without having bumped the inode's
5253 * reference count - if we don't do it, when they access the inode's
5254 * io_tree to unlock a range it may be too late, leading to an
5255 * use-after-free issue.
5256 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005257 spin_lock(&io_tree->lock);
5258 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5259 struct extent_state *state;
5260 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005261 u64 start;
5262 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005263
5264 node = rb_first(&io_tree->state);
5265 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005266 start = state->start;
5267 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005268 spin_unlock(&io_tree->lock);
5269
David Sterbaff13db42015-12-03 14:30:40 +01005270 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005271
5272 /*
5273 * If still has DELALLOC flag, the extent didn't reach disk,
5274 * and its reserved space won't be freed by delayed_ref.
5275 * So we need to free its reserved space here.
5276 * (Refer to comment in btrfs_invalidatepage, case 2)
5277 *
5278 * Note, end is the bytenr of last byte, so we need + 1 here.
5279 */
5280 if (state->state & EXTENT_DELALLOC)
Qu Wenruobc42bda2017-02-27 15:10:39 +08005281 btrfs_qgroup_free_data(inode, NULL, start, end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005282
Filipe Manana6ca07092015-05-26 00:55:42 +01005283 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005284 EXTENT_LOCKED | EXTENT_DIRTY |
5285 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01005286 EXTENT_DEFRAG, 1, 1, &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005287
Filipe Manana7064dd52014-08-08 02:47:05 +01005288 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005289 spin_lock(&io_tree->lock);
5290 }
5291 spin_unlock(&io_tree->lock);
5292}
5293
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005294static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04005295 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005296{
5297 struct btrfs_fs_info *fs_info = root->fs_info;
5298 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5299 int failures = 0;
5300
5301 for (;;) {
5302 struct btrfs_trans_handle *trans;
5303 int ret;
5304
Josef Bacikad80cf52018-09-28 07:18:19 -04005305 ret = btrfs_block_rsv_refill(root, rsv, rsv->size,
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005306 BTRFS_RESERVE_FLUSH_LIMIT);
5307
5308 if (ret && ++failures > 2) {
5309 btrfs_warn(fs_info,
5310 "could not allocate space for a delete; will truncate on mount");
5311 return ERR_PTR(-ENOSPC);
5312 }
5313
5314 trans = btrfs_join_transaction(root);
5315 if (IS_ERR(trans) || !ret)
5316 return trans;
5317
5318 /*
5319 * Try to steal from the global reserve if there is space for
5320 * it.
5321 */
5322 if (!btrfs_check_space_for_delayed_refs(trans, fs_info) &&
Josef Bacikad80cf52018-09-28 07:18:19 -04005323 !btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, false))
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005324 return trans;
5325
5326 /* If not, commit and try again. */
5327 ret = btrfs_commit_transaction(trans);
5328 if (ret)
5329 return ERR_PTR(ret);
5330 }
5331}
5332
Al Virobd555972010-06-07 11:35:40 -04005333void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005334{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005335 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005336 struct btrfs_trans_handle *trans;
5337 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005338 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005339 int ret;
5340
liubo1abe9b82011-03-24 11:18:59 +00005341 trace_btrfs_inode_evict(inode);
5342
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005343 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005344 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005345 return;
5346 }
5347
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005348 evict_inode_truncate_pages(inode);
5349
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005350 if (inode->i_nlink &&
5351 ((btrfs_root_refs(&root->root_item) != 0 &&
5352 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005353 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005354 goto no_delete;
5355
Omar Sandoval27919062018-05-11 13:13:37 -07005356 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005357 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005358
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005359 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005360
Omar Sandoval7b40b692018-05-11 13:13:33 -07005361 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005362 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005363
Yan, Zheng76dda932009-09-21 16:00:26 -04005364 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005365 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5366 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005367 goto no_delete;
5368 }
5369
Nikolay Borisovaa790212017-01-10 20:35:40 +02005370 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005371 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005372 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005373
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005374 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005375 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005376 goto no_delete;
Josef Bacikad80cf52018-09-28 07:18:19 -04005377 rsv->size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005378 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005379
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005380 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005381
Yan, Zheng80825102009-11-12 09:35:36 +00005382 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005383 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005384 if (IS_ERR(trans))
5385 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005386
5387 trans->block_rsv = rsv;
5388
Yan, Zhengd68fc572010-05-16 10:49:58 -04005389 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Omar Sandoval27919062018-05-11 13:13:37 -07005390 trans->block_rsv = &fs_info->trans_block_rsv;
5391 btrfs_end_transaction(trans);
5392 btrfs_btree_balance_dirty(fs_info);
5393 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5394 goto free_rsv;
5395 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005396 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005397 }
5398
Josef Bacik4ef31a42013-08-13 14:10:08 -04005399 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005400 * Errors here aren't a big deal, it just means we leave orphan items in
5401 * the tree. They will be cleaned up on the next mount. If the inode
5402 * number gets reused, cleanup deletes the orphan item without doing
5403 * anything, and unlink reuses the existing orphan item.
5404 *
5405 * If it turns out that we are dropping too many of these, we might want
5406 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005407 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005408 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005409 if (!IS_ERR(trans)) {
5410 trans->block_rsv = rsv;
5411 btrfs_orphan_del(trans, BTRFS_I(inode));
5412 trans->block_rsv = &fs_info->trans_block_rsv;
5413 btrfs_end_transaction(trans);
5414 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005415
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005416 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005417 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005418 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005419
Omar Sandoval27919062018-05-11 13:13:37 -07005420free_rsv:
5421 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005422no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005423 /*
5424 * If we didn't successfully delete, the orphan item will still be in
5425 * the tree and we'll retry on the next mount. Again, we might also want
5426 * to retry these periodically in the future.
5427 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005428 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005429 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005430}
5431
5432/*
5433 * this returns the key found in the dir entry in the location pointer.
Su Yue005d6712018-03-05 17:13:37 +08005434 * If no dir entries were found, returns -ENOENT.
5435 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005436 */
5437static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5438 struct btrfs_key *location)
5439{
5440 const char *name = dentry->d_name.name;
5441 int namelen = dentry->d_name.len;
5442 struct btrfs_dir_item *di;
5443 struct btrfs_path *path;
5444 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005445 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005446
5447 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005448 if (!path)
5449 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005450
David Sterbaf85b7372017-01-20 14:54:07 +01005451 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5452 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005453 if (IS_ERR_OR_NULL(di)) {
5454 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005455 goto out;
5456 }
Chris Masond3977122009-01-05 21:25:51 -05005457
Chris Mason5f39d392007-10-15 16:14:19 -04005458 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005459 if (location->type != BTRFS_INODE_ITEM_KEY &&
5460 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005461 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005462 btrfs_warn(root->fs_info,
5463"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5464 __func__, name, btrfs_ino(BTRFS_I(dir)),
5465 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005466 }
Chris Mason39279cc2007-06-12 06:35:45 -04005467out:
Chris Mason39279cc2007-06-12 06:35:45 -04005468 btrfs_free_path(path);
5469 return ret;
5470}
5471
5472/*
5473 * when we hit a tree root in a directory, the btrfs part of the inode
5474 * needs to be changed to reflect the root directory of the tree root. This
5475 * is kind of like crossing a mount point.
5476 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005477static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005478 struct inode *dir,
5479 struct dentry *dentry,
5480 struct btrfs_key *location,
5481 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005482{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005483 struct btrfs_path *path;
5484 struct btrfs_root *new_root;
5485 struct btrfs_root_ref *ref;
5486 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005487 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005488 int ret;
5489 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005490
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005491 path = btrfs_alloc_path();
5492 if (!path) {
5493 err = -ENOMEM;
5494 goto out;
5495 }
Chris Mason39279cc2007-06-12 06:35:45 -04005496
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005497 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005498 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5499 key.type = BTRFS_ROOT_REF_KEY;
5500 key.offset = location->objectid;
5501
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005502 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005503 if (ret) {
5504 if (ret < 0)
5505 err = ret;
5506 goto out;
5507 }
Chris Mason39279cc2007-06-12 06:35:45 -04005508
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005509 leaf = path->nodes[0];
5510 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005511 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005512 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5513 goto out;
5514
5515 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5516 (unsigned long)(ref + 1),
5517 dentry->d_name.len);
5518 if (ret)
5519 goto out;
5520
David Sterbab3b4aa72011-04-21 01:20:15 +02005521 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005522
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005523 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005524 if (IS_ERR(new_root)) {
5525 err = PTR_ERR(new_root);
5526 goto out;
5527 }
5528
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005529 *sub_root = new_root;
5530 location->objectid = btrfs_root_dirid(&new_root->root_item);
5531 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005532 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005533 err = 0;
5534out:
5535 btrfs_free_path(path);
5536 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005537}
5538
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005539static void inode_tree_add(struct inode *inode)
5540{
5541 struct btrfs_root *root = BTRFS_I(inode)->root;
5542 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005543 struct rb_node **p;
5544 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005545 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005546 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005547
Al Viro1d3382cb2010-10-23 15:19:20 -04005548 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005549 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005550 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005551 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005552 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005553 while (*p) {
5554 parent = *p;
5555 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5556
David Sterba37508512018-06-29 10:56:40 +02005557 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005558 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005559 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005560 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005561 else {
5562 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005563 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005564 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005565 RB_CLEAR_NODE(parent);
5566 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005567 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005568 }
5569 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005570 rb_link_node(new, parent, p);
5571 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005572 spin_unlock(&root->inode_lock);
5573}
5574
5575static void inode_tree_del(struct inode *inode)
5576{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005577 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005578 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005579 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005580
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005581 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005582 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005583 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005584 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005585 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005586 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005587 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005588
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005589 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005590 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005591 spin_lock(&root->inode_lock);
5592 empty = RB_EMPTY_ROOT(&root->inode_tree);
5593 spin_unlock(&root->inode_lock);
5594 if (empty)
5595 btrfs_add_dead_root(root);
5596 }
5597}
5598
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005599
Chris Masone02119d2008-09-05 16:13:11 -04005600static int btrfs_init_locked_inode(struct inode *inode, void *p)
5601{
5602 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005603 inode->i_ino = args->location->objectid;
5604 memcpy(&BTRFS_I(inode)->location, args->location,
5605 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005606 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005607 return 0;
5608}
5609
5610static int btrfs_find_actor(struct inode *inode, void *opaque)
5611{
5612 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005613 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005614 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005615}
5616
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005617static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005618 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005619 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005620{
5621 struct inode *inode;
5622 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005623 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005624
Chris Mason90d3e592014-01-09 17:28:00 -08005625 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005626 args.root = root;
5627
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005628 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005629 btrfs_init_locked_inode,
5630 (void *)&args);
5631 return inode;
5632}
5633
Balaji Rao1a54ef82008-07-21 02:01:04 +05305634/* Get an inode object given its location and corresponding root.
5635 * Returns in *is_new if the inode was read from disk
5636 */
5637struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005638 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305639{
5640 struct inode *inode;
5641
Chris Mason90d3e592014-01-09 17:28:00 -08005642 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305643 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005644 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305645
5646 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005647 int ret;
5648
5649 ret = btrfs_read_locked_inode(inode);
Al Viro9bc2cef2018-07-29 23:04:50 +01005650 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005651 inode_tree_add(inode);
5652 unlock_new_inode(inode);
5653 if (new)
5654 *new = 1;
5655 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005656 iget_failed(inode);
5657 /*
5658 * ret > 0 can come from btrfs_search_slot called by
5659 * btrfs_read_locked_inode, this means the inode item
5660 * was not found.
5661 */
5662 if (ret > 0)
5663 ret = -ENOENT;
5664 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005665 }
5666 }
5667
Balaji Rao1a54ef82008-07-21 02:01:04 +05305668 return inode;
5669}
5670
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005671static struct inode *new_simple_dir(struct super_block *s,
5672 struct btrfs_key *key,
5673 struct btrfs_root *root)
5674{
5675 struct inode *inode = new_inode(s);
5676
5677 if (!inode)
5678 return ERR_PTR(-ENOMEM);
5679
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005680 BTRFS_I(inode)->root = root;
5681 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005682 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005683
5684 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005685 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005686 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005687 inode->i_fop = &simple_dir_operations;
5688 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005689 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305690 inode->i_atime = inode->i_mtime;
5691 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005692 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005693
5694 return inode;
5695}
5696
Chris Mason3de45862008-11-17 21:02:50 -05005697struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005698{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005699 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005700 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005701 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005702 struct btrfs_root *sub_root = root;
5703 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005704 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005705 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005706
5707 if (dentry->d_name.len > BTRFS_NAME_LEN)
5708 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005709
Jeff Layton39e3c952012-11-28 11:30:53 -05005710 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005711 if (ret < 0)
5712 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005713
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005714 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005715 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005716 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005717 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005718
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005719 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005720 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005721 &location, &sub_root);
5722 if (ret < 0) {
5723 if (ret != -ENOENT)
5724 inode = ERR_PTR(ret);
5725 else
5726 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5727 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005728 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005729 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005730 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005731
Julia Lawall34d19ba2011-01-24 19:55:19 +00005732 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005733 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005734 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005735 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005736 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005737 if (ret) {
5738 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005739 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005740 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005741 }
5742
Chris Mason3de45862008-11-17 21:02:50 -05005743 return inode;
5744}
5745
Nick Pigginfe15ce42011-01-07 17:49:23 +11005746static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005747{
5748 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005749 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005750
Li Zefan848cce02012-02-21 17:04:28 +08005751 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005752 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005753
Li Zefan848cce02012-02-21 17:04:28 +08005754 if (inode) {
5755 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005756 if (btrfs_root_refs(&root->root_item) == 0)
5757 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005758
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005759 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005760 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005761 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005762 return 0;
5763}
5764
Chris Mason3de45862008-11-17 21:02:50 -05005765static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005766 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005767{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005768 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005769
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005770 inode = btrfs_lookup_dentry(dir, dentry);
5771 if (IS_ERR(inode)) {
5772 if (PTR_ERR(inode) == -ENOENT)
5773 inode = NULL;
5774 else
5775 return ERR_CAST(inode);
5776 }
5777
Al Viro41d28bc2014-10-12 22:24:21 -04005778 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005779}
5780
Miao Xie16cdcec2011-04-22 18:12:22 +08005781unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005782 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5783};
5784
Josef Bacik23b5ec72017-07-24 15:14:25 -04005785/*
5786 * All this infrastructure exists because dir_emit can fault, and we are holding
5787 * the tree lock when doing readdir. For now just allocate a buffer and copy
5788 * our information into that, and then dir_emit from the buffer. This is
5789 * similar to what NFS does, only we don't keep the buffer around in pagecache
5790 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5791 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5792 * tree lock.
5793 */
5794static int btrfs_opendir(struct inode *inode, struct file *file)
5795{
5796 struct btrfs_file_private *private;
5797
5798 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5799 if (!private)
5800 return -ENOMEM;
5801 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5802 if (!private->filldir_buf) {
5803 kfree(private);
5804 return -ENOMEM;
5805 }
5806 file->private_data = private;
5807 return 0;
5808}
5809
5810struct dir_entry {
5811 u64 ino;
5812 u64 offset;
5813 unsigned type;
5814 int name_len;
5815};
5816
5817static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5818{
5819 while (entries--) {
5820 struct dir_entry *entry = addr;
5821 char *name = (char *)(entry + 1);
5822
David Sterba92d32172018-04-16 21:10:14 +02005823 ctx->pos = get_unaligned(&entry->offset);
5824 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5825 get_unaligned(&entry->ino),
5826 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04005827 return 1;
David Sterba92d32172018-04-16 21:10:14 +02005828 addr += sizeof(struct dir_entry) +
5829 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005830 ctx->pos++;
5831 }
5832 return 0;
5833}
5834
Al Viro9cdda8d2013-05-22 16:48:09 -04005835static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005836{
Al Viro9cdda8d2013-05-22 16:48:09 -04005837 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005838 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005839 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005840 struct btrfs_dir_item *di;
5841 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005842 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005843 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005844 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005845 struct list_head ins_list;
5846 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005847 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005848 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005849 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005850 char *name_ptr;
5851 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005852 int entries = 0;
5853 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005854 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005855 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005856
Al Viro9cdda8d2013-05-22 16:48:09 -04005857 if (!dir_emit_dots(file, ctx))
5858 return 0;
5859
David Woodhouse49593bf2008-08-17 17:08:36 +01005860 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005861 if (!path)
5862 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005863
Josef Bacik23b5ec72017-07-24 15:14:25 -04005864 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005865 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005866
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005867 INIT_LIST_HEAD(&ins_list);
5868 INIT_LIST_HEAD(&del_list);
5869 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005870
Josef Bacik23b5ec72017-07-24 15:14:25 -04005871again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005872 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005873 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005874 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005875
Chris Mason39279cc2007-06-12 06:35:45 -04005876 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5877 if (ret < 0)
5878 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005879
5880 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04005881 struct dir_entry *entry;
5882
Chris Mason5f39d392007-10-15 16:14:19 -04005883 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005884 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005885 if (slot >= btrfs_header_nritems(leaf)) {
5886 ret = btrfs_next_leaf(root, path);
5887 if (ret < 0)
5888 goto err;
5889 else if (ret > 0)
5890 break;
5891 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005892 }
Chris Mason3de45862008-11-17 21:02:50 -05005893
Chris Mason5f39d392007-10-15 16:14:19 -04005894 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5895
5896 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005897 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005898 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005899 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005900 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005901 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005902 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005903 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04005904 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005905 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005906 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5907 PAGE_SIZE) {
5908 btrfs_release_path(path);
5909 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5910 if (ret)
5911 goto nopos;
5912 addr = private->filldir_buf;
5913 entries = 0;
5914 total_len = 0;
5915 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04005916 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005917
5918 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02005919 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005920 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005921 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5922 name_len);
David Sterba92d32172018-04-16 21:10:14 +02005923 put_unaligned(btrfs_filetype_table[btrfs_dir_type(leaf, di)],
5924 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005925 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02005926 put_unaligned(location.objectid, &entry->ino);
5927 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005928 entries++;
5929 addr += sizeof(struct dir_entry) + name_len;
5930 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08005931next:
5932 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005933 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005934 btrfs_release_path(path);
5935
5936 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5937 if (ret)
5938 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01005939
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005940 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005941 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005942 goto nopos;
5943
Zach Browndb62efb2013-07-11 16:19:42 -07005944 /*
5945 * Stop new entries from being returned after we return the last
5946 * entry.
5947 *
5948 * New directory entries are assigned a strictly increasing
5949 * offset. This means that new entries created during readdir
5950 * are *guaranteed* to be seen in the future by that readdir.
5951 * This has broken buggy programs which operate on names as
5952 * they're returned by readdir. Until we re-use freed offsets
5953 * we have this hack to stop new entries from being returned
5954 * under the assumption that they'll never reach this huge
5955 * offset.
5956 *
5957 * This is being careful not to overflow 32bit loff_t unless the
5958 * last entry requires it because doing so has broken 32bit apps
5959 * in the past.
5960 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005961 if (ctx->pos >= INT_MAX)
5962 ctx->pos = LLONG_MAX;
5963 else
5964 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005965nopos:
5966 ret = 0;
5967err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005968 if (put)
5969 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005970 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005971 return ret;
5972}
5973
Chris Mason39279cc2007-06-12 06:35:45 -04005974/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005975 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005976 * inode changes. But, it is most likely to find the inode in cache.
5977 * FIXME, needs more benchmarking...there are no reasons other than performance
5978 * to keep or drop this code.
5979 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005980static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005981{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005982 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005983 struct btrfs_root *root = BTRFS_I(inode)->root;
5984 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005985 int ret;
5986
Josef Bacik72ac3c02012-05-23 14:13:11 -04005987 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005988 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005989
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005990 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005991 if (IS_ERR(trans))
5992 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005993
5994 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005995 if (ret && ret == -ENOSPC) {
5996 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005997 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04005998 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005999 if (IS_ERR(trans))
6000 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006001
Chris Mason94b60442010-05-26 11:02:00 -04006002 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006003 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006004 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006005 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006006 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006007
6008 return ret;
6009}
6010
6011/*
6012 * This is a copy of file_update_time. We need this so we can return error on
6013 * ENOSPC for updating the inode in the case of file write and mmap writes.
6014 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07006015static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04006016 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006017{
Alexander Block2bc5565282012-06-15 09:49:33 +02006018 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006019 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02006020
6021 if (btrfs_root_readonly(root))
6022 return -EROFS;
6023
Josef Bacike41f9412012-03-26 09:46:47 -04006024 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05006025 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04006026 if (flags & S_CTIME)
6027 inode->i_ctime = *now;
6028 if (flags & S_MTIME)
6029 inode->i_mtime = *now;
6030 if (flags & S_ATIME)
6031 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006032 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006033}
6034
Chris Masond352ac62008-09-29 15:18:18 -04006035/*
6036 * find the highest existing sequence number in a directory
6037 * and then set the in-memory index_cnt variable to reflect
6038 * free sequence numbers
6039 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006040static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006041{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006042 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006043 struct btrfs_key key, found_key;
6044 struct btrfs_path *path;
6045 struct extent_buffer *leaf;
6046 int ret;
6047
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006048 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006049 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006050 key.offset = (u64)-1;
6051
6052 path = btrfs_alloc_path();
6053 if (!path)
6054 return -ENOMEM;
6055
6056 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6057 if (ret < 0)
6058 goto out;
6059 /* FIXME: we should be able to handle this */
6060 if (ret == 0)
6061 goto out;
6062 ret = 0;
6063
6064 /*
6065 * MAGIC NUMBER EXPLANATION:
6066 * since we search a directory based on f_pos we have to start at 2
6067 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6068 * else has to start at 2
6069 */
6070 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006071 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006072 goto out;
6073 }
6074
6075 path->slots[0]--;
6076
6077 leaf = path->nodes[0];
6078 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6079
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006080 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006081 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006082 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006083 goto out;
6084 }
6085
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006086 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006087out:
6088 btrfs_free_path(path);
6089 return ret;
6090}
6091
Chris Masond352ac62008-09-29 15:18:18 -04006092/*
6093 * helper to find a free sequence number in a given directory. This current
6094 * code is very simple, later versions will do smarter things in the btree
6095 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006096int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006097{
6098 int ret = 0;
6099
Nikolay Borisov877574e2017-02-20 13:50:33 +02006100 if (dir->index_cnt == (u64)-1) {
6101 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006102 if (ret) {
6103 ret = btrfs_set_inode_index_count(dir);
6104 if (ret)
6105 return ret;
6106 }
Josef Bacikaec74772008-07-24 12:12:38 -04006107 }
6108
Nikolay Borisov877574e2017-02-20 13:50:33 +02006109 *index = dir->index_cnt;
6110 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006111
6112 return ret;
6113}
6114
Chris Masonb0d5d102014-09-08 13:08:51 -07006115static int btrfs_insert_inode_locked(struct inode *inode)
6116{
6117 struct btrfs_iget_args args;
6118 args.location = &BTRFS_I(inode)->location;
6119 args.root = BTRFS_I(inode)->root;
6120
6121 return insert_inode_locked4(inode,
6122 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6123 btrfs_find_actor, &args);
6124}
6125
Anand Jain19aee8d2017-07-18 17:37:05 +08006126/*
6127 * Inherit flags from the parent inode.
6128 *
6129 * Currently only the compression flags and the cow flags are inherited.
6130 */
6131static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6132{
6133 unsigned int flags;
6134
6135 if (!dir)
6136 return;
6137
6138 flags = BTRFS_I(dir)->flags;
6139
6140 if (flags & BTRFS_INODE_NOCOMPRESS) {
6141 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6142 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6143 } else if (flags & BTRFS_INODE_COMPRESS) {
6144 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6145 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6146 }
6147
6148 if (flags & BTRFS_INODE_NODATACOW) {
6149 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6150 if (S_ISREG(inode->i_mode))
6151 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6152 }
6153
David Sterba7b6a2212018-03-26 18:40:21 +02006154 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08006155}
6156
Chris Mason39279cc2007-06-12 06:35:45 -04006157static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6158 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006159 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006160 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006161 u64 ref_objectid, u64 objectid,
6162 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006163{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006164 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006165 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006166 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006167 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006168 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006169 struct btrfs_inode_ref *ref;
6170 struct btrfs_key key[2];
6171 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006172 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006173 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006174 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006175
Chris Mason5f39d392007-10-15 16:14:19 -04006176 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006177 if (!path)
6178 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006179
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006180 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006181 if (!inode) {
6182 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006183 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006184 }
Chris Mason39279cc2007-06-12 06:35:45 -04006185
Li Zefan581bb052011-04-20 10:06:11 +08006186 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006187 * O_TMPFILE, set link count to 0, so that after this point,
6188 * we fill in an inode item with the correct link count.
6189 */
6190 if (!name)
6191 set_nlink(inode, 0);
6192
6193 /*
Li Zefan581bb052011-04-20 10:06:11 +08006194 * we have to initialize this early, so we can reclaim the inode
6195 * number if we fail afterwards in this function.
6196 */
6197 inode->i_ino = objectid;
6198
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006199 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006200 trace_btrfs_inode_request(dir);
6201
Nikolay Borisov877574e2017-02-20 13:50:33 +02006202 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006203 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006204 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006205 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006206 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006207 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006208 } else if (dir) {
6209 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006210 }
6211 /*
6212 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006213 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006214 * number
6215 */
6216 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006217 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006218 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006219 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006220 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006221
Josef Bacik5dc562c2012-08-17 13:14:17 -04006222 /*
6223 * We could have gotten an inode number from somebody who was fsynced
6224 * and then removed in this same transaction, so let's just set full
6225 * sync since it will be a full sync anyway and this will blow away the
6226 * old info in the log.
6227 */
6228 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6229
Chris Mason9c583092008-01-29 15:15:18 -05006230 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006231 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006232 key[0].offset = 0;
6233
Chris Mason9c583092008-01-29 15:15:18 -05006234 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006235
6236 if (name) {
6237 /*
6238 * Start new inodes with an inode_ref. This is slightly more
6239 * efficient for small numbers of hard links since they will
6240 * be packed into one item. Extended refs will kick in if we
6241 * add more hard links than can fit in the ref item.
6242 */
6243 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006244 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006245 key[1].offset = ref_objectid;
6246
6247 sizes[1] = name_len + sizeof(*ref);
6248 }
Chris Mason9c583092008-01-29 15:15:18 -05006249
Chris Masonb0d5d102014-09-08 13:08:51 -07006250 location = &BTRFS_I(inode)->location;
6251 location->objectid = objectid;
6252 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006253 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006254
6255 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006256 if (ret < 0) {
6257 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006258 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006259 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006260
Chris Masonb9473432009-03-13 11:00:37 -04006261 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006262 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006263 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006264 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006265
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006266 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006267 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306268
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006269 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306270 inode->i_atime = inode->i_mtime;
6271 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006272 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306273
Chris Mason5f39d392007-10-15 16:14:19 -04006274 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6275 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006276 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006277 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006278 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006279
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006280 if (name) {
6281 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6282 struct btrfs_inode_ref);
6283 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6284 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6285 ptr = (unsigned long)(ref + 1);
6286 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6287 }
Chris Mason9c583092008-01-29 15:15:18 -05006288
Chris Mason5f39d392007-10-15 16:14:19 -04006289 btrfs_mark_buffer_dirty(path->nodes[0]);
6290 btrfs_free_path(path);
6291
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006292 btrfs_inherit_iflags(inode, dir);
6293
Al Viro569254b2011-07-24 17:08:40 -04006294 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006295 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006296 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006297 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006298 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6299 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006300 }
6301
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006302 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006303
6304 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006305 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006306
Alexander Block8ea05e32012-07-25 17:35:53 +02006307 btrfs_update_root_times(trans, root);
6308
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006309 ret = btrfs_inode_inherit_props(trans, inode, dir);
6310 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006311 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006312 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006313 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006314
Chris Mason39279cc2007-06-12 06:35:45 -04006315 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006316
6317fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006318 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006319fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006320 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006321 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006322 btrfs_free_path(path);
6323 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006324}
6325
6326static inline u8 btrfs_inode_type(struct inode *inode)
6327{
6328 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6329}
6330
Chris Masond352ac62008-09-29 15:18:18 -04006331/*
6332 * utility function to add 'inode' into 'parent_inode' with
6333 * a give name and a given sequence number.
6334 * if 'add_backref' is true, also insert a backref from the
6335 * inode to the parent directory.
6336 */
Chris Masone02119d2008-09-05 16:13:11 -04006337int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006338 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006339 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006340{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006341 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006342 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006343 struct btrfs_root *root = parent_inode->root;
6344 u64 ino = btrfs_ino(inode);
6345 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006346
Li Zefan33345d012011-04-20 10:31:50 +08006347 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006348 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006349 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006350 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006351 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006352 key.offset = 0;
6353 }
Chris Mason39279cc2007-06-12 06:35:45 -04006354
Li Zefan33345d012011-04-20 10:31:50 +08006355 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006356 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006357 root->root_key.objectid, parent_ino,
6358 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006359 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006360 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6361 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006362 }
6363
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006364 /* Nothing to clean up yet */
6365 if (ret)
6366 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006367
Lu Fengqi684572d2018-08-04 21:10:57 +08006368 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006369 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006370 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006371 goto fail_dir_item;
6372 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006373 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006374 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006375 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006376
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006377 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006378 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006379 inode_inc_iversion(&parent_inode->vfs_inode);
6380 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6381 current_time(&parent_inode->vfs_inode);
6382 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006383 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006384 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006385 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006386
6387fail_dir_item:
6388 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6389 u64 local_index;
6390 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006391 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006392 root->root_key.objectid, parent_ino,
6393 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006394
6395 } else if (add_backref) {
6396 u64 local_index;
6397 int err;
6398
6399 err = btrfs_del_inode_ref(trans, root, name, name_len,
6400 ino, parent_ino, &local_index);
6401 }
6402 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006403}
6404
6405static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006406 struct btrfs_inode *dir, struct dentry *dentry,
6407 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006408{
Josef Bacika1b075d2010-11-19 20:36:11 +00006409 int err = btrfs_add_link(trans, dir, inode,
6410 dentry->d_name.name, dentry->d_name.len,
6411 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006412 if (err > 0)
6413 err = -EEXIST;
6414 return err;
6415}
6416
Josef Bacik618e21d2007-07-11 10:18:17 -04006417static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006418 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006419{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006420 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006421 struct btrfs_trans_handle *trans;
6422 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006423 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006424 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006425 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006426 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006427
Josef Bacik9ed74f22009-09-11 16:12:44 -04006428 /*
6429 * 2 for inode item and ref
6430 * 2 for dir items
6431 * 1 for xattr if selinux is on
6432 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006433 trans = btrfs_start_transaction(root, 5);
6434 if (IS_ERR(trans))
6435 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006436
Li Zefan581bb052011-04-20 10:06:11 +08006437 err = btrfs_find_free_ino(root, &objectid);
6438 if (err)
6439 goto out_unlock;
6440
Josef Bacikaec74772008-07-24 12:12:38 -04006441 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006442 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6443 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006444 if (IS_ERR(inode)) {
6445 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006446 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006447 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006448 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006449
Casey Schauflerad19db72011-12-15 10:09:07 -05006450 /*
6451 * If the active LSM wants to access the inode during
6452 * d_instantiate it needs these. Smack checks to see
6453 * if the filesystem supports xattrs by looking at the
6454 * ops vector.
6455 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006456 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006457 init_special_inode(inode, inode->i_mode, rdev);
6458
6459 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006460 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006461 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006462
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006463 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6464 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006465 if (err)
6466 goto out_unlock;
6467
6468 btrfs_update_inode(trans, root, inode);
6469 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006470
Josef Bacik618e21d2007-07-11 10:18:17 -04006471out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006472 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006473 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006474 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006475 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006476 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006477 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006478 return err;
6479}
6480
Chris Mason39279cc2007-06-12 06:35:45 -04006481static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006482 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006483{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006484 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006485 struct btrfs_trans_handle *trans;
6486 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006487 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006488 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006489 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006490 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006491
Josef Bacik9ed74f22009-09-11 16:12:44 -04006492 /*
6493 * 2 for inode item and ref
6494 * 2 for dir items
6495 * 1 for xattr if selinux is on
6496 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006497 trans = btrfs_start_transaction(root, 5);
6498 if (IS_ERR(trans))
6499 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006500
Li Zefan581bb052011-04-20 10:06:11 +08006501 err = btrfs_find_free_ino(root, &objectid);
6502 if (err)
6503 goto out_unlock;
6504
Josef Bacikaec74772008-07-24 12:12:38 -04006505 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006506 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6507 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006508 if (IS_ERR(inode)) {
6509 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006510 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006511 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006512 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006513 /*
6514 * If the active LSM wants to access the inode during
6515 * d_instantiate it needs these. Smack checks to see
6516 * if the filesystem supports xattrs by looking at the
6517 * ops vector.
6518 */
6519 inode->i_fop = &btrfs_file_operations;
6520 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006521 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006522
6523 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6524 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006525 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006526
6527 err = btrfs_update_inode(trans, root, inode);
6528 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006529 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006530
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006531 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6532 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006533 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006534 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006535
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006536 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro1e2e5472018-05-04 08:23:01 -04006537 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006538
Chris Mason39279cc2007-06-12 06:35:45 -04006539out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006540 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006541 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006542 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006543 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006544 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006545 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006546 return err;
6547}
6548
6549static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6550 struct dentry *dentry)
6551{
Filipe Manana271dba452016-01-05 16:24:05 +00006552 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006553 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006554 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006555 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006556 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006557 int err;
6558 int drop_inode = 0;
6559
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006560 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006561 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006562 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006563
Mark Fashehf1863732012-08-08 11:32:27 -07006564 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006565 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006566
Nikolay Borisov877574e2017-02-20 13:50:33 +02006567 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006568 if (err)
6569 goto fail;
6570
Yan, Zhenga22285a2010-05-16 10:48:46 -04006571 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006572 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006573 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006574 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006575 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006576 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006577 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006578 if (IS_ERR(trans)) {
6579 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006580 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006581 goto fail;
6582 }
Chris Mason5f39d392007-10-15 16:14:19 -04006583
Miao Xie67de1172013-12-26 13:07:06 +08006584 /* There are several dir indexes for this inode, clear the cache. */
6585 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006586 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006587 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006588 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006589 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006590 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006591
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006592 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6593 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006594
Yan, Zhenga5719522009-09-24 09:17:31 -04006595 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006596 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006597 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006598 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006599 int ret;
6600
Yan, Zhenga5719522009-09-24 09:17:31 -04006601 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006602 if (err)
6603 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006604 if (inode->i_nlink == 1) {
6605 /*
6606 * If new hard link count is 1, it's a file created
6607 * with open(2) O_TMPFILE flag.
6608 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006609 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006610 if (err)
6611 goto fail;
6612 }
Al Viro08c422c2011-12-23 07:58:13 -05006613 d_instantiate(dentry, inode);
Filipe Mananad4682ba2018-06-11 19:24:28 +01006614 ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent,
6615 true, NULL);
6616 if (ret == BTRFS_NEED_TRANS_COMMIT) {
6617 err = btrfs_commit_transaction(trans);
6618 trans = NULL;
6619 }
Yan, Zhenga5719522009-09-24 09:17:31 -04006620 }
Chris Mason39279cc2007-06-12 06:35:45 -04006621
Chris Mason1832a6d2007-12-21 16:27:21 -05006622fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006623 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006624 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006625 if (drop_inode) {
6626 inode_dec_link_count(inode);
6627 iput(inode);
6628 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006629 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006630 return err;
6631}
6632
Al Viro18bb1db2011-07-26 01:41:39 -04006633static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006634{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006635 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006636 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006637 struct btrfs_trans_handle *trans;
6638 struct btrfs_root *root = BTRFS_I(dir)->root;
6639 int err = 0;
6640 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006641 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006642 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006643
Josef Bacik9ed74f22009-09-11 16:12:44 -04006644 /*
6645 * 2 items for inode and ref
6646 * 2 items for dir items
6647 * 1 for xattr if selinux is on
6648 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006649 trans = btrfs_start_transaction(root, 5);
6650 if (IS_ERR(trans))
6651 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006652
Li Zefan581bb052011-04-20 10:06:11 +08006653 err = btrfs_find_free_ino(root, &objectid);
6654 if (err)
6655 goto out_fail;
6656
Josef Bacikaec74772008-07-24 12:12:38 -04006657 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006658 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6659 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006660 if (IS_ERR(inode)) {
6661 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006662 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006663 goto out_fail;
6664 }
Chris Mason5f39d392007-10-15 16:14:19 -04006665
Chris Mason39279cc2007-06-12 06:35:45 -04006666 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006667 /* these must be set before we unlock the inode */
6668 inode->i_op = &btrfs_dir_inode_operations;
6669 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006670
Eric Paris2a7dba32011-02-01 11:05:39 -05006671 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006672 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006673 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006674
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006675 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006676 err = btrfs_update_inode(trans, root, inode);
6677 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006678 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006679
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006680 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6681 dentry->d_name.name,
6682 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006683 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006684 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006685
Al Viro1e2e5472018-05-04 08:23:01 -04006686 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006687 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006688
6689out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006690 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006691 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006692 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006693 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006694 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006695 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006696 return err;
6697}
6698
Chris Masonc8b97812008-10-29 14:49:59 -04006699static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006700 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006701 size_t pg_offset, u64 extent_offset,
6702 struct btrfs_file_extent_item *item)
6703{
6704 int ret;
6705 struct extent_buffer *leaf = path->nodes[0];
6706 char *tmp;
6707 size_t max_size;
6708 unsigned long inline_size;
6709 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006710 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006711
6712 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006713 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006714 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6715 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006716 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006717 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006718 if (!tmp)
6719 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006720 ptr = btrfs_file_extent_inline_start(item);
6721
6722 read_extent_buffer(leaf, tmp, ptr, inline_size);
6723
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006724 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006725 ret = btrfs_decompress(compress_type, tmp, page,
6726 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006727
6728 /*
6729 * decompression code contains a memset to fill in any space between the end
6730 * of the uncompressed data and the end of max_size in case the decompressed
6731 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6732 * the end of an inline extent and the beginning of the next block, so we
6733 * cover that region here.
6734 */
6735
6736 if (max_size + pg_offset < PAGE_SIZE) {
6737 char *map = kmap(page);
6738 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6739 kunmap(page);
6740 }
Chris Masonc8b97812008-10-29 14:49:59 -04006741 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006742 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006743}
6744
Chris Masond352ac62008-09-29 15:18:18 -04006745/*
6746 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006747 * the ugly parts come from merging extents from the disk with the in-ram
6748 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006749 * where the in-ram extents might be locked pending data=ordered completion.
6750 *
6751 * This also copies inline extents directly into the page.
6752 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006753struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Liu Bode2c6612018-08-25 13:47:59 +08006754 struct page *page,
6755 size_t pg_offset, u64 start, u64 len,
6756 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006757{
David Sterba3ffbd682018-06-29 10:56:42 +02006758 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masona52d9a82007-08-27 16:49:44 -04006759 int ret;
6760 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006761 u64 extent_start = 0;
6762 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006763 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006764 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006765 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006766 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006767 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006768 struct extent_buffer *leaf;
6769 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006770 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006771 struct extent_map_tree *em_tree = &inode->extent_tree;
6772 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006773 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006774
Chris Mason890871b2009-09-02 16:24:52 -04006775 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006776 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006777 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006778 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006779 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006780
Chris Masona52d9a82007-08-27 16:49:44 -04006781 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006782 if (em->start > start || em->start + em->len <= start)
6783 free_extent_map(em);
6784 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006785 free_extent_map(em);
6786 else
6787 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006788 }
David Sterba172ddd62011-04-21 00:48:27 +02006789 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006790 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006791 err = -ENOMEM;
6792 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006793 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006794 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006795 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006796 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006797 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006798 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006799
Liu Bobee6ec82018-08-17 05:05:28 +08006800 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04006801 if (!path) {
Liu Bobee6ec82018-08-17 05:05:28 +08006802 err = -ENOMEM;
6803 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04006804 }
6805
Liu Bobee6ec82018-08-17 05:05:28 +08006806 /* Chances are we'll be called again, so go ahead and do readahead */
6807 path->reada = READA_FORWARD;
6808
Liu Boe49aabd2018-08-25 13:47:09 +08006809 /*
6810 * Unless we're going to uncompress the inline extent, no sleep would
6811 * happen.
6812 */
6813 path->leave_spinning = 1;
6814
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006815 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006816 if (ret < 0) {
6817 err = ret;
6818 goto out;
6819 }
6820
6821 if (ret != 0) {
6822 if (path->slots[0] == 0)
6823 goto not_found;
6824 path->slots[0]--;
6825 }
6826
Chris Mason5f39d392007-10-15 16:14:19 -04006827 leaf = path->nodes[0];
6828 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006829 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006830 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006831 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006832 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006833 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006834 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006835 /*
6836 * If we backup past the first extent we want to move forward
6837 * and see if there is an extent in front of us, otherwise we'll
6838 * say there is a hole for our whole search range which can
6839 * cause problems.
6840 */
6841 extent_end = start;
6842 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006843 }
6844
Chris Mason5f39d392007-10-15 16:14:19 -04006845 found_type = btrfs_file_extent_type(leaf, item);
6846 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006847 if (found_type == BTRFS_FILE_EXTENT_REG ||
6848 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006849 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006850 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08006851
6852 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6853 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006854 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6855 size_t size;
Qu Wenruoe41ca582018-06-06 15:41:49 +08006856
6857 size = btrfs_file_extent_ram_bytes(leaf, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006858 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006859 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08006860
6861 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6862 path->slots[0],
6863 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006864 }
Josef Bacik25a50342013-10-14 12:08:38 -04006865next:
Yan Zheng9036c102008-10-30 14:19:41 -04006866 if (start >= extent_end) {
6867 path->slots[0]++;
6868 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6869 ret = btrfs_next_leaf(root, path);
6870 if (ret < 0) {
6871 err = ret;
6872 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006873 }
Yan Zheng9036c102008-10-30 14:19:41 -04006874 if (ret > 0)
6875 goto not_found;
6876 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006877 }
Yan Zheng9036c102008-10-30 14:19:41 -04006878 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6879 if (found_key.objectid != objectid ||
6880 found_key.type != BTRFS_EXTENT_DATA_KEY)
6881 goto not_found;
6882 if (start + len <= found_key.offset)
6883 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006884 if (start > found_key.offset)
6885 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006886 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006887 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006888 em->len = found_key.offset - start;
6889 goto not_found_em;
6890 }
6891
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006892 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006893 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006894
Yan Zhengd899e052008-10-30 14:25:28 -04006895 if (found_type == BTRFS_FILE_EXTENT_REG ||
6896 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006897 goto insert;
6898 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006899 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006900 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006901 size_t size;
6902 size_t extent_offset;
6903 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006904
Filipe Manana7ffbb592014-06-09 03:48:05 +01006905 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006906 goto out;
Yan689f9342007-10-29 11:41:07 -04006907
Qu Wenruoe41ca582018-06-06 15:41:49 +08006908 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006909 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006910 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6911 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006912 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006913 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006914 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006915 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006916 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08006917
6918 btrfs_set_path_blocking(path);
Edmund Nadolskibf46f522017-11-20 13:24:49 -07006919 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006920 if (btrfs_file_extent_compression(leaf, item) !=
6921 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006922 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006923 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006924 if (ret) {
6925 err = ret;
6926 goto out;
6927 }
Chris Masonc8b97812008-10-29 14:49:59 -04006928 } else {
6929 map = kmap(page);
6930 read_extent_buffer(leaf, map + pg_offset, ptr,
6931 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006932 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006933 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006934 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006935 copy_size);
6936 }
Chris Masonc8b97812008-10-29 14:49:59 -04006937 kunmap(page);
6938 }
Chris Mason179e29e2007-11-01 11:28:41 -04006939 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04006940 }
Chris Masond1310b22008-01-24 16:13:08 -05006941 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006942 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006943 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006944 }
6945not_found:
6946 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006947 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006948 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006949not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006950 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006951insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006952 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006953 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006954 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006955 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6956 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006957 err = -EIO;
6958 goto out;
6959 }
Chris Masond1310b22008-01-24 16:13:08 -05006960
6961 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006962 write_lock(&em_tree->lock);
David Sterbaf46b24c2018-04-03 21:45:57 +02006963 err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006964 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006965out:
Liu Boc6414282018-08-23 07:36:17 +08006966 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00006967
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006968 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006969
Chris Masona52d9a82007-08-27 16:49:44 -04006970 if (err) {
6971 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006972 return ERR_PTR(err);
6973 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006974 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006975 return em;
6976}
6977
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006978struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
6979 struct page *page,
6980 size_t pg_offset, u64 start, u64 len,
6981 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05006982{
6983 struct extent_map *em;
6984 struct extent_map *hole_em = NULL;
6985 u64 range_start = start;
6986 u64 end;
6987 u64 found;
6988 u64 found_end;
6989 int err = 0;
6990
6991 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6992 if (IS_ERR(em))
6993 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03006994 /*
6995 * If our em maps to:
6996 * - a hole or
6997 * - a pre-alloc extent,
6998 * there might actually be delalloc bytes behind it.
6999 */
7000 if (em->block_start != EXTENT_MAP_HOLE &&
7001 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7002 return em;
7003 else
7004 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007005
7006 /* check to see if we've wrapped (len == -1 or similar) */
7007 end = start + len;
7008 if (end < start)
7009 end = (u64)-1;
7010 else
7011 end -= 1;
7012
7013 em = NULL;
7014
7015 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007016 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007017 end, len, EXTENT_DELALLOC, 1);
7018 found_end = range_start + found;
7019 if (found_end < range_start)
7020 found_end = (u64)-1;
7021
7022 /*
7023 * we didn't find anything useful, return
7024 * the original results from get_extent()
7025 */
7026 if (range_start > end || found_end <= start) {
7027 em = hole_em;
7028 hole_em = NULL;
7029 goto out;
7030 }
7031
7032 /* adjust the range_start to make sure it doesn't
7033 * go backwards from the start they passed in
7034 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307035 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007036 found = found_end - range_start;
7037
7038 if (found > 0) {
7039 u64 hole_start = start;
7040 u64 hole_len = len;
7041
David Sterba172ddd62011-04-21 00:48:27 +02007042 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007043 if (!em) {
7044 err = -ENOMEM;
7045 goto out;
7046 }
7047 /*
7048 * when btrfs_get_extent can't find anything it
7049 * returns one huge hole
7050 *
7051 * make sure what it found really fits our range, and
7052 * adjust to make sure it is based on the start from
7053 * the caller
7054 */
7055 if (hole_em) {
7056 u64 calc_end = extent_map_end(hole_em);
7057
7058 if (calc_end <= start || (hole_em->start > end)) {
7059 free_extent_map(hole_em);
7060 hole_em = NULL;
7061 } else {
7062 hole_start = max(hole_em->start, start);
7063 hole_len = calc_end - hole_start;
7064 }
7065 }
7066 em->bdev = NULL;
7067 if (hole_em && range_start > hole_start) {
7068 /* our hole starts before our delalloc, so we
7069 * have to return just the parts of the hole
7070 * that go until the delalloc starts
7071 */
7072 em->len = min(hole_len,
7073 range_start - hole_start);
7074 em->start = hole_start;
7075 em->orig_start = hole_start;
7076 /*
7077 * don't adjust block start at all,
7078 * it is fixed at EXTENT_MAP_HOLE
7079 */
7080 em->block_start = hole_em->block_start;
7081 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007082 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7083 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007084 } else {
7085 em->start = range_start;
7086 em->len = found;
7087 em->orig_start = range_start;
7088 em->block_start = EXTENT_MAP_DELALLOC;
7089 em->block_len = found;
7090 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007091 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007092 return hole_em;
7093 }
7094out:
7095
7096 free_extent_map(hole_em);
7097 if (err) {
7098 free_extent_map(em);
7099 return ERR_PTR(err);
7100 }
7101 return em;
7102}
7103
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007104static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7105 const u64 start,
7106 const u64 len,
7107 const u64 orig_start,
7108 const u64 block_start,
7109 const u64 block_len,
7110 const u64 orig_block_len,
7111 const u64 ram_bytes,
7112 const int type)
7113{
7114 struct extent_map *em = NULL;
7115 int ret;
7116
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007117 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007118 em = create_io_em(inode, start, len, orig_start,
7119 block_start, block_len, orig_block_len,
7120 ram_bytes,
7121 BTRFS_COMPRESS_NONE, /* compress_type */
7122 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007123 if (IS_ERR(em))
7124 goto out;
7125 }
7126 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7127 len, block_len, type);
7128 if (ret) {
7129 if (em) {
7130 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007131 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007132 start + len - 1, 0);
7133 }
7134 em = ERR_PTR(ret);
7135 }
7136 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007137
7138 return em;
7139}
7140
Josef Bacik4b46fce2010-05-23 11:00:55 -04007141static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7142 u64 start, u64 len)
7143{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007144 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007145 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007146 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007147 struct btrfs_key ins;
7148 u64 alloc_hint;
7149 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007150
Josef Bacik4b46fce2010-05-23 11:00:55 -04007151 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007152 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007153 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007154 if (ret)
7155 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007156
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007157 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7158 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007159 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007160 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007161 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007162 btrfs_free_reserved_extent(fs_info, ins.objectid,
7163 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007164
Josef Bacik4b46fce2010-05-23 11:00:55 -04007165 return em;
7166}
7167
Chris Mason46bfbb52010-05-26 11:04:10 -04007168/*
7169 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7170 * block must be cow'd
7171 */
Josef Bacik00361582013-08-14 14:02:47 -04007172noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007173 u64 *orig_start, u64 *orig_block_len,
7174 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007175{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007176 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007177 struct btrfs_path *path;
7178 int ret;
7179 struct extent_buffer *leaf;
7180 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007181 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007182 struct btrfs_file_extent_item *fi;
7183 struct btrfs_key key;
7184 u64 disk_bytenr;
7185 u64 backref_offset;
7186 u64 extent_end;
7187 u64 num_bytes;
7188 int slot;
7189 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007190 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007191
Chris Mason46bfbb52010-05-26 11:04:10 -04007192 path = btrfs_alloc_path();
7193 if (!path)
7194 return -ENOMEM;
7195
David Sterbaf85b7372017-01-20 14:54:07 +01007196 ret = btrfs_lookup_file_extent(NULL, root, path,
7197 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007198 if (ret < 0)
7199 goto out;
7200
7201 slot = path->slots[0];
7202 if (ret == 1) {
7203 if (slot == 0) {
7204 /* can't find the item, must cow */
7205 ret = 0;
7206 goto out;
7207 }
7208 slot--;
7209 }
7210 ret = 0;
7211 leaf = path->nodes[0];
7212 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007213 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007214 key.type != BTRFS_EXTENT_DATA_KEY) {
7215 /* not our file or wrong item type, must cow */
7216 goto out;
7217 }
7218
7219 if (key.offset > offset) {
7220 /* Wrong offset, must cow */
7221 goto out;
7222 }
7223
7224 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7225 found_type = btrfs_file_extent_type(leaf, fi);
7226 if (found_type != BTRFS_FILE_EXTENT_REG &&
7227 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7228 /* not a regular extent, must cow */
7229 goto out;
7230 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007231
7232 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7233 goto out;
7234
Miao Xiee77751a2013-12-27 21:11:50 +08007235 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7236 if (extent_end <= offset)
7237 goto out;
7238
Chris Mason46bfbb52010-05-26 11:04:10 -04007239 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007240 if (disk_bytenr == 0)
7241 goto out;
7242
7243 if (btrfs_file_extent_compression(leaf, fi) ||
7244 btrfs_file_extent_encryption(leaf, fi) ||
7245 btrfs_file_extent_other_encoding(leaf, fi))
7246 goto out;
7247
Ethan Lien78d42952018-05-17 14:58:29 +08007248 /*
7249 * Do the same check as in btrfs_cross_ref_exist but without the
7250 * unnecessary search.
7251 */
7252 if (btrfs_file_extent_generation(leaf, fi) <=
7253 btrfs_root_last_snapshot(&root->root_item))
7254 goto out;
7255
Chris Mason46bfbb52010-05-26 11:04:10 -04007256 backref_offset = btrfs_file_extent_offset(leaf, fi);
7257
Josef Bacik7ee9e442013-06-21 16:37:03 -04007258 if (orig_start) {
7259 *orig_start = key.offset - backref_offset;
7260 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7261 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7262 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007263
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007264 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007265 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007266
7267 num_bytes = min(offset + *len, extent_end) - offset;
7268 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7269 u64 range_end;
7270
Jeff Mahoneyda170662016-06-15 09:22:56 -04007271 range_end = round_up(offset + num_bytes,
7272 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007273 ret = test_range_bit(io_tree, offset, range_end,
7274 EXTENT_DELALLOC, 0, NULL);
7275 if (ret) {
7276 ret = -EAGAIN;
7277 goto out;
7278 }
7279 }
7280
Josef Bacik1bda19e2013-10-18 12:10:36 -04007281 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007282
7283 /*
7284 * look for other files referencing this extent, if we
7285 * find any we must cow
7286 */
Josef Bacik00361582013-08-14 14:02:47 -04007287
Liu Boe4c3b2d2017-01-30 12:25:28 -08007288 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007289 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007290 if (ret) {
7291 ret = 0;
7292 goto out;
7293 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007294
7295 /*
7296 * adjust disk_bytenr and num_bytes to cover just the bytes
7297 * in this extent we are about to write. If there
7298 * are any csums in that range we have to cow in order
7299 * to keep the csums correct
7300 */
7301 disk_bytenr += backref_offset;
7302 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007303 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7304 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007305 /*
7306 * all of the above have passed, it is safe to overwrite this extent
7307 * without cow
7308 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007309 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007310 ret = 1;
7311out:
7312 btrfs_free_path(path);
7313 return ret;
7314}
7315
Josef Bacikeb838e72012-07-31 16:28:48 -04007316static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7317 struct extent_state **cached_state, int writing)
7318{
7319 struct btrfs_ordered_extent *ordered;
7320 int ret = 0;
7321
7322 while (1) {
7323 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007324 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007325 /*
7326 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007327 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007328 * extents in this range.
7329 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007330 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007331 lockend - lockstart + 1);
7332
7333 /*
7334 * We need to make sure there are no buffered pages in this
7335 * range either, we could have raced between the invalidate in
7336 * generic_file_direct_write and locking the extent. The
7337 * invalidate needs to happen so that reads after a write do not
7338 * get stale data.
7339 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007340 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007341 (!writing || !filemap_range_has_page(inode->i_mapping,
7342 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007343 break;
7344
7345 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007346 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007347
7348 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007349 /*
7350 * If we are doing a DIO read and the ordered extent we
7351 * found is for a buffered write, we can not wait for it
7352 * to complete and retry, because if we do so we can
7353 * deadlock with concurrent buffered writes on page
7354 * locks. This happens only if our DIO read covers more
7355 * than one extent map, if at this point has already
7356 * created an ordered extent for a previous extent map
7357 * and locked its range in the inode's io tree, and a
7358 * concurrent write against that previous extent map's
7359 * range and this range started (we unlock the ranges
7360 * in the io tree only when the bios complete and
7361 * buffered writes always lock pages before attempting
7362 * to lock range in the io tree).
7363 */
7364 if (writing ||
7365 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7366 btrfs_start_ordered_extent(inode, ordered, 1);
7367 else
7368 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007369 btrfs_put_ordered_extent(ordered);
7370 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007371 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007372 * We could trigger writeback for this range (and wait
7373 * for it to complete) and then invalidate the pages for
7374 * this range (through invalidate_inode_pages2_range()),
7375 * but that can lead us to a deadlock with a concurrent
7376 * call to readpages() (a buffered read or a defrag call
7377 * triggered a readahead) on a page lock due to an
7378 * ordered dio extent we created before but did not have
7379 * yet a corresponding bio submitted (whence it can not
7380 * complete), which makes readpages() wait for that
7381 * ordered extent to complete while holding a lock on
7382 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007383 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007384 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007385 }
7386
Filipe Mananaade77022016-02-18 14:28:55 +00007387 if (ret)
7388 break;
7389
Josef Bacikeb838e72012-07-31 16:28:48 -04007390 cond_resched();
7391 }
7392
7393 return ret;
7394}
7395
Liu Bo6f9994d2017-01-31 07:50:22 -08007396/* The callers of this must take lock_extent() */
7397static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7398 u64 orig_start, u64 block_start,
7399 u64 block_len, u64 orig_block_len,
7400 u64 ram_bytes, int compress_type,
7401 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007402{
7403 struct extent_map_tree *em_tree;
7404 struct extent_map *em;
7405 struct btrfs_root *root = BTRFS_I(inode)->root;
7406 int ret;
7407
Liu Bo6f9994d2017-01-31 07:50:22 -08007408 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7409 type == BTRFS_ORDERED_COMPRESSED ||
7410 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007411 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007412
Josef Bacik69ffb542012-09-11 15:40:07 -04007413 em_tree = &BTRFS_I(inode)->extent_tree;
7414 em = alloc_extent_map();
7415 if (!em)
7416 return ERR_PTR(-ENOMEM);
7417
7418 em->start = start;
7419 em->orig_start = orig_start;
7420 em->len = len;
7421 em->block_len = block_len;
7422 em->block_start = block_start;
7423 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007424 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007425 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007426 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007427 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007428 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007429 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007430 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007431 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7432 em->compress_type = compress_type;
7433 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007434
7435 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007436 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007437 em->start + em->len - 1, 0);
7438 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007439 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007440 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007441 /*
7442 * The caller has taken lock_extent(), who could race with us
7443 * to add em?
7444 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007445 } while (ret == -EEXIST);
7446
7447 if (ret) {
7448 free_extent_map(em);
7449 return ERR_PTR(ret);
7450 }
7451
Liu Bo6f9994d2017-01-31 07:50:22 -08007452 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007453 return em;
7454}
7455
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007456
7457static int btrfs_get_blocks_direct_read(struct extent_map *em,
7458 struct buffer_head *bh_result,
7459 struct inode *inode,
7460 u64 start, u64 len)
7461{
7462 if (em->block_start == EXTENT_MAP_HOLE ||
7463 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7464 return -ENOENT;
7465
7466 len = min(len, em->len - (start - em->start));
7467
7468 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7469 inode->i_blkbits;
7470 bh_result->b_size = len;
7471 bh_result->b_bdev = em->bdev;
7472 set_buffer_mapped(bh_result);
7473
7474 return 0;
7475}
7476
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007477static int btrfs_get_blocks_direct_write(struct extent_map **map,
7478 struct buffer_head *bh_result,
7479 struct inode *inode,
7480 struct btrfs_dio_data *dio_data,
7481 u64 start, u64 len)
7482{
7483 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7484 struct extent_map *em = *map;
7485 int ret = 0;
7486
7487 /*
7488 * We don't allocate a new extent in the following cases
7489 *
7490 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7491 * existing extent.
7492 * 2) The extent is marked as PREALLOC. We're good to go here and can
7493 * just use the extent.
7494 *
7495 */
7496 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7497 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7498 em->block_start != EXTENT_MAP_HOLE)) {
7499 int type;
7500 u64 block_start, orig_start, orig_block_len, ram_bytes;
7501
7502 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7503 type = BTRFS_ORDERED_PREALLOC;
7504 else
7505 type = BTRFS_ORDERED_NOCOW;
7506 len = min(len, em->len - (start - em->start));
7507 block_start = em->block_start + (start - em->start);
7508
7509 if (can_nocow_extent(inode, start, &len, &orig_start,
7510 &orig_block_len, &ram_bytes) == 1 &&
7511 btrfs_inc_nocow_writers(fs_info, block_start)) {
7512 struct extent_map *em2;
7513
7514 em2 = btrfs_create_dio_extent(inode, start, len,
7515 orig_start, block_start,
7516 len, orig_block_len,
7517 ram_bytes, type);
7518 btrfs_dec_nocow_writers(fs_info, block_start);
7519 if (type == BTRFS_ORDERED_PREALLOC) {
7520 free_extent_map(em);
7521 *map = em = em2;
7522 }
7523
7524 if (em2 && IS_ERR(em2)) {
7525 ret = PTR_ERR(em2);
7526 goto out;
7527 }
7528 /*
7529 * For inode marked NODATACOW or extent marked PREALLOC,
7530 * use the existing or preallocated extent, so does not
7531 * need to adjust btrfs_space_info's bytes_may_use.
7532 */
7533 btrfs_free_reserved_data_space_noquota(inode, start,
7534 len);
7535 goto skip_cow;
7536 }
7537 }
7538
7539 /* this will cow the extent */
7540 len = bh_result->b_size;
7541 free_extent_map(em);
7542 *map = em = btrfs_new_extent_direct(inode, start, len);
7543 if (IS_ERR(em)) {
7544 ret = PTR_ERR(em);
7545 goto out;
7546 }
7547
7548 len = min(len, em->len - (start - em->start));
7549
7550skip_cow:
7551 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7552 inode->i_blkbits;
7553 bh_result->b_size = len;
7554 bh_result->b_bdev = em->bdev;
7555 set_buffer_mapped(bh_result);
7556
7557 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7558 set_buffer_new(bh_result);
7559
7560 /*
7561 * Need to update the i_size under the extent lock so buffered
7562 * readers will get the updated i_size when we unlock.
7563 */
7564 if (!dio_data->overwrite && start + len > i_size_read(inode))
7565 i_size_write(inode, start + len);
7566
7567 WARN_ON(dio_data->reserve < len);
7568 dio_data->reserve -= len;
7569 dio_data->unsubmitted_oe_range_end = start + len;
7570 current->journal_info = dio_data;
7571out:
7572 return ret;
7573}
7574
Josef Bacik4b46fce2010-05-23 11:00:55 -04007575static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7576 struct buffer_head *bh_result, int create)
7577{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007578 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007579 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007580 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307581 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007582 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007583 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007584 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007585 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007586 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007587
Miao Xie172a5042013-02-21 02:48:22 -07007588 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007589 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007590 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007591 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007592
Josef Bacikc3298612012-08-03 16:49:19 -04007593 lockstart = start;
7594 lockend = start + len - 1;
7595
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007596 if (current->journal_info) {
7597 /*
7598 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007599 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007600 * confused.
7601 */
chandan50745b02015-08-28 21:10:13 +05307602 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007603 current->journal_info = NULL;
7604 }
7605
Josef Bacikeb838e72012-07-31 16:28:48 -04007606 /*
7607 * If this errors out it's because we couldn't invalidate pagecache for
7608 * this range and we need to fallback to buffered.
7609 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007610 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7611 create)) {
7612 ret = -ENOTBLK;
7613 goto err;
7614 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007615
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007616 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007617 if (IS_ERR(em)) {
7618 ret = PTR_ERR(em);
7619 goto unlock_err;
7620 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007621
7622 /*
7623 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7624 * io. INLINE is special, and we could probably kludge it in here, but
7625 * it's still buffered so for safety lets just fall back to the generic
7626 * buffered path.
7627 *
7628 * For COMPRESSED we _have_ to read the entire extent in so we can
7629 * decompress it, so there will be buffering required no matter what we
7630 * do, so go ahead and fallback to buffered.
7631 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007632 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007633 * to buffered IO. Don't blame me, this is the price we pay for using
7634 * the generic code.
7635 */
7636 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7637 em->block_start == EXTENT_MAP_INLINE) {
7638 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007639 ret = -ENOTBLK;
7640 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007641 }
7642
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007643 if (create) {
7644 ret = btrfs_get_blocks_direct_write(&em, bh_result, inode,
7645 dio_data, start, len);
7646 if (ret < 0)
7647 goto unlock_err;
7648
7649 /* clear and unlock the entire range */
7650 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7651 unlock_bits, 1, 0, &cached_state);
7652 } else {
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007653 ret = btrfs_get_blocks_direct_read(em, bh_result, inode,
7654 start, len);
7655 /* Can be negative only if we read from a hole */
7656 if (ret < 0) {
7657 ret = 0;
7658 free_extent_map(em);
7659 goto unlock_err;
7660 }
7661 /*
7662 * We need to unlock only the end area that we aren't using.
7663 * The rest is going to be unlocked by the endio routine.
7664 */
7665 lockstart = start + bh_result->b_size;
7666 if (lockstart < lockend) {
7667 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7668 lockend, unlock_bits, 1, 0,
7669 &cached_state);
7670 } else {
7671 free_extent_state(cached_state);
7672 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007673 }
7674
Josef Bacik4b46fce2010-05-23 11:00:55 -04007675 free_extent_map(em);
7676
7677 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007678
7679unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007680 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaae0f1622017-10-31 16:37:52 +01007681 unlock_bits, 1, 0, &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007682err:
chandan50745b02015-08-28 21:10:13 +05307683 if (dio_data)
7684 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007685 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007686}
7687
Omar Sandoval58efbc92017-08-22 23:45:59 -07007688static inline blk_status_t submit_dio_repair_bio(struct inode *inode,
7689 struct bio *bio,
7690 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007691{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007692 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007693 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007694
Mike Christie37226b22016-06-05 14:31:52 -05007695 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007696
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007697 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007698 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007699 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007700
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007701 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Nikolay Borisovea057f62017-12-13 10:25:38 +02007702
Miao Xie8b110e32014-09-12 18:44:03 +08007703 return ret;
7704}
7705
7706static int btrfs_check_dio_repairable(struct inode *inode,
7707 struct bio *failed_bio,
7708 struct io_failure_record *failrec,
7709 int failed_mirror)
7710{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007711 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007712 int num_copies;
7713
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007714 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007715 if (num_copies == 1) {
7716 /*
7717 * we only have a single copy of the data, so don't bother with
7718 * all the retry and error correction code that follows. no
7719 * matter what the error is, it is very likely to persist.
7720 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007721 btrfs_debug(fs_info,
7722 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7723 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007724 return 0;
7725 }
7726
7727 failrec->failed_mirror = failed_mirror;
7728 failrec->this_mirror++;
7729 if (failrec->this_mirror == failed_mirror)
7730 failrec->this_mirror++;
7731
7732 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007733 btrfs_debug(fs_info,
7734 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7735 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007736 return 0;
7737 }
7738
7739 return 1;
7740}
7741
Omar Sandoval58efbc92017-08-22 23:45:59 -07007742static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio,
7743 struct page *page, unsigned int pgoff,
7744 u64 start, u64 end, int failed_mirror,
7745 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007746{
7747 struct io_failure_record *failrec;
Josef Bacik7870d082017-05-05 11:57:15 -04007748 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7749 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007750 struct bio *bio;
7751 int isector;
David Sterbaf1c77c52017-06-06 19:03:49 +02007752 unsigned int read_mode = 0;
Liu Bo17347ce2017-05-15 15:33:27 -07007753 int segs;
Miao Xie8b110e32014-09-12 18:44:03 +08007754 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007755 blk_status_t status;
Ming Leic16a8ac2017-12-18 20:22:12 +08007756 struct bio_vec bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007757
Mike Christie37226b22016-06-05 14:31:52 -05007758 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007759
7760 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7761 if (ret)
Omar Sandoval58efbc92017-08-22 23:45:59 -07007762 return errno_to_blk_status(ret);
Miao Xie8b110e32014-09-12 18:44:03 +08007763
7764 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7765 failed_mirror);
7766 if (!ret) {
Josef Bacik7870d082017-05-05 11:57:15 -04007767 free_io_failure(failure_tree, io_tree, failrec);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007768 return BLK_STS_IOERR;
Miao Xie8b110e32014-09-12 18:44:03 +08007769 }
7770
Liu Bo17347ce2017-05-15 15:33:27 -07007771 segs = bio_segments(failed_bio);
Ming Leic16a8ac2017-12-18 20:22:12 +08007772 bio_get_first_bvec(failed_bio, &bvec);
Liu Bo17347ce2017-05-15 15:33:27 -07007773 if (segs > 1 ||
Ming Leic16a8ac2017-12-18 20:22:12 +08007774 (bvec.bv_len > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007775 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007776
7777 isector = start - btrfs_io_bio(failed_bio)->logical;
7778 isector >>= inode->i_sb->s_blocksize_bits;
7779 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307780 pgoff, isector, repair_endio, repair_arg);
David Sterbaebcc3262018-06-29 10:56:53 +02007781 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie8b110e32014-09-12 18:44:03 +08007782
7783 btrfs_debug(BTRFS_I(inode)->root->fs_info,
David Sterba913e1532017-07-13 15:32:18 +02007784 "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d",
Miao Xie8b110e32014-09-12 18:44:03 +08007785 read_mode, failrec->this_mirror, failrec->in_validation);
7786
Omar Sandoval58efbc92017-08-22 23:45:59 -07007787 status = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
7788 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04007789 free_io_failure(failure_tree, io_tree, failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007790 bio_put(bio);
7791 }
7792
Omar Sandoval58efbc92017-08-22 23:45:59 -07007793 return status;
Miao Xie8b110e32014-09-12 18:44:03 +08007794}
7795
7796struct btrfs_retry_complete {
7797 struct completion done;
7798 struct inode *inode;
7799 u64 start;
7800 int uptodate;
7801};
7802
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007803static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007804{
7805 struct btrfs_retry_complete *done = bio->bi_private;
Josef Bacik7870d082017-05-05 11:57:15 -04007806 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007807 struct bio_vec *bvec;
Josef Bacik7870d082017-05-05 11:57:15 -04007808 struct extent_io_tree *io_tree, *failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007809 int i;
7810
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007811 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007812 goto end;
7813
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307814 ASSERT(bio->bi_vcnt == 1);
Josef Bacik7870d082017-05-05 11:57:15 -04007815 io_tree = &BTRFS_I(inode)->io_tree;
7816 failure_tree = &BTRFS_I(inode)->io_failure_tree;
Ming Lei263663c2017-12-18 20:22:04 +08007817 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307818
Miao Xie8b110e32014-09-12 18:44:03 +08007819 done->uptodate = 1;
David Sterbac09abff2017-07-13 18:10:07 +02007820 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007821 bio_for_each_segment_all(bvec, bio, i)
Josef Bacik7870d082017-05-05 11:57:15 -04007822 clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree,
7823 io_tree, done->start, bvec->bv_page,
7824 btrfs_ino(BTRFS_I(inode)), 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007825end:
7826 complete(&done->done);
7827 bio_put(bio);
7828}
7829
Omar Sandoval58efbc92017-08-22 23:45:59 -07007830static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode,
7831 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007832{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307833 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007834 struct bio_vec bvec;
7835 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007836 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007837 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307838 unsigned int pgoff;
7839 u32 sectorsize;
7840 int nr_sectors;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007841 blk_status_t ret;
7842 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007843
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307844 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007845 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307846
Miao Xiec1dc0892014-09-12 18:43:56 +08007847 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007848 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007849 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007850
Liu Bo17347ce2017-05-15 15:33:27 -07007851 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7852 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7853 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307854
7855next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007856 done.uptodate = 0;
7857 done.start = start;
7858 init_completion(&done.done);
7859
Liu Bo17347ce2017-05-15 15:33:27 -07007860 ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307861 pgoff, start, start + sectorsize - 1,
7862 io_bio->mirror_num,
7863 btrfs_retry_endio_nocsum, &done);
Liu Bo629ebf42017-05-15 17:20:07 -07007864 if (ret) {
7865 err = ret;
7866 goto next;
7867 }
Miao Xie8b110e32014-09-12 18:44:03 +08007868
David Sterba9c17f6c2017-07-19 19:26:45 +02007869 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007870
7871 if (!done.uptodate) {
7872 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307873 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007874 }
7875
Liu Bo629ebf42017-05-15 17:20:07 -07007876next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307877 start += sectorsize;
7878
Liu Bo97bf5a52017-04-07 13:11:10 -07007879 nr_sectors--;
7880 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307881 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007882 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307883 goto next_block_or_try_again;
7884 }
Miao Xie8b110e32014-09-12 18:44:03 +08007885 }
7886
Liu Bo629ebf42017-05-15 17:20:07 -07007887 return err;
Miao Xie8b110e32014-09-12 18:44:03 +08007888}
7889
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007890static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007891{
7892 struct btrfs_retry_complete *done = bio->bi_private;
7893 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04007894 struct extent_io_tree *io_tree, *failure_tree;
7895 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007896 struct bio_vec *bvec;
7897 int uptodate;
7898 int ret;
7899 int i;
7900
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007901 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007902 goto end;
7903
7904 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307905
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307906 ASSERT(bio->bi_vcnt == 1);
Ming Lei263663c2017-12-18 20:22:04 +08007907 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307908
Josef Bacik7870d082017-05-05 11:57:15 -04007909 io_tree = &BTRFS_I(inode)->io_tree;
7910 failure_tree = &BTRFS_I(inode)->io_failure_tree;
7911
David Sterbac09abff2017-07-13 18:10:07 +02007912 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007913 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik7870d082017-05-05 11:57:15 -04007914 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7915 bvec->bv_offset, done->start,
7916 bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007917 if (!ret)
Josef Bacik7870d082017-05-05 11:57:15 -04007918 clean_io_failure(BTRFS_I(inode)->root->fs_info,
7919 failure_tree, io_tree, done->start,
7920 bvec->bv_page,
7921 btrfs_ino(BTRFS_I(inode)),
7922 bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08007923 else
7924 uptodate = 0;
7925 }
7926
7927 done->uptodate = uptodate;
7928end:
7929 complete(&done->done);
7930 bio_put(bio);
7931}
7932
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007933static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
7934 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08007935{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307936 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007937 struct bio_vec bvec;
7938 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007939 struct btrfs_retry_complete done;
7940 u64 start;
7941 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307942 u32 sectorsize;
7943 int nr_sectors;
7944 unsigned int pgoff;
7945 int csum_pos;
Liu Boef7cdac12017-04-13 18:11:48 -07007946 bool uptodate = (err == 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007947 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007948 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08007949
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307950 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007951 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307952
Omar Sandoval58efbc92017-08-22 23:45:59 -07007953 err = BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08007954 start = io_bio->logical;
7955 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007956 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007957
Liu Bo17347ce2017-05-15 15:33:27 -07007958 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7959 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307960
Liu Bo17347ce2017-05-15 15:33:27 -07007961 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307962next_block:
Liu Boef7cdac12017-04-13 18:11:48 -07007963 if (uptodate) {
7964 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
7965 ret = __readpage_endio_check(inode, io_bio, csum_pos,
7966 bvec.bv_page, pgoff, start, sectorsize);
7967 if (likely(!ret))
7968 goto next;
7969 }
Miao Xie8b110e32014-09-12 18:44:03 +08007970try_again:
7971 done.uptodate = 0;
7972 done.start = start;
7973 init_completion(&done.done);
7974
Omar Sandoval58efbc92017-08-22 23:45:59 -07007975 status = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
7976 pgoff, start, start + sectorsize - 1,
7977 io_bio->mirror_num, btrfs_retry_endio,
7978 &done);
7979 if (status) {
7980 err = status;
Miao Xie8b110e32014-09-12 18:44:03 +08007981 goto next;
7982 }
7983
David Sterba9c17f6c2017-07-19 19:26:45 +02007984 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007985
7986 if (!done.uptodate) {
7987 /* We might have another mirror, so try again */
7988 goto try_again;
7989 }
7990next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307991 offset += sectorsize;
7992 start += sectorsize;
7993
7994 ASSERT(nr_sectors);
7995
Liu Bo97bf5a52017-04-07 13:11:10 -07007996 nr_sectors--;
7997 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307998 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007999 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308000 goto next_block;
8001 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008002 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008003
8004 return err;
8005}
8006
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008007static blk_status_t btrfs_subio_endio_read(struct inode *inode,
8008 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08008009{
8010 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8011
8012 if (skip_csum) {
8013 if (unlikely(err))
8014 return __btrfs_correct_data_nocsum(inode, io_bio);
8015 else
Omar Sandoval58efbc92017-08-22 23:45:59 -07008016 return BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08008017 } else {
8018 return __btrfs_subio_endio_read(inode, io_bio, err);
8019 }
8020}
8021
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008022static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008023{
8024 struct btrfs_dio_private *dip = bio->bi_private;
8025 struct inode *inode = dip->inode;
8026 struct bio *dio_bio;
8027 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008028 blk_status_t err = bio->bi_status;
Miao Xiec1dc0892014-09-12 18:43:56 +08008029
Liu Bo99c4e3b92017-09-15 15:06:51 -06008030 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
Miao Xie8b110e32014-09-12 18:44:03 +08008031 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008032
Josef Bacik4b46fce2010-05-23 11:00:55 -04008033 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008034 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008035 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008036
Josef Bacik4b46fce2010-05-23 11:00:55 -04008037 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008038
Liu Bo99c4e3b92017-09-15 15:06:51 -06008039 dio_bio->bi_status = err;
Christoph Hellwig40553512017-06-03 09:37:58 +02008040 dio_end_io(dio_bio);
Miao Xie23ea8e52014-09-12 18:43:54 +08008041
8042 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008043 io_bio->end_io(io_bio, blk_status_to_errno(err));
Chris Mason9be33952013-05-17 18:30:14 -04008044 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008045}
8046
Qu Wenruo524272602017-03-08 10:25:52 +08008047static void __endio_write_update_ordered(struct inode *inode,
8048 const u64 offset, const u64 bytes,
8049 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008050{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008051 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008052 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008053 struct btrfs_workqueue *wq;
8054 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008055 u64 ordered_offset = offset;
8056 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09008057 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008058
Qu Wenruo524272602017-03-08 10:25:52 +08008059 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8060 wq = fs_info->endio_freespace_worker;
8061 func = btrfs_freespace_write_helper;
8062 } else {
8063 wq = fs_info->endio_write_workers;
8064 func = btrfs_endio_write_helper;
8065 }
8066
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03008067 while (ordered_offset < offset + bytes) {
8068 last_offset = ordered_offset;
8069 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
8070 &ordered_offset,
8071 ordered_bytes,
8072 uptodate)) {
8073 btrfs_init_work(&ordered->work, func,
8074 finish_ordered_fn,
8075 NULL, NULL);
8076 btrfs_queue_work(wq, &ordered->work);
8077 }
8078 /*
8079 * If btrfs_dec_test_ordered_pending does not find any ordered
8080 * extent in the range, we can exit.
8081 */
8082 if (ordered_offset == last_offset)
8083 return;
8084 /*
8085 * Our bio might span multiple ordered extents. In this case
8086 * we keep goin until we have accounted the whole dio.
8087 */
8088 if (ordered_offset < offset + bytes) {
8089 ordered_bytes = offset + bytes - ordered_offset;
8090 ordered = NULL;
8091 }
Chris Mason163cf092010-11-28 19:56:33 -05008092 }
Filipe Manana14543772015-11-24 16:23:54 +00008093}
8094
8095static void btrfs_endio_direct_write(struct bio *bio)
8096{
8097 struct btrfs_dio_private *dip = bio->bi_private;
8098 struct bio *dio_bio = dip->dio_bio;
8099
Qu Wenruo524272602017-03-08 10:25:52 +08008100 __endio_write_update_ordered(dip->inode, dip->logical_offset,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008101 dip->bytes, !bio->bi_status);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008102
Josef Bacik4b46fce2010-05-23 11:00:55 -04008103 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008104
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008105 dio_bio->bi_status = bio->bi_status;
Christoph Hellwig40553512017-06-03 09:37:58 +02008106 dio_end_io(dio_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008107 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008108}
8109
David Sterbad0ee3932018-03-08 14:35:48 +01008110static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data,
David Sterbad0779292018-03-08 13:47:33 +01008111 struct bio *bio, u64 offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04008112{
Josef Bacikc6100a42017-05-05 11:57:13 -04008113 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008114 blk_status_t ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008115 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008116 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008117 return 0;
8118}
8119
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008120static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008121{
8122 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008123 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008124
Miao Xie8b110e32014-09-12 18:44:03 +08008125 if (err)
8126 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008127 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008128 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8129 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008130 (unsigned long long)bio->bi_iter.bi_sector,
8131 bio->bi_iter.bi_size, err);
8132
8133 if (dip->subio_endio)
8134 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008135
8136 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008137 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008138 * We want to perceive the errors flag being set before
8139 * decrementing the reference count. We don't need a barrier
8140 * since atomic operations with a return value are fully
8141 * ordered as per atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008142 */
Nikolay Borisovde224b72018-02-14 10:53:36 +02008143 dip->errors = 1;
Miao Xiee65e1532010-11-22 03:04:43 +00008144 }
8145
8146 /* if there are more bios still pending for this dio, just exit */
8147 if (!atomic_dec_and_test(&dip->pending_bios))
8148 goto out;
8149
Chris Mason9be33952013-05-17 18:30:14 -04008150 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008151 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008152 } else {
Anand Jain2dbe0c72017-10-14 08:35:56 +08008153 dip->dio_bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008154 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008155 }
8156out:
8157 bio_put(bio);
8158}
8159
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008160static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008161 struct btrfs_dio_private *dip,
8162 struct bio *bio,
8163 u64 file_offset)
8164{
8165 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8166 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008167 blk_status_t ret;
Miao Xiec1dc0892014-09-12 18:43:56 +08008168
8169 /*
8170 * We load all the csum data we need when we submit
8171 * the first bio to reduce the csum tree search and
8172 * contention.
8173 */
8174 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008175 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008176 file_offset);
8177 if (ret)
8178 return ret;
8179 }
8180
8181 if (bio == dip->orig_bio)
8182 return 0;
8183
8184 file_offset -= dip->logical_offset;
8185 file_offset >>= inode->i_sb->s_blocksize_bits;
8186 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8187
8188 return 0;
8189}
8190
David Sterbad0ee3932018-03-08 14:35:48 +01008191static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8192 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008193{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008194 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008195 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008196 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008197 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008198
Liu Bo4c274bc2017-11-01 17:19:27 -06008199 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008200 if (async_submit)
8201 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8202
Josef Bacik5fd02042012-05-02 14:00:54 -04008203 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008204 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008205 if (ret)
8206 goto err;
8207 }
Miao Xiee65e1532010-11-22 03:04:43 +00008208
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008209 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008210 goto map;
8211
8212 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04008213 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
8214 file_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02008215 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00008216 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008217 } else if (write) {
8218 /*
8219 * If we aren't doing async submit, calculate the csum of the
8220 * bio now.
8221 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008222 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008223 if (ret)
8224 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008225 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008226 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008227 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008228 if (ret)
8229 goto err;
8230 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008231map:
Liu Bo9b4a9b22017-08-18 11:54:02 -06008232 ret = btrfs_map_bio(fs_info, bio, 0, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008233err:
Miao Xiee65e1532010-11-22 03:04:43 +00008234 return ret;
8235}
8236
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008237static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip)
Miao Xiee65e1532010-11-22 03:04:43 +00008238{
8239 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008240 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008241 struct bio *bio;
8242 struct bio *orig_bio = dip->orig_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008243 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008244 u64 file_offset = dip->logical_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008245 u64 map_length;
Josef Bacik1ae39932011-04-06 14:41:34 -04008246 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008247 u64 submit_len;
8248 int clone_offset = 0;
8249 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308250 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008251 blk_status_t status;
Miao Xiee65e1532010-11-22 03:04:43 +00008252
Kent Overstreet4f024f32013-10-11 15:44:27 -07008253 map_length = orig_bio->bi_iter.bi_size;
Liu Bo725130b2017-05-16 09:51:39 -07008254 submit_len = map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008255 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8256 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008257 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008258 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008259
Liu Bo725130b2017-05-16 09:51:39 -07008260 if (map_length >= submit_len) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008261 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008262 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008263 goto submit;
8264 }
8265
David Woodhouse53b381b2013-01-29 18:40:14 -05008266 /* async crcs make it difficult to collect full stripe writes. */
Jeff Mahoney1b868262017-05-17 11:38:35 -04008267 if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008268 async_submit = 0;
8269 else
8270 async_submit = 1;
8271
Liu Bo725130b2017-05-16 09:51:39 -07008272 /* bio split */
8273 ASSERT(map_length <= INT_MAX);
Josef Bacik02f57c72011-04-06 14:25:44 -04008274 atomic_inc(&dip->pending_bios);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008275 do {
Liu Bo725130b2017-05-16 09:51:39 -07008276 clone_len = min_t(int, submit_len, map_length);
Josef Bacik02f57c72011-04-06 14:25:44 -04008277
Liu Bo725130b2017-05-16 09:51:39 -07008278 /*
8279 * This will never fail as it's passing GPF_NOFS and
8280 * the allocation is backed by btrfs_bioset.
8281 */
Liu Boe4770942017-05-16 10:57:14 -07008282 bio = btrfs_bio_clone_partial(orig_bio, clone_offset,
Liu Bo725130b2017-05-16 09:51:39 -07008283 clone_len);
8284 bio->bi_private = dip;
8285 bio->bi_end_io = btrfs_end_dio_bio;
8286 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008287
Liu Bo725130b2017-05-16 09:51:39 -07008288 ASSERT(submit_len >= clone_len);
8289 submit_len -= clone_len;
8290 if (submit_len == 0)
8291 break;
Miao Xiee65e1532010-11-22 03:04:43 +00008292
Liu Bo725130b2017-05-16 09:51:39 -07008293 /*
8294 * Increase the count before we submit the bio so we know
8295 * the end IO handler won't happen before we increase the
8296 * count. Otherwise, the dip might get freed before we're
8297 * done setting it up.
8298 */
8299 atomic_inc(&dip->pending_bios);
Miao Xiee65e1532010-11-22 03:04:43 +00008300
David Sterbad0ee3932018-03-08 14:35:48 +01008301 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008302 async_submit);
8303 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008304 bio_put(bio);
8305 atomic_dec(&dip->pending_bios);
8306 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00008307 }
Liu Bo725130b2017-05-16 09:51:39 -07008308
8309 clone_offset += clone_len;
8310 start_sector += clone_len >> 9;
8311 file_offset += clone_len;
8312
8313 map_length = submit_len;
8314 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
8315 start_sector << 9, &map_length, NULL, 0);
8316 if (ret)
8317 goto out_err;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008318 } while (submit_len > 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008319
Josef Bacik02f57c72011-04-06 14:25:44 -04008320submit:
David Sterbad0ee3932018-03-08 14:35:48 +01008321 status = btrfs_submit_dio_bio(bio, inode, file_offset, async_submit);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008322 if (!status)
Miao Xiee65e1532010-11-22 03:04:43 +00008323 return 0;
8324
8325 bio_put(bio);
8326out_err:
8327 dip->errors = 1;
8328 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008329 * Before atomic variable goto zero, we must make sure dip->errors is
8330 * perceived to be set. This ordering is ensured by the fact that an
8331 * atomic operations with a return value are fully ordered as per
8332 * atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008333 */
Miao Xiee65e1532010-11-22 03:04:43 +00008334 if (atomic_dec_and_test(&dip->pending_bios))
8335 bio_io_error(dip->orig_bio);
8336
8337 /* bio_end_io() will handle error, so we needn't return it */
8338 return 0;
8339}
8340
Mike Christie8a4c1e42016-06-05 14:31:50 -05008341static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8342 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008343{
Filipe Manana61de7182015-07-01 12:13:10 +01008344 struct btrfs_dio_private *dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008345 struct bio *bio = NULL;
8346 struct btrfs_io_bio *io_bio;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008347 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008348 int ret = 0;
8349
David Sterba8b6c1d52017-06-02 17:48:13 +02008350 bio = btrfs_bio_clone(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008351
Miao Xiec1dc0892014-09-12 18:43:56 +08008352 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008353 if (!dip) {
8354 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008355 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008356 }
8357
8358 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008359 dip->inode = inode;
8360 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008361 dip->bytes = dio_bio->bi_iter.bi_size;
8362 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Liu Bo3892ac92017-04-17 15:00:28 -07008363 bio->bi_private = dip;
8364 dip->orig_bio = bio;
Chris Mason9be33952013-05-17 18:30:14 -04008365 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008366 atomic_set(&dip->pending_bios, 0);
Liu Bo3892ac92017-04-17 15:00:28 -07008367 io_bio = btrfs_io_bio(bio);
8368 io_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008369
Miao Xiec1dc0892014-09-12 18:43:56 +08008370 if (write) {
Liu Bo3892ac92017-04-17 15:00:28 -07008371 bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008372 } else {
Liu Bo3892ac92017-04-17 15:00:28 -07008373 bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008374 dip->subio_endio = btrfs_subio_endio_read;
8375 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008376
Filipe Mananaf28a4922015-12-08 19:23:20 +00008377 /*
8378 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8379 * even if we fail to submit a bio, because in such case we do the
8380 * corresponding error handling below and it must not be done a second
8381 * time by btrfs_direct_IO().
8382 */
8383 if (write) {
8384 struct btrfs_dio_data *dio_data = current->journal_info;
8385
8386 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8387 dip->bytes;
8388 dio_data->unsubmitted_oe_range_start =
8389 dio_data->unsubmitted_oe_range_end;
8390 }
8391
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008392 ret = btrfs_submit_direct_hook(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00008393 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008394 return;
Chris Mason9be33952013-05-17 18:30:14 -04008395
Liu Bo3892ac92017-04-17 15:00:28 -07008396 if (io_bio->end_io)
8397 io_bio->end_io(io_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008398
Josef Bacik4b46fce2010-05-23 11:00:55 -04008399free_ordered:
8400 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008401 * If we arrived here it means either we failed to submit the dip
8402 * or we either failed to clone the dio_bio or failed to allocate the
8403 * dip. If we cloned the dio_bio and allocated the dip, we can just
8404 * call bio_endio against our io_bio so that we get proper resource
8405 * cleanup if we fail to submit the dip, otherwise, we must do the
8406 * same as btrfs_endio_direct_[write|read] because we can't call these
8407 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008408 */
Liu Bo3892ac92017-04-17 15:00:28 -07008409 if (bio && dip) {
Guoqing Jiang054ec2f2017-06-02 16:08:50 +08008410 bio_io_error(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008411 /*
Liu Bo3892ac92017-04-17 15:00:28 -07008412 * The end io callbacks free our dip, do the final put on bio
Filipe Manana61de7182015-07-01 12:13:10 +01008413 * and all the cleanup and final put for dio_bio (through
8414 * dio_end_io()).
8415 */
8416 dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008417 bio = NULL;
Filipe Manana61de7182015-07-01 12:13:10 +01008418 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008419 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008420 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008421 file_offset,
8422 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008423 false);
Filipe Manana14543772015-11-24 16:23:54 +00008424 else
Filipe Manana61de7182015-07-01 12:13:10 +01008425 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8426 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008427
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008428 dio_bio->bi_status = BLK_STS_IOERR;
Filipe Manana61de7182015-07-01 12:13:10 +01008429 /*
8430 * Releases and cleans up our dio_bio, no need to bio_put()
8431 * nor bio_endio()/bio_io_error() against dio_bio.
8432 */
Christoph Hellwig40553512017-06-03 09:37:58 +02008433 dio_end_io(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008434 }
Liu Bo3892ac92017-04-17 15:00:28 -07008435 if (bio)
8436 bio_put(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008437 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008438}
8439
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008440static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008441 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008442{
8443 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008444 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008445 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008446 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008447
8448 if (offset & blocksize_mask)
8449 goto out;
8450
Al Viro28060d52014-03-22 05:15:17 -04008451 if (iov_iter_alignment(iter) & blocksize_mask)
8452 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008453
Al Viro28060d52014-03-22 05:15:17 -04008454 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008455 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008456 return 0;
8457 /*
8458 * Check to make sure we don't have duplicate iov_base's in this
8459 * iovec, if so return EINVAL, otherwise we'll get csum errors
8460 * when reading back.
8461 */
8462 for (seg = 0; seg < iter->nr_segs; seg++) {
8463 for (i = seg + 1; i < iter->nr_segs; i++) {
8464 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008465 goto out;
8466 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008467 }
8468 retval = 0;
8469out:
8470 return retval;
8471}
Josef Bacikeb838e72012-07-31 16:28:48 -04008472
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008473static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008474{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008475 struct file *file = iocb->ki_filp;
8476 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008477 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308478 struct btrfs_dio_data dio_data = { 0 };
Qu Wenruo364ecf32017-02-27 15:10:38 +08008479 struct extent_changeset *data_reserved = NULL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008480 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008481 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008482 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008483 bool wakeup = true;
8484 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008485 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008486
Nikolay Borisov8c70c9f2017-08-21 12:43:46 +03008487 if (check_direct_IO(fs_info, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008488 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008489
Jens Axboefe0f07d2015-04-15 17:05:48 -06008490 inode_dio_begin(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008491
Josef Bacik0e267c42013-07-02 10:38:02 -04008492 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008493 * The generic stuff only does filemap_write_and_wait_range, which
8494 * isn't enough if we've written compressed pages to this area, so
8495 * we need to flush the dirty pages again to make absolutely sure
8496 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008497 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008498 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008499 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8500 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008501 filemap_fdatawrite_range(inode->i_mapping, offset,
8502 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008503
Omar Sandoval6f673762015-03-16 04:33:52 -07008504 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008505 /*
8506 * If the write DIO is beyond the EOF, we need update
8507 * the isize, but it is protected by i_mutex. So we can
8508 * not unlock the i_mutex at this case.
8509 */
8510 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008511 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008512 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008513 relock = true;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05008514 } else if (iocb->ki_flags & IOCB_NOWAIT) {
8515 ret = -EAGAIN;
8516 goto out;
Miao Xie38851cc2013-02-08 07:04:11 +00008517 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08008518 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
8519 offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008520 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008521 goto out;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008522
8523 /*
8524 * We need to know how many extents we reserved so that we can
8525 * do the accounting properly if we go over the number we
8526 * originally calculated. Abuse current->journal_info for this.
8527 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008528 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008529 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008530 dio_data.unsubmitted_oe_range_start = (u64)offset;
8531 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308532 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308533 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008534 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8535 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008536 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008537 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8538 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008539 }
8540
Omar Sandoval17f8c842015-03-16 04:33:50 -07008541 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008542 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008543 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008544 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008545 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308546 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008547 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008548 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308549 if (dio_data.reserve)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008550 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008551 offset, dio_data.reserve, true);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008552 /*
8553 * On error we might have left some ordered extents
8554 * without submitting corresponding bios for them, so
8555 * cleanup them up to avoid other tasks getting them
8556 * and waiting for them to complete forever.
8557 */
8558 if (dio_data.unsubmitted_oe_range_start <
8559 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008560 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008561 dio_data.unsubmitted_oe_range_start,
8562 dio_data.unsubmitted_oe_range_end -
8563 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008564 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008565 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008566 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008567 offset, count - (size_t)ret, true);
8568 btrfs_delalloc_release_extents(BTRFS_I(inode), count, false);
Miao Xie09348562013-02-07 10:12:07 +00008569 }
Miao Xie38851cc2013-02-08 07:04:11 +00008570out:
Miao Xie2e60a512013-02-08 07:01:08 +00008571 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008572 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008573 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008574 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008575
Qu Wenruo364ecf32017-02-27 15:10:38 +08008576 extent_changeset_free(data_reserved);
Miao Xie09348562013-02-07 10:12:07 +00008577 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008578}
8579
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008580#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8581
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008582static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8583 __u64 start, __u64 len)
8584{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008585 int ret;
8586
8587 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8588 if (ret)
8589 return ret;
8590
David Sterba2135fb92017-06-23 04:09:57 +02008591 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008592}
8593
Chris Mason9ebefb182007-06-15 13:50:00 -04008594int btrfs_readpage(struct file *file, struct page *page)
8595{
Chris Masond1310b22008-01-24 16:13:08 -05008596 struct extent_io_tree *tree;
8597 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008598 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008599}
Chris Mason1832a6d2007-12-21 16:27:21 -05008600
Chris Mason39279cc2007-06-12 06:35:45 -04008601static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8602{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008603 struct inode *inode = page->mapping->host;
8604 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008605
8606 if (current->flags & PF_MEMALLOC) {
8607 redirty_page_for_writepage(wbc, page);
8608 unlock_page(page);
8609 return 0;
8610 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008611
8612 /*
8613 * If we are under memory pressure we will call this directly from the
8614 * VM, we need to make sure we have the inode referenced for the ordered
8615 * extent. If not just return like we didn't do anything.
8616 */
8617 if (!igrab(inode)) {
8618 redirty_page_for_writepage(wbc, page);
8619 return AOP_WRITEPAGE_ACTIVATE;
8620 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008621 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008622 btrfs_add_delayed_iput(inode);
8623 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008624}
Chris Mason39279cc2007-06-12 06:35:45 -04008625
Eric Sandeen48a3b632013-04-25 20:41:01 +00008626static int btrfs_writepages(struct address_space *mapping,
8627 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008628{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008629 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008630}
8631
Chris Mason3ab2fb52007-11-08 10:59:22 -05008632static int
8633btrfs_readpages(struct file *file, struct address_space *mapping,
8634 struct list_head *pages, unsigned nr_pages)
8635{
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008636 return extent_readpages(mapping, pages, nr_pages);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008637}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008638
Chris Masone6dcd2d2008-07-17 12:53:50 -04008639static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008640{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008641 int ret = try_release_extent_mapping(page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008642 if (ret == 1) {
8643 ClearPagePrivate(page);
8644 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008645 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008646 }
8647 return ret;
8648}
Chris Mason39279cc2007-06-12 06:35:45 -04008649
Chris Masone6dcd2d2008-07-17 12:53:50 -04008650static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8651{
Chris Mason98509cf2008-09-11 15:51:43 -04008652 if (PageWriteback(page) || PageDirty(page))
8653 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008654 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008655}
8656
Lukas Czernerd47992f2013-05-21 23:17:23 -04008657static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8658 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008659{
Josef Bacik5fd02042012-05-02 14:00:54 -04008660 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008661 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008662 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008663 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008664 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008665 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308666 u64 start;
8667 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008668 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008669
Chris Mason8b62b722009-09-02 16:53:46 -04008670 /*
8671 * we have the page locked, so new writeback can't start,
8672 * and the dirty bit won't be cleared while we are here.
8673 *
8674 * Wait for IO on this page so that we can safely clear
8675 * the PagePrivate2 bit and do ordered accounting
8676 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008677 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008678
Josef Bacik5fd02042012-05-02 14:00:54 -04008679 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008680 if (offset) {
8681 btrfs_releasepage(page, GFP_NOFS);
8682 return;
8683 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008684
8685 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008686 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308687again:
8688 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008689 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308690 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008691 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308692 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008693 /*
8694 * IO on this page will never be started, so we need
8695 * to account for any ordered extents now
8696 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008697 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308698 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008699 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008700 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008701 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008702 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008703 /*
8704 * whoever cleared the private bit is responsible
8705 * for the finish_ordered_io
8706 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008707 if (TestClearPagePrivate2(page)) {
8708 struct btrfs_ordered_inode_tree *tree;
8709 u64 new_len;
8710
8711 tree = &BTRFS_I(inode)->ordered_tree;
8712
8713 spin_lock_irq(&tree->lock);
8714 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308715 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008716 if (new_len < ordered->truncated_len)
8717 ordered->truncated_len = new_len;
8718 spin_unlock_irq(&tree->lock);
8719
8720 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308721 start,
8722 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008723 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008724 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008725 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008726 if (!inode_evicting) {
8727 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308728 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008729 &cached_state);
8730 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308731
8732 start = end + 1;
8733 if (start < page_end)
8734 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008735 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008736
Qu Wenruob9d0b382015-09-29 10:35:16 +08008737 /*
8738 * Qgroup reserved space handler
8739 * Page here will be either
8740 * 1) Already written to disk
8741 * In this case, its reserved space is released from data rsv map
8742 * and will be freed by delayed_ref handler finally.
8743 * So even we call qgroup_free_data(), it won't decrease reserved
8744 * space.
8745 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008746 * This means the reserved space should be freed here. However,
8747 * if a truncate invalidates the page (by clearing PageDirty)
8748 * and the page is accounted for while allocating extent
8749 * in btrfs_check_data_free_space() we let delayed_ref to
8750 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008751 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008752 if (PageDirty(page))
Qu Wenruobc42bda2017-02-27 15:10:39 +08008753 btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008754 if (!inode_evicting) {
8755 clear_extent_bit(tree, page_start, page_end,
8756 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008757 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8758 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008759 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008760
8761 __btrfs_releasepage(page, GFP_NOFS);
8762 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008763
Chris Mason4a096752008-07-21 10:29:44 -04008764 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008765 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008766 ClearPagePrivate(page);
8767 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008768 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008769 }
Chris Mason39279cc2007-06-12 06:35:45 -04008770}
8771
Chris Mason9ebefb182007-06-15 13:50:00 -04008772/*
8773 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8774 * called from a page fault handler when a page is first dirtied. Hence we must
8775 * be careful to check for EOF conditions here. We set the page up correctly
8776 * for a written page which means we get ENOSPC checking when writing into
8777 * holes and correct delalloc and unwritten extent mapping on filesystems that
8778 * support these features.
8779 *
8780 * We are not allowed to take the i_mutex here so we have to play games to
8781 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008782 * truncate_setsize() writes the inode size before removing pages, once we have
8783 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008784 * beyond EOF, then the page is guaranteed safe against truncation until we
8785 * unlock the page.
8786 */
Souptick Joardera528a242018-06-06 19:54:44 +05308787vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008788{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008789 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008790 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008791 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008792 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8793 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008794 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008795 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008796 char *kaddr;
8797 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008798 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308799 vm_fault_t ret;
8800 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008801 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308802 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008803 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008804 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308805 u64 end;
8806
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008807 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008808
Jan Karab2b5ef52012-06-12 16:20:45 +02008809 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008810 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008811 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308812 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008813
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308814 /*
8815 * Reserving delalloc space after obtaining the page lock can lead to
8816 * deadlock. For example, if a dirty page is locked by this function
8817 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8818 * dirty page write out, then the btrfs_writepage() function could
8819 * end up waiting indefinitely to get a lock on the page currently
8820 * being processed by btrfs_page_mkwrite() function.
8821 */
Souptick Joardera528a242018-06-06 19:54:44 +05308822 ret2 = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308823 reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308824 if (!ret2) {
8825 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008826 reserved = 1;
8827 }
Souptick Joardera528a242018-06-06 19:54:44 +05308828 if (ret2) {
8829 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008830 if (reserved)
8831 goto out;
8832 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008833 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008834
Nick Piggin56a76f82009-03-31 15:23:23 -07008835 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008836again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008837 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008838 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008839
Chris Mason9ebefb182007-06-15 13:50:00 -04008840 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008841 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008842 /* page got truncated out from underneath us */
8843 goto out_unlock;
8844 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008845 wait_on_page_writeback(page);
8846
David Sterbaff13db42015-12-03 14:30:40 +01008847 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008848 set_page_extent_mapped(page);
8849
Chris Masoneb84ae02008-07-17 13:53:27 -04008850 /*
8851 * we can't set the delalloc bits if there are pending ordered
8852 * extents. Drop our locks and wait for them to finish
8853 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008854 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8855 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008856 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008857 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008858 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008859 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008860 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008861 btrfs_put_ordered_extent(ordered);
8862 goto again;
8863 }
8864
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008865 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008866 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008867 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008868 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308869 end = page_start + reserved_space - 1;
Qu Wenruobc42bda2017-02-27 15:10:39 +08008870 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008871 page_start, PAGE_SIZE - reserved_space,
8872 true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308873 }
8874 }
8875
Josef Bacikfbf19082009-10-01 17:10:23 -04008876 /*
Liu Bo54160342016-12-13 12:15:19 -08008877 * page_mkwrite gets called when the page is firstly dirtied after it's
8878 * faulted in, but write(2) could also dirty a page and set delalloc
8879 * bits, thus in this case for space account reason, we still need to
8880 * clear any delalloc bits within this page range since we have to
8881 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008882 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308883 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008884 EXTENT_DIRTY | EXTENT_DELALLOC |
8885 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01008886 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008887
Souptick Joardera528a242018-06-06 19:54:44 +05308888 ret2 = btrfs_set_extent_delalloc(inode, page_start, end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08008889 &cached_state, 0);
Souptick Joardera528a242018-06-06 19:54:44 +05308890 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008891 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008892 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008893 ret = VM_FAULT_SIGBUS;
8894 goto out_unlock;
8895 }
Souptick Joardera528a242018-06-06 19:54:44 +05308896 ret2 = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008897
8898 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008899 if (page_start + PAGE_SIZE > size)
8900 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04008901 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008902 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008903
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008904 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008905 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008906 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008907 flush_dcache_page(page);
8908 kunmap(page);
8909 }
Chris Mason247e7432008-07-17 12:53:51 -04008910 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008911 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008912 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008913
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008914 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04008915 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008916 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008917
David Sterbae43bbe52017-12-12 21:43:52 +01008918 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04008919
Souptick Joardera528a242018-06-06 19:54:44 +05308920 if (!ret2) {
Qu Wenruo43b18592017-12-12 15:34:32 +08008921 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, true);
Jan Karab2b5ef52012-06-12 16:20:45 +02008922 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008923 extent_changeset_free(data_reserved);
Chris Mason50a9b212009-09-11 12:33:12 -04008924 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008925 }
Chris Mason717beb92018-06-25 10:03:41 -07008926
8927out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008928 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008929out:
Qu Wenruo43b18592017-12-12 15:34:32 +08008930 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, (ret != 0));
Qu Wenruobc42bda2017-02-27 15:10:39 +08008931 btrfs_delalloc_release_space(inode, data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008932 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008933out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008934 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008935 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008936 return ret;
8937}
8938
Filipe Manana213e8c52018-02-06 20:40:31 +00008939static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008940{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008941 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008942 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008943 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008944 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008945 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008946 u64 mask = fs_info->sectorsize - 1;
8947 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008948
Filipe Manana213e8c52018-02-06 20:40:31 +00008949 if (!skip_writeback) {
8950 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8951 (u64)-1);
8952 if (ret)
8953 return ret;
8954 }
Chris Mason39279cc2007-06-12 06:35:45 -04008955
Josef Bacikfcb80c22011-05-03 10:40:22 -04008956 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008957 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8958 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008959 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008960 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008961 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008962 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008963 * be free'd up by the truncate operation, but also have some slack
8964 * space reserved in case it uses space during the truncate (thank you
8965 * very much snapshotting).
8966 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008967 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008968 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008969 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008970 * doesn't end up using space reserved for updating the inode. We also
8971 * need to be able to stop the transaction and start a new one, which
8972 * means we need to be able to update the inode several times, and we
8973 * have no idea of knowing how many times that will be, so we can't just
8974 * reserve 1 item for the entirety of the operation, so that has to be
8975 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008976 *
8977 * So that leaves us with
8978 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008979 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008980 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008981 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008982 * updating the inode.
8983 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008984 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008985 if (!rsv)
8986 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008987 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008988 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008989
Josef Bacik907cbce2011-08-08 13:46:15 -04008990 /*
Josef Bacik07127182011-08-19 10:29:59 -04008991 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008992 * 1 for updating the inode.
8993 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008994 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008995 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008996 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008997 goto out;
8998 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008999
Josef Bacik907cbce2011-08-08 13:46:15 -04009000 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009001 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009002 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009003 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009004
Chris Mason5a3f23d2009-03-31 13:27:11 -04009005 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009006 * So if we truncate and then write and fsync we normally would just
9007 * write the extents that changed, which is a problem if we need to
9008 * first truncate that entire inode. So set this flag so we write out
9009 * all of the extents in the inode to the sync log so we're completely
9010 * safe.
9011 */
9012 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009013 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009014
Yan, Zheng80825102009-11-12 09:35:36 +00009015 while (1) {
9016 ret = btrfs_truncate_inode_items(trans, root, inode,
9017 inode->i_size,
9018 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04009019 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009020 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00009021 break;
Chris Mason39279cc2007-06-12 06:35:45 -04009022
Yan, Zheng80825102009-11-12 09:35:36 +00009023 ret = btrfs_update_inode(trans, root, inode);
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009024 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05009025 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009026
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009027 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009028 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009029
9030 trans = btrfs_start_transaction(root, 2);
9031 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009032 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009033 trans = NULL;
9034 break;
9035 }
9036
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009037 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009038 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009039 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009040 BUG_ON(ret); /* shouldn't happen */
9041 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009042 }
9043
Josef Bacikddfae632017-10-19 14:16:02 -04009044 /*
9045 * We can't call btrfs_truncate_block inside a trans handle as we could
9046 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
9047 * we've truncated everything except the last little bit, and can do
9048 * btrfs_truncate_block and then update the disk_i_size.
9049 */
9050 if (ret == NEED_TRUNCATE_BLOCK) {
9051 btrfs_end_transaction(trans);
9052 btrfs_btree_balance_dirty(fs_info);
9053
9054 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
9055 if (ret)
9056 goto out;
9057 trans = btrfs_start_transaction(root, 1);
9058 if (IS_ERR(trans)) {
9059 ret = PTR_ERR(trans);
9060 goto out;
9061 }
9062 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
9063 }
9064
Chris Mason917c16b2011-11-08 14:49:59 -05009065 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009066 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04009067
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009068 trans->block_rsv = &fs_info->trans_block_rsv;
9069 ret2 = btrfs_update_inode(trans, root, inode);
9070 if (ret2 && !ret)
9071 ret = ret2;
9072
9073 ret2 = btrfs_end_transaction(trans);
9074 if (ret2 && !ret)
9075 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009076 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009077 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009078out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009079 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009080
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009081 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009082}
9083
Sven Wegener3b963622008-06-09 21:57:42 -04009084/*
Chris Masond352ac62008-09-29 15:18:18 -04009085 * create a new subvolume directory/inode (helper for the ioctl).
9086 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009087int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009088 struct btrfs_root *new_root,
9089 struct btrfs_root *parent_root,
9090 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009091{
Chris Mason39279cc2007-06-12 06:35:45 -04009092 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009093 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009094 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009095
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009096 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9097 new_dirid, new_dirid,
9098 S_IFDIR | (~current_umask() & S_IRWXUGO),
9099 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009100 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009101 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009102 inode->i_op = &btrfs_dir_inode_operations;
9103 inode->i_fop = &btrfs_dir_file_operations;
9104
Miklos Szeredibfe86842011-10-28 14:13:29 +02009105 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009106 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009107 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009108
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009109 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9110 if (err)
9111 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009112 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009113 new_root->root_key.objectid, err);
9114
Yan, Zheng76dda932009-09-21 16:00:26 -04009115 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009116
Yan, Zheng76dda932009-09-21 16:00:26 -04009117 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009118 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009119}
9120
Chris Mason39279cc2007-06-12 06:35:45 -04009121struct inode *btrfs_alloc_inode(struct super_block *sb)
9122{
Josef Bacik69fe2d72017-10-19 14:15:57 -04009123 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009124 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009125 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009126
David Sterba712e36c2017-10-31 17:08:27 +01009127 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04009128 if (!ei)
9129 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009130
9131 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009132 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009133 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009134 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009135 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009136 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009137 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009138 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009139 ei->disk_i_size = 0;
9140 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009141 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009142 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009143 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009144 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009145 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009146
Josef Bacik9e0baf62011-07-15 15:16:44 +00009147 spin_lock_init(&ei->lock);
9148 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009149 if (sb->s_magic != BTRFS_TEST_MAGIC)
9150 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9151 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009152 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009153 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009154 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009155
Miao Xie16cdcec2011-04-22 18:12:22 +08009156 ei->delayed_node = NULL;
9157
chandan r9cc97d62012-07-04 12:48:07 +05309158 ei->i_otime.tv_sec = 0;
9159 ei->i_otime.tv_nsec = 0;
9160
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009161 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009162 extent_map_tree_init(&ei->extent_tree);
Josef Bacikc6100a42017-05-05 11:57:13 -04009163 extent_io_tree_init(&ei->io_tree, inode);
9164 extent_io_tree_init(&ei->io_failure_tree, inode);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009165 ei->io_tree.track_uptodate = 1;
9166 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009167 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009168 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009169 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009170 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009171 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009172 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009173 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009174 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009175
9176 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009177}
9178
Josef Bacikaaedb552013-10-11 14:44:09 -04009179#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9180void btrfs_test_destroy_inode(struct inode *inode)
9181{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009182 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009183 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9184}
9185#endif
9186
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009187static void btrfs_i_callback(struct rcu_head *head)
9188{
9189 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009190 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9191}
9192
Chris Mason39279cc2007-06-12 06:35:45 -04009193void btrfs_destroy_inode(struct inode *inode)
9194{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009195 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009196 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009197 struct btrfs_root *root = BTRFS_I(inode)->root;
9198
Al Virob3d9b7a2012-06-09 13:51:19 -04009199 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009200 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04009201 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9202 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009203 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009204 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009205 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009206 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009207 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009208
Chris Mason5a3f23d2009-03-31 13:27:11 -04009209 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009210 * This can happen where we create an inode, but somebody else also
9211 * created the same inode and we need to destroy the one we already
9212 * created.
9213 */
9214 if (!root)
9215 goto free;
9216
Chris Masond3977122009-01-05 21:25:51 -05009217 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009218 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9219 if (!ordered)
9220 break;
9221 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009222 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009223 "found ordered extent %llu %llu on inode cleanup",
9224 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009225 btrfs_remove_ordered_extent(inode, ordered);
9226 btrfs_put_ordered_extent(ordered);
9227 btrfs_put_ordered_extent(ordered);
9228 }
9229 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009230 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009231 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009232 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009233free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009234 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009235}
9236
Al Viro45321ac2010-06-07 13:43:19 -04009237int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009238{
9239 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009240
Naohiro Aota6379ef92013-06-06 09:56:34 +00009241 if (root == NULL)
9242 return 1;
9243
Liu Bofa6ac872013-02-20 14:10:23 +00009244 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009245 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009246 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009247 else
Al Viro45321ac2010-06-07 13:43:19 -04009248 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009249}
9250
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009251static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009252{
9253 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9254
9255 inode_init_once(&ei->vfs_inode);
9256}
9257
David Sterbae67c7182018-02-19 17:24:18 +01009258void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009259{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009260 /*
9261 * Make sure all delayed rcu free inodes are flushed before we
9262 * destroy cache.
9263 */
9264 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009265 kmem_cache_destroy(btrfs_inode_cachep);
9266 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009267 kmem_cache_destroy(btrfs_path_cachep);
9268 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009269}
9270
Liu Bof5c29bd2017-11-02 17:21:50 -06009271int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009272{
David Sterba837e1972012-09-07 03:00:48 -06009273 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009274 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009275 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9276 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009277 if (!btrfs_inode_cachep)
9278 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009279
David Sterba837e1972012-09-07 03:00:48 -06009280 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009281 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009282 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009283 if (!btrfs_trans_handle_cachep)
9284 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009285
David Sterba837e1972012-09-07 03:00:48 -06009286 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009287 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009288 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009289 if (!btrfs_path_cachep)
9290 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009291
David Sterba837e1972012-09-07 03:00:48 -06009292 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009293 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009294 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009295 if (!btrfs_free_space_cachep)
9296 goto fail;
9297
Chris Mason39279cc2007-06-12 06:35:45 -04009298 return 0;
9299fail:
9300 btrfs_destroy_cachep();
9301 return -ENOMEM;
9302}
9303
David Howellsa528d352017-01-31 16:46:22 +00009304static int btrfs_getattr(const struct path *path, struct kstat *stat,
9305 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009306{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009307 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009308 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009309 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009310 u32 bi_flags = BTRFS_I(inode)->flags;
9311
9312 stat->result_mask |= STATX_BTIME;
9313 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9314 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9315 if (bi_flags & BTRFS_INODE_APPEND)
9316 stat->attributes |= STATX_ATTR_APPEND;
9317 if (bi_flags & BTRFS_INODE_COMPRESS)
9318 stat->attributes |= STATX_ATTR_COMPRESSED;
9319 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9320 stat->attributes |= STATX_ATTR_IMMUTABLE;
9321 if (bi_flags & BTRFS_INODE_NODUMP)
9322 stat->attributes |= STATX_ATTR_NODUMP;
9323
9324 stat->attributes_mask |= (STATX_ATTR_APPEND |
9325 STATX_ATTR_COMPRESSED |
9326 STATX_ATTR_IMMUTABLE |
9327 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009328
Chris Mason39279cc2007-06-12 06:35:45 -04009329 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009330 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009331
9332 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009333 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009334 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009335 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009336 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009337 return 0;
9338}
9339
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009340static int btrfs_rename_exchange(struct inode *old_dir,
9341 struct dentry *old_dentry,
9342 struct inode *new_dir,
9343 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009344{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009345 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009346 struct btrfs_trans_handle *trans;
9347 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009348 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009349 struct inode *new_inode = new_dentry->d_inode;
9350 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07009351 struct timespec64 ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009352 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009353 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9354 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009355 u64 old_idx = 0;
9356 u64 new_idx = 0;
9357 u64 root_objectid;
9358 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009359 bool root_log_pinned = false;
9360 bool dest_log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009361 struct btrfs_log_ctx ctx_root;
9362 struct btrfs_log_ctx ctx_dest;
9363 bool sync_log_root = false;
9364 bool sync_log_dest = false;
9365 bool commit_transaction = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009366
9367 /* we only allow rename subvolume link between subvolumes */
9368 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9369 return -EXDEV;
9370
Filipe Mananad4682ba2018-06-11 19:24:28 +01009371 btrfs_init_log_ctx(&ctx_root, old_inode);
9372 btrfs_init_log_ctx(&ctx_dest, new_inode);
9373
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009374 /* close the race window with snapshot create/destroy ioctl */
9375 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009376 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009377 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009378 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009379
9380 /*
9381 * We want to reserve the absolute worst case amount of items. So if
9382 * both inodes are subvols and we need to unlink them then that would
9383 * require 4 item modifications, but if they are both normal inodes it
9384 * would require 5 item modifications, so we'll assume their normal
9385 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9386 * should cover the worst case number of items we'll modify.
9387 */
9388 trans = btrfs_start_transaction(root, 12);
9389 if (IS_ERR(trans)) {
9390 ret = PTR_ERR(trans);
9391 goto out_notrans;
9392 }
9393
9394 /*
9395 * We need to find a free sequence number both in the source and
9396 * in the destination directory for the exchange.
9397 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009398 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009399 if (ret)
9400 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009401 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009402 if (ret)
9403 goto out_fail;
9404
9405 BTRFS_I(old_inode)->dir_index = 0ULL;
9406 BTRFS_I(new_inode)->dir_index = 0ULL;
9407
9408 /* Reference for the source. */
9409 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9410 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009411 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009412 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009413 btrfs_pin_log_trans(root);
9414 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009415 ret = btrfs_insert_inode_ref(trans, dest,
9416 new_dentry->d_name.name,
9417 new_dentry->d_name.len,
9418 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009419 btrfs_ino(BTRFS_I(new_dir)),
9420 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009421 if (ret)
9422 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009423 }
9424
9425 /* And now for the dest. */
9426 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9427 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009428 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009429 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009430 btrfs_pin_log_trans(dest);
9431 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009432 ret = btrfs_insert_inode_ref(trans, root,
9433 old_dentry->d_name.name,
9434 old_dentry->d_name.len,
9435 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009436 btrfs_ino(BTRFS_I(old_dir)),
9437 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009438 if (ret)
9439 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009440 }
9441
9442 /* Update inode version and ctime/mtime. */
9443 inode_inc_iversion(old_dir);
9444 inode_inc_iversion(new_dir);
9445 inode_inc_iversion(old_inode);
9446 inode_inc_iversion(new_inode);
9447 old_dir->i_ctime = old_dir->i_mtime = ctime;
9448 new_dir->i_ctime = new_dir->i_mtime = ctime;
9449 old_inode->i_ctime = ctime;
9450 new_inode->i_ctime = ctime;
9451
9452 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009453 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9454 BTRFS_I(old_inode), 1);
9455 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9456 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009457 }
9458
9459 /* src is a subvolume */
9460 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9461 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009462 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009463 old_dentry->d_name.name,
9464 old_dentry->d_name.len);
9465 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009466 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9467 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009468 old_dentry->d_name.name,
9469 old_dentry->d_name.len);
9470 if (!ret)
9471 ret = btrfs_update_inode(trans, root, old_inode);
9472 }
9473 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009474 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009475 goto out_fail;
9476 }
9477
9478 /* dest is a subvolume */
9479 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9480 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009481 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009482 new_dentry->d_name.name,
9483 new_dentry->d_name.len);
9484 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009485 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9486 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009487 new_dentry->d_name.name,
9488 new_dentry->d_name.len);
9489 if (!ret)
9490 ret = btrfs_update_inode(trans, dest, new_inode);
9491 }
9492 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009493 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009494 goto out_fail;
9495 }
9496
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009497 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009498 new_dentry->d_name.name,
9499 new_dentry->d_name.len, 0, old_idx);
9500 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009501 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009502 goto out_fail;
9503 }
9504
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009505 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009506 old_dentry->d_name.name,
9507 old_dentry->d_name.len, 0, new_idx);
9508 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009509 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009510 goto out_fail;
9511 }
9512
9513 if (old_inode->i_nlink == 1)
9514 BTRFS_I(old_inode)->dir_index = old_idx;
9515 if (new_inode->i_nlink == 1)
9516 BTRFS_I(new_inode)->dir_index = new_idx;
9517
Filipe Manana86e8aa02016-05-05 02:02:27 +01009518 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009519 parent = new_dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009520 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9521 BTRFS_I(old_dir), parent,
9522 false, &ctx_root);
9523 if (ret == BTRFS_NEED_LOG_SYNC)
9524 sync_log_root = true;
9525 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9526 commit_transaction = true;
9527 ret = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009528 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009529 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009530 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009531 if (dest_log_pinned) {
Filipe Mananad4682ba2018-06-11 19:24:28 +01009532 if (!commit_transaction) {
9533 parent = old_dentry->d_parent;
9534 ret = btrfs_log_new_name(trans, BTRFS_I(new_inode),
9535 BTRFS_I(new_dir), parent,
9536 false, &ctx_dest);
9537 if (ret == BTRFS_NEED_LOG_SYNC)
9538 sync_log_dest = true;
9539 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9540 commit_transaction = true;
9541 ret = 0;
9542 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009543 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009544 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009545 }
9546out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009547 /*
9548 * If we have pinned a log and an error happened, we unpin tasks
9549 * trying to sync the log and force them to fallback to a transaction
9550 * commit if the log currently contains any of the inodes involved in
9551 * this rename operation (to ensure we do not persist a log with an
9552 * inconsistent state for any of these inodes or leading to any
9553 * inconsistencies when replayed). If the transaction was aborted, the
9554 * abortion reason is propagated to userspace when attempting to commit
9555 * the transaction. If the log does not contain any of these inodes, we
9556 * allow the tasks to sync it.
9557 */
9558 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009559 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9560 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9561 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009562 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009563 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009564 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009565
9566 if (root_log_pinned) {
9567 btrfs_end_log_trans(root);
9568 root_log_pinned = false;
9569 }
9570 if (dest_log_pinned) {
9571 btrfs_end_log_trans(dest);
9572 dest_log_pinned = false;
9573 }
9574 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009575 if (!ret && sync_log_root && !commit_transaction) {
9576 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root,
9577 &ctx_root);
9578 if (ret)
9579 commit_transaction = true;
9580 }
9581 if (!ret && sync_log_dest && !commit_transaction) {
9582 ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root,
9583 &ctx_dest);
9584 if (ret)
9585 commit_transaction = true;
9586 }
9587 if (commit_transaction) {
9588 ret = btrfs_commit_transaction(trans);
9589 } else {
9590 int ret2;
9591
9592 ret2 = btrfs_end_transaction(trans);
9593 ret = ret ? ret : ret2;
9594 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009595out_notrans:
9596 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009597 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009598 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009599 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009600
9601 return ret;
9602}
9603
9604static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9605 struct btrfs_root *root,
9606 struct inode *dir,
9607 struct dentry *dentry)
9608{
9609 int ret;
9610 struct inode *inode;
9611 u64 objectid;
9612 u64 index;
9613
9614 ret = btrfs_find_free_ino(root, &objectid);
9615 if (ret)
9616 return ret;
9617
9618 inode = btrfs_new_inode(trans, root, dir,
9619 dentry->d_name.name,
9620 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009621 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009622 objectid,
9623 S_IFCHR | WHITEOUT_MODE,
9624 &index);
9625
9626 if (IS_ERR(inode)) {
9627 ret = PTR_ERR(inode);
9628 return ret;
9629 }
9630
9631 inode->i_op = &btrfs_special_inode_operations;
9632 init_special_inode(inode, inode->i_mode,
9633 WHITEOUT_DEV);
9634
9635 ret = btrfs_init_inode_security(trans, inode, dir,
9636 &dentry->d_name);
9637 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009638 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009639
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009640 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9641 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009642 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009643 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009644
9645 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009646out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009647 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009648 if (ret)
9649 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009650 iput(inode);
9651
Filipe Mananac9901612016-05-05 01:41:57 +01009652 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009653}
9654
Chris Mason39279cc2007-06-12 06:35:45 -04009655static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009656 struct inode *new_dir, struct dentry *new_dentry,
9657 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009658{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009659 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009660 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009661 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009662 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9663 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009664 struct inode *new_inode = d_inode(new_dentry);
9665 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009666 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009667 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009668 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009669 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009670 bool log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009671 struct btrfs_log_ctx ctx;
9672 bool sync_log = false;
9673 bool commit_transaction = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009674
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009675 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009676 return -EPERM;
9677
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009678 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009679 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009680 return -EXDEV;
9681
Li Zefan33345d012011-04-20 10:31:50 +08009682 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009683 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009684 return -ENOTEMPTY;
9685
Chris Mason39279cc2007-06-12 06:35:45 -04009686 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009687 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009688 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009689
9690
9691 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009692 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009693 new_dentry->d_name.name,
9694 new_dentry->d_name.len);
9695
9696 if (ret) {
9697 if (ret == -EEXIST) {
9698 /* we shouldn't get
9699 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309700 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009701 return ret;
9702 }
9703 } else {
9704 /* maybe -EOVERFLOW */
9705 return ret;
9706 }
9707 }
9708 ret = 0;
9709
Chris Mason5a3f23d2009-03-31 13:27:11 -04009710 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009711 * we're using rename to replace one file with another. Start IO on it
9712 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009713 */
Chris Mason8d875f92014-08-12 10:47:42 -07009714 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009715 filemap_flush(old_inode->i_mapping);
9716
Yan, Zheng76dda932009-09-21 16:00:26 -04009717 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009718 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009719 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009720 /*
9721 * We want to reserve the absolute worst case amount of items. So if
9722 * both inodes are subvols and we need to unlink them then that would
9723 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009724 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009725 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9726 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009727 * If our rename has the whiteout flag, we need more 5 units for the
9728 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9729 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009730 */
Filipe Manana5062af32016-05-05 10:26:26 +01009731 trans_num_items = 11;
9732 if (flags & RENAME_WHITEOUT)
9733 trans_num_items += 5;
9734 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009735 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009736 ret = PTR_ERR(trans);
9737 goto out_notrans;
9738 }
Chris Mason5f39d392007-10-15 16:14:19 -04009739
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009740 if (dest != root)
9741 btrfs_record_root_in_trans(trans, dest);
9742
Nikolay Borisov877574e2017-02-20 13:50:33 +02009743 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009744 if (ret)
9745 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009746
Miao Xie67de1172013-12-26 13:07:06 +08009747 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009748 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009749 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009750 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009751 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009752 btrfs_pin_log_trans(root);
9753 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009754 ret = btrfs_insert_inode_ref(trans, dest,
9755 new_dentry->d_name.name,
9756 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009757 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009758 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009759 if (ret)
9760 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009761 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009762
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009763 inode_inc_iversion(old_dir);
9764 inode_inc_iversion(new_dir);
9765 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009766 old_dir->i_ctime = old_dir->i_mtime =
9767 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009768 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009769
Chris Mason12fcfd22009-03-24 10:24:20 -04009770 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009771 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9772 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009773
Li Zefan33345d012011-04-20 10:31:50 +08009774 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009775 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009776 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009777 old_dentry->d_name.name,
9778 old_dentry->d_name.len);
9779 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009780 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9781 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009782 old_dentry->d_name.name,
9783 old_dentry->d_name.len);
9784 if (!ret)
9785 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009786 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009787 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009788 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009789 goto out_fail;
9790 }
Chris Mason39279cc2007-06-12 06:35:45 -04009791
9792 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009793 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009794 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009795 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009796 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9797 root_objectid = BTRFS_I(new_inode)->location.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009798 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009799 new_dentry->d_name.name,
9800 new_dentry->d_name.len);
9801 BUG_ON(new_inode->i_nlink == 0);
9802 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009803 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9804 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009805 new_dentry->d_name.name,
9806 new_dentry->d_name.len);
9807 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009808 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009809 ret = btrfs_orphan_add(trans,
9810 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009811 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009812 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009813 goto out_fail;
9814 }
Chris Mason39279cc2007-06-12 06:35:45 -04009815 }
Josef Bacikaec74772008-07-24 12:12:38 -04009816
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009817 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009818 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009819 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009820 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009821 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009822 goto out_fail;
9823 }
Chris Mason39279cc2007-06-12 06:35:45 -04009824
Miao Xie67de1172013-12-26 13:07:06 +08009825 if (old_inode->i_nlink == 1)
9826 BTRFS_I(old_inode)->dir_index = index;
9827
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009828 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009829 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009830
Filipe Mananad4682ba2018-06-11 19:24:28 +01009831 btrfs_init_log_ctx(&ctx, old_inode);
9832 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9833 BTRFS_I(old_dir), parent,
9834 false, &ctx);
9835 if (ret == BTRFS_NEED_LOG_SYNC)
9836 sync_log = true;
9837 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9838 commit_transaction = true;
9839 ret = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009840 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009841 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009842 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009843
9844 if (flags & RENAME_WHITEOUT) {
9845 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9846 old_dentry);
9847
9848 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009849 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009850 goto out_fail;
9851 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009852 }
Chris Mason39279cc2007-06-12 06:35:45 -04009853out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009854 /*
9855 * If we have pinned the log and an error happened, we unpin tasks
9856 * trying to sync the log and force them to fallback to a transaction
9857 * commit if the log currently contains any of the inodes involved in
9858 * this rename operation (to ensure we do not persist a log with an
9859 * inconsistent state for any of these inodes or leading to any
9860 * inconsistencies when replayed). If the transaction was aborted, the
9861 * abortion reason is propagated to userspace when attempting to commit
9862 * the transaction. If the log does not contain any of these inodes, we
9863 * allow the tasks to sync it.
9864 */
9865 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009866 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9867 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9868 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009869 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009870 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009871 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009872
9873 btrfs_end_log_trans(root);
9874 log_pinned = false;
9875 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009876 if (!ret && sync_log) {
9877 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx);
9878 if (ret)
9879 commit_transaction = true;
9880 }
9881 if (commit_transaction) {
9882 ret = btrfs_commit_transaction(trans);
9883 } else {
9884 int ret2;
9885
9886 ret2 = btrfs_end_transaction(trans);
9887 ret = ret ? ret : ret2;
9888 }
Johann Lombardib44c59a2011-03-31 13:23:47 +00009889out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009890 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009891 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009892
Chris Mason39279cc2007-06-12 06:35:45 -04009893 return ret;
9894}
9895
Miklos Szeredi80ace852014-07-23 15:15:32 +02009896static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9897 struct inode *new_dir, struct dentry *new_dentry,
9898 unsigned int flags)
9899{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009900 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009901 return -EINVAL;
9902
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009903 if (flags & RENAME_EXCHANGE)
9904 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9905 new_dentry);
9906
9907 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009908}
9909
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009910struct btrfs_delalloc_work {
9911 struct inode *inode;
9912 struct completion completion;
9913 struct list_head list;
9914 struct btrfs_work work;
9915};
9916
Miao Xie8ccf6f192012-10-25 09:28:04 +00009917static void btrfs_run_delalloc_work(struct btrfs_work *work)
9918{
9919 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009920 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009921
9922 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9923 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009924 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009925 filemap_flush(inode->i_mapping);
9926 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9927 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009928 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009929
Nikolay Borisov076da912018-04-23 10:54:16 +03009930 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009931 complete(&delalloc_work->completion);
9932}
9933
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009934static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009935{
9936 struct btrfs_delalloc_work *work;
9937
David Sterba100d5702015-12-08 14:39:32 +01009938 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009939 if (!work)
9940 return NULL;
9941
9942 init_completion(&work->completion);
9943 INIT_LIST_HEAD(&work->list);
9944 work->inode = inode;
Liu Bo9e0af232014-08-15 23:36:53 +08009945 WARN_ON_ONCE(!inode);
9946 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9947 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009948
9949 return work;
9950}
9951
Chris Masond352ac62008-09-29 15:18:18 -04009952/*
9953 * some fairly slow code that needs optimization. This walks the list
9954 * of all the inodes with pending delalloc and forces them to disk.
9955 */
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009956static int start_delalloc_inodes(struct btrfs_root *root, int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009957{
Chris Masonea8c2812008-08-04 23:17:27 -04009958 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009959 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009960 struct btrfs_delalloc_work *work, *next;
9961 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009962 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009963 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009964
Miao Xie8ccf6f192012-10-25 09:28:04 +00009965 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009966 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009967
Miao Xie573bfb72014-03-06 13:55:03 +08009968 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009969 spin_lock(&root->delalloc_lock);
9970 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009971 while (!list_empty(&splice)) {
9972 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009973 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009974
Miao Xieeb73c1b2013-05-15 07:48:22 +00009975 list_move_tail(&binode->delalloc_inodes,
9976 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009977 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009978 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009979 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009980 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009981 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009982 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009983
Nikolay Borisov076da912018-04-23 10:54:16 +03009984 work = btrfs_alloc_delalloc_work(inode);
David Sterba5d99a9982014-09-29 19:20:37 +02009985 if (!work) {
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009986 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009987 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009988 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009989 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009990 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009991 btrfs_queue_work(root->fs_info->flush_workers,
9992 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009993 ret++;
9994 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009995 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009996 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009997 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009998 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009999 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010000
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010001out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010002 list_for_each_entry_safe(work, next, &works, list) {
10003 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +030010004 wait_for_completion(&work->completion);
10005 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010006 }
10007
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010008 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010009 spin_lock(&root->delalloc_lock);
10010 list_splice_tail(&splice, &root->delalloc_inodes);
10011 spin_unlock(&root->delalloc_lock);
10012 }
Miao Xie573bfb72014-03-06 13:55:03 +080010013 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010014 return ret;
10015}
10016
Nikolay Borisov76f32e22018-04-23 10:54:14 +030010017int btrfs_start_delalloc_inodes(struct btrfs_root *root)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010018{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010019 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010020 int ret;
10021
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010022 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010023 return -EROFS;
10024
Nikolay Borisov4fbb5142018-04-23 10:54:15 +030010025 ret = start_delalloc_inodes(root, -1);
Miao Xie6c255e62014-03-06 13:55:01 +080010026 if (ret > 0)
10027 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010028 return ret;
10029}
10030
Nikolay Borisov82b3e532018-04-23 10:54:13 +030010031int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010032{
10033 struct btrfs_root *root;
10034 struct list_head splice;
10035 int ret;
10036
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010037 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010038 return -EROFS;
10039
10040 INIT_LIST_HEAD(&splice);
10041
Miao Xie573bfb72014-03-06 13:55:03 +080010042 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010043 spin_lock(&fs_info->delalloc_root_lock);
10044 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010045 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010046 root = list_first_entry(&splice, struct btrfs_root,
10047 delalloc_root);
10048 root = btrfs_grab_fs_root(root);
10049 BUG_ON(!root);
10050 list_move_tail(&root->delalloc_root,
10051 &fs_info->delalloc_roots);
10052 spin_unlock(&fs_info->delalloc_root_lock);
10053
Nikolay Borisov4fbb5142018-04-23 10:54:15 +030010054 ret = start_delalloc_inodes(root, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010055 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010056 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010057 goto out;
10058
Miao Xie6c255e62014-03-06 13:55:01 +080010059 if (nr != -1) {
10060 nr -= ret;
10061 WARN_ON(nr < 0);
10062 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010063 spin_lock(&fs_info->delalloc_root_lock);
10064 }
10065 spin_unlock(&fs_info->delalloc_root_lock);
10066
Miao Xie6c255e62014-03-06 13:55:01 +080010067 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010068out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010069 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010070 spin_lock(&fs_info->delalloc_root_lock);
10071 list_splice_tail(&splice, &fs_info->delalloc_roots);
10072 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010073 }
Miao Xie573bfb72014-03-06 13:55:03 +080010074 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010075 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010076}
10077
Chris Mason39279cc2007-06-12 06:35:45 -040010078static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10079 const char *symname)
10080{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010081 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010082 struct btrfs_trans_handle *trans;
10083 struct btrfs_root *root = BTRFS_I(dir)->root;
10084 struct btrfs_path *path;
10085 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010086 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010087 int err;
Chris Mason39279cc2007-06-12 06:35:45 -040010088 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010089 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010090 int name_len;
10091 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010092 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010093 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010094 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010095
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010096 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010097 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010098 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010099
Josef Bacik9ed74f22009-09-11 16:12:44 -040010100 /*
10101 * 2 items for inode item and ref
10102 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010103 * 1 item for updating parent inode item
10104 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010105 * 1 item for xattr if selinux is on
10106 */
Filipe Manana9269d122015-12-31 18:16:29 +000010107 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010108 if (IS_ERR(trans))
10109 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010110
Li Zefan581bb052011-04-20 10:06:11 +080010111 err = btrfs_find_free_ino(root, &objectid);
10112 if (err)
10113 goto out_unlock;
10114
Josef Bacikaec74772008-07-24 12:12:38 -040010115 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010116 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10117 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010118 if (IS_ERR(inode)) {
10119 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -040010120 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010121 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010122 }
Chris Mason39279cc2007-06-12 06:35:45 -040010123
Casey Schauflerad19db72011-12-15 10:09:07 -050010124 /*
10125 * If the active LSM wants to access the inode during
10126 * d_instantiate it needs these. Smack checks to see
10127 * if the filesystem supports xattrs by looking at the
10128 * ops vector.
10129 */
10130 inode->i_fop = &btrfs_file_operations;
10131 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010132 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010133 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10134
10135 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10136 if (err)
Al Viro32955c52018-05-16 12:20:05 -040010137 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -050010138
Chris Mason39279cc2007-06-12 06:35:45 -040010139 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010140 if (!path) {
10141 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -040010142 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010143 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010144 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010145 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010146 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010147 datasize = btrfs_file_extent_calc_inline_size(name_len);
10148 err = btrfs_insert_empty_item(trans, root, path, &key,
10149 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010150 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010151 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -040010152 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -040010153 }
Chris Mason5f39d392007-10-15 16:14:19 -040010154 leaf = path->nodes[0];
10155 ei = btrfs_item_ptr(leaf, path->slots[0],
10156 struct btrfs_file_extent_item);
10157 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10158 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010159 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010160 btrfs_set_file_extent_encryption(leaf, ei, 0);
10161 btrfs_set_file_extent_compression(leaf, ei, 0);
10162 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10163 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10164
Chris Mason39279cc2007-06-12 06:35:45 -040010165 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010166 write_extent_buffer(leaf, symname, ptr, name_len);
10167 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010168 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010169
Chris Mason39279cc2007-06-12 06:35:45 -040010170 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010171 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -070010172 inode->i_mapping->a_ops = &btrfs_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010173 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010174 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010175 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010176 /*
10177 * Last step, add directory indexes for our symlink inode. This is the
10178 * last step to avoid extra cleanup of these indexes if an error happens
10179 * elsewhere above.
10180 */
10181 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010182 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10183 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -040010184 if (err)
10185 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -070010186
Al Viro1e2e5472018-05-04 08:23:01 -040010187 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010188
10189out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010190 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010191 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -040010192 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -040010193 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010194 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010195 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010196 return err;
10197}
Chris Mason16432982008-04-10 10:23:21 -040010198
Josef Bacik0af3d002010-06-21 14:48:16 -040010199static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10200 u64 start, u64 num_bytes, u64 min_size,
10201 loff_t actual_len, u64 *alloc_hint,
10202 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010203{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010204 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010205 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10206 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010207 struct btrfs_root *root = BTRFS_I(inode)->root;
10208 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010209 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010210 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010211 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010212 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010213 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010214 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010215 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010216
Josef Bacik0af3d002010-06-21 14:48:16 -040010217 if (trans)
10218 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010219 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010220 if (own_trans) {
10221 trans = btrfs_start_transaction(root, 3);
10222 if (IS_ERR(trans)) {
10223 ret = PTR_ERR(trans);
10224 break;
10225 }
Yan Zhengd899e052008-10-30 14:25:28 -040010226 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010227
Byongho Leeee221842015-12-15 01:42:10 +090010228 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010229 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010230 /*
10231 * If we are severely fragmented we could end up with really
10232 * small allocations, so if the allocator is returning small
10233 * chunks lets make its job easier by only searching for those
10234 * sized chunks.
10235 */
10236 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010237 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10238 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010239 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010240 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010241 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010242 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010243 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010244 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010245
Josef Bacik0b670dc2015-09-23 17:11:16 -040010246 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010247 ret = insert_reserved_file_extent(trans, inode,
10248 cur_offset, ins.objectid,
10249 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010250 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010251 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010252 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010253 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010254 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010255 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010256 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010257 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010258 break;
10259 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010260
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010261 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010262 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010263
Josef Bacik5dc562c2012-08-17 13:14:17 -040010264 em = alloc_extent_map();
10265 if (!em) {
10266 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10267 &BTRFS_I(inode)->runtime_flags);
10268 goto next;
10269 }
10270
10271 em->start = cur_offset;
10272 em->orig_start = cur_offset;
10273 em->len = ins.offset;
10274 em->block_start = ins.objectid;
10275 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010276 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010277 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010278 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010279 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10280 em->generation = trans->transid;
10281
10282 while (1) {
10283 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010284 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010285 write_unlock(&em_tree->lock);
10286 if (ret != -EEXIST)
10287 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010288 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010289 cur_offset + ins.offset - 1,
10290 0);
10291 }
10292 free_extent_map(em);
10293next:
Yan Zhengd899e052008-10-30 14:25:28 -040010294 num_bytes -= ins.offset;
10295 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010296 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010297
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010298 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010299 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010300 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010301 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010302 (actual_len > inode->i_size) &&
10303 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010304 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010305 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010306 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010307 i_size = cur_offset;
10308 i_size_write(inode, i_size);
10309 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010310 }
10311
Yan Zhengd899e052008-10-30 14:25:28 -040010312 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010313
10314 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010315 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010316 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010317 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010318 break;
10319 }
Yan Zhengd899e052008-10-30 14:25:28 -040010320
Josef Bacik0af3d002010-06-21 14:48:16 -040010321 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010322 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010323 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010324 if (cur_offset < end)
Qu Wenruobc42bda2017-02-27 15:10:39 +080010325 btrfs_free_reserved_data_space(inode, NULL, cur_offset,
Wang Xiaoguang18513092016-07-25 15:51:40 +080010326 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010327 return ret;
10328}
10329
Josef Bacik0af3d002010-06-21 14:48:16 -040010330int btrfs_prealloc_file_range(struct inode *inode, int mode,
10331 u64 start, u64 num_bytes, u64 min_size,
10332 loff_t actual_len, u64 *alloc_hint)
10333{
10334 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10335 min_size, actual_len, alloc_hint,
10336 NULL);
10337}
10338
10339int btrfs_prealloc_file_range_trans(struct inode *inode,
10340 struct btrfs_trans_handle *trans, int mode,
10341 u64 start, u64 num_bytes, u64 min_size,
10342 loff_t actual_len, u64 *alloc_hint)
10343{
10344 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10345 min_size, actual_len, alloc_hint, trans);
10346}
10347
Chris Masone6dcd2d2008-07-17 12:53:50 -040010348static int btrfs_set_page_dirty(struct page *page)
10349{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010350 return __set_page_dirty_nobuffers(page);
10351}
10352
Al Viro10556cb22011-06-20 19:28:19 -040010353static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010354{
Li Zefanb83cc962010-12-20 16:04:08 +080010355 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010356 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010357
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010358 if (mask & MAY_WRITE &&
10359 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10360 if (btrfs_root_readonly(root))
10361 return -EROFS;
10362 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10363 return -EACCES;
10364 }
Al Viro2830ba72011-06-20 19:16:29 -040010365 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010366}
Chris Mason39279cc2007-06-12 06:35:45 -040010367
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010368static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10369{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010370 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010371 struct btrfs_trans_handle *trans;
10372 struct btrfs_root *root = BTRFS_I(dir)->root;
10373 struct inode *inode = NULL;
10374 u64 objectid;
10375 u64 index;
10376 int ret = 0;
10377
10378 /*
10379 * 5 units required for adding orphan entry
10380 */
10381 trans = btrfs_start_transaction(root, 5);
10382 if (IS_ERR(trans))
10383 return PTR_ERR(trans);
10384
10385 ret = btrfs_find_free_ino(root, &objectid);
10386 if (ret)
10387 goto out;
10388
10389 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010390 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010391 if (IS_ERR(inode)) {
10392 ret = PTR_ERR(inode);
10393 inode = NULL;
10394 goto out;
10395 }
10396
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010397 inode->i_fop = &btrfs_file_operations;
10398 inode->i_op = &btrfs_file_inode_operations;
10399
10400 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010401 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10402
Chris Masonb0d5d102014-09-08 13:08:51 -070010403 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10404 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010405 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -070010406
10407 ret = btrfs_update_inode(trans, root, inode);
10408 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010409 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010410 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010411 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010412 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010413
Filipe Manana5762b5c2014-08-01 00:10:32 +010010414 /*
10415 * We set number of links to 0 in btrfs_new_inode(), and here we set
10416 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10417 * through:
10418 *
10419 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10420 */
10421 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010422 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -040010423 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010424 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010425out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010426 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010427 if (ret && inode)
10428 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010429 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010430 return ret;
10431}
10432
David Sterba20a7db82017-02-17 16:24:29 +010010433__attribute__((const))
Liu Bo9d0d1c82017-03-24 15:04:50 -070010434static int btrfs_readpage_io_failed_hook(struct page *page, int failed_mirror)
David Sterba20a7db82017-02-17 16:24:29 +010010435{
Liu Bo9d0d1c82017-03-24 15:04:50 -070010436 return -EAGAIN;
David Sterba20a7db82017-02-17 16:24:29 +010010437}
10438
Josef Bacikc6100a42017-05-05 11:57:13 -040010439static void btrfs_check_extent_io_range(void *private_data, const char *caller,
10440 u64 start, u64 end)
10441{
10442 struct inode *inode = private_data;
10443 u64 isize;
10444
10445 isize = i_size_read(inode);
10446 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
10447 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
10448 "%s: ino %llu isize %llu odd range [%llu,%llu]",
10449 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
10450 }
10451}
10452
David Sterba5cdc84b2018-07-18 20:32:52 +020010453void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -040010454{
David Sterba5cdc84b2018-07-18 20:32:52 +020010455 struct inode *inode = tree->private_data;
Josef Bacikc6100a42017-05-05 11:57:13 -040010456 unsigned long index = start >> PAGE_SHIFT;
10457 unsigned long end_index = end >> PAGE_SHIFT;
10458 struct page *page;
10459
10460 while (index <= end_index) {
10461 page = find_get_page(inode->i_mapping, index);
10462 ASSERT(page); /* Pages should be in the extent_io_tree */
10463 set_page_writeback(page);
10464 put_page(page);
10465 index++;
10466 }
10467}
10468
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010469static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010470 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010471 .lookup = btrfs_lookup,
10472 .create = btrfs_create,
10473 .unlink = btrfs_unlink,
10474 .link = btrfs_link,
10475 .mkdir = btrfs_mkdir,
10476 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010477 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010478 .symlink = btrfs_symlink,
10479 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010480 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010481 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010482 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010483 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010484 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010485 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010486 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010487};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010488static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010489 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010490 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010491 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010492};
Yan, Zheng76dda932009-09-21 16:00:26 -040010493
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010494static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010495 .llseek = generic_file_llseek,
10496 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010497 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010498 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010499 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010500#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010501 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010502#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010503 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010504 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010505};
10506
David Sterba20e55062015-11-19 11:42:28 +010010507static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010508 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010509 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010510 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Liu Bo9d0d1c82017-03-24 15:04:50 -070010511 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
David Sterba4d53ddd2017-02-17 15:27:44 +010010512
10513 /* optional callbacks */
10514 .fill_delalloc = run_delalloc_range,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010515 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010516 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010517 .set_bit_hook = btrfs_set_bit_hook,
10518 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010519 .merge_extent_hook = btrfs_merge_extent_hook,
10520 .split_extent_hook = btrfs_split_extent_hook,
Josef Bacikc6100a42017-05-05 11:57:13 -040010521 .check_extent_io_range = btrfs_check_extent_io_range,
Chris Mason07157aa2007-08-30 08:50:51 -040010522};
10523
Chris Mason35054392009-01-21 13:11:13 -050010524/*
10525 * btrfs doesn't support the bmap operation because swapfiles
10526 * use bmap to make a mapping of extents in the file. They assume
10527 * these extents won't change over the life of the file and they
10528 * use the bmap result to do IO directly to the drive.
10529 *
10530 * the btrfs bmap call would return logical addresses that aren't
10531 * suitable for IO and they also will change frequently as COW
10532 * operations happen. So, swapfile + btrfs == corruption.
10533 *
10534 * For now we're avoiding this by dropping bmap.
10535 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010536static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010537 .readpage = btrfs_readpage,
10538 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010539 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010540 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010541 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010542 .invalidatepage = btrfs_invalidatepage,
10543 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010544 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010545 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010546};
10547
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010548static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010549 .getattr = btrfs_getattr,
10550 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010551 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010552 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010553 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010554 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010555 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010556 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010557};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010558static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010559 .getattr = btrfs_getattr,
10560 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010561 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010562 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010563 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010564 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010565 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010566};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010567static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010568 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010569 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010570 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010571 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010572 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010573 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010574};
Yan, Zheng76dda932009-09-21 16:00:26 -040010575
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010576const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010577 .d_delete = btrfs_dentry_delete,
10578};