blob: 9111ae9eb5addd266123bf2d408ccfa90fcb3100 [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
Nikolay Borisov5eaad972018-11-01 14:09:46 +0200112 * extent (btrfs_finish_ordered_io()). Also note that the caller of
113 * btrfs_run_delalloc_range already does proper cleanup for the first page of
Qu Wenruo524272602017-03-08 10:25:52 +0800114 * 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 */
Filipe Manana3527a012018-10-13 00:37:25 +0100505 nr_pages = 0;
Li Zefan560f7d72011-09-08 10:22:01 +0800506 goto cont;
507 }
Chris Mason179e29e2007-11-01 11:28:41 -0400508
David Sterbaeec63c62017-07-17 19:41:31 +0200509 if (BTRFS_I(inode)->defrag_compress)
510 compress_type = BTRFS_I(inode)->defrag_compress;
511 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200512 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800513
Chris Mason4adaa612013-03-26 13:07:00 -0400514 /*
515 * we need to call clear_page_dirty_for_io on each
516 * page in the range. Otherwise applications with the file
517 * mmap'd can wander in and change the page contents while
518 * we are compressing them.
519 *
520 * If the compression fails for any reason, we set the pages
521 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300522 *
523 * Note that the remaining part is redirtied, the start pointer
524 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400525 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300526 if (!redirty) {
527 extent_range_clear_dirty_for_io(inode, start, end);
528 redirty = 1;
529 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200530
531 /* Compression level is applied here and only here */
532 ret = btrfs_compress_pages(
533 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800534 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100535 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100536 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800537 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100538 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400539
540 if (!ret) {
541 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300542 (PAGE_SIZE - 1);
David Sterba4d3a8002017-02-14 19:04:07 +0100543 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400544 char *kaddr;
545
546 /* zero the tail end of the last page, we might be
547 * sending it down to disk
548 */
549 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800550 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400551 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300552 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800553 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400554 }
555 will_compress = 1;
556 }
557 }
Li Zefan560f7d72011-09-08 10:22:01 +0800558cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400559 if (start == 0) {
560 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300561 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400562 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500563 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400564 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200565 ret = cow_file_range_inline(inode, start, end, 0,
566 BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400567 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500568 /* try making a compressed inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200569 ret = cow_file_range_inline(inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000570 total_compressed,
571 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400572 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100573 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400574 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400575 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
576 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100577 unsigned long page_error_op;
578
Filipe Mananae6eb4312014-10-10 10:45:12 +0100579 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400580
Chris Mason771ed682008-11-06 22:02:51 -0500581 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100582 * inline extent creation worked or returned error,
583 * we don't need to create any more async work items.
584 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400585 *
586 * We use DO_ACCOUNTING here because we need the
587 * delalloc_release_metadata to be done _after_ we drop
588 * our outstanding extent for clearing delalloc for this
589 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500590 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800591 extent_clear_unlock_delalloc(inode, start, end, end,
592 NULL, clear_flags,
593 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400594 PAGE_CLEAR_DIRTY |
595 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100596 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400597 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400598 goto free_pages_out;
599 }
600 }
601
602 if (will_compress) {
603 /*
604 * we aren't doing an inline extent round the compressed size
605 * up to a block size boundary so the allocator does sane
606 * things
607 */
Qu Wenruofda28322013-02-26 08:10:22 +0000608 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400609
610 /*
611 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300612 * win, compare the page count read with the blocks on disk,
613 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400614 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300615 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300616 if (total_compressed + blocksize <= total_in) {
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700617 *num_added += 1;
618
619 /*
620 * The async work queues will take care of doing actual
621 * allocation on disk for these compressed pages, and
622 * will submit them to the elevator.
623 */
Timofey Titovets11708622017-10-03 18:06:01 +0300624 add_async_extent(async_cow, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100625 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700626 compress_type);
627
Timofey Titovets11708622017-10-03 18:06:01 +0300628 if (start + total_in < end) {
629 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700630 pages = NULL;
631 cond_resched();
632 goto again;
633 }
634 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400635 }
636 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700637 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400638 /*
639 * the compression code ran but failed to make things smaller,
640 * free any pages it allocated and our page pointer array
641 */
David Sterba4d3a8002017-02-14 19:04:07 +0100642 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400643 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300644 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400645 }
646 kfree(pages);
647 pages = NULL;
648 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100649 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400650
651 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400652 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200653 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500654 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500655 }
Chris Masonc8b97812008-10-29 14:49:59 -0400656 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500657cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700658 /*
659 * No compression, but we still need to write the pages in the file
660 * we've been given so far. redirty the locked page if it corresponds
661 * to our extent and set things up for the async work queue to run
662 * cow_file_range to do the normal delalloc dance.
663 */
664 if (page_offset(locked_page) >= start &&
665 page_offset(locked_page) <= end)
666 __set_page_dirty_nobuffers(locked_page);
667 /* unlocked later on in the async handlers */
668
669 if (redirty)
670 extent_range_redirty_for_io(inode, start, end);
671 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
672 BTRFS_COMPRESS_NONE);
673 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500674
Filipe Mananac44f6492014-10-09 21:15:44 +0100675 return;
Chris Mason771ed682008-11-06 22:02:51 -0500676
677free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100678 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500679 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300680 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500681 }
Chris Masond3977122009-01-05 21:25:51 -0500682 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500683}
Chris Mason771ed682008-11-06 22:02:51 -0500684
Filipe Manana40ae8372014-10-06 22:14:24 +0100685static void free_async_extent_pages(struct async_extent *async_extent)
686{
687 int i;
688
689 if (!async_extent->pages)
690 return;
691
692 for (i = 0; i < async_extent->nr_pages; i++) {
693 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300694 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100695 }
696 kfree(async_extent->pages);
697 async_extent->nr_pages = 0;
698 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500699}
700
701/*
702 * phase two of compressed writeback. This is the ordered portion
703 * of the code, which only gets called in the order the work was
704 * queued. We walk all the async extents created by compress_file_range
705 * and send them down to the disk.
706 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100707static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500708 struct async_cow *async_cow)
709{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400710 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500711 struct async_extent *async_extent;
712 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500713 struct btrfs_key ins;
714 struct extent_map *em;
715 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500716 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500717 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500718
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500719again:
Chris Masond3977122009-01-05 21:25:51 -0500720 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500721 async_extent = list_entry(async_cow->extents.next,
722 struct async_extent, list);
723 list_del(&async_extent->list);
724
725 io_tree = &BTRFS_I(inode)->io_tree;
726
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500727retry:
Chris Mason771ed682008-11-06 22:02:51 -0500728 /* did the compression code fall back to uncompressed IO? */
729 if (!async_extent->pages) {
730 int page_started = 0;
731 unsigned long nr_written = 0;
732
733 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000734 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100735 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500736
737 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500738 ret = cow_file_range(inode, async_cow->locked_page,
739 async_extent->start,
740 async_extent->start +
741 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800742 async_extent->start +
743 async_extent->ram_size - 1,
744 &page_started, &nr_written, 0,
745 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500746
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100747 /* JDM XXX */
748
Chris Mason771ed682008-11-06 22:02:51 -0500749 /*
750 * if page_started, cow_file_range inserted an
751 * inline extent and took care of all the unlocking
752 * and IO for us. Otherwise, we need to submit
753 * all those pages down to the drive.
754 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500755 if (!page_started && !ret)
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200756 extent_write_locked_range(inode,
757 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500758 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500759 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500760 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500761 else if (ret)
762 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500763 kfree(async_extent);
764 cond_resched();
765 continue;
766 }
767
768 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100769 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500770
Wang Xiaoguang18513092016-07-25 15:51:40 +0800771 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500772 async_extent->compressed_size,
773 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800774 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500775 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100776 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500777
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400778 if (ret == -ENOSPC) {
779 unlock_extent(io_tree, async_extent->start,
780 async_extent->start +
781 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800782
783 /*
784 * we need to redirty the pages if we decide to
785 * fallback to uncompressed IO, otherwise we
786 * will not submit these pages down to lower
787 * layers.
788 */
789 extent_range_redirty_for_io(inode,
790 async_extent->start,
791 async_extent->start +
792 async_extent->ram_size - 1);
793
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100794 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400795 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500796 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500797 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000798 /*
799 * here we're doing allocation and writeback of the
800 * compressed pages
801 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800802 em = create_io_em(inode, async_extent->start,
803 async_extent->ram_size, /* len */
804 async_extent->start, /* orig_start */
805 ins.objectid, /* block_start */
806 ins.offset, /* block_len */
807 ins.offset, /* orig_block_len */
808 async_extent->ram_size, /* ram_bytes */
809 async_extent->compress_type,
810 BTRFS_ORDERED_COMPRESSED);
811 if (IS_ERR(em))
812 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500813 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800814 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500815
Li Zefan261507a02010-12-17 14:21:50 +0800816 ret = btrfs_add_ordered_extent_compress(inode,
817 async_extent->start,
818 ins.objectid,
819 async_extent->ram_size,
820 ins.offset,
821 BTRFS_ORDERED_COMPRESSED,
822 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100823 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200824 btrfs_drop_extent_cache(BTRFS_I(inode),
825 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100826 async_extent->start +
827 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500828 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100829 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400830 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500831
Chris Mason771ed682008-11-06 22:02:51 -0500832 /*
833 * clear dirty, set writeback and unlock the pages.
834 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400835 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400836 async_extent->start +
837 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800838 async_extent->start +
839 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400840 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
841 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400842 PAGE_SET_WRITEBACK);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200843 if (btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500844 async_extent->start,
845 async_extent->ram_size,
846 ins.objectid,
847 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600848 async_extent->nr_pages,
849 async_cow->write_flags)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100850 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;
Nikolay Borisov7087a9d2018-11-01 14:09:48 +0200855 btrfs_writepage_endio_finish_ordered(p, start, end,
856 NULL, 0);
857
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100858 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800859 extent_clear_unlock_delalloc(inode, start, end, end,
860 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100861 PAGE_END_WRITEBACK |
862 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100863 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100864 }
Chris Mason771ed682008-11-06 22:02:51 -0500865 alloc_hint = ins.objectid + ins.offset;
866 kfree(async_extent);
867 cond_resched();
868 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100869 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500870out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400871 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400872 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100873out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400874 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500875 async_extent->start +
876 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800877 async_extent->start +
878 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400879 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100880 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400881 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
882 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100883 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
884 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100885 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100886 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500887 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500888}
889
Josef Bacik4b46fce2010-05-23 11:00:55 -0400890static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
891 u64 num_bytes)
892{
893 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
894 struct extent_map *em;
895 u64 alloc_hint = 0;
896
897 read_lock(&em_tree->lock);
898 em = search_extent_mapping(em_tree, start, num_bytes);
899 if (em) {
900 /*
901 * if block start isn't an actual block number then find the
902 * first block in this inode and use that as a hint. If that
903 * block is also bogus then just don't worry about it.
904 */
905 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
906 free_extent_map(em);
907 em = search_extent_mapping(em_tree, 0, 0);
908 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
909 alloc_hint = em->block_start;
910 if (em)
911 free_extent_map(em);
912 } else {
913 alloc_hint = em->block_start;
914 free_extent_map(em);
915 }
916 }
917 read_unlock(&em_tree->lock);
918
919 return alloc_hint;
920}
921
Chris Mason771ed682008-11-06 22:02:51 -0500922/*
923 * when extent_io.c finds a delayed allocation range in the file,
924 * the call backs end up in this code. The basic idea is to
925 * allocate extents on disk for the range, and create ordered data structs
926 * in ram to track those extents.
927 *
928 * locked_page is the page that writepage had locked already. We use
929 * it to make sure we don't do extra locks or unlocks.
930 *
931 * *page_started is set to one if we unlock locked_page and do everything
932 * required to start IO on it. It may be clean and already done with
933 * IO when we return.
934 */
Josef Bacik00361582013-08-14 14:02:47 -0400935static noinline int cow_file_range(struct inode *inode,
936 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800937 u64 start, u64 end, u64 delalloc_end,
938 int *page_started, unsigned long *nr_written,
939 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500940{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400941 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400942 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500943 u64 alloc_hint = 0;
944 u64 num_bytes;
945 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +0000946 u64 cur_alloc_size = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400947 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500948 struct btrfs_key ins;
949 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000950 unsigned clear_bits;
951 unsigned long page_ops;
952 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500953 int ret = 0;
954
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200955 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400956 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500957 ret = -EINVAL;
958 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400959 }
Chris Mason771ed682008-11-06 22:02:51 -0500960
Qu Wenruofda28322013-02-26 08:10:22 +0000961 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500962 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +0800963 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -0500964
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200965 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400966
Chris Mason771ed682008-11-06 22:02:51 -0500967 if (start == 0) {
968 /* lets try to make an inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200969 ret = cow_file_range_inline(inode, start, end, 0,
970 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500971 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -0400972 /*
973 * We use DO_ACCOUNTING here because we need the
974 * delalloc_release_metadata to be run _after_ we drop
975 * our outstanding extent for clearing delalloc for this
976 * range.
977 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800978 extent_clear_unlock_delalloc(inode, start, end,
979 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400980 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400981 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
982 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400983 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
984 PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500985 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300986 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500987 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500988 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100989 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100990 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500991 }
992 }
Chris Masonc8b97812008-10-29 14:49:59 -0400993
Josef Bacik4b46fce2010-05-23 11:00:55 -0400994 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200995 btrfs_drop_extent_cache(BTRFS_I(inode), start,
996 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400997
Anand Jain3752d222018-02-15 12:29:38 +0800998 while (num_bytes > 0) {
999 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001000 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001001 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001002 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001003 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001004 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001005 cur_alloc_size = ins.offset;
1006 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001007
Chris Mason771ed682008-11-06 22:02:51 -05001008 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -08001009 em = create_io_em(inode, start, ins.offset, /* len */
1010 start, /* orig_start */
1011 ins.objectid, /* block_start */
1012 ins.offset, /* block_len */
1013 ins.offset, /* orig_block_len */
1014 ram_size, /* ram_bytes */
1015 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001016 BTRFS_ORDERED_REGULAR /* type */);
Su Yue090a127a2018-05-30 16:48:56 +08001017 if (IS_ERR(em)) {
1018 ret = PTR_ERR(em);
Liu Boace68ba2013-04-22 10:53:47 +00001019 goto out_reserve;
Su Yue090a127a2018-05-30 16:48:56 +08001020 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001021 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001022
Chris Masone6dcd2d2008-07-17 12:53:50 -04001023 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001024 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001025 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001026 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001027
Yan Zheng17d217f2008-12-12 10:03:38 -05001028 if (root->root_key.objectid ==
1029 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1030 ret = btrfs_reloc_clone_csums(inode, start,
1031 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001032 /*
1033 * Only drop cache here, and process as normal.
1034 *
1035 * We must not allow extent_clear_unlock_delalloc()
1036 * at out_unlock label to free meta of this ordered
1037 * extent, as its meta should be freed by
1038 * btrfs_finish_ordered_io().
1039 *
1040 * So we must continue until @start is increased to
1041 * skip current ordered extent.
1042 */
Josef Bacik00361582013-08-14 14:02:47 -04001043 if (ret)
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001044 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1045 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001046 }
1047
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001048 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001049
Chris Masonc8b97812008-10-29 14:49:59 -04001050 /* we're not doing compressed IO, don't unlock the first
1051 * page (which the caller expects to stay locked), don't
1052 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001053 *
1054 * Do set the Private2 bit so we know this page was properly
1055 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001056 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001057 page_ops = unlock ? PAGE_UNLOCK : 0;
1058 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001059
Josef Bacikc2790a22013-07-29 11:20:47 -04001060 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001061 start + ram_size - 1,
1062 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001063 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001064 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001065 if (num_bytes < cur_alloc_size)
1066 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001067 else
Anand Jain3752d222018-02-15 12:29:38 +08001068 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001069 alloc_hint = ins.objectid + ins.offset;
1070 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001071 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001072
1073 /*
1074 * btrfs_reloc_clone_csums() error, since start is increased
1075 * extent_clear_unlock_delalloc() at out_unlock label won't
1076 * free metadata of current ordered extent, we're OK to exit.
1077 */
1078 if (ret)
1079 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001080 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001081out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001082 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001083
Filipe Mananad9f85962014-08-25 10:43:00 +01001084out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001085 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001086out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001087 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001088 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001089out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001090 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1091 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001092 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1093 PAGE_END_WRITEBACK;
1094 /*
1095 * If we reserved an extent for our delalloc range (or a subrange) and
1096 * failed to create the respective ordered extent, then it means that
1097 * when we reserved the extent we decremented the extent's size from
1098 * the data space_info's bytes_may_use counter and incremented the
1099 * space_info's bytes_reserved counter by the same amount. We must make
1100 * sure extent_clear_unlock_delalloc() does not try to decrement again
1101 * the data space_info's bytes_may_use counter, therefore we do not pass
1102 * it the flag EXTENT_CLEAR_DATA_RESV.
1103 */
1104 if (extent_reserved) {
1105 extent_clear_unlock_delalloc(inode, start,
1106 start + cur_alloc_size,
1107 start + cur_alloc_size,
1108 locked_page,
1109 clear_bits,
1110 page_ops);
1111 start += cur_alloc_size;
1112 if (start >= end)
1113 goto out;
1114 }
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001115 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1116 locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001117 clear_bits | EXTENT_CLEAR_DATA_RESV,
1118 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001119 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001120}
Chris Masonc8b97812008-10-29 14:49:59 -04001121
Chris Mason771ed682008-11-06 22:02:51 -05001122/*
1123 * work queue call back to started compression on a file and pages
1124 */
1125static noinline void async_cow_start(struct btrfs_work *work)
1126{
1127 struct async_cow *async_cow;
1128 int num_added = 0;
1129 async_cow = container_of(work, struct async_cow, work);
1130
1131 compress_file_range(async_cow->inode, async_cow->locked_page,
1132 async_cow->start, async_cow->end, async_cow,
1133 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001134 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001135 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001136 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001137 }
Chris Mason771ed682008-11-06 22:02:51 -05001138}
1139
1140/*
1141 * work queue call back to submit previously compressed pages
1142 */
1143static noinline void async_cow_submit(struct btrfs_work *work)
1144{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001145 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001146 struct async_cow *async_cow;
1147 struct btrfs_root *root;
1148 unsigned long nr_pages;
1149
1150 async_cow = container_of(work, struct async_cow, work);
1151
1152 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001153 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001154 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1155 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001156
David Sterba093258e2018-02-26 16:15:17 +01001157 /* atomic_sub_return implies a barrier */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001158 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
David Sterba093258e2018-02-26 16:15:17 +01001159 5 * SZ_1M)
1160 cond_wake_up_nomb(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001161
Chris Masond3977122009-01-05 21:25:51 -05001162 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001163 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001164}
Chris Masonc8b97812008-10-29 14:49:59 -04001165
Chris Mason771ed682008-11-06 22:02:51 -05001166static noinline void async_cow_free(struct btrfs_work *work)
1167{
1168 struct async_cow *async_cow;
1169 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001170 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001171 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001172 kfree(async_cow);
1173}
1174
1175static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1176 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001177 unsigned long *nr_written,
1178 unsigned int write_flags)
Chris Mason771ed682008-11-06 22:02:51 -05001179{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001180 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001181 struct async_cow *async_cow;
1182 struct btrfs_root *root = BTRFS_I(inode)->root;
1183 unsigned long nr_pages;
1184 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001185
Chris Masona3429ab2009-10-08 12:30:20 -04001186 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
David Sterbaae0f1622017-10-31 16:37:52 +01001187 1, 0, NULL);
Chris Masond3977122009-01-05 21:25:51 -05001188 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001189 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001190 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001191 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001192 async_cow->root = root;
1193 async_cow->locked_page = locked_page;
1194 async_cow->start = start;
Liu Bof82b7352017-10-23 23:18:16 -06001195 async_cow->write_flags = write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05001196
Wang Shilongf79707b2014-07-17 11:44:09 +08001197 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001198 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001199 cur_end = end;
1200 else
Byongho Leeee221842015-12-15 01:42:10 +09001201 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001202
1203 async_cow->end = cur_end;
1204 INIT_LIST_HEAD(&async_cow->extents);
1205
Liu Bo9e0af232014-08-15 23:36:53 +08001206 btrfs_init_work(&async_cow->work,
1207 btrfs_delalloc_helper,
1208 async_cow_start, async_cow_submit,
1209 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001210
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001211 nr_pages = (cur_end - start + PAGE_SIZE) >>
1212 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001213 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001214
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001215 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001216
Chris Mason771ed682008-11-06 22:02:51 -05001217 *nr_written += nr_pages;
1218 start = cur_end + 1;
1219 }
1220 *page_started = 1;
1221 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001222}
1223
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001224static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001225 u64 bytenr, u64 num_bytes)
1226{
1227 int ret;
1228 struct btrfs_ordered_sum *sums;
1229 LIST_HEAD(list);
1230
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001231 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001232 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001233 if (ret == 0 && list_empty(&list))
1234 return 0;
1235
1236 while (!list_empty(&list)) {
1237 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1238 list_del(&sums->list);
1239 kfree(sums);
1240 }
Liu Bo58113752018-01-31 17:09:13 -07001241 if (ret < 0)
1242 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001243 return 1;
1244}
1245
Chris Masond352ac62008-09-29 15:18:18 -04001246/*
1247 * when nowcow writeback call back. This checks for snapshots or COW copies
1248 * of the extents that exist in the file, and COWs the file as required.
1249 *
1250 * If no cow copies or snapshots exist, we write directly to the existing
1251 * blocks on disk
1252 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001253static noinline int run_delalloc_nocow(struct inode *inode,
1254 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001255 u64 start, u64 end, int *page_started, int force,
1256 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001258 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001259 struct btrfs_root *root = BTRFS_I(inode)->root;
1260 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001261 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001262 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001263 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001264 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 u64 cow_start;
1266 u64 cur_offset;
1267 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001268 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001269 u64 disk_bytenr;
1270 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001271 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001272 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001273 int extent_type;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001274 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001275 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001276 int nocow;
1277 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001278 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001279 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001280
1281 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001282 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001283 extent_clear_unlock_delalloc(inode, start, end, end,
1284 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001285 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001286 EXTENT_DO_ACCOUNTING |
1287 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001288 PAGE_CLEAR_DIRTY |
1289 PAGE_SET_WRITEBACK |
1290 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001291 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001292 }
Li Zefan82d59022011-04-20 10:33:24 +08001293
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001294 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001295
Yan Zheng80ff3852008-10-30 14:20:02 -04001296 cow_start = (u64)-1;
1297 cur_offset = start;
1298 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001299 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001300 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001301 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001302 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001303 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1304 leaf = path->nodes[0];
1305 btrfs_item_key_to_cpu(leaf, &found_key,
1306 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001307 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001308 found_key.type == BTRFS_EXTENT_DATA_KEY)
1309 path->slots[0]--;
1310 }
1311 check_prev = 0;
1312next_slot:
1313 leaf = path->nodes[0];
1314 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1315 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001316 if (ret < 0) {
1317 if (cow_start != (u64)-1)
1318 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001319 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001320 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001321 if (ret > 0)
1322 break;
1323 leaf = path->nodes[0];
1324 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001325
Yan Zheng80ff3852008-10-30 14:20:02 -04001326 nocow = 0;
1327 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001328 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001329 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001330
Filipe Manana1d512cb2015-11-09 00:33:58 +00001331 if (found_key.objectid > ino)
1332 break;
1333 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1334 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1335 path->slots[0]++;
1336 goto next_slot;
1337 }
1338 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001339 found_key.offset > end)
1340 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001341
Yan Zheng80ff3852008-10-30 14:20:02 -04001342 if (found_key.offset > cur_offset) {
1343 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001344 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 goto out_check;
1346 }
Chris Masonc31f8832008-01-08 15:46:31 -05001347
Yan Zheng80ff3852008-10-30 14:20:02 -04001348 fi = btrfs_item_ptr(leaf, path->slots[0],
1349 struct btrfs_file_extent_item);
1350 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001351
Josef Bacikcc95bef2013-04-04 14:31:27 -04001352 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001353 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1354 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001355 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001356 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001357 extent_end = found_key.offset +
1358 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001359 disk_num_bytes =
1360 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001361 if (extent_end <= start) {
1362 path->slots[0]++;
1363 goto next_slot;
1364 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001365 if (disk_bytenr == 0)
1366 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001367 if (btrfs_file_extent_compression(leaf, fi) ||
1368 btrfs_file_extent_encryption(leaf, fi) ||
1369 btrfs_file_extent_other_encoding(leaf, fi))
1370 goto out_check;
Ethan Lien78d42952018-05-17 14:58:29 +08001371 /*
1372 * Do the same check as in btrfs_cross_ref_exist but
1373 * without the unnecessary search.
1374 */
1375 if (btrfs_file_extent_generation(leaf, fi) <=
1376 btrfs_root_last_snapshot(&root->root_item))
1377 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001378 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1379 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001380 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001381 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001382 ret = btrfs_cross_ref_exist(root, ino,
1383 found_key.offset -
1384 extent_offset, disk_bytenr);
1385 if (ret) {
1386 /*
1387 * ret could be -EIO if the above fails to read
1388 * metadata.
1389 */
1390 if (ret < 0) {
1391 if (cow_start != (u64)-1)
1392 cur_offset = cow_start;
1393 goto error;
1394 }
1395
1396 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001397 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001398 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001399 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001400 disk_bytenr += cur_offset - found_key.offset;
1401 num_bytes = min(end + 1, extent_end) - cur_offset;
1402 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001403 * if there are pending snapshots for this root,
1404 * we fall into common COW way.
1405 */
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001406 if (!nolock && atomic_read(&root->snapshot_force_cow))
1407 goto out_check;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001408 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001409 * force cow if csum exists in the range.
1410 * this ensure that csum for a given extent are
1411 * either valid or do not exist.
1412 */
Liu Bo58113752018-01-31 17:09:13 -07001413 ret = csum_exist_in_range(fs_info, disk_bytenr,
1414 num_bytes);
1415 if (ret) {
Liu Bo58113752018-01-31 17:09:13 -07001416 /*
1417 * ret could be -EIO if the above fails to read
1418 * metadata.
1419 */
1420 if (ret < 0) {
1421 if (cow_start != (u64)-1)
1422 cur_offset = cow_start;
1423 goto error;
1424 }
1425 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001426 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001427 }
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001428 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001429 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001430 nocow = 1;
1431 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1432 extent_end = found_key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +08001433 btrfs_file_extent_ram_bytes(leaf, fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001434 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001435 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001436 } else {
1437 BUG_ON(1);
1438 }
1439out_check:
1440 if (extent_end <= start) {
1441 path->slots[0]++;
Filipe Mananaf78c4362016-05-09 13:15:41 +01001442 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001443 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001444 goto next_slot;
1445 }
1446 if (!nocow) {
1447 if (cow_start == (u64)-1)
1448 cow_start = cur_offset;
1449 cur_offset = extent_end;
1450 if (cur_offset > end)
1451 break;
1452 path->slots[0]++;
1453 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001454 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001455
David Sterbab3b4aa72011-04-21 01:20:15 +02001456 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001457 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001458 ret = cow_file_range(inode, locked_page,
1459 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001460 end, page_started, nr_written, 1,
1461 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001462 if (ret) {
Filipe Mananaf78c4362016-05-09 13:15:41 +01001463 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001464 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001465 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001466 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001467 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001468 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001469 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001470
Yan Zhengd899e052008-10-30 14:25:28 -04001471 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001472 u64 orig_start = found_key.offset - extent_offset;
1473
1474 em = create_io_em(inode, cur_offset, num_bytes,
1475 orig_start,
1476 disk_bytenr, /* block_start */
1477 num_bytes, /* block_len */
1478 disk_num_bytes, /* orig_block_len */
1479 ram_bytes, BTRFS_COMPRESS_NONE,
1480 BTRFS_ORDERED_PREALLOC);
1481 if (IS_ERR(em)) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001482 if (nocow)
1483 btrfs_dec_nocow_writers(fs_info,
1484 disk_bytenr);
1485 ret = PTR_ERR(em);
1486 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001487 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001488 free_extent_map(em);
1489 }
1490
1491 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001492 type = BTRFS_ORDERED_PREALLOC;
1493 } else {
1494 type = BTRFS_ORDERED_NOCOW;
1495 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001496
1497 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001498 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001499 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001500 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001501 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001502
Yan, Zhengefa56462010-05-16 10:49:59 -04001503 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001504 BTRFS_DATA_RELOC_TREE_OBJECTID)
1505 /*
1506 * Error handled later, as we must prevent
1507 * extent_clear_unlock_delalloc() in error handler
1508 * from freeing metadata of created ordered extent.
1509 */
Yan, Zhengefa56462010-05-16 10:49:59 -04001510 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1511 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001512
Josef Bacikc2790a22013-07-29 11:20:47 -04001513 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001514 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001515 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001516 EXTENT_DELALLOC |
1517 EXTENT_CLEAR_DATA_RESV,
1518 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1519
Yan Zheng80ff3852008-10-30 14:20:02 -04001520 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001521
1522 /*
1523 * btrfs_reloc_clone_csums() error, now we're OK to call error
1524 * handler, as metadata for created ordered extent will only
1525 * be freed by btrfs_finish_ordered_io().
1526 */
1527 if (ret)
1528 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001529 if (cur_offset > end)
1530 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001531 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001532 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001533
Robbie Ko506481b2018-10-30 18:04:04 +08001534 if (cur_offset <= end && cow_start == (u64)-1)
Yan Zheng80ff3852008-10-30 14:20:02 -04001535 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001536
Yan Zheng80ff3852008-10-30 14:20:02 -04001537 if (cow_start != (u64)-1) {
Robbie Ko506481b2018-10-30 18:04:04 +08001538 cur_offset = end;
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/*
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001579 * Function to process delayed allocation (create CoW) for ranges which are
1580 * being touched for the first time.
Chris Masond352ac62008-09-29 15:18:18 -04001581 */
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001582int btrfs_run_delalloc_range(void *private_data, struct page *locked_page,
1583 u64 start, u64 end, int *page_started, 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 /*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001628 * See the explanation in btrfs_merge_delalloc_extent, the same
Josef Bacikba117212015-03-13 15:01:24 -04001629 * 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/*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001645 * Handle merged delayed allocation extents so we can keep track of new extents
1646 * that are just merged onto old extents, such as when we are doing sequential
1647 * writes, so we can properly account for the metadata space we'll need.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001648 */
Nikolay Borisov5c848192018-11-01 14:09:52 +02001649void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1650 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001651{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001652 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001653 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001654
Josef Bacik9ed74f22009-09-11 16:12:44 -04001655 /* not delalloc, ignore it */
1656 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001657 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001658
Josef Bacik8461a3d2015-03-13 15:12:08 -04001659 if (new->start > other->start)
1660 new_size = new->end - other->start + 1;
1661 else
1662 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001663
1664 /* we're not bigger than the max, unreserve the space and go */
1665 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1666 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001667 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001668 spin_unlock(&BTRFS_I(inode)->lock);
1669 return;
1670 }
1671
1672 /*
Josef Bacikba117212015-03-13 15:01:24 -04001673 * We have to add up either side to figure out how many extents were
1674 * accounted for before we merged into one big extent. If the number of
1675 * extents we accounted for is <= the amount we need for the new range
1676 * then we can return, otherwise drop. Think of it like this
1677 *
1678 * [ 4k][MAX_SIZE]
1679 *
1680 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1681 * need 2 outstanding extents, on one side we have 1 and the other side
1682 * we have 1 so they are == and we can return. But in this case
1683 *
1684 * [MAX_SIZE+4k][MAX_SIZE+4k]
1685 *
1686 * Each range on their own accounts for 2 extents, but merged together
1687 * they are only 3 extents worth of accounting, so we need to drop in
1688 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001689 */
Josef Bacikba117212015-03-13 15:01:24 -04001690 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001691 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001692 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001693 num_extents += count_max_extents(old_size);
1694 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001695 return;
1696
Josef Bacik9e0baf62011-07-15 15:16:44 +00001697 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001698 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001699 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001700}
1701
Miao Xieeb73c1b2013-05-15 07:48:22 +00001702static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1703 struct inode *inode)
1704{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001705 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1706
Miao Xieeb73c1b2013-05-15 07:48:22 +00001707 spin_lock(&root->delalloc_lock);
1708 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1709 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1710 &root->delalloc_inodes);
1711 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1712 &BTRFS_I(inode)->runtime_flags);
1713 root->nr_delalloc_inodes++;
1714 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001715 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001716 BUG_ON(!list_empty(&root->delalloc_root));
1717 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001718 &fs_info->delalloc_roots);
1719 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001720 }
1721 }
1722 spin_unlock(&root->delalloc_lock);
1723}
1724
Nikolay Borisov2b877332018-04-27 12:21:51 +03001725
1726void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1727 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001728{
David Sterba3ffbd682018-06-29 10:56:42 +02001729 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001730
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001731 if (!list_empty(&inode->delalloc_inodes)) {
1732 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001733 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001734 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001735 root->nr_delalloc_inodes--;
1736 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03001737 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001738 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001739 BUG_ON(list_empty(&root->delalloc_root));
1740 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001741 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001742 }
1743 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03001744}
1745
1746static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1747 struct btrfs_inode *inode)
1748{
1749 spin_lock(&root->delalloc_lock);
1750 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001751 spin_unlock(&root->delalloc_lock);
1752}
1753
Chris Masond352ac62008-09-29 15:18:18 -04001754/*
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001755 * Properly track delayed allocation bytes in the inode and to maintain the
1756 * list of inodes that have pending delalloc work to be done.
Chris Masond352ac62008-09-29 15:18:18 -04001757 */
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001758void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
1759 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001760{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001761 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1762
Wang Shilong47059d92014-07-03 18:22:07 +08001763 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1764 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001765 /*
1766 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001767 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001768 * bit, which is only set or cleared with irqs on
1769 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001770 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001771 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001772 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04001773 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001774 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001775
Josef Bacik8b62f872017-10-19 14:15:55 -04001776 spin_lock(&BTRFS_I(inode)->lock);
1777 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1778 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001779
Josef Bacik6a3891c2015-03-16 17:38:52 -04001780 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001781 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001782 return;
1783
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001784 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1785 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001786 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001787 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001788 if (*bits & EXTENT_DEFRAG)
1789 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001790 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001791 &BTRFS_I(inode)->runtime_flags))
1792 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001793 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001794 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001795
1796 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1797 (*bits & EXTENT_DELALLOC_NEW)) {
1798 spin_lock(&BTRFS_I(inode)->lock);
1799 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1800 state->start;
1801 spin_unlock(&BTRFS_I(inode)->lock);
1802 }
Chris Mason291d6732008-01-29 15:55:23 -05001803}
1804
Chris Masond352ac62008-09-29 15:18:18 -04001805/*
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001806 * Once a range is no longer delalloc this function ensures that proper
1807 * accounting happens.
Chris Masond352ac62008-09-29 15:18:18 -04001808 */
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001809void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
1810 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001811{
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001812 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
1813 struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001814 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001815 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001816
Filipe Manana4a4b9642017-07-27 19:52:55 +01001817 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1818 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001819 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01001820 spin_unlock(&inode->lock);
1821 }
Wang Shilong47059d92014-07-03 18:22:07 +08001822
Chris Mason75eff682008-12-15 15:54:40 -05001823 /*
1824 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001825 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001826 * bit, which is only set or cleared with irqs on
1827 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001828 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001829 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001830 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001831
Josef Bacik8b62f872017-10-19 14:15:55 -04001832 spin_lock(&inode->lock);
1833 btrfs_mod_outstanding_extents(inode, -num_extents);
1834 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001835
Josef Bacikb6d08f02013-09-27 14:57:43 -04001836 /*
1837 * We don't reserve metadata space for space cache inodes so we
1838 * don't need to call dellalloc_release_metadata if there is an
1839 * error.
1840 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001841 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001842 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08001843 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001844
Josef Bacik6a3891c2015-03-16 17:38:52 -04001845 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001846 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001847 return;
1848
Filipe Mananaa315e682017-03-06 23:04:20 +00001849 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1850 do_list && !(state->state & EXTENT_NORESERVE) &&
1851 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001852 btrfs_free_reserved_data_space_noquota(
1853 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001854 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001855
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001856 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1857 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001858 spin_lock(&inode->lock);
1859 inode->delalloc_bytes -= len;
1860 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001861 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001862 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001863 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001864 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001865 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001866
1867 if ((state->state & EXTENT_DELALLOC_NEW) &&
1868 (*bits & EXTENT_DELALLOC_NEW)) {
1869 spin_lock(&inode->lock);
1870 ASSERT(inode->new_delalloc_bytes >= len);
1871 inode->new_delalloc_bytes -= len;
1872 spin_unlock(&inode->lock);
1873 }
Chris Mason291d6732008-01-29 15:55:23 -05001874}
1875
Chris Masond352ac62008-09-29 15:18:18 -04001876/*
David Sterba00032d32018-07-18 19:28:09 +02001877 * Merge bio hook, this must check the chunk tree to make sure we don't create
1878 * bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001879 *
1880 * return 1 if page cannot be merged to bio
1881 * return 0 if page can be merged to bio
1882 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001883 */
Mike Christie81a75f672016-06-05 14:31:54 -05001884int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001885 size_t size, struct bio *bio,
1886 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001887{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001888 struct inode *inode = page->mapping->host;
1889 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001890 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001891 u64 length = 0;
1892 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001893 int ret;
1894
Chris Mason771ed682008-11-06 22:02:51 -05001895 if (bio_flags & EXTENT_BIO_COMPRESSED)
1896 return 0;
1897
Kent Overstreet4f024f32013-10-11 15:44:27 -07001898 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001899 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001900 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1901 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001902 if (ret < 0)
1903 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001904 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001905 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001906 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001907}
1908
Chris Masond352ac62008-09-29 15:18:18 -04001909/*
1910 * in order to insert checksums into the metadata in large chunks,
1911 * we wait until bio submission time. All the pages in the bio are
1912 * checksummed and sums are attached onto the ordered extent record.
1913 *
1914 * At IO completion time the cums attached on the ordered extent record
1915 * are inserted into the btree
1916 */
David Sterbad0ee3932018-03-08 14:35:48 +01001917static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001918 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001919{
Josef Bacikc6100a42017-05-05 11:57:13 -04001920 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001921 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001922
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001923 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001924 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001925 return 0;
1926}
Chris Masone0156402008-04-16 11:15:20 -04001927
Chris Mason4a69a412008-11-06 22:03:00 -05001928/*
1929 * in order to insert checksums into the metadata in large chunks,
1930 * we wait until bio submission time. All the pages in the bio are
1931 * checksummed and sums are attached onto the ordered extent record.
1932 *
1933 * At IO completion time the cums attached on the ordered extent record
1934 * are inserted into the btree
1935 */
David Sterbae288c082018-07-18 17:36:24 +02001936blk_status_t btrfs_submit_bio_done(void *private_data, struct bio *bio,
David Sterba6c553432018-03-08 13:47:33 +01001937 int mirror_num)
Chris Mason4a69a412008-11-06 22:03:00 -05001938{
Josef Bacikc6100a42017-05-05 11:57:13 -04001939 struct inode *inode = private_data;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001940 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001941 blk_status_t ret;
Stefan Behrens61891922012-11-05 18:51:52 +01001942
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001943 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001944 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001945 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001946 bio_endio(bio);
1947 }
Stefan Behrens61891922012-11-05 18:51:52 +01001948 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001949}
1950
Chris Masond352ac62008-09-29 15:18:18 -04001951/*
Chris Masoncad321a2008-12-17 14:51:42 -05001952 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06001953 * on write, or reading the csums from the tree before a read.
1954 *
1955 * Rules about async/sync submit,
1956 * a) read: sync submit
1957 *
1958 * b) write without checksum: sync submit
1959 *
1960 * c) write with checksum:
1961 * c-1) if bio is issued by fsync: sync submit
1962 * (sync_writers != 0)
1963 *
1964 * c-2) if root is reloc root: sync submit
1965 * (only in case of buffered IO)
1966 *
1967 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04001968 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001969static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
Josef Bacikc6100a42017-05-05 11:57:13 -04001970 int mirror_num, unsigned long bio_flags,
1971 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001972{
Josef Bacikc6100a42017-05-05 11:57:13 -04001973 struct inode *inode = private_data;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001974 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001975 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301976 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001977 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001978 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001979 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001980
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001981 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001982
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001983 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301984 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001985
Mike Christie37226b22016-06-05 14:31:52 -05001986 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001987 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001988 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001989 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001990
Chris Masond20f7042008-12-08 16:58:54 -05001991 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001992 ret = btrfs_submit_compressed_read(inode, bio,
1993 mirror_num,
1994 bio_flags);
1995 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001996 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001997 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001998 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001999 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00002000 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04002001 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05002002 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002003 /* csum items have already been cloned */
2004 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2005 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002006 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04002007 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
2008 bio_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02002009 btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01002010 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002011 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002012 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002013 if (ret)
2014 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002015 }
2016
Chris Mason0b86a832008-03-24 15:01:56 -04002017mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002018 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01002019
2020out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002021 if (ret) {
2022 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002023 bio_endio(bio);
2024 }
Stefan Behrens61891922012-11-05 18:51:52 +01002025 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002026}
Chris Mason6885f302008-02-20 16:11:05 -05002027
Chris Masond352ac62008-09-29 15:18:18 -04002028/*
2029 * given a list of ordered sums record them in the inode. This happens
2030 * at IO completion time based on sums calculated at bio submission time.
2031 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002032static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002033 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002034{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002035 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002036 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002037
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002038 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002039 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002040 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002041 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002042 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002043 if (ret)
2044 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002045 }
2046 return 0;
2047}
2048
Josef Bacik2ac55d42010-02-03 19:33:23 +00002049int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002050 unsigned int extra_bits,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002051 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002052{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002053 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002054 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002055 extra_bits, cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002056}
2057
Chris Masond352ac62008-09-29 15:18:18 -04002058/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002059struct btrfs_writepage_fixup {
2060 struct page *page;
2061 struct btrfs_work work;
2062};
2063
Christoph Hellwigb2950862008-12-02 09:54:17 -05002064static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002065{
2066 struct btrfs_writepage_fixup *fixup;
2067 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002068 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002069 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002070 struct page *page;
2071 struct inode *inode;
2072 u64 page_start;
2073 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002074 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002075
2076 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2077 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002078again:
Chris Mason247e7432008-07-17 12:53:51 -04002079 lock_page(page);
2080 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2081 ClearPageChecked(page);
2082 goto out_page;
2083 }
2084
2085 inode = page->mapping->host;
2086 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002087 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002088
David Sterbaff13db42015-12-03 14:30:40 +01002089 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002090 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002091
2092 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002093 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002094 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002095
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002096 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002097 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002098 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002099 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
David Sterbae43bbe52017-12-12 21:43:52 +01002100 page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002101 unlock_page(page);
2102 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002103 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002104 goto again;
2105 }
Chris Mason247e7432008-07-17 12:53:51 -04002106
Qu Wenruo364ecf32017-02-27 15:10:38 +08002107 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002108 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002109 if (ret) {
2110 mapping_set_error(page->mapping, ret);
2111 end_extent_writepage(page, ret, page_start, page_end);
2112 ClearPageChecked(page);
2113 goto out;
2114 }
2115
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002116 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2117 &cached_state, 0);
2118 if (ret) {
2119 mapping_set_error(page->mapping, ret);
2120 end_extent_writepage(page, ret, page_start, page_end);
2121 ClearPageChecked(page);
2122 goto out;
2123 }
2124
Chris Mason247e7432008-07-17 12:53:51 -04002125 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002126 set_page_dirty(page);
Qu Wenruo43b18592017-12-12 15:34:32 +08002127 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false);
Chris Mason247e7432008-07-17 12:53:51 -04002128out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002129 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002130 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002131out_page:
2132 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002133 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002134 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002135 extent_changeset_free(data_reserved);
Chris Mason247e7432008-07-17 12:53:51 -04002136}
2137
2138/*
2139 * There are a few paths in the higher layers of the kernel that directly
2140 * set the page dirty bit without asking the filesystem if it is a
2141 * good idea. This causes problems because we want to make sure COW
2142 * properly happens and the data=ordered rules are followed.
2143 *
Chris Masonc8b97812008-10-29 14:49:59 -04002144 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002145 * hasn't been properly setup for IO. We kick off an async process
2146 * to fix it up. The async helper will wait for ordered extents, set
2147 * the delalloc bit and make it safe to write the page.
2148 */
Nikolay Borisovd75855b2018-11-01 14:09:47 +02002149int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002150{
2151 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002152 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002153 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002154
Chris Mason8b62b722009-09-02 16:53:46 -04002155 /* this page is properly in the ordered list */
2156 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002157 return 0;
2158
2159 if (PageChecked(page))
2160 return -EAGAIN;
2161
2162 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2163 if (!fixup)
2164 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002165
Chris Mason247e7432008-07-17 12:53:51 -04002166 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002167 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002168 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2169 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002170 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002171 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002172 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002173}
2174
Yan Zhengd899e052008-10-30 14:25:28 -04002175static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2176 struct inode *inode, u64 file_pos,
2177 u64 disk_bytenr, u64 disk_num_bytes,
2178 u64 num_bytes, u64 ram_bytes,
2179 u8 compression, u8 encryption,
2180 u16 other_encoding, int extent_type)
2181{
2182 struct btrfs_root *root = BTRFS_I(inode)->root;
2183 struct btrfs_file_extent_item *fi;
2184 struct btrfs_path *path;
2185 struct extent_buffer *leaf;
2186 struct btrfs_key ins;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002187 u64 qg_released;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002188 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002189 int ret;
2190
2191 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002192 if (!path)
2193 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002194
Chris Masona1ed8352009-09-11 12:27:37 -04002195 /*
2196 * we may be replacing one extent in the tree with another.
2197 * The new extent is pinned in the extent map, and we don't want
2198 * to drop it from the cache until it is completely in the btree.
2199 *
2200 * So, tell btrfs_drop_extents to leave this extent in the cache.
2201 * the caller is expected to unpin it and allow it to be merged
2202 * with the others.
2203 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002204 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2205 file_pos + num_bytes, NULL, 0,
2206 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002207 if (ret)
2208 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002209
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002210 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002211 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002212 ins.offset = file_pos;
2213 ins.type = BTRFS_EXTENT_DATA_KEY;
2214
2215 path->leave_spinning = 1;
2216 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2217 sizeof(*fi));
2218 if (ret)
2219 goto out;
2220 }
Yan Zhengd899e052008-10-30 14:25:28 -04002221 leaf = path->nodes[0];
2222 fi = btrfs_item_ptr(leaf, path->slots[0],
2223 struct btrfs_file_extent_item);
2224 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2225 btrfs_set_file_extent_type(leaf, fi, extent_type);
2226 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2227 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2228 btrfs_set_file_extent_offset(leaf, fi, 0);
2229 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2230 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2231 btrfs_set_file_extent_compression(leaf, fi, compression);
2232 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2233 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002234
Yan Zhengd899e052008-10-30 14:25:28 -04002235 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002236 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002237
2238 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002239
2240 ins.objectid = disk_bytenr;
2241 ins.offset = disk_num_bytes;
2242 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002243
Qu Wenruo297d7502015-09-08 17:08:37 +08002244 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002245 * Release the reserved range from inode dirty range map, as it is
2246 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002247 */
Qu Wenruoa12b8772017-02-27 15:10:37 +08002248 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2249 if (ret < 0)
2250 goto out;
2251 qg_released = ret;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002252 ret = btrfs_alloc_reserved_file_extent(trans, root,
2253 btrfs_ino(BTRFS_I(inode)),
2254 file_pos, qg_released, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002255out:
Yan Zhengd899e052008-10-30 14:25:28 -04002256 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002257
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002258 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002259}
2260
Liu Bo38c227d2013-01-29 03:18:40 +00002261/* snapshot-aware defrag */
2262struct sa_defrag_extent_backref {
2263 struct rb_node node;
2264 struct old_sa_defrag_extent *old;
2265 u64 root_id;
2266 u64 inum;
2267 u64 file_pos;
2268 u64 extent_offset;
2269 u64 num_bytes;
2270 u64 generation;
2271};
2272
2273struct old_sa_defrag_extent {
2274 struct list_head list;
2275 struct new_sa_defrag_extent *new;
2276
2277 u64 extent_offset;
2278 u64 bytenr;
2279 u64 offset;
2280 u64 len;
2281 int count;
2282};
2283
2284struct new_sa_defrag_extent {
2285 struct rb_root root;
2286 struct list_head head;
2287 struct btrfs_path *path;
2288 struct inode *inode;
2289 u64 file_pos;
2290 u64 len;
2291 u64 bytenr;
2292 u64 disk_len;
2293 u8 compress_type;
2294};
2295
2296static int backref_comp(struct sa_defrag_extent_backref *b1,
2297 struct sa_defrag_extent_backref *b2)
2298{
2299 if (b1->root_id < b2->root_id)
2300 return -1;
2301 else if (b1->root_id > b2->root_id)
2302 return 1;
2303
2304 if (b1->inum < b2->inum)
2305 return -1;
2306 else if (b1->inum > b2->inum)
2307 return 1;
2308
2309 if (b1->file_pos < b2->file_pos)
2310 return -1;
2311 else if (b1->file_pos > b2->file_pos)
2312 return 1;
2313
2314 /*
2315 * [------------------------------] ===> (a range of space)
2316 * |<--->| |<---->| =============> (fs/file tree A)
2317 * |<---------------------------->| ===> (fs/file tree B)
2318 *
2319 * A range of space can refer to two file extents in one tree while
2320 * refer to only one file extent in another tree.
2321 *
2322 * So we may process a disk offset more than one time(two extents in A)
2323 * and locate at the same extent(one extent in B), then insert two same
2324 * backrefs(both refer to the extent in B).
2325 */
2326 return 0;
2327}
2328
2329static void backref_insert(struct rb_root *root,
2330 struct sa_defrag_extent_backref *backref)
2331{
2332 struct rb_node **p = &root->rb_node;
2333 struct rb_node *parent = NULL;
2334 struct sa_defrag_extent_backref *entry;
2335 int ret;
2336
2337 while (*p) {
2338 parent = *p;
2339 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2340
2341 ret = backref_comp(backref, entry);
2342 if (ret < 0)
2343 p = &(*p)->rb_left;
2344 else
2345 p = &(*p)->rb_right;
2346 }
2347
2348 rb_link_node(&backref->node, parent, p);
2349 rb_insert_color(&backref->node, root);
2350}
2351
2352/*
2353 * Note the backref might has changed, and in this case we just return 0.
2354 */
2355static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2356 void *ctx)
2357{
2358 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002359 struct old_sa_defrag_extent *old = ctx;
2360 struct new_sa_defrag_extent *new = old->new;
2361 struct btrfs_path *path = new->path;
2362 struct btrfs_key key;
2363 struct btrfs_root *root;
2364 struct sa_defrag_extent_backref *backref;
2365 struct extent_buffer *leaf;
2366 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002367 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002368 int slot;
2369 int ret;
2370 u64 extent_offset;
2371 u64 num_bytes;
2372
2373 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002374 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002375 return 0;
2376
2377 key.objectid = root_id;
2378 key.type = BTRFS_ROOT_ITEM_KEY;
2379 key.offset = (u64)-1;
2380
Liu Bo38c227d2013-01-29 03:18:40 +00002381 root = btrfs_read_fs_root_no_name(fs_info, &key);
2382 if (IS_ERR(root)) {
2383 if (PTR_ERR(root) == -ENOENT)
2384 return 0;
2385 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002386 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002387 inum, offset, root_id);
2388 return PTR_ERR(root);
2389 }
2390
2391 key.objectid = inum;
2392 key.type = BTRFS_EXTENT_DATA_KEY;
2393 if (offset > (u64)-1 << 32)
2394 key.offset = 0;
2395 else
2396 key.offset = offset;
2397
2398 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302399 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002400 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002401 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002402
2403 while (1) {
2404 cond_resched();
2405
2406 leaf = path->nodes[0];
2407 slot = path->slots[0];
2408
2409 if (slot >= btrfs_header_nritems(leaf)) {
2410 ret = btrfs_next_leaf(root, path);
2411 if (ret < 0) {
2412 goto out;
2413 } else if (ret > 0) {
2414 ret = 0;
2415 goto out;
2416 }
2417 continue;
2418 }
2419
2420 path->slots[0]++;
2421
2422 btrfs_item_key_to_cpu(leaf, &key, slot);
2423
2424 if (key.objectid > inum)
2425 goto out;
2426
2427 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2428 continue;
2429
2430 extent = btrfs_item_ptr(leaf, slot,
2431 struct btrfs_file_extent_item);
2432
2433 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2434 continue;
2435
Liu Boe68afa42013-07-01 22:13:26 +08002436 /*
2437 * 'offset' refers to the exact key.offset,
2438 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2439 * (key.offset - extent_offset).
2440 */
2441 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002442 continue;
2443
Liu Boe68afa42013-07-01 22:13:26 +08002444 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002445 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002446
Liu Bo38c227d2013-01-29 03:18:40 +00002447 if (extent_offset >= old->extent_offset + old->offset +
2448 old->len || extent_offset + num_bytes <=
2449 old->extent_offset + old->offset)
2450 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002451 break;
2452 }
2453
2454 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2455 if (!backref) {
2456 ret = -ENOENT;
2457 goto out;
2458 }
2459
2460 backref->root_id = root_id;
2461 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002462 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002463 backref->num_bytes = num_bytes;
2464 backref->extent_offset = extent_offset;
2465 backref->generation = btrfs_file_extent_generation(leaf, extent);
2466 backref->old = old;
2467 backref_insert(&new->root, backref);
2468 old->count++;
2469out:
2470 btrfs_release_path(path);
2471 WARN_ON(ret);
2472 return ret;
2473}
2474
2475static noinline bool record_extent_backrefs(struct btrfs_path *path,
2476 struct new_sa_defrag_extent *new)
2477{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002478 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002479 struct old_sa_defrag_extent *old, *tmp;
2480 int ret;
2481
2482 new->path = path;
2483
2484 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002485 ret = iterate_inodes_from_logical(old->bytenr +
2486 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002487 path, record_one_backref,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002488 old, false);
Josef Bacik4724b102013-11-05 11:11:40 -05002489 if (ret < 0 && ret != -ENOENT)
2490 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002491
2492 /* no backref to be processed for this extent */
2493 if (!old->count) {
2494 list_del(&old->list);
2495 kfree(old);
2496 }
2497 }
2498
2499 if (list_empty(&new->head))
2500 return false;
2501
2502 return true;
2503}
2504
2505static int relink_is_mergable(struct extent_buffer *leaf,
2506 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002507 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002508{
Liu Bo116e0022013-08-02 16:30:40 +08002509 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002510 return 0;
2511
2512 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2513 return 0;
2514
Liu Bo116e0022013-08-02 16:30:40 +08002515 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2516 return 0;
2517
2518 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002519 btrfs_file_extent_other_encoding(leaf, fi))
2520 return 0;
2521
2522 return 1;
2523}
2524
2525/*
2526 * Note the backref might has changed, and in this case we just return 0.
2527 */
2528static noinline int relink_extent_backref(struct btrfs_path *path,
2529 struct sa_defrag_extent_backref *prev,
2530 struct sa_defrag_extent_backref *backref)
2531{
2532 struct btrfs_file_extent_item *extent;
2533 struct btrfs_file_extent_item *item;
2534 struct btrfs_ordered_extent *ordered;
2535 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002536 struct btrfs_root *root;
2537 struct btrfs_key key;
2538 struct extent_buffer *leaf;
2539 struct old_sa_defrag_extent *old = backref->old;
2540 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002541 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002542 struct inode *inode;
2543 struct extent_state *cached = NULL;
2544 int ret = 0;
2545 u64 start;
2546 u64 len;
2547 u64 lock_start;
2548 u64 lock_end;
2549 bool merge = false;
2550 int index;
2551
2552 if (prev && prev->root_id == backref->root_id &&
2553 prev->inum == backref->inum &&
2554 prev->file_pos + prev->num_bytes == backref->file_pos)
2555 merge = true;
2556
2557 /* step 1: get root */
2558 key.objectid = backref->root_id;
2559 key.type = BTRFS_ROOT_ITEM_KEY;
2560 key.offset = (u64)-1;
2561
Liu Bo38c227d2013-01-29 03:18:40 +00002562 index = srcu_read_lock(&fs_info->subvol_srcu);
2563
2564 root = btrfs_read_fs_root_no_name(fs_info, &key);
2565 if (IS_ERR(root)) {
2566 srcu_read_unlock(&fs_info->subvol_srcu, index);
2567 if (PTR_ERR(root) == -ENOENT)
2568 return 0;
2569 return PTR_ERR(root);
2570 }
Liu Bo38c227d2013-01-29 03:18:40 +00002571
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002572 if (btrfs_root_readonly(root)) {
2573 srcu_read_unlock(&fs_info->subvol_srcu, index);
2574 return 0;
2575 }
2576
Liu Bo38c227d2013-01-29 03:18:40 +00002577 /* step 2: get inode */
2578 key.objectid = backref->inum;
2579 key.type = BTRFS_INODE_ITEM_KEY;
2580 key.offset = 0;
2581
2582 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2583 if (IS_ERR(inode)) {
2584 srcu_read_unlock(&fs_info->subvol_srcu, index);
2585 return 0;
2586 }
2587
2588 srcu_read_unlock(&fs_info->subvol_srcu, index);
2589
2590 /* step 3: relink backref */
2591 lock_start = backref->file_pos;
2592 lock_end = backref->file_pos + backref->num_bytes - 1;
2593 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002594 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002595
2596 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2597 if (ordered) {
2598 btrfs_put_ordered_extent(ordered);
2599 goto out_unlock;
2600 }
2601
2602 trans = btrfs_join_transaction(root);
2603 if (IS_ERR(trans)) {
2604 ret = PTR_ERR(trans);
2605 goto out_unlock;
2606 }
2607
2608 key.objectid = backref->inum;
2609 key.type = BTRFS_EXTENT_DATA_KEY;
2610 key.offset = backref->file_pos;
2611
2612 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2613 if (ret < 0) {
2614 goto out_free_path;
2615 } else if (ret > 0) {
2616 ret = 0;
2617 goto out_free_path;
2618 }
2619
2620 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2621 struct btrfs_file_extent_item);
2622
2623 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2624 backref->generation)
2625 goto out_free_path;
2626
2627 btrfs_release_path(path);
2628
2629 start = backref->file_pos;
2630 if (backref->extent_offset < old->extent_offset + old->offset)
2631 start += old->extent_offset + old->offset -
2632 backref->extent_offset;
2633
2634 len = min(backref->extent_offset + backref->num_bytes,
2635 old->extent_offset + old->offset + old->len);
2636 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2637
2638 ret = btrfs_drop_extents(trans, root, inode, start,
2639 start + len, 1);
2640 if (ret)
2641 goto out_free_path;
2642again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002643 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002644 key.type = BTRFS_EXTENT_DATA_KEY;
2645 key.offset = start;
2646
Liu Boa09a0a72013-03-11 09:20:58 +00002647 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002648 if (merge) {
2649 struct btrfs_file_extent_item *fi;
2650 u64 extent_len;
2651 struct btrfs_key found_key;
2652
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002653 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002654 if (ret < 0)
2655 goto out_free_path;
2656
2657 path->slots[0]--;
2658 leaf = path->nodes[0];
2659 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2660
2661 fi = btrfs_item_ptr(leaf, path->slots[0],
2662 struct btrfs_file_extent_item);
2663 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2664
Liu Bo116e0022013-08-02 16:30:40 +08002665 if (extent_len + found_key.offset == start &&
2666 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002667 btrfs_set_file_extent_num_bytes(leaf, fi,
2668 extent_len + len);
2669 btrfs_mark_buffer_dirty(leaf);
2670 inode_add_bytes(inode, len);
2671
2672 ret = 1;
2673 goto out_free_path;
2674 } else {
2675 merge = false;
2676 btrfs_release_path(path);
2677 goto again;
2678 }
2679 }
2680
2681 ret = btrfs_insert_empty_item(trans, root, path, &key,
2682 sizeof(*extent));
2683 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002684 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002685 goto out_free_path;
2686 }
2687
2688 leaf = path->nodes[0];
2689 item = btrfs_item_ptr(leaf, path->slots[0],
2690 struct btrfs_file_extent_item);
2691 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2692 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2693 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2694 btrfs_set_file_extent_num_bytes(leaf, item, len);
2695 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2696 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2697 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2698 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2699 btrfs_set_file_extent_encryption(leaf, item, 0);
2700 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2701
2702 btrfs_mark_buffer_dirty(leaf);
2703 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002704 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002705
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002706 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002707 new->disk_len, 0,
2708 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002709 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002710 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002711 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002712 goto out_free_path;
2713 }
2714
2715 ret = 1;
2716out_free_path:
2717 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002718 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002719 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002720out_unlock:
2721 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002722 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002723 iput(inode);
2724 return ret;
2725}
2726
Liu Bo6f519562013-10-29 10:45:05 +08002727static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2728{
2729 struct old_sa_defrag_extent *old, *tmp;
2730
2731 if (!new)
2732 return;
2733
2734 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002735 kfree(old);
2736 }
2737 kfree(new);
2738}
2739
Liu Bo38c227d2013-01-29 03:18:40 +00002740static void relink_file_extents(struct new_sa_defrag_extent *new)
2741{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002742 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002743 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002744 struct sa_defrag_extent_backref *backref;
2745 struct sa_defrag_extent_backref *prev = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002746 struct rb_node *node;
2747 int ret;
2748
Liu Bo38c227d2013-01-29 03:18:40 +00002749 path = btrfs_alloc_path();
2750 if (!path)
2751 return;
2752
2753 if (!record_extent_backrefs(path, new)) {
2754 btrfs_free_path(path);
2755 goto out;
2756 }
2757 btrfs_release_path(path);
2758
2759 while (1) {
2760 node = rb_first(&new->root);
2761 if (!node)
2762 break;
2763 rb_erase(node, &new->root);
2764
2765 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2766
2767 ret = relink_extent_backref(path, prev, backref);
2768 WARN_ON(ret < 0);
2769
2770 kfree(prev);
2771
2772 if (ret == 1)
2773 prev = backref;
2774 else
2775 prev = NULL;
2776 cond_resched();
2777 }
2778 kfree(prev);
2779
2780 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002781out:
Liu Bo6f519562013-10-29 10:45:05 +08002782 free_sa_defrag_extent(new);
2783
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002784 atomic_dec(&fs_info->defrag_running);
2785 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002786}
2787
2788static struct new_sa_defrag_extent *
2789record_old_file_extents(struct inode *inode,
2790 struct btrfs_ordered_extent *ordered)
2791{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002792 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002793 struct btrfs_root *root = BTRFS_I(inode)->root;
2794 struct btrfs_path *path;
2795 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002796 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002797 struct new_sa_defrag_extent *new;
2798 int ret;
2799
2800 new = kmalloc(sizeof(*new), GFP_NOFS);
2801 if (!new)
2802 return NULL;
2803
2804 new->inode = inode;
2805 new->file_pos = ordered->file_offset;
2806 new->len = ordered->len;
2807 new->bytenr = ordered->start;
2808 new->disk_len = ordered->disk_len;
2809 new->compress_type = ordered->compress_type;
2810 new->root = RB_ROOT;
2811 INIT_LIST_HEAD(&new->head);
2812
2813 path = btrfs_alloc_path();
2814 if (!path)
2815 goto out_kfree;
2816
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002817 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002818 key.type = BTRFS_EXTENT_DATA_KEY;
2819 key.offset = new->file_pos;
2820
2821 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2822 if (ret < 0)
2823 goto out_free_path;
2824 if (ret > 0 && path->slots[0] > 0)
2825 path->slots[0]--;
2826
2827 /* find out all the old extents for the file range */
2828 while (1) {
2829 struct btrfs_file_extent_item *extent;
2830 struct extent_buffer *l;
2831 int slot;
2832 u64 num_bytes;
2833 u64 offset;
2834 u64 end;
2835 u64 disk_bytenr;
2836 u64 extent_offset;
2837
2838 l = path->nodes[0];
2839 slot = path->slots[0];
2840
2841 if (slot >= btrfs_header_nritems(l)) {
2842 ret = btrfs_next_leaf(root, path);
2843 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002844 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002845 else if (ret > 0)
2846 break;
2847 continue;
2848 }
2849
2850 btrfs_item_key_to_cpu(l, &key, slot);
2851
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002852 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002853 break;
2854 if (key.type != BTRFS_EXTENT_DATA_KEY)
2855 break;
2856 if (key.offset >= new->file_pos + new->len)
2857 break;
2858
2859 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2860
2861 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2862 if (key.offset + num_bytes < new->file_pos)
2863 goto next;
2864
2865 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2866 if (!disk_bytenr)
2867 goto next;
2868
2869 extent_offset = btrfs_file_extent_offset(l, extent);
2870
2871 old = kmalloc(sizeof(*old), GFP_NOFS);
2872 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002873 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002874
2875 offset = max(new->file_pos, key.offset);
2876 end = min(new->file_pos + new->len, key.offset + num_bytes);
2877
2878 old->bytenr = disk_bytenr;
2879 old->extent_offset = extent_offset;
2880 old->offset = offset - key.offset;
2881 old->len = end - offset;
2882 old->new = new;
2883 old->count = 0;
2884 list_add_tail(&old->list, &new->head);
2885next:
2886 path->slots[0]++;
2887 cond_resched();
2888 }
2889
2890 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002891 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002892
2893 return new;
2894
Liu Bo38c227d2013-01-29 03:18:40 +00002895out_free_path:
2896 btrfs_free_path(path);
2897out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002898 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002899 return NULL;
2900}
2901
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002902static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002903 u64 start, u64 len)
2904{
2905 struct btrfs_block_group_cache *cache;
2906
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002907 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002908 ASSERT(cache);
2909
2910 spin_lock(&cache->lock);
2911 cache->delalloc_bytes -= len;
2912 spin_unlock(&cache->lock);
2913
2914 btrfs_put_block_group(cache);
2915}
2916
Chris Masond352ac62008-09-29 15:18:18 -04002917/* as ordered data IO finishes, this gets called so we can finish
2918 * an ordered extent if the range of bytes in the file it covers are
2919 * fully written.
2920 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002921static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002922{
Josef Bacik5fd02042012-05-02 14:00:54 -04002923 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002924 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002925 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002926 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002927 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002928 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002929 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002930 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002931 int ret = 0;
2932 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002933 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002934 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002935 bool range_locked = false;
2936 bool clear_new_delalloc_bytes = false;
Josef Bacik49940bd2018-10-11 15:54:21 -04002937 bool clear_reserved_extent = true;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002938
2939 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2940 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2941 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2942 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002943
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002944 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002945
Josef Bacik5fd02042012-05-02 14:00:54 -04002946 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2947 ret = -EIO;
2948 goto out;
2949 }
2950
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002951 btrfs_free_io_failure_record(BTRFS_I(inode),
2952 ordered_extent->file_offset,
2953 ordered_extent->file_offset +
2954 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002955
Josef Bacik77cef2e2013-08-29 13:57:21 -04002956 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2957 truncated = true;
2958 logical_len = ordered_extent->truncated_len;
2959 /* Truncated the entire extent, don't bother adding */
2960 if (!logical_len)
2961 goto out;
2962 }
2963
Yan, Zhengc2167752009-11-12 09:34:21 +00002964 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002965 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002966
2967 /*
2968 * For mwrite(mmap + memset to write) case, we still reserve
2969 * space for NOCOW range.
2970 * As NOCOW won't cause a new delayed ref, just free the space
2971 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08002972 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
Qu Wenruo94ed9382015-09-08 17:25:56 +08002973 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002974 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2975 if (nolock)
2976 trans = btrfs_join_transaction_nolock(root);
2977 else
2978 trans = btrfs_join_transaction(root);
2979 if (IS_ERR(trans)) {
2980 ret = PTR_ERR(trans);
2981 trans = NULL;
2982 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002983 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04002984 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002985 ret = btrfs_update_inode_fallback(trans, root, inode);
2986 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002987 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002988 goto out;
2989 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002990
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002991 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002992 lock_extent_bits(io_tree, ordered_extent->file_offset,
2993 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002994 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002995
Liu Bo38c227d2013-01-29 03:18:40 +00002996 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2997 ordered_extent->file_offset + ordered_extent->len - 1,
Liu Bo452e62b2017-05-26 17:44:23 -06002998 EXTENT_DEFRAG, 0, cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00002999 if (ret) {
3000 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05003001 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00003002 /* the inode is shared */
3003 new = record_old_file_extents(inode, ordered_extent);
3004
3005 clear_extent_bit(io_tree, ordered_extent->file_offset,
3006 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01003007 EXTENT_DEFRAG, 0, 0, &cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00003008 }
3009
Josef Bacik0cb59c92010-07-02 12:14:14 -04003010 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003011 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003012 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003013 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003014 if (IS_ERR(trans)) {
3015 ret = PTR_ERR(trans);
3016 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003017 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003018 }
Chris Masona79b7d42014-05-22 16:18:52 -07003019
Josef Bacik69fe2d72017-10-19 14:15:57 -04003020 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003021
Chris Masonc8b97812008-10-29 14:49:59 -04003022 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003023 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003024 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003025 BUG_ON(compress_type);
Justin Maggardb430b772017-10-30 15:29:10 -07003026 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3027 ordered_extent->len);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02003028 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04003029 ordered_extent->file_offset,
3030 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003031 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003032 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003033 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04003034 ret = insert_reserved_file_extent(trans, inode,
3035 ordered_extent->file_offset,
3036 ordered_extent->start,
3037 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04003038 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08003039 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04003040 BTRFS_FILE_EXTENT_REG);
Josef Bacik49940bd2018-10-11 15:54:21 -04003041 if (!ret) {
3042 clear_reserved_extent = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003043 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08003044 ordered_extent->start,
3045 ordered_extent->disk_len);
Josef Bacik49940bd2018-10-11 15:54:21 -04003046 }
Yan Zhengd899e052008-10-30 14:25:28 -04003047 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003048 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3049 ordered_extent->file_offset, ordered_extent->len,
3050 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003051 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003052 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003053 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003054 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003055
Nikolay Borisovac01f262018-01-08 10:59:43 +02003056 ret = add_pending_csums(trans, inode, &ordered_extent->list);
3057 if (ret) {
3058 btrfs_abort_transaction(trans, ret);
3059 goto out;
3060 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003061
Josef Bacik6c760c02012-11-09 10:53:21 -05003062 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3063 ret = btrfs_update_inode_fallback(trans, root, inode);
3064 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003065 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003066 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003067 }
3068 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003069out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003070 if (range_locked || clear_new_delalloc_bytes) {
3071 unsigned int clear_bits = 0;
3072
3073 if (range_locked)
3074 clear_bits |= EXTENT_LOCKED;
3075 if (clear_new_delalloc_bytes)
3076 clear_bits |= EXTENT_DELALLOC_NEW;
3077 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3078 ordered_extent->file_offset,
3079 ordered_extent->file_offset +
3080 ordered_extent->len - 1,
3081 clear_bits,
3082 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
David Sterbaae0f1622017-10-31 16:37:52 +01003083 0, &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003084 }
3085
Miao Xiea698d0752012-09-20 01:51:59 -06003086 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003087 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003088
Josef Bacik77cef2e2013-08-29 13:57:21 -04003089 if (ret || truncated) {
3090 u64 start, end;
3091
3092 if (truncated)
3093 start = ordered_extent->file_offset + logical_len;
3094 else
3095 start = ordered_extent->file_offset;
3096 end = ordered_extent->file_offset + ordered_extent->len - 1;
David Sterbaf08dc362017-10-31 17:02:39 +01003097 clear_extent_uptodate(io_tree, start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003098
3099 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003100 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003101
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003102 /*
3103 * If the ordered extent had an IOERR or something else went
3104 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003105 * back to the allocator. We only free the extent in the
3106 * truncated case if we didn't write out the extent at all.
Josef Bacik49940bd2018-10-11 15:54:21 -04003107 *
3108 * If we made it past insert_reserved_file_extent before we
3109 * errored out then we don't need to do this as the accounting
3110 * has already been done.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003111 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003112 if ((ret || !logical_len) &&
Josef Bacik49940bd2018-10-11 15:54:21 -04003113 clear_reserved_extent &&
Josef Bacik77cef2e2013-08-29 13:57:21 -04003114 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003115 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003116 btrfs_free_reserved_extent(fs_info,
3117 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003118 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003119 }
3120
3121
Josef Bacik5fd02042012-05-02 14:00:54 -04003122 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003123 * This needs to be done to make sure anybody waiting knows we are done
3124 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003125 */
3126 btrfs_remove_ordered_extent(inode, ordered_extent);
3127
Liu Bo38c227d2013-01-29 03:18:40 +00003128 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003129 if (new) {
3130 if (ret) {
3131 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003132 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003133 } else {
3134 relink_file_extents(new);
3135 }
3136 }
Liu Bo38c227d2013-01-29 03:18:40 +00003137
Chris Masone6dcd2d2008-07-17 12:53:50 -04003138 /* once for us */
3139 btrfs_put_ordered_extent(ordered_extent);
3140 /* once for the tree */
3141 btrfs_put_ordered_extent(ordered_extent);
3142
Ethan Liene73e81b2018-05-28 13:48:20 +08003143 /* Try to release some metadata so we don't get an OOM but don't wait */
3144 btrfs_btree_balance_dirty_nodelay(fs_info);
3145
Josef Bacik5fd02042012-05-02 14:00:54 -04003146 return ret;
3147}
3148
3149static void finish_ordered_fn(struct btrfs_work *work)
3150{
3151 struct btrfs_ordered_extent *ordered_extent;
3152 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3153 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003154}
3155
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003156void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003157 struct extent_state *state, int uptodate)
3158{
Josef Bacik5fd02042012-05-02 14:00:54 -04003159 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003160 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003161 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003162 struct btrfs_workqueue *wq;
3163 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003164
liubo1abe9b82011-03-24 11:18:59 +00003165 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3166
Chris Mason8b62b722009-09-02 16:53:46 -04003167 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003168 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3169 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003170 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003171
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003172 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003173 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003174 func = btrfs_freespace_write_helper;
3175 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003176 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003177 func = btrfs_endio_write_helper;
3178 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003179
Liu Bo9e0af232014-08-15 23:36:53 +08003180 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3181 NULL);
3182 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003183}
3184
Miao Xiedc380ae2014-09-12 18:43:55 +08003185static int __readpage_endio_check(struct inode *inode,
3186 struct btrfs_io_bio *io_bio,
3187 int icsum, struct page *page,
3188 int pgoff, u64 start, size_t len)
3189{
3190 char *kaddr;
3191 u32 csum_expected;
3192 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003193
3194 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3195
3196 kaddr = kmap_atomic(page);
3197 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003198 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003199 if (csum != csum_expected)
3200 goto zeroit;
3201
3202 kunmap_atomic(kaddr);
3203 return 0;
3204zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003205 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003206 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003207 memset(kaddr + pgoff, 1, len);
3208 flush_dcache_page(page);
3209 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003210 return -EIO;
3211}
3212
Chris Masond352ac62008-09-29 15:18:18 -04003213/*
Chris Masond352ac62008-09-29 15:18:18 -04003214 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003215 * if there's a match, we allow the bio to finish. If not, the code in
3216 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003217 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003218static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3219 u64 phy_offset, struct page *page,
3220 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003221{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003222 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003223 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003224 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003225 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003226
Chris Masond20f7042008-12-08 16:58:54 -05003227 if (PageChecked(page)) {
3228 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003229 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003230 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003231
3232 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003233 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003234
Yan Zheng17d217f2008-12-12 10:03:38 -05003235 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003236 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003237 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003238 return 0;
3239 }
3240
Miao Xiefacc8a222013-07-25 19:22:34 +08003241 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003242 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3243 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003244}
Chris Masonb888db22007-08-27 16:49:44 -04003245
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003246/*
3247 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3248 *
3249 * @inode: The inode we want to perform iput on
3250 *
3251 * This function uses the generic vfs_inode::i_count to track whether we should
3252 * just decrement it (in case it's > 1) or if this is the last iput then link
3253 * the inode to the delayed iput machinery. Delayed iputs are processed at
3254 * transaction commit time/superblock commit/cleaner kthread.
3255 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003256void btrfs_add_delayed_iput(struct inode *inode)
3257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003258 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003259 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003260
3261 if (atomic_add_unless(&inode->i_count, -1, 1))
3262 return;
3263
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003264 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003265 ASSERT(list_empty(&binode->delayed_iput));
3266 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003267 spin_unlock(&fs_info->delayed_iput_lock);
3268}
3269
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003270void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003271{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003272
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003273 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003274 while (!list_empty(&fs_info->delayed_iputs)) {
3275 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003276
David Sterba8089fe62015-11-19 14:15:51 +01003277 inode = list_first_entry(&fs_info->delayed_iputs,
3278 struct btrfs_inode, delayed_iput);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003279 list_del_init(&inode->delayed_iput);
David Sterba8089fe62015-11-19 14:15:51 +01003280 spin_unlock(&fs_info->delayed_iput_lock);
3281 iput(&inode->vfs_inode);
3282 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003283 }
David Sterba8089fe62015-11-19 14:15:51 +01003284 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003285}
3286
Yan, Zhengd68fc572010-05-16 10:49:58 -04003287/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003288 * This creates an orphan entry for the given inode in case something goes wrong
3289 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04003290 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003291int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07003292 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003293{
Yan, Zhengd68fc572010-05-16 10:49:58 -04003294 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003295
Omar Sandoval27919062018-05-11 13:13:37 -07003296 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3297 if (ret && ret != -EEXIST) {
3298 btrfs_abort_transaction(trans, ret);
3299 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003300 }
3301
Yan, Zhengd68fc572010-05-16 10:49:58 -04003302 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003303}
3304
3305/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003306 * We have done the delete so we can go ahead and remove the orphan item for
3307 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04003308 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003309static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003310 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003311{
Omar Sandoval27919062018-05-11 13:13:37 -07003312 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003313}
3314
3315/*
3316 * this cleans up any orphans that may be left on the list from the last use
3317 * of this root.
3318 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003319int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003320{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003321 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003322 struct btrfs_path *path;
3323 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003324 struct btrfs_key key, found_key;
3325 struct btrfs_trans_handle *trans;
3326 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003327 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003328 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003329
Yan, Zhengd68fc572010-05-16 10:49:58 -04003330 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003331 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003332
3333 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003334 if (!path) {
3335 ret = -ENOMEM;
3336 goto out;
3337 }
David Sterbae4058b52015-11-27 16:31:35 +01003338 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003339
3340 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003341 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003342 key.offset = (u64)-1;
3343
Josef Bacik7b128762008-07-24 12:17:14 -04003344 while (1) {
3345 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003346 if (ret < 0)
3347 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003348
3349 /*
3350 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003351 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003352 * find the key and see if we have stuff that matches
3353 */
3354 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003355 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003356 if (path->slots[0] == 0)
3357 break;
3358 path->slots[0]--;
3359 }
3360
3361 /* pull out the item */
3362 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003363 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3364
3365 /* make sure the item matches what we want */
3366 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3367 break;
David Sterba962a2982014-06-04 18:41:45 +02003368 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003369 break;
3370
3371 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003372 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003373
3374 /*
3375 * this is where we are basically btrfs_lookup, without the
3376 * crossing root thing. we store the inode number in the
3377 * offset of the orphan item.
3378 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003379
3380 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003381 btrfs_err(fs_info,
3382 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003383 ret = -EINVAL;
3384 goto out;
3385 }
3386
3387 last_objectid = found_key.offset;
3388
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003389 found_key.objectid = found_key.offset;
3390 found_key.type = BTRFS_INODE_ITEM_KEY;
3391 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003392 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303393 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003394 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003395 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003396
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003397 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003398 struct btrfs_root *dead_root;
3399 struct btrfs_fs_info *fs_info = root->fs_info;
3400 int is_dead_root = 0;
3401
3402 /*
3403 * this is an orphan in the tree root. Currently these
3404 * could come from 2 sources:
3405 * a) a snapshot deletion in progress
3406 * b) a free space cache inode
3407 * We need to distinguish those two, as the snapshot
3408 * orphan must not get deleted.
3409 * find_dead_roots already ran before us, so if this
3410 * is a snapshot deletion, we should find the root
3411 * in the dead_roots list
3412 */
3413 spin_lock(&fs_info->trans_lock);
3414 list_for_each_entry(dead_root, &fs_info->dead_roots,
3415 root_list) {
3416 if (dead_root->root_key.objectid ==
3417 found_key.objectid) {
3418 is_dead_root = 1;
3419 break;
3420 }
3421 }
3422 spin_unlock(&fs_info->trans_lock);
3423 if (is_dead_root) {
3424 /* prevent this orphan from being found again */
3425 key.offset = found_key.objectid - 1;
3426 continue;
3427 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003428
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003429 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003430
Josef Bacika8c9e572011-09-21 16:55:59 -04003431 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003432 * If we have an inode with links, there are a couple of
3433 * possibilities. Old kernels (before v3.12) used to create an
3434 * orphan item for truncate indicating that there were possibly
3435 * extent items past i_size that needed to be deleted. In v3.12,
3436 * truncate was changed to update i_size in sync with the extent
3437 * items, but the (useless) orphan item was still created. Since
3438 * v4.18, we don't create the orphan item for truncate at all.
3439 *
3440 * So, this item could mean that we need to do a truncate, but
3441 * only if this filesystem was last used on a pre-v3.12 kernel
3442 * and was not cleanly unmounted. The odds of that are quite
3443 * slim, and it's a pain to do the truncate now, so just delete
3444 * the orphan item.
3445 *
3446 * It's also possible that this orphan item was supposed to be
3447 * deleted but wasn't. The inode number may have been reused,
3448 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003449 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003450 if (ret == -ENOENT || inode->i_nlink) {
3451 if (!ret)
3452 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003453 trans = btrfs_start_transaction(root, 1);
3454 if (IS_ERR(trans)) {
3455 ret = PTR_ERR(trans);
3456 goto out;
3457 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003458 btrfs_debug(fs_info, "auto deleting %Lu",
3459 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003460 ret = btrfs_del_orphan_item(trans, root,
3461 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003462 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003463 if (ret)
3464 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003465 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003466 }
Josef Bacik7b128762008-07-24 12:17:14 -04003467
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003468 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003469
3470 /* this will do delete_inode and everything for us */
3471 iput(inode);
3472 }
Miao Xie3254c872011-11-10 20:45:05 -05003473 /* release the path since we're done with it */
3474 btrfs_release_path(path);
3475
Yan, Zhengd68fc572010-05-16 10:49:58 -04003476 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3477
Omar Sandovala575cee2018-05-11 13:13:38 -07003478 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003479 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003480 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003481 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003482 }
Josef Bacik7b128762008-07-24 12:17:14 -04003483
3484 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003485 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003486
3487out:
3488 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003489 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003490 btrfs_free_path(path);
3491 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003492}
3493
Chris Masond352ac62008-09-29 15:18:18 -04003494/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003495 * very simple check to peek ahead in the leaf looking for xattrs. If we
3496 * don't find any xattrs, we know there can't be any acls.
3497 *
3498 * slot is the slot the inode is in, objectid is the objectid of the inode
3499 */
3500static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003501 int slot, u64 objectid,
3502 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003503{
3504 u32 nritems = btrfs_header_nritems(leaf);
3505 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003506 static u64 xattr_access = 0;
3507 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003508 int scanned = 0;
3509
Josef Bacikf23b5a52013-06-19 10:16:26 -04003510 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003511 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3512 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3513 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3514 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003515 }
3516
Chris Mason46a53cc2009-04-27 11:47:50 -04003517 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003518 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003519 while (slot < nritems) {
3520 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3521
3522 /* we found a different objectid, there must not be acls */
3523 if (found_key.objectid != objectid)
3524 return 0;
3525
3526 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003527 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003528 if (*first_xattr_slot == -1)
3529 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003530 if (found_key.offset == xattr_access ||
3531 found_key.offset == xattr_default)
3532 return 1;
3533 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003534
3535 /*
3536 * we found a key greater than an xattr key, there can't
3537 * be any acls later on
3538 */
3539 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3540 return 0;
3541
3542 slot++;
3543 scanned++;
3544
3545 /*
3546 * it goes inode, inode backrefs, xattrs, extents,
3547 * so if there are a ton of hard links to an inode there can
3548 * be a lot of backrefs. Don't waste time searching too hard,
3549 * this is just an optimization
3550 */
3551 if (scanned >= 8)
3552 break;
3553 }
3554 /* we hit the end of the leaf before we found an xattr or
3555 * something larger than an xattr. We have to assume the inode
3556 * has acls
3557 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003558 if (*first_xattr_slot == -1)
3559 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003560 return 1;
3561}
3562
3563/*
Chris Masond352ac62008-09-29 15:18:18 -04003564 * read an inode from the btree into the in-memory inode
3565 */
Filipe Manana4222ea72018-10-24 10:13:03 +01003566static int btrfs_read_locked_inode(struct inode *inode,
3567 struct btrfs_path *in_path)
Chris Mason39279cc2007-06-12 06:35:45 -04003568{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003569 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Filipe Manana4222ea72018-10-24 10:13:03 +01003570 struct btrfs_path *path = in_path;
Chris Mason5f39d392007-10-15 16:14:19 -04003571 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003572 struct btrfs_inode_item *inode_item;
3573 struct btrfs_root *root = BTRFS_I(inode)->root;
3574 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003575 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003576 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003577 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003578 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003579 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003580 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003581
3582 ret = btrfs_fill_inode(inode, &rdev);
3583 if (!ret)
3584 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003585
Filipe Manana4222ea72018-10-24 10:13:03 +01003586 if (!path) {
3587 path = btrfs_alloc_path();
3588 if (!path)
3589 return -ENOMEM;
3590 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003591
Chris Mason39279cc2007-06-12 06:35:45 -04003592 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003593
Chris Mason39279cc2007-06-12 06:35:45 -04003594 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003595 if (ret) {
Filipe Manana4222ea72018-10-24 10:13:03 +01003596 if (path != in_path)
3597 btrfs_free_path(path);
Al Virof5b3a412018-07-29 23:04:51 +01003598 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003599 }
Chris Mason39279cc2007-06-12 06:35:45 -04003600
Chris Mason5f39d392007-10-15 16:14:19 -04003601 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003602
3603 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003604 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003605
Chris Mason5f39d392007-10-15 16:14:19 -04003606 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3607 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003608 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003609 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003610 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3611 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003612 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003613
David Sterbaa937b972014-12-12 17:39:12 +01003614 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3615 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003616
David Sterbaa937b972014-12-12 17:39:12 +01003617 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3618 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003619
David Sterbaa937b972014-12-12 17:39:12 +01003620 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3621 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003622
chandan r9cc97d62012-07-04 12:48:07 +05303623 BTRFS_I(inode)->i_otime.tv_sec =
3624 btrfs_timespec_sec(leaf, &inode_item->otime);
3625 BTRFS_I(inode)->i_otime.tv_nsec =
3626 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003627
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003628 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003629 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003630 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3631
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003632 inode_set_iversion_queried(inode,
3633 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003634 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003635 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003636 rdev = btrfs_inode_rdev(leaf, inode_item);
3637
Josef Bacikaec74772008-07-24 12:12:38 -04003638 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003639 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003640
3641cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003642 /*
3643 * If we were modified in the current generation and evicted from memory
3644 * and then re-read we need to do a full sync since we don't have any
3645 * idea about which extents were modified before we were evicted from
3646 * cache.
3647 *
3648 * This is required for both inode re-read from disk and delayed inode
3649 * in delayed_nodes_tree.
3650 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003651 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003652 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3653 &BTRFS_I(inode)->runtime_flags);
3654
Filipe Mananabde6c242015-07-24 00:00:19 +01003655 /*
3656 * We don't persist the id of the transaction where an unlink operation
3657 * against the inode was last made. So here we assume the inode might
3658 * have been evicted, and therefore the exact value of last_unlink_trans
3659 * lost, and set it to last_trans to avoid metadata inconsistencies
3660 * between the inode and its parent if the inode is fsync'ed and the log
3661 * replayed. For example, in the scenario:
3662 *
3663 * touch mydir/foo
3664 * ln mydir/foo mydir/bar
3665 * sync
3666 * unlink mydir/bar
3667 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3668 * xfs_io -c fsync mydir/foo
3669 * <power failure>
3670 * mount fs, triggers fsync log replay
3671 *
3672 * We must make sure that when we fsync our inode foo we also log its
3673 * parent inode, otherwise after log replay the parent still has the
3674 * dentry with the "bar" name but our inode foo has a link count of 1
3675 * and doesn't have an inode ref with the name "bar" anymore.
3676 *
3677 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003678 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003679 * transaction commits on fsync if our inode is a directory, or if our
3680 * inode is not a directory, logging its parent unnecessarily.
3681 */
3682 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3683
Miao Xie67de1172013-12-26 13:07:06 +08003684 path->slots[0]++;
3685 if (inode->i_nlink != 1 ||
3686 path->slots[0] >= btrfs_header_nritems(leaf))
3687 goto cache_acl;
3688
3689 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003690 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003691 goto cache_acl;
3692
3693 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3694 if (location.type == BTRFS_INODE_REF_KEY) {
3695 struct btrfs_inode_ref *ref;
3696
3697 ref = (struct btrfs_inode_ref *)ptr;
3698 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3699 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3700 struct btrfs_inode_extref *extref;
3701
3702 extref = (struct btrfs_inode_extref *)ptr;
3703 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3704 extref);
3705 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003706cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003707 /*
3708 * try to precache a NULL acl entry for files that don't have
3709 * any xattrs or acls
3710 */
Li Zefan33345d012011-04-20 10:31:50 +08003711 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003712 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003713 if (first_xattr_slot != -1) {
3714 path->slots[0] = first_xattr_slot;
3715 ret = btrfs_load_inode_props(inode, path);
3716 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003717 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003718 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003719 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003720 root->root_key.objectid, ret);
3721 }
Filipe Manana4222ea72018-10-24 10:13:03 +01003722 if (path != in_path)
3723 btrfs_free_path(path);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003724
Al Viro72c04902009-06-24 16:58:48 -04003725 if (!maybe_acls)
3726 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003727
Chris Mason39279cc2007-06-12 06:35:45 -04003728 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003729 case S_IFREG:
3730 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003731 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003732 inode->i_fop = &btrfs_file_operations;
3733 inode->i_op = &btrfs_file_inode_operations;
3734 break;
3735 case S_IFDIR:
3736 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003737 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003738 break;
3739 case S_IFLNK:
3740 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003741 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003742 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003743 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003744 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003745 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003746 init_special_inode(inode, inode->i_mode, rdev);
3747 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003748 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003749
David Sterba7b6a2212018-03-26 18:40:21 +02003750 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003751 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003752}
3753
Chris Masond352ac62008-09-29 15:18:18 -04003754/*
3755 * given a leaf and an inode, copy the inode fields into the leaf
3756 */
Chris Masone02119d2008-09-05 16:13:11 -04003757static void fill_inode_item(struct btrfs_trans_handle *trans,
3758 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003759 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003760 struct inode *inode)
3761{
Liu Bo51fab692012-12-27 09:01:21 +00003762 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003763
Liu Bo51fab692012-12-27 09:01:21 +00003764 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003765
Liu Bo51fab692012-12-27 09:01:21 +00003766 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3767 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3768 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3769 &token);
3770 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3771 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003772
David Sterbaa937b972014-12-12 17:39:12 +01003773 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003774 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003775 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003776 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003777
David Sterbaa937b972014-12-12 17:39:12 +01003778 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003779 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003780 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003781 inode->i_mtime.tv_nsec, &token);
3782
David Sterbaa937b972014-12-12 17:39:12 +01003783 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003784 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003785 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003786 inode->i_ctime.tv_nsec, &token);
3787
chandan r9cc97d62012-07-04 12:48:07 +05303788 btrfs_set_token_timespec_sec(leaf, &item->otime,
3789 BTRFS_I(inode)->i_otime.tv_sec, &token);
3790 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3791 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3792
Liu Bo51fab692012-12-27 09:01:21 +00003793 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3794 &token);
3795 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3796 &token);
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003797 btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode),
3798 &token);
Liu Bo51fab692012-12-27 09:01:21 +00003799 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3800 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3801 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3802 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003803}
3804
Chris Masond352ac62008-09-29 15:18:18 -04003805/*
3806 * copy everything in the in-memory inode into the btree.
3807 */
Chris Mason21151332011-11-10 20:39:08 -05003808static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003809 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003810{
3811 struct btrfs_inode_item *inode_item;
3812 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003813 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003814 int ret;
3815
3816 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003817 if (!path)
3818 return -ENOMEM;
3819
Chris Masonb9473432009-03-13 11:00:37 -04003820 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003821 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3822 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003823 if (ret) {
3824 if (ret > 0)
3825 ret = -ENOENT;
3826 goto failed;
3827 }
3828
Chris Mason5f39d392007-10-15 16:14:19 -04003829 leaf = path->nodes[0];
3830 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003831 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003832
Chris Masone02119d2008-09-05 16:13:11 -04003833 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003834 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003835 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003836 ret = 0;
3837failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003838 btrfs_free_path(path);
3839 return ret;
3840}
3841
Chris Masond352ac62008-09-29 15:18:18 -04003842/*
Chris Mason21151332011-11-10 20:39:08 -05003843 * copy everything in the in-memory inode into the btree.
3844 */
3845noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3846 struct btrfs_root *root, struct inode *inode)
3847{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003848 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003849 int ret;
3850
3851 /*
3852 * If the inode is a free space inode, we can deadlock during commit
3853 * if we put it into the delayed code.
3854 *
3855 * The data relocation inode should also be directly updated
3856 * without delay
3857 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003858 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003859 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003860 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003861 btrfs_update_root_times(trans, root);
3862
Chris Mason21151332011-11-10 20:39:08 -05003863 ret = btrfs_delayed_update_inode(trans, root, inode);
3864 if (!ret)
3865 btrfs_set_inode_last_trans(trans, inode);
3866 return ret;
3867 }
3868
3869 return btrfs_update_inode_item(trans, root, inode);
3870}
3871
Josef Bacikbe6aef62012-10-22 15:43:12 -04003872noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3873 struct btrfs_root *root,
3874 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003875{
3876 int ret;
3877
3878 ret = btrfs_update_inode(trans, root, inode);
3879 if (ret == -ENOSPC)
3880 return btrfs_update_inode_item(trans, root, inode);
3881 return ret;
3882}
3883
3884/*
Chris Masond352ac62008-09-29 15:18:18 -04003885 * unlink helper that gets used here in inode.c and in the tree logging
3886 * recovery code. It remove a link in a directory with a given name, and
3887 * also drops the back refs in the inode to the directory
3888 */
Al Viro92986792011-03-04 17:14:37 +00003889static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3890 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003891 struct btrfs_inode *dir,
3892 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003893 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003894{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003895 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003896 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003897 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003898 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003899 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003900 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003901 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003902 u64 ino = btrfs_ino(inode);
3903 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003904
3905 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003906 if (!path) {
3907 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003908 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003909 }
3910
Chris Masonb9473432009-03-13 11:00:37 -04003911 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003912 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003913 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08003914 if (IS_ERR_OR_NULL(di)) {
3915 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003916 goto err;
3917 }
Chris Mason5f39d392007-10-15 16:14:19 -04003918 leaf = path->nodes[0];
3919 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003920 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003921 if (ret)
3922 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003923 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003924
Miao Xie67de1172013-12-26 13:07:06 +08003925 /*
3926 * If we don't have dir index, we have to get it by looking up
3927 * the inode ref, since we get the inode ref, remove it directly,
3928 * it is unnecessary to do delayed deletion.
3929 *
3930 * But if we have dir index, needn't search inode ref to get it.
3931 * Since the inode ref is close to the inode item, it is better
3932 * that we delay to delete it, and just do this deletion when
3933 * we update the inode item.
3934 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003935 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08003936 ret = btrfs_delayed_delete_inode_ref(inode);
3937 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003938 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003939 goto skip_backref;
3940 }
3941 }
3942
Li Zefan33345d012011-04-20 10:31:50 +08003943 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3944 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003945 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003946 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003947 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003948 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003949 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003950 goto err;
3951 }
Miao Xie67de1172013-12-26 13:07:06 +08003952skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08003953 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003954 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003955 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003956 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003957 }
Chris Mason39279cc2007-06-12 06:35:45 -04003958
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003959 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3960 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003961 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003962 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003963 goto err;
3964 }
Chris Masone02119d2008-09-05 16:13:11 -04003965
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003966 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3967 index);
Chris Mason6418c962010-10-30 07:34:24 -04003968 if (ret == -ENOENT)
3969 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003970 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003971 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003972err:
3973 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003974 if (ret)
3975 goto out;
3976
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003977 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003978 inode_inc_iversion(&inode->vfs_inode);
3979 inode_inc_iversion(&dir->vfs_inode);
3980 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3981 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3982 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003983out:
Chris Mason39279cc2007-06-12 06:35:45 -04003984 return ret;
3985}
3986
Al Viro92986792011-03-04 17:14:37 +00003987int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3988 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003989 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003990 const char *name, int name_len)
3991{
3992 int ret;
3993 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3994 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003995 drop_nlink(&inode->vfs_inode);
3996 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00003997 }
3998 return ret;
3999}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004000
4001/*
4002 * helper to start transaction for unlink and rmdir.
4003 *
Josef Bacikd52be812013-05-29 14:54:47 -04004004 * unlink and rmdir are special in btrfs, they do not always free space, so
4005 * if we cannot make our reservations the normal way try and see if there is
4006 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4007 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004008 */
Josef Bacikd52be812013-05-29 14:54:47 -04004009static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004010{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004011 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004012
Josef Bacike70bea52011-10-11 14:18:24 -04004013 /*
4014 * 1 for the possible orphan item
4015 * 1 for the dir item
4016 * 1 for the dir index
4017 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004018 * 1 for the inode
4019 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004020 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004021}
4022
Chris Mason39279cc2007-06-12 06:35:45 -04004023static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4024{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004025 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004026 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004027 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004028 int ret;
4029
Josef Bacikd52be812013-05-29 14:54:47 -04004030 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004031 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004032 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004033
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004034 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4035 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004036
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004037 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4038 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4039 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004040 if (ret)
4041 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004042
Yan, Zhenga22285a2010-05-16 10:48:46 -04004043 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004044 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004045 if (ret)
4046 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004047 }
Josef Bacik7b128762008-07-24 12:17:14 -04004048
Tsutomu Itohb5324022011-07-19 07:27:20 +00004049out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004050 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004051 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004052 return ret;
4053}
4054
Misono Tomohirof60a2362018-04-18 11:34:52 +09004055static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Lu Fengqi401b3b12018-08-01 11:32:30 +08004056 struct inode *dir, u64 objectid,
4057 const char *name, int name_len)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004058{
Lu Fengqi401b3b12018-08-01 11:32:30 +08004059 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004060 struct btrfs_path *path;
4061 struct extent_buffer *leaf;
4062 struct btrfs_dir_item *di;
4063 struct btrfs_key key;
4064 u64 index;
4065 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004066 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004067
4068 path = btrfs_alloc_path();
4069 if (!path)
4070 return -ENOMEM;
4071
Li Zefan33345d012011-04-20 10:31:50 +08004072 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004073 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004074 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08004075 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004076 goto out;
4077 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004078
4079 leaf = path->nodes[0];
4080 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4081 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4082 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004083 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004084 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004085 goto out;
4086 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004087 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004088
Lu Fengqi3ee1c552018-08-01 11:32:28 +08004089 ret = btrfs_del_root_ref(trans, objectid, root->root_key.objectid,
4090 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004091 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004092 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004093 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004094 goto out;
4095 }
Li Zefan33345d012011-04-20 10:31:50 +08004096 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004097 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004098 if (IS_ERR_OR_NULL(di)) {
4099 if (!di)
4100 ret = -ENOENT;
4101 else
4102 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004103 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004104 goto out;
4105 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004106
4107 leaf = path->nodes[0];
4108 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004109 index = key.offset;
4110 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004111 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004112
Lu Fengqi9add2942018-08-01 11:32:26 +08004113 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004114 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004115 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004116 goto out;
4117 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004118
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004119 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004120 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004121 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004122 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004123 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004124 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004125out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004126 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004127 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004128}
4129
Misono Tomohiroec42f162018-04-18 11:34:13 +09004130/*
4131 * Helper to check if the subvolume references other subvolumes or if it's
4132 * default.
4133 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09004134static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09004135{
4136 struct btrfs_fs_info *fs_info = root->fs_info;
4137 struct btrfs_path *path;
4138 struct btrfs_dir_item *di;
4139 struct btrfs_key key;
4140 u64 dir_id;
4141 int ret;
4142
4143 path = btrfs_alloc_path();
4144 if (!path)
4145 return -ENOMEM;
4146
4147 /* Make sure this root isn't set as the default subvol */
4148 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4149 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4150 dir_id, "default", 7, 0);
4151 if (di && !IS_ERR(di)) {
4152 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4153 if (key.objectid == root->root_key.objectid) {
4154 ret = -EPERM;
4155 btrfs_err(fs_info,
4156 "deleting default subvolume %llu is not allowed",
4157 key.objectid);
4158 goto out;
4159 }
4160 btrfs_release_path(path);
4161 }
4162
4163 key.objectid = root->root_key.objectid;
4164 key.type = BTRFS_ROOT_REF_KEY;
4165 key.offset = (u64)-1;
4166
4167 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4168 if (ret < 0)
4169 goto out;
4170 BUG_ON(ret == 0);
4171
4172 ret = 0;
4173 if (path->slots[0] > 0) {
4174 path->slots[0]--;
4175 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4176 if (key.objectid == root->root_key.objectid &&
4177 key.type == BTRFS_ROOT_REF_KEY)
4178 ret = -ENOTEMPTY;
4179 }
4180out:
4181 btrfs_free_path(path);
4182 return ret;
4183}
4184
Nikolay Borisov20a68002018-04-27 14:36:24 +03004185/* Delete all dentries for inodes belonging to the root */
4186static void btrfs_prune_dentries(struct btrfs_root *root)
4187{
4188 struct btrfs_fs_info *fs_info = root->fs_info;
4189 struct rb_node *node;
4190 struct rb_node *prev;
4191 struct btrfs_inode *entry;
4192 struct inode *inode;
4193 u64 objectid = 0;
4194
4195 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4196 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4197
4198 spin_lock(&root->inode_lock);
4199again:
4200 node = root->inode_tree.rb_node;
4201 prev = NULL;
4202 while (node) {
4203 prev = node;
4204 entry = rb_entry(node, struct btrfs_inode, rb_node);
4205
David Sterba37508512018-06-29 10:56:40 +02004206 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004207 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02004208 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004209 node = node->rb_right;
4210 else
4211 break;
4212 }
4213 if (!node) {
4214 while (prev) {
4215 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004216 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03004217 node = prev;
4218 break;
4219 }
4220 prev = rb_next(prev);
4221 }
4222 }
4223 while (node) {
4224 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004225 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03004226 inode = igrab(&entry->vfs_inode);
4227 if (inode) {
4228 spin_unlock(&root->inode_lock);
4229 if (atomic_read(&inode->i_count) > 1)
4230 d_prune_aliases(inode);
4231 /*
4232 * btrfs_drop_inode will have it removed from the inode
4233 * cache when its usage count hits zero.
4234 */
4235 iput(inode);
4236 cond_resched();
4237 spin_lock(&root->inode_lock);
4238 goto again;
4239 }
4240
4241 if (cond_resched_lock(&root->inode_lock))
4242 goto again;
4243
4244 node = rb_next(node);
4245 }
4246 spin_unlock(&root->inode_lock);
4247}
4248
Misono Tomohirof60a2362018-04-18 11:34:52 +09004249int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4250{
4251 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4252 struct btrfs_root *root = BTRFS_I(dir)->root;
4253 struct inode *inode = d_inode(dentry);
4254 struct btrfs_root *dest = BTRFS_I(inode)->root;
4255 struct btrfs_trans_handle *trans;
4256 struct btrfs_block_rsv block_rsv;
4257 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004258 int ret;
4259 int err;
4260
4261 /*
4262 * Don't allow to delete a subvolume with send in progress. This is
4263 * inside the inode lock so the error handling that has to drop the bit
4264 * again is not run concurrently.
4265 */
4266 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08004267 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004268 spin_unlock(&dest->root_item_lock);
4269 btrfs_warn(fs_info,
4270 "attempt to delete subvolume %llu during send",
4271 dest->root_key.objectid);
4272 return -EPERM;
4273 }
Lu Fengqia7176f72018-08-04 21:10:53 +08004274 root_flags = btrfs_root_flags(&dest->root_item);
4275 btrfs_set_root_flags(&dest->root_item,
4276 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4277 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004278
4279 down_write(&fs_info->subvol_sem);
4280
4281 err = may_destroy_subvol(dest);
4282 if (err)
4283 goto out_up_write;
4284
4285 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4286 /*
4287 * One for dir inode,
4288 * two for dir entries,
4289 * two for root ref/backref.
4290 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +08004291 err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004292 if (err)
4293 goto out_up_write;
4294
4295 trans = btrfs_start_transaction(root, 0);
4296 if (IS_ERR(trans)) {
4297 err = PTR_ERR(trans);
4298 goto out_release;
4299 }
4300 trans->block_rsv = &block_rsv;
4301 trans->bytes_reserved = block_rsv.size;
4302
4303 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4304
Lu Fengqi401b3b12018-08-01 11:32:30 +08004305 ret = btrfs_unlink_subvol(trans, dir, dest->root_key.objectid,
4306 dentry->d_name.name, dentry->d_name.len);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004307 if (ret) {
4308 err = ret;
4309 btrfs_abort_transaction(trans, ret);
4310 goto out_end_trans;
4311 }
4312
4313 btrfs_record_root_in_trans(trans, dest);
4314
4315 memset(&dest->root_item.drop_progress, 0,
4316 sizeof(dest->root_item.drop_progress));
4317 dest->root_item.drop_level = 0;
4318 btrfs_set_root_refs(&dest->root_item, 0);
4319
4320 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4321 ret = btrfs_insert_orphan_item(trans,
4322 fs_info->tree_root,
4323 dest->root_key.objectid);
4324 if (ret) {
4325 btrfs_abort_transaction(trans, ret);
4326 err = ret;
4327 goto out_end_trans;
4328 }
4329 }
4330
Lu Fengqid1957792018-05-29 15:01:54 +08004331 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004332 BTRFS_UUID_KEY_SUBVOL,
4333 dest->root_key.objectid);
4334 if (ret && ret != -ENOENT) {
4335 btrfs_abort_transaction(trans, ret);
4336 err = ret;
4337 goto out_end_trans;
4338 }
4339 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004340 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004341 dest->root_item.received_uuid,
4342 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4343 dest->root_key.objectid);
4344 if (ret && ret != -ENOENT) {
4345 btrfs_abort_transaction(trans, ret);
4346 err = ret;
4347 goto out_end_trans;
4348 }
4349 }
4350
4351out_end_trans:
4352 trans->block_rsv = NULL;
4353 trans->bytes_reserved = 0;
4354 ret = btrfs_end_transaction(trans);
4355 if (ret && !err)
4356 err = ret;
4357 inode->i_flags |= S_DEAD;
4358out_release:
4359 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
4360out_up_write:
4361 up_write(&fs_info->subvol_sem);
4362 if (err) {
4363 spin_lock(&dest->root_item_lock);
4364 root_flags = btrfs_root_flags(&dest->root_item);
4365 btrfs_set_root_flags(&dest->root_item,
4366 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4367 spin_unlock(&dest->root_item_lock);
4368 } else {
4369 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004370 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004371 ASSERT(dest->send_in_progress == 0);
4372
4373 /* the last ref */
4374 if (dest->ino_cache_inode) {
4375 iput(dest->ino_cache_inode);
4376 dest->ino_cache_inode = NULL;
4377 }
4378 }
4379
4380 return err;
4381}
4382
Chris Mason39279cc2007-06-12 06:35:45 -04004383static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4384{
David Howells2b0143b2015-03-17 22:25:59 +00004385 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004386 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004387 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004388 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004389 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004390
David Sterbab3ae2442012-09-13 16:04:34 -06004391 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004392 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004393 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004394 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004395
Josef Bacikd52be812013-05-29 14:54:47 -04004396 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004397 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004398 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004399
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004400 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Lu Fengqi401b3b12018-08-01 11:32:30 +08004401 err = btrfs_unlink_subvol(trans, dir,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004402 BTRFS_I(inode)->location.objectid,
4403 dentry->d_name.name,
4404 dentry->d_name.len);
4405 goto out;
4406 }
4407
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004408 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004409 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004410 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004411
Filipe Manana44f714d2016-06-06 16:11:13 +01004412 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4413
Chris Mason39279cc2007-06-12 06:35:45 -04004414 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004415 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4416 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4417 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004418 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004419 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004420 /*
4421 * Propagate the last_unlink_trans value of the deleted dir to
4422 * its parent directory. This is to prevent an unrecoverable
4423 * log tree in the case we do something like this:
4424 * 1) create dir foo
4425 * 2) create snapshot under dir foo
4426 * 3) delete the snapshot
4427 * 4) rmdir foo
4428 * 5) mkdir foo
4429 * 6) fsync foo or some file inside foo
4430 */
4431 if (last_unlink_trans >= trans->transid)
4432 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4433 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004434out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004435 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004436 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004437
Chris Mason39279cc2007-06-12 06:35:45 -04004438 return err;
4439}
4440
Chris Mason28f75a02015-02-04 06:59:29 -08004441static int truncate_space_check(struct btrfs_trans_handle *trans,
4442 struct btrfs_root *root,
4443 u64 bytes_deleted)
4444{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004445 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004446 int ret;
4447
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004448 /*
4449 * This is only used to apply pressure to the enospc system, we don't
4450 * intend to use this reservation at all.
4451 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004452 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004453 bytes_deleted *= fs_info->nodesize;
4454 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004455 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004456 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004457 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004458 trans->transid,
4459 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004460 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004461 }
Chris Mason28f75a02015-02-04 06:59:29 -08004462 return ret;
4463
4464}
4465
Josef Bacikddfae632017-10-19 14:16:02 -04004466/*
4467 * Return this if we need to call truncate_block for the last bit of the
4468 * truncate.
4469 */
4470#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004471
Chris Mason323ac952008-10-01 19:05:46 -04004472/*
Chris Mason39279cc2007-06-12 06:35:45 -04004473 * this can truncate away extent items, csum items and directory items.
4474 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004475 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004476 *
4477 * csum items that cross the new i_size are truncated to the new size
4478 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004479 *
4480 * min_type is the minimum key type to truncate down to. If set to 0, this
4481 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004482 */
Yan, Zheng80825102009-11-12 09:35:36 +00004483int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4484 struct btrfs_root *root,
4485 struct inode *inode,
4486 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004487{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004488 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004489 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004490 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004491 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004492 struct btrfs_key key;
4493 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004494 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004495 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004496 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004497 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004498 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004499 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004500 int found_extent;
4501 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004502 int pending_del_nr = 0;
4503 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004504 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004505 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004506 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004507 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004508 bool be_nice = false;
4509 bool should_throttle = false;
4510 bool should_end = false;
Yan, Zheng80825102009-11-12 09:35:36 +00004511
4512 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004513
Chris Mason28ed1342014-12-17 09:41:04 -08004514 /*
4515 * for non-free space inodes and ref cows, we want to back off from
4516 * time to time
4517 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004518 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004519 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004520 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004521
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004522 path = btrfs_alloc_path();
4523 if (!path)
4524 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004525 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004526
Josef Bacik5dc562c2012-08-17 13:14:17 -04004527 /*
4528 * We want to drop from the next block forward in case this new size is
4529 * not block aligned since we will be keeping the last block of the
4530 * extent just the way it is.
4531 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004532 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004533 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004534 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004535 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004536 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004537
Miao Xie16cdcec2011-04-22 18:12:22 +08004538 /*
4539 * This function is also used to drop the items in the log tree before
4540 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4541 * it is used to drop the loged items. So we shouldn't kill the delayed
4542 * items.
4543 */
4544 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004545 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004546
Li Zefan33345d012011-04-20 10:31:50 +08004547 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004548 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004549 key.type = (u8)-1;
4550
Chris Mason85e21ba2008-01-29 15:11:36 -05004551search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004552 /*
4553 * with a 16K leaf size and 128MB extents, you can actually queue
4554 * up a huge file in a single leaf. Most of the time that
4555 * bytes_deleted is > 0, it will be huge by the time we get here
4556 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004557 if (be_nice && bytes_deleted > SZ_32M &&
4558 btrfs_should_end_transaction(trans)) {
4559 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004560 goto out;
4561 }
Chris Masond3977122009-01-05 21:25:51 -05004562
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004563 path->leave_spinning = 1;
4564 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4565 if (ret < 0)
4566 goto out;
4567
Chris Mason85e21ba2008-01-29 15:11:36 -05004568 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004569 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004570 /* there are no items in the tree for us to truncate, we're
4571 * done
4572 */
Yan, Zheng80825102009-11-12 09:35:36 +00004573 if (path->slots[0] == 0)
4574 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004575 path->slots[0]--;
4576 }
4577
Chris Masond3977122009-01-05 21:25:51 -05004578 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004579 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004580 leaf = path->nodes[0];
4581 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004582 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004583
Li Zefan33345d012011-04-20 10:31:50 +08004584 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004585 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004586
Chris Mason85e21ba2008-01-29 15:11:36 -05004587 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004588 break;
4589
Chris Mason5f39d392007-10-15 16:14:19 -04004590 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004591 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004592 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004593 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004594 extent_type = btrfs_file_extent_type(leaf, fi);
4595 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004596 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004597 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004598
4599 trace_btrfs_truncate_show_fi_regular(
4600 BTRFS_I(inode), leaf, fi,
4601 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004602 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004603 item_end += btrfs_file_extent_ram_bytes(leaf,
4604 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004605
4606 trace_btrfs_truncate_show_fi_inline(
4607 BTRFS_I(inode), leaf, fi, path->slots[0],
4608 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004609 }
Yan008630c2007-11-07 13:31:09 -05004610 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004611 }
Yan, Zheng80825102009-11-12 09:35:36 +00004612 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004613 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004614 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004615 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004616 break;
4617 if (found_key.offset >= new_size)
4618 del_item = 1;
4619 else
4620 del_item = 0;
4621 }
Chris Mason39279cc2007-06-12 06:35:45 -04004622 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004623 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004624 if (found_type != BTRFS_EXTENT_DATA_KEY)
4625 goto delete;
4626
4627 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004628 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004629 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004630 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004631 u64 orig_num_bytes =
4632 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004633 extent_num_bytes = ALIGN(new_size -
4634 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004635 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004636 btrfs_set_file_extent_num_bytes(leaf, fi,
4637 extent_num_bytes);
4638 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004639 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004640 if (test_bit(BTRFS_ROOT_REF_COWS,
4641 &root->state) &&
4642 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004643 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004644 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004645 } else {
Chris Masondb945352007-10-15 16:15:53 -04004646 extent_num_bytes =
4647 btrfs_file_extent_disk_num_bytes(leaf,
4648 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004649 extent_offset = found_key.offset -
4650 btrfs_file_extent_offset(leaf, fi);
4651
Chris Mason39279cc2007-06-12 06:35:45 -04004652 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004653 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004654 if (extent_start != 0) {
4655 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004656 if (test_bit(BTRFS_ROOT_REF_COWS,
4657 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004658 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004659 }
4660 }
Chris Mason90692182008-02-08 13:49:28 -05004661 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004662 /*
4663 * we can't truncate inline items that have had
4664 * special encodings
4665 */
4666 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004667 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004668 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4669 btrfs_file_extent_compression(leaf, fi) == 0) {
4670 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004671
Josef Bacikddfae632017-10-19 14:16:02 -04004672 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4673 size = btrfs_file_extent_calc_inline_size(size);
4674 btrfs_truncate_item(root->fs_info, path, size, 1);
4675 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004676 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004677 * We have to bail so the last_size is set to
4678 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004679 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004680 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004681 break;
Chris Mason90692182008-02-08 13:49:28 -05004682 }
Josef Bacikddfae632017-10-19 14:16:02 -04004683
4684 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4685 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004686 }
Chris Mason179e29e2007-11-01 11:28:41 -04004687delete:
Josef Bacikddfae632017-10-19 14:16:02 -04004688 if (del_item)
4689 last_size = found_key.offset;
4690 else
4691 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004692 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004693 if (!pending_del_nr) {
4694 /* no pending yet, add ourselves */
4695 pending_del_slot = path->slots[0];
4696 pending_del_nr = 1;
4697 } else if (pending_del_nr &&
4698 path->slots[0] + 1 == pending_del_slot) {
4699 /* hop on the pending chunk */
4700 pending_del_nr++;
4701 pending_del_slot = path->slots[0];
4702 } else {
Chris Masond3977122009-01-05 21:25:51 -05004703 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004704 }
Chris Mason39279cc2007-06-12 06:35:45 -04004705 } else {
4706 break;
4707 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004708 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004709
Miao Xie27cdeb72014-04-02 19:51:05 +08004710 if (found_extent &&
4711 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004712 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004713 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004714 bytes_deleted += extent_num_bytes;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04004715 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004716 extent_num_bytes, 0,
4717 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004718 ino, extent_offset);
Omar Sandoval05522102018-05-11 13:13:31 -07004719 if (ret) {
4720 btrfs_abort_transaction(trans, ret);
4721 break;
4722 }
Lu Fengqi7c861622018-10-11 13:40:36 +08004723 if (btrfs_should_throttle_delayed_refs(trans))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004724 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004725 trans->delayed_ref_updates * 2,
4726 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004727 if (be_nice) {
4728 if (truncate_space_check(trans, root,
4729 extent_num_bytes)) {
Thomas Meyer897ca812017-10-07 16:02:21 +02004730 should_end = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004731 }
Lu Fengqi7c861622018-10-11 13:40:36 +08004732 if (btrfs_should_throttle_delayed_refs(trans))
Thomas Meyer897ca812017-10-07 16:02:21 +02004733 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004734 }
Chris Mason39279cc2007-06-12 06:35:45 -04004735 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004736
Yan, Zheng80825102009-11-12 09:35:36 +00004737 if (found_type == BTRFS_INODE_ITEM_KEY)
4738 break;
4739
4740 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004741 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004742 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004743 if (pending_del_nr) {
4744 ret = btrfs_del_items(trans, root, path,
4745 pending_del_slot,
4746 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004747 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004748 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004749 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004750 }
Yan, Zheng80825102009-11-12 09:35:36 +00004751 pending_del_nr = 0;
4752 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004753 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004754 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004755 unsigned long updates = trans->delayed_ref_updates;
4756 if (updates) {
4757 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004758 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004759 updates * 2);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004760 if (ret)
4761 break;
Josef Bacik12621332015-02-03 07:50:16 -08004762 }
4763 }
Chris Mason28f75a02015-02-04 06:59:29 -08004764 /*
4765 * if we failed to refill our space rsv, bail out
4766 * and let the transaction restart
4767 */
4768 if (should_end) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004769 ret = -EAGAIN;
4770 break;
Chris Mason28f75a02015-02-04 06:59:29 -08004771 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004772 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004773 } else {
4774 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004775 }
Chris Mason39279cc2007-06-12 06:35:45 -04004776 }
Yan, Zheng80825102009-11-12 09:35:36 +00004777out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004778 if (ret >= 0 && pending_del_nr) {
4779 int err;
4780
4781 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004782 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004783 if (err) {
4784 btrfs_abort_transaction(trans, err);
4785 ret = err;
4786 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004787 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004788 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4789 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004790 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004791 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004792 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004793 }
Chris Mason28ed1342014-12-17 09:41:04 -08004794
Chris Mason39279cc2007-06-12 06:35:45 -04004795 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004796
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004797 if (be_nice && bytes_deleted > SZ_32M && (ret >= 0 || ret == -EAGAIN)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004798 unsigned long updates = trans->delayed_ref_updates;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004799 int err;
4800
Chris Mason28ed1342014-12-17 09:41:04 -08004801 if (updates) {
4802 trans->delayed_ref_updates = 0;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004803 err = btrfs_run_delayed_refs(trans, updates * 2);
4804 if (err)
4805 ret = err;
Chris Mason28ed1342014-12-17 09:41:04 -08004806 }
4807 }
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004808 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004809}
4810
Chris Masona52d9a82007-08-27 16:49:44 -04004811/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304812 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004813 * @inode - inode that we're zeroing
4814 * @from - the offset to start zeroing
4815 * @len - the length to zero, 0 to zero the entire range respective to the
4816 * offset
4817 * @front - zero up to the offset instead of from the offset on
4818 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304819 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004820 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004821 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304822int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004823 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004824{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004825 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004826 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004827 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4828 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004829 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004830 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004831 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004832 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004833 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304834 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004835 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004836 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004837 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304838 u64 block_start;
4839 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004840
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004841 if (IS_ALIGNED(offset, blocksize) &&
4842 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004843 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304844
Josef Bacik8b62f872017-10-19 14:15:55 -04004845 block_start = round_down(from, blocksize);
4846 block_end = block_start + blocksize - 1;
4847
Qu Wenruo364ecf32017-02-27 15:10:38 +08004848 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004849 block_start, blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004850 if (ret)
4851 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004852
Chris Mason211c17f2008-05-15 09:13:45 -04004853again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004854 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004855 if (!page) {
Qu Wenruobc42bda2017-02-27 15:10:39 +08004856 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08004857 block_start, blocksize, true);
4858 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, true);
Miao Xieac6a2b32012-12-05 10:56:13 +00004859 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004860 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004861 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004862
Chris Masona52d9a82007-08-27 16:49:44 -04004863 if (!PageUptodate(page)) {
4864 ret = btrfs_readpage(NULL, page);
4865 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004866 if (page->mapping != mapping) {
4867 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004868 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004869 goto again;
4870 }
Chris Masona52d9a82007-08-27 16:49:44 -04004871 if (!PageUptodate(page)) {
4872 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004873 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004874 }
4875 }
Chris Mason211c17f2008-05-15 09:13:45 -04004876 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004877
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304878 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004879 set_page_extent_mapped(page);
4880
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304881 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004882 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304883 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004884 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004885 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004886 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004887 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004888 btrfs_put_ordered_extent(ordered);
4889 goto again;
4890 }
4891
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304892 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004893 EXTENT_DIRTY | EXTENT_DELALLOC |
4894 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01004895 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004896
Filipe Mananae3b8a482017-11-04 00:16:59 +00004897 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004898 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004899 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304900 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004901 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004902 goto out_unlock;
4903 }
4904
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304905 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004906 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304907 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004908 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004909 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304910 memset(kaddr + (block_start - page_offset(page)),
4911 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004912 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304913 memset(kaddr + (block_start - page_offset(page)) + offset,
4914 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004915 flush_dcache_page(page);
4916 kunmap(page);
4917 }
Chris Mason247e7432008-07-17 12:53:51 -04004918 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004919 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004920 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004921
Chris Mason89642222008-07-24 09:41:53 -04004922out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004923 if (ret)
Qu Wenruobc42bda2017-02-27 15:10:39 +08004924 btrfs_delalloc_release_space(inode, data_reserved, block_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08004925 blocksize, true);
4926 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, (ret != 0));
Chris Mason39279cc2007-06-12 06:35:45 -04004927 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004928 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004929out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08004930 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004931 return ret;
4932}
4933
Josef Bacik16e75492013-10-22 12:18:51 -04004934static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4935 u64 offset, u64 len)
4936{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004937 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004938 struct btrfs_trans_handle *trans;
4939 int ret;
4940
4941 /*
4942 * Still need to make sure the inode looks like it's been updated so
4943 * that any holes get logged if we fsync.
4944 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004945 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4946 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004947 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4948 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4949 return 0;
4950 }
4951
4952 /*
4953 * 1 - for the one we're dropping
4954 * 1 - for the one we're adding
4955 * 1 - for updating the inode.
4956 */
4957 trans = btrfs_start_transaction(root, 3);
4958 if (IS_ERR(trans))
4959 return PTR_ERR(trans);
4960
4961 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4962 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004963 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004964 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004965 return ret;
4966 }
4967
David Sterbaf85b7372017-01-20 14:54:07 +01004968 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4969 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004970 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004971 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004972 else
4973 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004974 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004975 return ret;
4976}
4977
Josef Bacik695a0d02011-03-04 15:46:53 -05004978/*
4979 * This function puts in dummy file extents for the area we're creating a hole
4980 * for. So if we are truncating this file to a larger size we need to insert
4981 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4982 * the range between oldsize and size
4983 */
Josef Bacika41ad392011-01-31 15:30:16 -05004984int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004985{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004986 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004987 struct btrfs_root *root = BTRFS_I(inode)->root;
4988 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004989 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004990 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004991 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004992 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4993 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004994 u64 last_byte;
4995 u64 cur_offset;
4996 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004997 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004998
Josef Bacika71754f2013-06-17 17:14:39 -04004999 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305000 * If our size started in the middle of a block we need to zero out the
5001 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04005002 * expose stale data.
5003 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305004 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04005005 if (err)
5006 return err;
5007
Yan Zheng9036c102008-10-30 14:19:41 -04005008 if (size <= hole_start)
5009 return 0;
5010
Yan Zheng9036c102008-10-30 14:19:41 -04005011 while (1) {
5012 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08005013
David Sterbaff13db42015-12-03 14:30:40 +01005014 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005015 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02005016 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08005017 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04005018 if (!ordered)
5019 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005020 unlock_extent_cached(io_tree, hole_start, block_end - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01005021 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08005022 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04005023 btrfs_put_ordered_extent(ordered);
5024 }
5025
Yan Zheng9036c102008-10-30 14:19:41 -04005026 cur_offset = hole_start;
5027 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02005028 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04005029 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005030 if (IS_ERR(em)) {
5031 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00005032 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005033 break;
5034 }
Yan Zheng9036c102008-10-30 14:19:41 -04005035 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005036 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00005037 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04005038 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04005039 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005040
Josef Bacik16e75492013-10-22 12:18:51 -04005041 err = maybe_insert_hole(root, inode, cur_offset,
5042 hole_size);
5043 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005044 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005045 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005046 cur_offset + hole_size - 1, 0);
5047 hole_em = alloc_extent_map();
5048 if (!hole_em) {
5049 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5050 &BTRFS_I(inode)->runtime_flags);
5051 goto next;
5052 }
5053 hole_em->start = cur_offset;
5054 hole_em->len = hole_size;
5055 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005056
Josef Bacik5dc562c2012-08-17 13:14:17 -04005057 hole_em->block_start = EXTENT_MAP_HOLE;
5058 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005059 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005060 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005061 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005062 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005063 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005064
5065 while (1) {
5066 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005067 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005068 write_unlock(&em_tree->lock);
5069 if (err != -EEXIST)
5070 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005071 btrfs_drop_extent_cache(BTRFS_I(inode),
5072 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005073 cur_offset +
5074 hole_size - 1, 0);
5075 }
5076 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005077 }
Josef Bacik16e75492013-10-22 12:18:51 -04005078next:
Yan Zheng9036c102008-10-30 14:19:41 -04005079 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005080 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005081 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005082 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005083 break;
5084 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005085 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005086 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005087 return err;
5088}
5089
Eric Sandeen3972f262013-01-12 02:57:22 +00005090static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005091{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005092 struct btrfs_root *root = BTRFS_I(inode)->root;
5093 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005094 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005095 loff_t newsize = attr->ia_size;
5096 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005097 int ret;
5098
Eric Sandeen3972f262013-01-12 02:57:22 +00005099 /*
5100 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5101 * special case where we need to update the times despite not having
5102 * these flags set. For all other operations the VFS set these flags
5103 * explicitly if it wants a timestamp update.
5104 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005105 if (newsize != oldsize) {
5106 inode_inc_iversion(inode);
5107 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5108 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005109 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005110 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005111
Josef Bacika41ad392011-01-31 15:30:16 -05005112 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005113 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005114 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005115 * This is to ensure the snapshot captures a fully consistent
5116 * state of this file - if the snapshot captures this expanding
5117 * truncation, it must capture all writes that happened before
5118 * this truncation.
5119 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005120 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005121 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005122 if (ret) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005123 btrfs_end_write_no_snapshotting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005124 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005125 }
Yan, Zheng80825102009-11-12 09:35:36 +00005126
Miao Xief4a2f4c2011-12-14 20:12:01 -05005127 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005128 if (IS_ERR(trans)) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005129 btrfs_end_write_no_snapshotting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005130 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005131 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005132
5133 i_size_write(inode, newsize);
5134 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305135 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005136 ret = btrfs_update_inode(trans, root, inode);
David Sterbaea14b57f2017-06-22 02:19:11 +02005137 btrfs_end_write_no_snapshotting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005138 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005139 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005140
Josef Bacika41ad392011-01-31 15:30:16 -05005141 /*
5142 * We're truncating a file that used to have good data down to
5143 * zero. Make sure it gets into the ordered flush list so that
5144 * any new writes get down to disk quickly.
5145 */
5146 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005147 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5148 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005149
Josef Bacika41ad392011-01-31 15:30:16 -05005150 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005151
5152 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005153 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005154 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005155 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005156
Filipe Manana213e8c52018-02-06 20:40:31 +00005157 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005158 if (ret && inode->i_nlink) {
5159 int err;
5160
5161 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005162 * Truncate failed, so fix up the in-memory size. We
5163 * adjusted disk_i_size down as we removed extents, so
5164 * wait for disk_i_size to be stable and then update the
5165 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005166 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005167 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005168 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005169 return err;
5170 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005171 }
Yan, Zheng80825102009-11-12 09:35:36 +00005172 }
5173
Josef Bacika41ad392011-01-31 15:30:16 -05005174 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005175}
5176
Chris Mason39279cc2007-06-12 06:35:45 -04005177static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5178{
David Howells2b0143b2015-03-17 22:25:59 +00005179 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005180 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005181 int err;
5182
Li Zefanb83cc962010-12-20 16:04:08 +08005183 if (btrfs_root_readonly(root))
5184 return -EROFS;
5185
Jan Kara31051c82016-05-26 16:55:18 +02005186 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005187 if (err)
5188 return err;
5189
Chris Mason5a3f23d2009-03-31 13:27:11 -04005190 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005191 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005192 if (err)
5193 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005194 }
Yan Zheng9036c102008-10-30 14:19:41 -04005195
Christoph Hellwig10257742010-06-04 11:30:02 +02005196 if (attr->ia_valid) {
5197 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005198 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005199 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005200
Josef Bacik22c44fe2011-11-30 10:45:38 -05005201 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005202 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005203 }
5204
Chris Mason39279cc2007-06-12 06:35:45 -04005205 return err;
5206}
Chris Mason61295eb2008-01-14 16:24:38 -05005207
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005208/*
5209 * While truncating the inode pages during eviction, we get the VFS calling
5210 * btrfs_invalidatepage() against each page of the inode. This is slow because
5211 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5212 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5213 * extent_state structures over and over, wasting lots of time.
5214 *
5215 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5216 * those expensive operations on a per page basis and do only the ordered io
5217 * finishing, while we release here the extent_map and extent_state structures,
5218 * without the excessive merging and splitting.
5219 */
5220static void evict_inode_truncate_pages(struct inode *inode)
5221{
5222 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5223 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5224 struct rb_node *node;
5225
5226 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005227 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005228
5229 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08005230 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005231 struct extent_map *em;
5232
Liu Bo07e1ce02018-08-23 03:51:52 +08005233 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005234 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005235 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5236 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005237 remove_extent_mapping(map_tree, em);
5238 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005239 if (need_resched()) {
5240 write_unlock(&map_tree->lock);
5241 cond_resched();
5242 write_lock(&map_tree->lock);
5243 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005244 }
5245 write_unlock(&map_tree->lock);
5246
Filipe Manana6ca07092015-05-26 00:55:42 +01005247 /*
5248 * Keep looping until we have no more ranges in the io tree.
5249 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005250 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5251 * still in progress (unlocked the pages in the bio but did not yet
5252 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005253 * ranges can still be locked and eviction started because before
5254 * submitting those bios, which are executed by a separate task (work
5255 * queue kthread), inode references (inode->i_count) were not taken
5256 * (which would be dropped in the end io callback of each bio).
5257 * Therefore here we effectively end up waiting for those bios and
5258 * anyone else holding locked ranges without having bumped the inode's
5259 * reference count - if we don't do it, when they access the inode's
5260 * io_tree to unlock a range it may be too late, leading to an
5261 * use-after-free issue.
5262 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005263 spin_lock(&io_tree->lock);
5264 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5265 struct extent_state *state;
5266 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005267 u64 start;
5268 u64 end;
Filipe Manana421f0922018-10-12 13:02:48 +01005269 unsigned state_flags;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005270
5271 node = rb_first(&io_tree->state);
5272 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005273 start = state->start;
5274 end = state->end;
Filipe Manana421f0922018-10-12 13:02:48 +01005275 state_flags = state->state;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005276 spin_unlock(&io_tree->lock);
5277
David Sterbaff13db42015-12-03 14:30:40 +01005278 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005279
5280 /*
5281 * If still has DELALLOC flag, the extent didn't reach disk,
5282 * and its reserved space won't be freed by delayed_ref.
5283 * So we need to free its reserved space here.
5284 * (Refer to comment in btrfs_invalidatepage, case 2)
5285 *
5286 * Note, end is the bytenr of last byte, so we need + 1 here.
5287 */
Filipe Manana421f0922018-10-12 13:02:48 +01005288 if (state_flags & EXTENT_DELALLOC)
Qu Wenruobc42bda2017-02-27 15:10:39 +08005289 btrfs_qgroup_free_data(inode, NULL, start, end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005290
Filipe Manana6ca07092015-05-26 00:55:42 +01005291 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005292 EXTENT_LOCKED | EXTENT_DIRTY |
5293 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01005294 EXTENT_DEFRAG, 1, 1, &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005295
Filipe Manana7064dd52014-08-08 02:47:05 +01005296 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005297 spin_lock(&io_tree->lock);
5298 }
5299 spin_unlock(&io_tree->lock);
5300}
5301
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005302static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04005303 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005304{
5305 struct btrfs_fs_info *fs_info = root->fs_info;
5306 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5307 int failures = 0;
5308
5309 for (;;) {
5310 struct btrfs_trans_handle *trans;
5311 int ret;
5312
Josef Bacikad80cf52018-09-28 07:18:19 -04005313 ret = btrfs_block_rsv_refill(root, rsv, rsv->size,
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005314 BTRFS_RESERVE_FLUSH_LIMIT);
5315
5316 if (ret && ++failures > 2) {
5317 btrfs_warn(fs_info,
5318 "could not allocate space for a delete; will truncate on mount");
5319 return ERR_PTR(-ENOSPC);
5320 }
5321
5322 trans = btrfs_join_transaction(root);
5323 if (IS_ERR(trans) || !ret)
5324 return trans;
5325
5326 /*
5327 * Try to steal from the global reserve if there is space for
5328 * it.
5329 */
Lu Fengqiaf9b8a02018-10-11 13:40:35 +08005330 if (!btrfs_check_space_for_delayed_refs(trans) &&
Josef Bacikad80cf52018-09-28 07:18:19 -04005331 !btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, false))
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005332 return trans;
5333
5334 /* If not, commit and try again. */
5335 ret = btrfs_commit_transaction(trans);
5336 if (ret)
5337 return ERR_PTR(ret);
5338 }
5339}
5340
Al Virobd555972010-06-07 11:35:40 -04005341void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005342{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005343 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005344 struct btrfs_trans_handle *trans;
5345 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005346 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005347 int ret;
5348
liubo1abe9b82011-03-24 11:18:59 +00005349 trace_btrfs_inode_evict(inode);
5350
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005351 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005352 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005353 return;
5354 }
5355
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005356 evict_inode_truncate_pages(inode);
5357
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005358 if (inode->i_nlink &&
5359 ((btrfs_root_refs(&root->root_item) != 0 &&
5360 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005361 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005362 goto no_delete;
5363
Omar Sandoval27919062018-05-11 13:13:37 -07005364 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005365 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005366
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005367 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005368
Omar Sandoval7b40b692018-05-11 13:13:33 -07005369 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005370 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005371
Yan, Zheng76dda932009-09-21 16:00:26 -04005372 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005373 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5374 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005375 goto no_delete;
5376 }
5377
Nikolay Borisovaa790212017-01-10 20:35:40 +02005378 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005379 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005380 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005381
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005382 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005383 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005384 goto no_delete;
Josef Bacikad80cf52018-09-28 07:18:19 -04005385 rsv->size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005386 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005387
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005388 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005389
Yan, Zheng80825102009-11-12 09:35:36 +00005390 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005391 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005392 if (IS_ERR(trans))
5393 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005394
5395 trans->block_rsv = rsv;
5396
Yan, Zhengd68fc572010-05-16 10:49:58 -04005397 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Omar Sandoval27919062018-05-11 13:13:37 -07005398 trans->block_rsv = &fs_info->trans_block_rsv;
5399 btrfs_end_transaction(trans);
5400 btrfs_btree_balance_dirty(fs_info);
5401 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5402 goto free_rsv;
5403 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005404 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005405 }
5406
Josef Bacik4ef31a42013-08-13 14:10:08 -04005407 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005408 * Errors here aren't a big deal, it just means we leave orphan items in
5409 * the tree. They will be cleaned up on the next mount. If the inode
5410 * number gets reused, cleanup deletes the orphan item without doing
5411 * anything, and unlink reuses the existing orphan item.
5412 *
5413 * If it turns out that we are dropping too many of these, we might want
5414 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005415 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005416 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005417 if (!IS_ERR(trans)) {
5418 trans->block_rsv = rsv;
5419 btrfs_orphan_del(trans, BTRFS_I(inode));
5420 trans->block_rsv = &fs_info->trans_block_rsv;
5421 btrfs_end_transaction(trans);
5422 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005423
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005424 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005425 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005426 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005427
Omar Sandoval27919062018-05-11 13:13:37 -07005428free_rsv:
5429 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005430no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005431 /*
5432 * If we didn't successfully delete, the orphan item will still be in
5433 * the tree and we'll retry on the next mount. Again, we might also want
5434 * to retry these periodically in the future.
5435 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005436 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005437 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005438}
5439
5440/*
5441 * this returns the key found in the dir entry in the location pointer.
Su Yue005d6712018-03-05 17:13:37 +08005442 * If no dir entries were found, returns -ENOENT.
5443 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005444 */
5445static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5446 struct btrfs_key *location)
5447{
5448 const char *name = dentry->d_name.name;
5449 int namelen = dentry->d_name.len;
5450 struct btrfs_dir_item *di;
5451 struct btrfs_path *path;
5452 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005453 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005454
5455 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005456 if (!path)
5457 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005458
David Sterbaf85b7372017-01-20 14:54:07 +01005459 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5460 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005461 if (IS_ERR_OR_NULL(di)) {
5462 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005463 goto out;
5464 }
Chris Masond3977122009-01-05 21:25:51 -05005465
Chris Mason5f39d392007-10-15 16:14:19 -04005466 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005467 if (location->type != BTRFS_INODE_ITEM_KEY &&
5468 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005469 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005470 btrfs_warn(root->fs_info,
5471"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5472 __func__, name, btrfs_ino(BTRFS_I(dir)),
5473 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005474 }
Chris Mason39279cc2007-06-12 06:35:45 -04005475out:
Chris Mason39279cc2007-06-12 06:35:45 -04005476 btrfs_free_path(path);
5477 return ret;
5478}
5479
5480/*
5481 * when we hit a tree root in a directory, the btrfs part of the inode
5482 * needs to be changed to reflect the root directory of the tree root. This
5483 * is kind of like crossing a mount point.
5484 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005485static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005486 struct inode *dir,
5487 struct dentry *dentry,
5488 struct btrfs_key *location,
5489 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005490{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005491 struct btrfs_path *path;
5492 struct btrfs_root *new_root;
5493 struct btrfs_root_ref *ref;
5494 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005495 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005496 int ret;
5497 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005498
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005499 path = btrfs_alloc_path();
5500 if (!path) {
5501 err = -ENOMEM;
5502 goto out;
5503 }
Chris Mason39279cc2007-06-12 06:35:45 -04005504
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005505 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005506 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5507 key.type = BTRFS_ROOT_REF_KEY;
5508 key.offset = location->objectid;
5509
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005510 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005511 if (ret) {
5512 if (ret < 0)
5513 err = ret;
5514 goto out;
5515 }
Chris Mason39279cc2007-06-12 06:35:45 -04005516
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005517 leaf = path->nodes[0];
5518 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005519 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005520 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5521 goto out;
5522
5523 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5524 (unsigned long)(ref + 1),
5525 dentry->d_name.len);
5526 if (ret)
5527 goto out;
5528
David Sterbab3b4aa72011-04-21 01:20:15 +02005529 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005530
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005531 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005532 if (IS_ERR(new_root)) {
5533 err = PTR_ERR(new_root);
5534 goto out;
5535 }
5536
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005537 *sub_root = new_root;
5538 location->objectid = btrfs_root_dirid(&new_root->root_item);
5539 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005540 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005541 err = 0;
5542out:
5543 btrfs_free_path(path);
5544 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005545}
5546
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005547static void inode_tree_add(struct inode *inode)
5548{
5549 struct btrfs_root *root = BTRFS_I(inode)->root;
5550 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005551 struct rb_node **p;
5552 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005553 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005554 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005555
Al Viro1d3382cb2010-10-23 15:19:20 -04005556 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005557 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005558 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005559 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005560 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005561 while (*p) {
5562 parent = *p;
5563 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5564
David Sterba37508512018-06-29 10:56:40 +02005565 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005566 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005567 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005568 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005569 else {
5570 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005571 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005572 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005573 RB_CLEAR_NODE(parent);
5574 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005575 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005576 }
5577 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005578 rb_link_node(new, parent, p);
5579 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005580 spin_unlock(&root->inode_lock);
5581}
5582
5583static void inode_tree_del(struct inode *inode)
5584{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005585 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005586 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005587 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005588
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005589 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005590 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005591 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005592 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005593 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005594 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005595 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005596
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005597 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005598 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005599 spin_lock(&root->inode_lock);
5600 empty = RB_EMPTY_ROOT(&root->inode_tree);
5601 spin_unlock(&root->inode_lock);
5602 if (empty)
5603 btrfs_add_dead_root(root);
5604 }
5605}
5606
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005607
Chris Masone02119d2008-09-05 16:13:11 -04005608static int btrfs_init_locked_inode(struct inode *inode, void *p)
5609{
5610 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005611 inode->i_ino = args->location->objectid;
5612 memcpy(&BTRFS_I(inode)->location, args->location,
5613 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005614 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005615 return 0;
5616}
5617
5618static int btrfs_find_actor(struct inode *inode, void *opaque)
5619{
5620 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005621 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005622 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005623}
5624
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005625static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005626 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005627 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005628{
5629 struct inode *inode;
5630 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005631 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005632
Chris Mason90d3e592014-01-09 17:28:00 -08005633 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005634 args.root = root;
5635
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005636 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005637 btrfs_init_locked_inode,
5638 (void *)&args);
5639 return inode;
5640}
5641
Balaji Rao1a54ef82008-07-21 02:01:04 +05305642/* Get an inode object given its location and corresponding root.
5643 * Returns in *is_new if the inode was read from disk
5644 */
Filipe Manana4222ea72018-10-24 10:13:03 +01005645struct inode *btrfs_iget_path(struct super_block *s, struct btrfs_key *location,
5646 struct btrfs_root *root, int *new,
5647 struct btrfs_path *path)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305648{
5649 struct inode *inode;
5650
Chris Mason90d3e592014-01-09 17:28:00 -08005651 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305652 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005653 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305654
5655 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005656 int ret;
5657
Filipe Manana4222ea72018-10-24 10:13:03 +01005658 ret = btrfs_read_locked_inode(inode, path);
Al Viro9bc2cef2018-07-29 23:04:50 +01005659 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005660 inode_tree_add(inode);
5661 unlock_new_inode(inode);
5662 if (new)
5663 *new = 1;
5664 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005665 iget_failed(inode);
5666 /*
5667 * ret > 0 can come from btrfs_search_slot called by
5668 * btrfs_read_locked_inode, this means the inode item
5669 * was not found.
5670 */
5671 if (ret > 0)
5672 ret = -ENOENT;
5673 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005674 }
5675 }
5676
Balaji Rao1a54ef82008-07-21 02:01:04 +05305677 return inode;
5678}
5679
Filipe Manana4222ea72018-10-24 10:13:03 +01005680struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
5681 struct btrfs_root *root, int *new)
5682{
5683 return btrfs_iget_path(s, location, root, new, NULL);
5684}
5685
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005686static struct inode *new_simple_dir(struct super_block *s,
5687 struct btrfs_key *key,
5688 struct btrfs_root *root)
5689{
5690 struct inode *inode = new_inode(s);
5691
5692 if (!inode)
5693 return ERR_PTR(-ENOMEM);
5694
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005695 BTRFS_I(inode)->root = root;
5696 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005697 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005698
5699 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005700 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005701 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005702 inode->i_fop = &simple_dir_operations;
5703 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005704 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305705 inode->i_atime = inode->i_mtime;
5706 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005707 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005708
5709 return inode;
5710}
5711
Chris Mason3de45862008-11-17 21:02:50 -05005712struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005713{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005714 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005715 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005716 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005717 struct btrfs_root *sub_root = root;
5718 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005719 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005720 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005721
5722 if (dentry->d_name.len > BTRFS_NAME_LEN)
5723 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005724
Jeff Layton39e3c952012-11-28 11:30:53 -05005725 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005726 if (ret < 0)
5727 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005728
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005729 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005730 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005731 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005732 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005733
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005734 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005735 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005736 &location, &sub_root);
5737 if (ret < 0) {
5738 if (ret != -ENOENT)
5739 inode = ERR_PTR(ret);
5740 else
5741 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5742 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005743 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005744 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005745 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005746
Julia Lawall34d19ba2011-01-24 19:55:19 +00005747 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005748 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005749 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005750 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005751 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005752 if (ret) {
5753 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005754 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005755 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005756 }
5757
Chris Mason3de45862008-11-17 21:02:50 -05005758 return inode;
5759}
5760
Nick Pigginfe15ce42011-01-07 17:49:23 +11005761static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005762{
5763 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005764 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005765
Li Zefan848cce02012-02-21 17:04:28 +08005766 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005767 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005768
Li Zefan848cce02012-02-21 17:04:28 +08005769 if (inode) {
5770 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005771 if (btrfs_root_refs(&root->root_item) == 0)
5772 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005773
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005774 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005775 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005776 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005777 return 0;
5778}
5779
Chris Mason3de45862008-11-17 21:02:50 -05005780static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005781 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005782{
Al Viro3837d202018-10-10 16:38:27 -04005783 struct inode *inode = btrfs_lookup_dentry(dir, dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005784
Al Viro3837d202018-10-10 16:38:27 -04005785 if (inode == ERR_PTR(-ENOENT))
5786 inode = NULL;
Al Viro41d28bc2014-10-12 22:24:21 -04005787 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005788}
5789
Miao Xie16cdcec2011-04-22 18:12:22 +08005790unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005791 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5792};
5793
Josef Bacik23b5ec72017-07-24 15:14:25 -04005794/*
5795 * All this infrastructure exists because dir_emit can fault, and we are holding
5796 * the tree lock when doing readdir. For now just allocate a buffer and copy
5797 * our information into that, and then dir_emit from the buffer. This is
5798 * similar to what NFS does, only we don't keep the buffer around in pagecache
5799 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5800 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5801 * tree lock.
5802 */
5803static int btrfs_opendir(struct inode *inode, struct file *file)
5804{
5805 struct btrfs_file_private *private;
5806
5807 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5808 if (!private)
5809 return -ENOMEM;
5810 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5811 if (!private->filldir_buf) {
5812 kfree(private);
5813 return -ENOMEM;
5814 }
5815 file->private_data = private;
5816 return 0;
5817}
5818
5819struct dir_entry {
5820 u64 ino;
5821 u64 offset;
5822 unsigned type;
5823 int name_len;
5824};
5825
5826static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5827{
5828 while (entries--) {
5829 struct dir_entry *entry = addr;
5830 char *name = (char *)(entry + 1);
5831
David Sterba92d32172018-04-16 21:10:14 +02005832 ctx->pos = get_unaligned(&entry->offset);
5833 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5834 get_unaligned(&entry->ino),
5835 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04005836 return 1;
David Sterba92d32172018-04-16 21:10:14 +02005837 addr += sizeof(struct dir_entry) +
5838 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005839 ctx->pos++;
5840 }
5841 return 0;
5842}
5843
Al Viro9cdda8d2013-05-22 16:48:09 -04005844static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005845{
Al Viro9cdda8d2013-05-22 16:48:09 -04005846 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005847 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005848 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005849 struct btrfs_dir_item *di;
5850 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005851 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005852 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005853 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005854 struct list_head ins_list;
5855 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005856 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005857 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005858 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005859 char *name_ptr;
5860 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005861 int entries = 0;
5862 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005863 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005864 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005865
Al Viro9cdda8d2013-05-22 16:48:09 -04005866 if (!dir_emit_dots(file, ctx))
5867 return 0;
5868
David Woodhouse49593bf2008-08-17 17:08:36 +01005869 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005870 if (!path)
5871 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005872
Josef Bacik23b5ec72017-07-24 15:14:25 -04005873 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005874 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005875
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005876 INIT_LIST_HEAD(&ins_list);
5877 INIT_LIST_HEAD(&del_list);
5878 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005879
Josef Bacik23b5ec72017-07-24 15:14:25 -04005880again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005881 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005882 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005883 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005884
Chris Mason39279cc2007-06-12 06:35:45 -04005885 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5886 if (ret < 0)
5887 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005888
5889 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04005890 struct dir_entry *entry;
5891
Chris Mason5f39d392007-10-15 16:14:19 -04005892 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005893 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005894 if (slot >= btrfs_header_nritems(leaf)) {
5895 ret = btrfs_next_leaf(root, path);
5896 if (ret < 0)
5897 goto err;
5898 else if (ret > 0)
5899 break;
5900 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005901 }
Chris Mason3de45862008-11-17 21:02:50 -05005902
Chris Mason5f39d392007-10-15 16:14:19 -04005903 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5904
5905 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005906 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005907 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005908 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005909 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005910 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005911 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005912 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04005913 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005914 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005915 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5916 PAGE_SIZE) {
5917 btrfs_release_path(path);
5918 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5919 if (ret)
5920 goto nopos;
5921 addr = private->filldir_buf;
5922 entries = 0;
5923 total_len = 0;
5924 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04005925 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005926
5927 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02005928 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005929 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005930 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5931 name_len);
David Sterba92d32172018-04-16 21:10:14 +02005932 put_unaligned(btrfs_filetype_table[btrfs_dir_type(leaf, di)],
5933 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005934 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02005935 put_unaligned(location.objectid, &entry->ino);
5936 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005937 entries++;
5938 addr += sizeof(struct dir_entry) + name_len;
5939 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08005940next:
5941 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005942 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005943 btrfs_release_path(path);
5944
5945 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5946 if (ret)
5947 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01005948
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005949 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005950 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005951 goto nopos;
5952
Zach Browndb62efb2013-07-11 16:19:42 -07005953 /*
5954 * Stop new entries from being returned after we return the last
5955 * entry.
5956 *
5957 * New directory entries are assigned a strictly increasing
5958 * offset. This means that new entries created during readdir
5959 * are *guaranteed* to be seen in the future by that readdir.
5960 * This has broken buggy programs which operate on names as
5961 * they're returned by readdir. Until we re-use freed offsets
5962 * we have this hack to stop new entries from being returned
5963 * under the assumption that they'll never reach this huge
5964 * offset.
5965 *
5966 * This is being careful not to overflow 32bit loff_t unless the
5967 * last entry requires it because doing so has broken 32bit apps
5968 * in the past.
5969 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005970 if (ctx->pos >= INT_MAX)
5971 ctx->pos = LLONG_MAX;
5972 else
5973 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005974nopos:
5975 ret = 0;
5976err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005977 if (put)
5978 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005979 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005980 return ret;
5981}
5982
Chris Mason39279cc2007-06-12 06:35:45 -04005983/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005984 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005985 * inode changes. But, it is most likely to find the inode in cache.
5986 * FIXME, needs more benchmarking...there are no reasons other than performance
5987 * to keep or drop this code.
5988 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005989static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005990{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005991 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005992 struct btrfs_root *root = BTRFS_I(inode)->root;
5993 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005994 int ret;
5995
Josef Bacik72ac3c02012-05-23 14:13:11 -04005996 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005997 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005998
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005999 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006000 if (IS_ERR(trans))
6001 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006002
6003 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006004 if (ret && ret == -ENOSPC) {
6005 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006006 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006007 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006008 if (IS_ERR(trans))
6009 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006010
Chris Mason94b60442010-05-26 11:02:00 -04006011 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006012 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006013 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006014 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006015 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006016
6017 return ret;
6018}
6019
6020/*
6021 * This is a copy of file_update_time. We need this so we can return error on
6022 * ENOSPC for updating the inode in the case of file write and mmap writes.
6023 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07006024static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04006025 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006026{
Alexander Block2bc5565282012-06-15 09:49:33 +02006027 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006028 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02006029
6030 if (btrfs_root_readonly(root))
6031 return -EROFS;
6032
Josef Bacike41f9412012-03-26 09:46:47 -04006033 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05006034 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04006035 if (flags & S_CTIME)
6036 inode->i_ctime = *now;
6037 if (flags & S_MTIME)
6038 inode->i_mtime = *now;
6039 if (flags & S_ATIME)
6040 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006041 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006042}
6043
Chris Masond352ac62008-09-29 15:18:18 -04006044/*
6045 * find the highest existing sequence number in a directory
6046 * and then set the in-memory index_cnt variable to reflect
6047 * free sequence numbers
6048 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006049static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006050{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006051 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006052 struct btrfs_key key, found_key;
6053 struct btrfs_path *path;
6054 struct extent_buffer *leaf;
6055 int ret;
6056
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006057 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006058 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006059 key.offset = (u64)-1;
6060
6061 path = btrfs_alloc_path();
6062 if (!path)
6063 return -ENOMEM;
6064
6065 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6066 if (ret < 0)
6067 goto out;
6068 /* FIXME: we should be able to handle this */
6069 if (ret == 0)
6070 goto out;
6071 ret = 0;
6072
6073 /*
6074 * MAGIC NUMBER EXPLANATION:
6075 * since we search a directory based on f_pos we have to start at 2
6076 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6077 * else has to start at 2
6078 */
6079 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006080 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006081 goto out;
6082 }
6083
6084 path->slots[0]--;
6085
6086 leaf = path->nodes[0];
6087 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6088
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006089 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006090 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006091 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006092 goto out;
6093 }
6094
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006095 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006096out:
6097 btrfs_free_path(path);
6098 return ret;
6099}
6100
Chris Masond352ac62008-09-29 15:18:18 -04006101/*
6102 * helper to find a free sequence number in a given directory. This current
6103 * code is very simple, later versions will do smarter things in the btree
6104 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006105int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006106{
6107 int ret = 0;
6108
Nikolay Borisov877574e2017-02-20 13:50:33 +02006109 if (dir->index_cnt == (u64)-1) {
6110 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006111 if (ret) {
6112 ret = btrfs_set_inode_index_count(dir);
6113 if (ret)
6114 return ret;
6115 }
Josef Bacikaec74772008-07-24 12:12:38 -04006116 }
6117
Nikolay Borisov877574e2017-02-20 13:50:33 +02006118 *index = dir->index_cnt;
6119 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006120
6121 return ret;
6122}
6123
Chris Masonb0d5d102014-09-08 13:08:51 -07006124static int btrfs_insert_inode_locked(struct inode *inode)
6125{
6126 struct btrfs_iget_args args;
6127 args.location = &BTRFS_I(inode)->location;
6128 args.root = BTRFS_I(inode)->root;
6129
6130 return insert_inode_locked4(inode,
6131 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6132 btrfs_find_actor, &args);
6133}
6134
Anand Jain19aee8d2017-07-18 17:37:05 +08006135/*
6136 * Inherit flags from the parent inode.
6137 *
6138 * Currently only the compression flags and the cow flags are inherited.
6139 */
6140static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6141{
6142 unsigned int flags;
6143
6144 if (!dir)
6145 return;
6146
6147 flags = BTRFS_I(dir)->flags;
6148
6149 if (flags & BTRFS_INODE_NOCOMPRESS) {
6150 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6151 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6152 } else if (flags & BTRFS_INODE_COMPRESS) {
6153 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6154 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6155 }
6156
6157 if (flags & BTRFS_INODE_NODATACOW) {
6158 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6159 if (S_ISREG(inode->i_mode))
6160 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6161 }
6162
David Sterba7b6a2212018-03-26 18:40:21 +02006163 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08006164}
6165
Chris Mason39279cc2007-06-12 06:35:45 -04006166static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6167 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006168 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006169 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006170 u64 ref_objectid, u64 objectid,
6171 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006172{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006173 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006174 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006175 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006176 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006177 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006178 struct btrfs_inode_ref *ref;
6179 struct btrfs_key key[2];
6180 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006181 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006182 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006183 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006184
Chris Mason5f39d392007-10-15 16:14:19 -04006185 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006186 if (!path)
6187 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006188
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006189 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006190 if (!inode) {
6191 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006192 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006193 }
Chris Mason39279cc2007-06-12 06:35:45 -04006194
Li Zefan581bb052011-04-20 10:06:11 +08006195 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006196 * O_TMPFILE, set link count to 0, so that after this point,
6197 * we fill in an inode item with the correct link count.
6198 */
6199 if (!name)
6200 set_nlink(inode, 0);
6201
6202 /*
Li Zefan581bb052011-04-20 10:06:11 +08006203 * we have to initialize this early, so we can reclaim the inode
6204 * number if we fail afterwards in this function.
6205 */
6206 inode->i_ino = objectid;
6207
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006208 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006209 trace_btrfs_inode_request(dir);
6210
Nikolay Borisov877574e2017-02-20 13:50:33 +02006211 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006212 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006213 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006214 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006215 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006216 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006217 } else if (dir) {
6218 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006219 }
6220 /*
6221 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006222 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006223 * number
6224 */
6225 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006226 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006227 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006228 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006229 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006230
Josef Bacik5dc562c2012-08-17 13:14:17 -04006231 /*
6232 * We could have gotten an inode number from somebody who was fsynced
6233 * and then removed in this same transaction, so let's just set full
6234 * sync since it will be a full sync anyway and this will blow away the
6235 * old info in the log.
6236 */
6237 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6238
Chris Mason9c583092008-01-29 15:15:18 -05006239 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006240 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006241 key[0].offset = 0;
6242
Chris Mason9c583092008-01-29 15:15:18 -05006243 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006244
6245 if (name) {
6246 /*
6247 * Start new inodes with an inode_ref. This is slightly more
6248 * efficient for small numbers of hard links since they will
6249 * be packed into one item. Extended refs will kick in if we
6250 * add more hard links than can fit in the ref item.
6251 */
6252 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006253 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006254 key[1].offset = ref_objectid;
6255
6256 sizes[1] = name_len + sizeof(*ref);
6257 }
Chris Mason9c583092008-01-29 15:15:18 -05006258
Chris Masonb0d5d102014-09-08 13:08:51 -07006259 location = &BTRFS_I(inode)->location;
6260 location->objectid = objectid;
6261 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006262 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006263
6264 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006265 if (ret < 0) {
6266 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006267 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006268 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006269
Chris Masonb9473432009-03-13 11:00:37 -04006270 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006271 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006272 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006273 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006274
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006275 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006276 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306277
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006278 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306279 inode->i_atime = inode->i_mtime;
6280 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006281 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306282
Chris Mason5f39d392007-10-15 16:14:19 -04006283 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6284 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006285 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006286 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006287 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006288
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006289 if (name) {
6290 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6291 struct btrfs_inode_ref);
6292 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6293 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6294 ptr = (unsigned long)(ref + 1);
6295 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6296 }
Chris Mason9c583092008-01-29 15:15:18 -05006297
Chris Mason5f39d392007-10-15 16:14:19 -04006298 btrfs_mark_buffer_dirty(path->nodes[0]);
6299 btrfs_free_path(path);
6300
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006301 btrfs_inherit_iflags(inode, dir);
6302
Al Viro569254b2011-07-24 17:08:40 -04006303 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006304 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006305 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006306 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006307 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6308 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006309 }
6310
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006311 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006312
6313 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006314 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006315
Alexander Block8ea05e32012-07-25 17:35:53 +02006316 btrfs_update_root_times(trans, root);
6317
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006318 ret = btrfs_inode_inherit_props(trans, inode, dir);
6319 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006320 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006321 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006322 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006323
Chris Mason39279cc2007-06-12 06:35:45 -04006324 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006325
6326fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006327 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006328fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006329 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006330 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006331 btrfs_free_path(path);
6332 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006333}
6334
6335static inline u8 btrfs_inode_type(struct inode *inode)
6336{
6337 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6338}
6339
Chris Masond352ac62008-09-29 15:18:18 -04006340/*
6341 * utility function to add 'inode' into 'parent_inode' with
6342 * a give name and a given sequence number.
6343 * if 'add_backref' is true, also insert a backref from the
6344 * inode to the parent directory.
6345 */
Chris Masone02119d2008-09-05 16:13:11 -04006346int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006347 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006348 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006349{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006350 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006351 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006352 struct btrfs_root *root = parent_inode->root;
6353 u64 ino = btrfs_ino(inode);
6354 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006355
Li Zefan33345d012011-04-20 10:31:50 +08006356 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006357 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006358 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006359 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006360 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006361 key.offset = 0;
6362 }
Chris Mason39279cc2007-06-12 06:35:45 -04006363
Li Zefan33345d012011-04-20 10:31:50 +08006364 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006365 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006366 root->root_key.objectid, parent_ino,
6367 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006368 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006369 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6370 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006371 }
6372
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006373 /* Nothing to clean up yet */
6374 if (ret)
6375 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006376
Lu Fengqi684572d2018-08-04 21:10:57 +08006377 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006378 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006379 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006380 goto fail_dir_item;
6381 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006382 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006383 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006384 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006385
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006386 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006387 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006388 inode_inc_iversion(&parent_inode->vfs_inode);
6389 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6390 current_time(&parent_inode->vfs_inode);
6391 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006392 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006393 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006394 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006395
6396fail_dir_item:
6397 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6398 u64 local_index;
6399 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006400 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006401 root->root_key.objectid, parent_ino,
6402 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006403
6404 } else if (add_backref) {
6405 u64 local_index;
6406 int err;
6407
6408 err = btrfs_del_inode_ref(trans, root, name, name_len,
6409 ino, parent_ino, &local_index);
6410 }
6411 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006412}
6413
6414static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006415 struct btrfs_inode *dir, struct dentry *dentry,
6416 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006417{
Josef Bacika1b075d2010-11-19 20:36:11 +00006418 int err = btrfs_add_link(trans, dir, inode,
6419 dentry->d_name.name, dentry->d_name.len,
6420 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006421 if (err > 0)
6422 err = -EEXIST;
6423 return err;
6424}
6425
Josef Bacik618e21d2007-07-11 10:18:17 -04006426static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006427 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006428{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006429 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006430 struct btrfs_trans_handle *trans;
6431 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006432 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006433 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006434 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006435 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006436
Josef Bacik9ed74f22009-09-11 16:12:44 -04006437 /*
6438 * 2 for inode item and ref
6439 * 2 for dir items
6440 * 1 for xattr if selinux is on
6441 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006442 trans = btrfs_start_transaction(root, 5);
6443 if (IS_ERR(trans))
6444 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006445
Li Zefan581bb052011-04-20 10:06:11 +08006446 err = btrfs_find_free_ino(root, &objectid);
6447 if (err)
6448 goto out_unlock;
6449
Josef Bacikaec74772008-07-24 12:12:38 -04006450 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006451 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6452 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006453 if (IS_ERR(inode)) {
6454 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006455 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006456 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006457 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006458
Casey Schauflerad19db72011-12-15 10:09:07 -05006459 /*
6460 * If the active LSM wants to access the inode during
6461 * d_instantiate it needs these. Smack checks to see
6462 * if the filesystem supports xattrs by looking at the
6463 * ops vector.
6464 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006465 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006466 init_special_inode(inode, inode->i_mode, rdev);
6467
6468 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006469 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006470 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006471
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006472 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6473 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006474 if (err)
6475 goto out_unlock;
6476
6477 btrfs_update_inode(trans, root, inode);
6478 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006479
Josef Bacik618e21d2007-07-11 10:18:17 -04006480out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006481 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006482 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006483 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006484 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006485 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006486 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006487 return err;
6488}
6489
Chris Mason39279cc2007-06-12 06:35:45 -04006490static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006491 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006492{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006493 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006494 struct btrfs_trans_handle *trans;
6495 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006496 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006497 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006498 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006499 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006500
Josef Bacik9ed74f22009-09-11 16:12:44 -04006501 /*
6502 * 2 for inode item and ref
6503 * 2 for dir items
6504 * 1 for xattr if selinux is on
6505 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006506 trans = btrfs_start_transaction(root, 5);
6507 if (IS_ERR(trans))
6508 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006509
Li Zefan581bb052011-04-20 10:06:11 +08006510 err = btrfs_find_free_ino(root, &objectid);
6511 if (err)
6512 goto out_unlock;
6513
Josef Bacikaec74772008-07-24 12:12:38 -04006514 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006515 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6516 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006517 if (IS_ERR(inode)) {
6518 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006519 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006520 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006521 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006522 /*
6523 * If the active LSM wants to access the inode during
6524 * d_instantiate it needs these. Smack checks to see
6525 * if the filesystem supports xattrs by looking at the
6526 * ops vector.
6527 */
6528 inode->i_fop = &btrfs_file_operations;
6529 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006530 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006531
6532 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6533 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006534 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006535
6536 err = btrfs_update_inode(trans, root, inode);
6537 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006538 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006539
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006540 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6541 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006542 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006543 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006544
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006545 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro1e2e5472018-05-04 08:23:01 -04006546 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006547
Chris Mason39279cc2007-06-12 06:35:45 -04006548out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006549 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006550 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006551 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006552 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006553 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006554 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006555 return err;
6556}
6557
6558static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6559 struct dentry *dentry)
6560{
Filipe Manana271dba452016-01-05 16:24:05 +00006561 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006562 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006563 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006564 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006565 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006566 int err;
6567 int drop_inode = 0;
6568
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006569 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006570 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006571 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006572
Mark Fashehf1863732012-08-08 11:32:27 -07006573 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006574 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006575
Nikolay Borisov877574e2017-02-20 13:50:33 +02006576 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006577 if (err)
6578 goto fail;
6579
Yan, Zhenga22285a2010-05-16 10:48:46 -04006580 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006581 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006582 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006583 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006584 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006585 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006586 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006587 if (IS_ERR(trans)) {
6588 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006589 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006590 goto fail;
6591 }
Chris Mason5f39d392007-10-15 16:14:19 -04006592
Miao Xie67de1172013-12-26 13:07:06 +08006593 /* There are several dir indexes for this inode, clear the cache. */
6594 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006595 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006596 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006597 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006598 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006599 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006600
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006601 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6602 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006603
Yan, Zhenga5719522009-09-24 09:17:31 -04006604 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006605 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006606 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006607 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006608 int ret;
6609
Yan, Zhenga5719522009-09-24 09:17:31 -04006610 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006611 if (err)
6612 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006613 if (inode->i_nlink == 1) {
6614 /*
6615 * If new hard link count is 1, it's a file created
6616 * with open(2) O_TMPFILE flag.
6617 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006618 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006619 if (err)
6620 goto fail;
6621 }
Al Viro08c422c2011-12-23 07:58:13 -05006622 d_instantiate(dentry, inode);
Filipe Mananad4682ba2018-06-11 19:24:28 +01006623 ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent,
6624 true, NULL);
6625 if (ret == BTRFS_NEED_TRANS_COMMIT) {
6626 err = btrfs_commit_transaction(trans);
6627 trans = NULL;
6628 }
Yan, Zhenga5719522009-09-24 09:17:31 -04006629 }
Chris Mason39279cc2007-06-12 06:35:45 -04006630
Chris Mason1832a6d2007-12-21 16:27:21 -05006631fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006632 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006633 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006634 if (drop_inode) {
6635 inode_dec_link_count(inode);
6636 iput(inode);
6637 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006638 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006639 return err;
6640}
6641
Al Viro18bb1db2011-07-26 01:41:39 -04006642static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006643{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006644 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006645 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006646 struct btrfs_trans_handle *trans;
6647 struct btrfs_root *root = BTRFS_I(dir)->root;
6648 int err = 0;
6649 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006650 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006651 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006652
Josef Bacik9ed74f22009-09-11 16:12:44 -04006653 /*
6654 * 2 items for inode and ref
6655 * 2 items for dir items
6656 * 1 for xattr if selinux is on
6657 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006658 trans = btrfs_start_transaction(root, 5);
6659 if (IS_ERR(trans))
6660 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006661
Li Zefan581bb052011-04-20 10:06:11 +08006662 err = btrfs_find_free_ino(root, &objectid);
6663 if (err)
6664 goto out_fail;
6665
Josef Bacikaec74772008-07-24 12:12:38 -04006666 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006667 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6668 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006669 if (IS_ERR(inode)) {
6670 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006671 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006672 goto out_fail;
6673 }
Chris Mason5f39d392007-10-15 16:14:19 -04006674
Chris Mason39279cc2007-06-12 06:35:45 -04006675 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006676 /* these must be set before we unlock the inode */
6677 inode->i_op = &btrfs_dir_inode_operations;
6678 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006679
Eric Paris2a7dba32011-02-01 11:05:39 -05006680 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006681 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006682 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006683
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006684 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006685 err = btrfs_update_inode(trans, root, inode);
6686 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006687 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006688
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006689 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6690 dentry->d_name.name,
6691 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006692 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006693 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006694
Al Viro1e2e5472018-05-04 08:23:01 -04006695 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006696 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006697
6698out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006699 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006700 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006701 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006702 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006703 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006704 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006705 return err;
6706}
6707
Chris Masonc8b97812008-10-29 14:49:59 -04006708static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006709 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006710 size_t pg_offset, u64 extent_offset,
6711 struct btrfs_file_extent_item *item)
6712{
6713 int ret;
6714 struct extent_buffer *leaf = path->nodes[0];
6715 char *tmp;
6716 size_t max_size;
6717 unsigned long inline_size;
6718 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006719 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006720
6721 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006722 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006723 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6724 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006725 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006726 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006727 if (!tmp)
6728 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006729 ptr = btrfs_file_extent_inline_start(item);
6730
6731 read_extent_buffer(leaf, tmp, ptr, inline_size);
6732
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006733 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006734 ret = btrfs_decompress(compress_type, tmp, page,
6735 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006736
6737 /*
6738 * decompression code contains a memset to fill in any space between the end
6739 * of the uncompressed data and the end of max_size in case the decompressed
6740 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6741 * the end of an inline extent and the beginning of the next block, so we
6742 * cover that region here.
6743 */
6744
6745 if (max_size + pg_offset < PAGE_SIZE) {
6746 char *map = kmap(page);
6747 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6748 kunmap(page);
6749 }
Chris Masonc8b97812008-10-29 14:49:59 -04006750 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006751 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006752}
6753
Chris Masond352ac62008-09-29 15:18:18 -04006754/*
6755 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006756 * the ugly parts come from merging extents from the disk with the in-ram
6757 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006758 * where the in-ram extents might be locked pending data=ordered completion.
6759 *
6760 * This also copies inline extents directly into the page.
6761 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006762struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Liu Bode2c6612018-08-25 13:47:59 +08006763 struct page *page,
6764 size_t pg_offset, u64 start, u64 len,
6765 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006766{
David Sterba3ffbd682018-06-29 10:56:42 +02006767 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masona52d9a82007-08-27 16:49:44 -04006768 int ret;
6769 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006770 u64 extent_start = 0;
6771 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006772 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006773 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006774 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006775 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006776 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006777 struct extent_buffer *leaf;
6778 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006779 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006780 struct extent_map_tree *em_tree = &inode->extent_tree;
6781 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006782 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006783
Chris Mason890871b2009-09-02 16:24:52 -04006784 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006785 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006786 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006787 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006788 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006789
Chris Masona52d9a82007-08-27 16:49:44 -04006790 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006791 if (em->start > start || em->start + em->len <= start)
6792 free_extent_map(em);
6793 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006794 free_extent_map(em);
6795 else
6796 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006797 }
David Sterba172ddd62011-04-21 00:48:27 +02006798 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006799 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006800 err = -ENOMEM;
6801 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006802 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006803 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006804 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006805 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006806 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006807 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006808
Liu Bobee6ec82018-08-17 05:05:28 +08006809 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04006810 if (!path) {
Liu Bobee6ec82018-08-17 05:05:28 +08006811 err = -ENOMEM;
6812 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04006813 }
6814
Liu Bobee6ec82018-08-17 05:05:28 +08006815 /* Chances are we'll be called again, so go ahead and do readahead */
6816 path->reada = READA_FORWARD;
6817
Liu Boe49aabd2018-08-25 13:47:09 +08006818 /*
6819 * Unless we're going to uncompress the inline extent, no sleep would
6820 * happen.
6821 */
6822 path->leave_spinning = 1;
6823
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006824 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006825 if (ret < 0) {
6826 err = ret;
6827 goto out;
6828 }
6829
6830 if (ret != 0) {
6831 if (path->slots[0] == 0)
6832 goto not_found;
6833 path->slots[0]--;
6834 }
6835
Chris Mason5f39d392007-10-15 16:14:19 -04006836 leaf = path->nodes[0];
6837 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006838 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006839 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006840 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006841 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006842 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006843 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006844 /*
6845 * If we backup past the first extent we want to move forward
6846 * and see if there is an extent in front of us, otherwise we'll
6847 * say there is a hole for our whole search range which can
6848 * cause problems.
6849 */
6850 extent_end = start;
6851 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006852 }
6853
Chris Mason5f39d392007-10-15 16:14:19 -04006854 found_type = btrfs_file_extent_type(leaf, item);
6855 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006856 if (found_type == BTRFS_FILE_EXTENT_REG ||
6857 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006858 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006859 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08006860
6861 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6862 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006863 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6864 size_t size;
Qu Wenruoe41ca582018-06-06 15:41:49 +08006865
6866 size = btrfs_file_extent_ram_bytes(leaf, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006867 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006868 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08006869
6870 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6871 path->slots[0],
6872 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006873 }
Josef Bacik25a50342013-10-14 12:08:38 -04006874next:
Yan Zheng9036c102008-10-30 14:19:41 -04006875 if (start >= extent_end) {
6876 path->slots[0]++;
6877 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6878 ret = btrfs_next_leaf(root, path);
6879 if (ret < 0) {
6880 err = ret;
6881 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006882 }
Yan Zheng9036c102008-10-30 14:19:41 -04006883 if (ret > 0)
6884 goto not_found;
6885 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006886 }
Yan Zheng9036c102008-10-30 14:19:41 -04006887 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6888 if (found_key.objectid != objectid ||
6889 found_key.type != BTRFS_EXTENT_DATA_KEY)
6890 goto not_found;
6891 if (start + len <= found_key.offset)
6892 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006893 if (start > found_key.offset)
6894 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006895 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006896 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006897 em->len = found_key.offset - start;
6898 goto not_found_em;
6899 }
6900
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006901 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006902 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006903
Yan Zhengd899e052008-10-30 14:25:28 -04006904 if (found_type == BTRFS_FILE_EXTENT_REG ||
6905 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006906 goto insert;
6907 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006908 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006909 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006910 size_t size;
6911 size_t extent_offset;
6912 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006913
Filipe Manana7ffbb592014-06-09 03:48:05 +01006914 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006915 goto out;
Yan689f9342007-10-29 11:41:07 -04006916
Qu Wenruoe41ca582018-06-06 15:41:49 +08006917 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006918 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006919 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6920 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006921 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006922 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006923 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006924 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006925 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08006926
6927 btrfs_set_path_blocking(path);
Edmund Nadolskibf46f522017-11-20 13:24:49 -07006928 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006929 if (btrfs_file_extent_compression(leaf, item) !=
6930 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006931 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006932 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006933 if (ret) {
6934 err = ret;
6935 goto out;
6936 }
Chris Masonc8b97812008-10-29 14:49:59 -04006937 } else {
6938 map = kmap(page);
6939 read_extent_buffer(leaf, map + pg_offset, ptr,
6940 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006941 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006942 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006943 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006944 copy_size);
6945 }
Chris Masonc8b97812008-10-29 14:49:59 -04006946 kunmap(page);
6947 }
Chris Mason179e29e2007-11-01 11:28:41 -04006948 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04006949 }
Chris Masond1310b22008-01-24 16:13:08 -05006950 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006951 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006952 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006953 }
6954not_found:
6955 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006956 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006957 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006958not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006959 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006960insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006961 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006962 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006963 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006964 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6965 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006966 err = -EIO;
6967 goto out;
6968 }
Chris Masond1310b22008-01-24 16:13:08 -05006969
6970 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006971 write_lock(&em_tree->lock);
David Sterbaf46b24c2018-04-03 21:45:57 +02006972 err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006973 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006974out:
Liu Boc6414282018-08-23 07:36:17 +08006975 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00006976
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006977 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006978
Chris Masona52d9a82007-08-27 16:49:44 -04006979 if (err) {
6980 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006981 return ERR_PTR(err);
6982 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006983 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006984 return em;
6985}
6986
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006987struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
6988 struct page *page,
6989 size_t pg_offset, u64 start, u64 len,
6990 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05006991{
6992 struct extent_map *em;
6993 struct extent_map *hole_em = NULL;
6994 u64 range_start = start;
6995 u64 end;
6996 u64 found;
6997 u64 found_end;
6998 int err = 0;
6999
7000 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7001 if (IS_ERR(em))
7002 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03007003 /*
7004 * If our em maps to:
7005 * - a hole or
7006 * - a pre-alloc extent,
7007 * there might actually be delalloc bytes behind it.
7008 */
7009 if (em->block_start != EXTENT_MAP_HOLE &&
7010 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7011 return em;
7012 else
7013 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007014
7015 /* check to see if we've wrapped (len == -1 or similar) */
7016 end = start + len;
7017 if (end < start)
7018 end = (u64)-1;
7019 else
7020 end -= 1;
7021
7022 em = NULL;
7023
7024 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007025 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007026 end, len, EXTENT_DELALLOC, 1);
7027 found_end = range_start + found;
7028 if (found_end < range_start)
7029 found_end = (u64)-1;
7030
7031 /*
7032 * we didn't find anything useful, return
7033 * the original results from get_extent()
7034 */
7035 if (range_start > end || found_end <= start) {
7036 em = hole_em;
7037 hole_em = NULL;
7038 goto out;
7039 }
7040
7041 /* adjust the range_start to make sure it doesn't
7042 * go backwards from the start they passed in
7043 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307044 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007045 found = found_end - range_start;
7046
7047 if (found > 0) {
7048 u64 hole_start = start;
7049 u64 hole_len = len;
7050
David Sterba172ddd62011-04-21 00:48:27 +02007051 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007052 if (!em) {
7053 err = -ENOMEM;
7054 goto out;
7055 }
7056 /*
7057 * when btrfs_get_extent can't find anything it
7058 * returns one huge hole
7059 *
7060 * make sure what it found really fits our range, and
7061 * adjust to make sure it is based on the start from
7062 * the caller
7063 */
7064 if (hole_em) {
7065 u64 calc_end = extent_map_end(hole_em);
7066
7067 if (calc_end <= start || (hole_em->start > end)) {
7068 free_extent_map(hole_em);
7069 hole_em = NULL;
7070 } else {
7071 hole_start = max(hole_em->start, start);
7072 hole_len = calc_end - hole_start;
7073 }
7074 }
7075 em->bdev = NULL;
7076 if (hole_em && range_start > hole_start) {
7077 /* our hole starts before our delalloc, so we
7078 * have to return just the parts of the hole
7079 * that go until the delalloc starts
7080 */
7081 em->len = min(hole_len,
7082 range_start - hole_start);
7083 em->start = hole_start;
7084 em->orig_start = hole_start;
7085 /*
7086 * don't adjust block start at all,
7087 * it is fixed at EXTENT_MAP_HOLE
7088 */
7089 em->block_start = hole_em->block_start;
7090 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007091 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7092 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007093 } else {
7094 em->start = range_start;
7095 em->len = found;
7096 em->orig_start = range_start;
7097 em->block_start = EXTENT_MAP_DELALLOC;
7098 em->block_len = found;
7099 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007100 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007101 return hole_em;
7102 }
7103out:
7104
7105 free_extent_map(hole_em);
7106 if (err) {
7107 free_extent_map(em);
7108 return ERR_PTR(err);
7109 }
7110 return em;
7111}
7112
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007113static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7114 const u64 start,
7115 const u64 len,
7116 const u64 orig_start,
7117 const u64 block_start,
7118 const u64 block_len,
7119 const u64 orig_block_len,
7120 const u64 ram_bytes,
7121 const int type)
7122{
7123 struct extent_map *em = NULL;
7124 int ret;
7125
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007126 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007127 em = create_io_em(inode, start, len, orig_start,
7128 block_start, block_len, orig_block_len,
7129 ram_bytes,
7130 BTRFS_COMPRESS_NONE, /* compress_type */
7131 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007132 if (IS_ERR(em))
7133 goto out;
7134 }
7135 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7136 len, block_len, type);
7137 if (ret) {
7138 if (em) {
7139 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007140 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007141 start + len - 1, 0);
7142 }
7143 em = ERR_PTR(ret);
7144 }
7145 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007146
7147 return em;
7148}
7149
Josef Bacik4b46fce2010-05-23 11:00:55 -04007150static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7151 u64 start, u64 len)
7152{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007153 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007154 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007155 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007156 struct btrfs_key ins;
7157 u64 alloc_hint;
7158 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007159
Josef Bacik4b46fce2010-05-23 11:00:55 -04007160 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007161 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007162 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007163 if (ret)
7164 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007165
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007166 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7167 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007168 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007169 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007170 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007171 btrfs_free_reserved_extent(fs_info, ins.objectid,
7172 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007173
Josef Bacik4b46fce2010-05-23 11:00:55 -04007174 return em;
7175}
7176
Chris Mason46bfbb52010-05-26 11:04:10 -04007177/*
7178 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7179 * block must be cow'd
7180 */
Josef Bacik00361582013-08-14 14:02:47 -04007181noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007182 u64 *orig_start, u64 *orig_block_len,
7183 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007184{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007185 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007186 struct btrfs_path *path;
7187 int ret;
7188 struct extent_buffer *leaf;
7189 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007190 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007191 struct btrfs_file_extent_item *fi;
7192 struct btrfs_key key;
7193 u64 disk_bytenr;
7194 u64 backref_offset;
7195 u64 extent_end;
7196 u64 num_bytes;
7197 int slot;
7198 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007199 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007200
Chris Mason46bfbb52010-05-26 11:04:10 -04007201 path = btrfs_alloc_path();
7202 if (!path)
7203 return -ENOMEM;
7204
David Sterbaf85b7372017-01-20 14:54:07 +01007205 ret = btrfs_lookup_file_extent(NULL, root, path,
7206 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007207 if (ret < 0)
7208 goto out;
7209
7210 slot = path->slots[0];
7211 if (ret == 1) {
7212 if (slot == 0) {
7213 /* can't find the item, must cow */
7214 ret = 0;
7215 goto out;
7216 }
7217 slot--;
7218 }
7219 ret = 0;
7220 leaf = path->nodes[0];
7221 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007222 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007223 key.type != BTRFS_EXTENT_DATA_KEY) {
7224 /* not our file or wrong item type, must cow */
7225 goto out;
7226 }
7227
7228 if (key.offset > offset) {
7229 /* Wrong offset, must cow */
7230 goto out;
7231 }
7232
7233 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7234 found_type = btrfs_file_extent_type(leaf, fi);
7235 if (found_type != BTRFS_FILE_EXTENT_REG &&
7236 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7237 /* not a regular extent, must cow */
7238 goto out;
7239 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007240
7241 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7242 goto out;
7243
Miao Xiee77751a2013-12-27 21:11:50 +08007244 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7245 if (extent_end <= offset)
7246 goto out;
7247
Chris Mason46bfbb52010-05-26 11:04:10 -04007248 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007249 if (disk_bytenr == 0)
7250 goto out;
7251
7252 if (btrfs_file_extent_compression(leaf, fi) ||
7253 btrfs_file_extent_encryption(leaf, fi) ||
7254 btrfs_file_extent_other_encoding(leaf, fi))
7255 goto out;
7256
Ethan Lien78d42952018-05-17 14:58:29 +08007257 /*
7258 * Do the same check as in btrfs_cross_ref_exist but without the
7259 * unnecessary search.
7260 */
7261 if (btrfs_file_extent_generation(leaf, fi) <=
7262 btrfs_root_last_snapshot(&root->root_item))
7263 goto out;
7264
Chris Mason46bfbb52010-05-26 11:04:10 -04007265 backref_offset = btrfs_file_extent_offset(leaf, fi);
7266
Josef Bacik7ee9e442013-06-21 16:37:03 -04007267 if (orig_start) {
7268 *orig_start = key.offset - backref_offset;
7269 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7270 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7271 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007272
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007273 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007274 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007275
7276 num_bytes = min(offset + *len, extent_end) - offset;
7277 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7278 u64 range_end;
7279
Jeff Mahoneyda170662016-06-15 09:22:56 -04007280 range_end = round_up(offset + num_bytes,
7281 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007282 ret = test_range_bit(io_tree, offset, range_end,
7283 EXTENT_DELALLOC, 0, NULL);
7284 if (ret) {
7285 ret = -EAGAIN;
7286 goto out;
7287 }
7288 }
7289
Josef Bacik1bda19e2013-10-18 12:10:36 -04007290 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007291
7292 /*
7293 * look for other files referencing this extent, if we
7294 * find any we must cow
7295 */
Josef Bacik00361582013-08-14 14:02:47 -04007296
Liu Boe4c3b2d2017-01-30 12:25:28 -08007297 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007298 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007299 if (ret) {
7300 ret = 0;
7301 goto out;
7302 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007303
7304 /*
7305 * adjust disk_bytenr and num_bytes to cover just the bytes
7306 * in this extent we are about to write. If there
7307 * are any csums in that range we have to cow in order
7308 * to keep the csums correct
7309 */
7310 disk_bytenr += backref_offset;
7311 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007312 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7313 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007314 /*
7315 * all of the above have passed, it is safe to overwrite this extent
7316 * without cow
7317 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007318 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007319 ret = 1;
7320out:
7321 btrfs_free_path(path);
7322 return ret;
7323}
7324
Josef Bacikeb838e72012-07-31 16:28:48 -04007325static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7326 struct extent_state **cached_state, int writing)
7327{
7328 struct btrfs_ordered_extent *ordered;
7329 int ret = 0;
7330
7331 while (1) {
7332 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007333 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007334 /*
7335 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007336 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007337 * extents in this range.
7338 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007339 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007340 lockend - lockstart + 1);
7341
7342 /*
7343 * We need to make sure there are no buffered pages in this
7344 * range either, we could have raced between the invalidate in
7345 * generic_file_direct_write and locking the extent. The
7346 * invalidate needs to happen so that reads after a write do not
7347 * get stale data.
7348 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007349 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007350 (!writing || !filemap_range_has_page(inode->i_mapping,
7351 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007352 break;
7353
7354 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007355 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007356
7357 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007358 /*
7359 * If we are doing a DIO read and the ordered extent we
7360 * found is for a buffered write, we can not wait for it
7361 * to complete and retry, because if we do so we can
7362 * deadlock with concurrent buffered writes on page
7363 * locks. This happens only if our DIO read covers more
7364 * than one extent map, if at this point has already
7365 * created an ordered extent for a previous extent map
7366 * and locked its range in the inode's io tree, and a
7367 * concurrent write against that previous extent map's
7368 * range and this range started (we unlock the ranges
7369 * in the io tree only when the bios complete and
7370 * buffered writes always lock pages before attempting
7371 * to lock range in the io tree).
7372 */
7373 if (writing ||
7374 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7375 btrfs_start_ordered_extent(inode, ordered, 1);
7376 else
7377 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007378 btrfs_put_ordered_extent(ordered);
7379 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007380 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007381 * We could trigger writeback for this range (and wait
7382 * for it to complete) and then invalidate the pages for
7383 * this range (through invalidate_inode_pages2_range()),
7384 * but that can lead us to a deadlock with a concurrent
7385 * call to readpages() (a buffered read or a defrag call
7386 * triggered a readahead) on a page lock due to an
7387 * ordered dio extent we created before but did not have
7388 * yet a corresponding bio submitted (whence it can not
7389 * complete), which makes readpages() wait for that
7390 * ordered extent to complete while holding a lock on
7391 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007392 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007393 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007394 }
7395
Filipe Mananaade77022016-02-18 14:28:55 +00007396 if (ret)
7397 break;
7398
Josef Bacikeb838e72012-07-31 16:28:48 -04007399 cond_resched();
7400 }
7401
7402 return ret;
7403}
7404
Liu Bo6f9994d2017-01-31 07:50:22 -08007405/* The callers of this must take lock_extent() */
7406static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7407 u64 orig_start, u64 block_start,
7408 u64 block_len, u64 orig_block_len,
7409 u64 ram_bytes, int compress_type,
7410 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007411{
7412 struct extent_map_tree *em_tree;
7413 struct extent_map *em;
7414 struct btrfs_root *root = BTRFS_I(inode)->root;
7415 int ret;
7416
Liu Bo6f9994d2017-01-31 07:50:22 -08007417 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7418 type == BTRFS_ORDERED_COMPRESSED ||
7419 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007420 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007421
Josef Bacik69ffb542012-09-11 15:40:07 -04007422 em_tree = &BTRFS_I(inode)->extent_tree;
7423 em = alloc_extent_map();
7424 if (!em)
7425 return ERR_PTR(-ENOMEM);
7426
7427 em->start = start;
7428 em->orig_start = orig_start;
7429 em->len = len;
7430 em->block_len = block_len;
7431 em->block_start = block_start;
7432 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007433 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007434 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007435 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007436 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007437 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007438 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007439 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007440 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7441 em->compress_type = compress_type;
7442 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007443
7444 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007445 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007446 em->start + em->len - 1, 0);
7447 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007448 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007449 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007450 /*
7451 * The caller has taken lock_extent(), who could race with us
7452 * to add em?
7453 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007454 } while (ret == -EEXIST);
7455
7456 if (ret) {
7457 free_extent_map(em);
7458 return ERR_PTR(ret);
7459 }
7460
Liu Bo6f9994d2017-01-31 07:50:22 -08007461 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007462 return em;
7463}
7464
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007465
7466static int btrfs_get_blocks_direct_read(struct extent_map *em,
7467 struct buffer_head *bh_result,
7468 struct inode *inode,
7469 u64 start, u64 len)
7470{
7471 if (em->block_start == EXTENT_MAP_HOLE ||
7472 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7473 return -ENOENT;
7474
7475 len = min(len, em->len - (start - em->start));
7476
7477 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7478 inode->i_blkbits;
7479 bh_result->b_size = len;
7480 bh_result->b_bdev = em->bdev;
7481 set_buffer_mapped(bh_result);
7482
7483 return 0;
7484}
7485
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007486static int btrfs_get_blocks_direct_write(struct extent_map **map,
7487 struct buffer_head *bh_result,
7488 struct inode *inode,
7489 struct btrfs_dio_data *dio_data,
7490 u64 start, u64 len)
7491{
7492 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7493 struct extent_map *em = *map;
7494 int ret = 0;
7495
7496 /*
7497 * We don't allocate a new extent in the following cases
7498 *
7499 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7500 * existing extent.
7501 * 2) The extent is marked as PREALLOC. We're good to go here and can
7502 * just use the extent.
7503 *
7504 */
7505 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7506 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7507 em->block_start != EXTENT_MAP_HOLE)) {
7508 int type;
7509 u64 block_start, orig_start, orig_block_len, ram_bytes;
7510
7511 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7512 type = BTRFS_ORDERED_PREALLOC;
7513 else
7514 type = BTRFS_ORDERED_NOCOW;
7515 len = min(len, em->len - (start - em->start));
7516 block_start = em->block_start + (start - em->start);
7517
7518 if (can_nocow_extent(inode, start, &len, &orig_start,
7519 &orig_block_len, &ram_bytes) == 1 &&
7520 btrfs_inc_nocow_writers(fs_info, block_start)) {
7521 struct extent_map *em2;
7522
7523 em2 = btrfs_create_dio_extent(inode, start, len,
7524 orig_start, block_start,
7525 len, orig_block_len,
7526 ram_bytes, type);
7527 btrfs_dec_nocow_writers(fs_info, block_start);
7528 if (type == BTRFS_ORDERED_PREALLOC) {
7529 free_extent_map(em);
7530 *map = em = em2;
7531 }
7532
7533 if (em2 && IS_ERR(em2)) {
7534 ret = PTR_ERR(em2);
7535 goto out;
7536 }
7537 /*
7538 * For inode marked NODATACOW or extent marked PREALLOC,
7539 * use the existing or preallocated extent, so does not
7540 * need to adjust btrfs_space_info's bytes_may_use.
7541 */
7542 btrfs_free_reserved_data_space_noquota(inode, start,
7543 len);
7544 goto skip_cow;
7545 }
7546 }
7547
7548 /* this will cow the extent */
7549 len = bh_result->b_size;
7550 free_extent_map(em);
7551 *map = em = btrfs_new_extent_direct(inode, start, len);
7552 if (IS_ERR(em)) {
7553 ret = PTR_ERR(em);
7554 goto out;
7555 }
7556
7557 len = min(len, em->len - (start - em->start));
7558
7559skip_cow:
7560 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7561 inode->i_blkbits;
7562 bh_result->b_size = len;
7563 bh_result->b_bdev = em->bdev;
7564 set_buffer_mapped(bh_result);
7565
7566 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7567 set_buffer_new(bh_result);
7568
7569 /*
7570 * Need to update the i_size under the extent lock so buffered
7571 * readers will get the updated i_size when we unlock.
7572 */
7573 if (!dio_data->overwrite && start + len > i_size_read(inode))
7574 i_size_write(inode, start + len);
7575
7576 WARN_ON(dio_data->reserve < len);
7577 dio_data->reserve -= len;
7578 dio_data->unsubmitted_oe_range_end = start + len;
7579 current->journal_info = dio_data;
7580out:
7581 return ret;
7582}
7583
Josef Bacik4b46fce2010-05-23 11:00:55 -04007584static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7585 struct buffer_head *bh_result, int create)
7586{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007587 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007588 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007589 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307590 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007591 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007592 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007593 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007594 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007595 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007596
Miao Xie172a5042013-02-21 02:48:22 -07007597 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007598 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007599 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007600 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007601
Josef Bacikc3298612012-08-03 16:49:19 -04007602 lockstart = start;
7603 lockend = start + len - 1;
7604
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007605 if (current->journal_info) {
7606 /*
7607 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007608 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007609 * confused.
7610 */
chandan50745b02015-08-28 21:10:13 +05307611 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007612 current->journal_info = NULL;
7613 }
7614
Josef Bacikeb838e72012-07-31 16:28:48 -04007615 /*
7616 * If this errors out it's because we couldn't invalidate pagecache for
7617 * this range and we need to fallback to buffered.
7618 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007619 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7620 create)) {
7621 ret = -ENOTBLK;
7622 goto err;
7623 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007624
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007625 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007626 if (IS_ERR(em)) {
7627 ret = PTR_ERR(em);
7628 goto unlock_err;
7629 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007630
7631 /*
7632 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7633 * io. INLINE is special, and we could probably kludge it in here, but
7634 * it's still buffered so for safety lets just fall back to the generic
7635 * buffered path.
7636 *
7637 * For COMPRESSED we _have_ to read the entire extent in so we can
7638 * decompress it, so there will be buffering required no matter what we
7639 * do, so go ahead and fallback to buffered.
7640 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007641 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007642 * to buffered IO. Don't blame me, this is the price we pay for using
7643 * the generic code.
7644 */
7645 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7646 em->block_start == EXTENT_MAP_INLINE) {
7647 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007648 ret = -ENOTBLK;
7649 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007650 }
7651
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007652 if (create) {
7653 ret = btrfs_get_blocks_direct_write(&em, bh_result, inode,
7654 dio_data, start, len);
7655 if (ret < 0)
7656 goto unlock_err;
7657
7658 /* clear and unlock the entire range */
7659 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7660 unlock_bits, 1, 0, &cached_state);
7661 } else {
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007662 ret = btrfs_get_blocks_direct_read(em, bh_result, inode,
7663 start, len);
7664 /* Can be negative only if we read from a hole */
7665 if (ret < 0) {
7666 ret = 0;
7667 free_extent_map(em);
7668 goto unlock_err;
7669 }
7670 /*
7671 * We need to unlock only the end area that we aren't using.
7672 * The rest is going to be unlocked by the endio routine.
7673 */
7674 lockstart = start + bh_result->b_size;
7675 if (lockstart < lockend) {
7676 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7677 lockend, unlock_bits, 1, 0,
7678 &cached_state);
7679 } else {
7680 free_extent_state(cached_state);
7681 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007682 }
7683
Josef Bacik4b46fce2010-05-23 11:00:55 -04007684 free_extent_map(em);
7685
7686 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007687
7688unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007689 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaae0f1622017-10-31 16:37:52 +01007690 unlock_bits, 1, 0, &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007691err:
chandan50745b02015-08-28 21:10:13 +05307692 if (dio_data)
7693 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007694 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007695}
7696
Omar Sandoval58efbc92017-08-22 23:45:59 -07007697static inline blk_status_t submit_dio_repair_bio(struct inode *inode,
7698 struct bio *bio,
7699 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007700{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007701 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007702 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007703
Mike Christie37226b22016-06-05 14:31:52 -05007704 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007705
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007706 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007707 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007708 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007709
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007710 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Nikolay Borisovea057f62017-12-13 10:25:38 +02007711
Miao Xie8b110e32014-09-12 18:44:03 +08007712 return ret;
7713}
7714
7715static int btrfs_check_dio_repairable(struct inode *inode,
7716 struct bio *failed_bio,
7717 struct io_failure_record *failrec,
7718 int failed_mirror)
7719{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007720 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007721 int num_copies;
7722
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007723 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007724 if (num_copies == 1) {
7725 /*
7726 * we only have a single copy of the data, so don't bother with
7727 * all the retry and error correction code that follows. no
7728 * matter what the error is, it is very likely to persist.
7729 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007730 btrfs_debug(fs_info,
7731 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7732 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007733 return 0;
7734 }
7735
7736 failrec->failed_mirror = failed_mirror;
7737 failrec->this_mirror++;
7738 if (failrec->this_mirror == failed_mirror)
7739 failrec->this_mirror++;
7740
7741 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007742 btrfs_debug(fs_info,
7743 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7744 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007745 return 0;
7746 }
7747
7748 return 1;
7749}
7750
Omar Sandoval58efbc92017-08-22 23:45:59 -07007751static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio,
7752 struct page *page, unsigned int pgoff,
7753 u64 start, u64 end, int failed_mirror,
7754 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007755{
7756 struct io_failure_record *failrec;
Josef Bacik7870d082017-05-05 11:57:15 -04007757 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7758 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007759 struct bio *bio;
7760 int isector;
David Sterbaf1c77c52017-06-06 19:03:49 +02007761 unsigned int read_mode = 0;
Liu Bo17347ce2017-05-15 15:33:27 -07007762 int segs;
Miao Xie8b110e32014-09-12 18:44:03 +08007763 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007764 blk_status_t status;
Ming Leic16a8ac2017-12-18 20:22:12 +08007765 struct bio_vec bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007766
Mike Christie37226b22016-06-05 14:31:52 -05007767 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007768
7769 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7770 if (ret)
Omar Sandoval58efbc92017-08-22 23:45:59 -07007771 return errno_to_blk_status(ret);
Miao Xie8b110e32014-09-12 18:44:03 +08007772
7773 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7774 failed_mirror);
7775 if (!ret) {
Josef Bacik7870d082017-05-05 11:57:15 -04007776 free_io_failure(failure_tree, io_tree, failrec);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007777 return BLK_STS_IOERR;
Miao Xie8b110e32014-09-12 18:44:03 +08007778 }
7779
Liu Bo17347ce2017-05-15 15:33:27 -07007780 segs = bio_segments(failed_bio);
Ming Leic16a8ac2017-12-18 20:22:12 +08007781 bio_get_first_bvec(failed_bio, &bvec);
Liu Bo17347ce2017-05-15 15:33:27 -07007782 if (segs > 1 ||
Ming Leic16a8ac2017-12-18 20:22:12 +08007783 (bvec.bv_len > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007784 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007785
7786 isector = start - btrfs_io_bio(failed_bio)->logical;
7787 isector >>= inode->i_sb->s_blocksize_bits;
7788 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307789 pgoff, isector, repair_endio, repair_arg);
David Sterbaebcc3262018-06-29 10:56:53 +02007790 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie8b110e32014-09-12 18:44:03 +08007791
7792 btrfs_debug(BTRFS_I(inode)->root->fs_info,
David Sterba913e1532017-07-13 15:32:18 +02007793 "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d",
Miao Xie8b110e32014-09-12 18:44:03 +08007794 read_mode, failrec->this_mirror, failrec->in_validation);
7795
Omar Sandoval58efbc92017-08-22 23:45:59 -07007796 status = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
7797 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04007798 free_io_failure(failure_tree, io_tree, failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007799 bio_put(bio);
7800 }
7801
Omar Sandoval58efbc92017-08-22 23:45:59 -07007802 return status;
Miao Xie8b110e32014-09-12 18:44:03 +08007803}
7804
7805struct btrfs_retry_complete {
7806 struct completion done;
7807 struct inode *inode;
7808 u64 start;
7809 int uptodate;
7810};
7811
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007812static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007813{
7814 struct btrfs_retry_complete *done = bio->bi_private;
Josef Bacik7870d082017-05-05 11:57:15 -04007815 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007816 struct bio_vec *bvec;
Josef Bacik7870d082017-05-05 11:57:15 -04007817 struct extent_io_tree *io_tree, *failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007818 int i;
7819
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007820 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007821 goto end;
7822
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307823 ASSERT(bio->bi_vcnt == 1);
Josef Bacik7870d082017-05-05 11:57:15 -04007824 io_tree = &BTRFS_I(inode)->io_tree;
7825 failure_tree = &BTRFS_I(inode)->io_failure_tree;
Ming Lei263663c2017-12-18 20:22:04 +08007826 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307827
Miao Xie8b110e32014-09-12 18:44:03 +08007828 done->uptodate = 1;
David Sterbac09abff2017-07-13 18:10:07 +02007829 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007830 bio_for_each_segment_all(bvec, bio, i)
Josef Bacik7870d082017-05-05 11:57:15 -04007831 clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree,
7832 io_tree, done->start, bvec->bv_page,
7833 btrfs_ino(BTRFS_I(inode)), 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007834end:
7835 complete(&done->done);
7836 bio_put(bio);
7837}
7838
Omar Sandoval58efbc92017-08-22 23:45:59 -07007839static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode,
7840 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007841{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307842 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007843 struct bio_vec bvec;
7844 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007845 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007846 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307847 unsigned int pgoff;
7848 u32 sectorsize;
7849 int nr_sectors;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007850 blk_status_t ret;
7851 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007852
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307853 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007854 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307855
Miao Xiec1dc0892014-09-12 18:43:56 +08007856 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007857 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007858 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007859
Liu Bo17347ce2017-05-15 15:33:27 -07007860 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7861 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7862 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307863
7864next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007865 done.uptodate = 0;
7866 done.start = start;
7867 init_completion(&done.done);
7868
Liu Bo17347ce2017-05-15 15:33:27 -07007869 ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307870 pgoff, start, start + sectorsize - 1,
7871 io_bio->mirror_num,
7872 btrfs_retry_endio_nocsum, &done);
Liu Bo629ebf42017-05-15 17:20:07 -07007873 if (ret) {
7874 err = ret;
7875 goto next;
7876 }
Miao Xie8b110e32014-09-12 18:44:03 +08007877
David Sterba9c17f6c2017-07-19 19:26:45 +02007878 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007879
7880 if (!done.uptodate) {
7881 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307882 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007883 }
7884
Liu Bo629ebf42017-05-15 17:20:07 -07007885next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307886 start += sectorsize;
7887
Liu Bo97bf5a52017-04-07 13:11:10 -07007888 nr_sectors--;
7889 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307890 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007891 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307892 goto next_block_or_try_again;
7893 }
Miao Xie8b110e32014-09-12 18:44:03 +08007894 }
7895
Liu Bo629ebf42017-05-15 17:20:07 -07007896 return err;
Miao Xie8b110e32014-09-12 18:44:03 +08007897}
7898
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007899static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007900{
7901 struct btrfs_retry_complete *done = bio->bi_private;
7902 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04007903 struct extent_io_tree *io_tree, *failure_tree;
7904 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007905 struct bio_vec *bvec;
7906 int uptodate;
7907 int ret;
7908 int i;
7909
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007910 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007911 goto end;
7912
7913 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307914
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307915 ASSERT(bio->bi_vcnt == 1);
Ming Lei263663c2017-12-18 20:22:04 +08007916 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307917
Josef Bacik7870d082017-05-05 11:57:15 -04007918 io_tree = &BTRFS_I(inode)->io_tree;
7919 failure_tree = &BTRFS_I(inode)->io_failure_tree;
7920
David Sterbac09abff2017-07-13 18:10:07 +02007921 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007922 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik7870d082017-05-05 11:57:15 -04007923 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7924 bvec->bv_offset, done->start,
7925 bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007926 if (!ret)
Josef Bacik7870d082017-05-05 11:57:15 -04007927 clean_io_failure(BTRFS_I(inode)->root->fs_info,
7928 failure_tree, io_tree, done->start,
7929 bvec->bv_page,
7930 btrfs_ino(BTRFS_I(inode)),
7931 bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08007932 else
7933 uptodate = 0;
7934 }
7935
7936 done->uptodate = uptodate;
7937end:
7938 complete(&done->done);
7939 bio_put(bio);
7940}
7941
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007942static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
7943 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08007944{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307945 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007946 struct bio_vec bvec;
7947 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007948 struct btrfs_retry_complete done;
7949 u64 start;
7950 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307951 u32 sectorsize;
7952 int nr_sectors;
7953 unsigned int pgoff;
7954 int csum_pos;
Liu Boef7cdac12017-04-13 18:11:48 -07007955 bool uptodate = (err == 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007956 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007957 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08007958
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307959 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007960 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307961
Omar Sandoval58efbc92017-08-22 23:45:59 -07007962 err = BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08007963 start = io_bio->logical;
7964 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007965 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007966
Liu Bo17347ce2017-05-15 15:33:27 -07007967 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7968 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307969
Liu Bo17347ce2017-05-15 15:33:27 -07007970 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307971next_block:
Liu Boef7cdac12017-04-13 18:11:48 -07007972 if (uptodate) {
7973 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
7974 ret = __readpage_endio_check(inode, io_bio, csum_pos,
7975 bvec.bv_page, pgoff, start, sectorsize);
7976 if (likely(!ret))
7977 goto next;
7978 }
Miao Xie8b110e32014-09-12 18:44:03 +08007979try_again:
7980 done.uptodate = 0;
7981 done.start = start;
7982 init_completion(&done.done);
7983
Omar Sandoval58efbc92017-08-22 23:45:59 -07007984 status = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
7985 pgoff, start, start + sectorsize - 1,
7986 io_bio->mirror_num, btrfs_retry_endio,
7987 &done);
7988 if (status) {
7989 err = status;
Miao Xie8b110e32014-09-12 18:44:03 +08007990 goto next;
7991 }
7992
David Sterba9c17f6c2017-07-19 19:26:45 +02007993 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007994
7995 if (!done.uptodate) {
7996 /* We might have another mirror, so try again */
7997 goto try_again;
7998 }
7999next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308000 offset += sectorsize;
8001 start += sectorsize;
8002
8003 ASSERT(nr_sectors);
8004
Liu Bo97bf5a52017-04-07 13:11:10 -07008005 nr_sectors--;
8006 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308007 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07008008 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308009 goto next_block;
8010 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008011 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008012
8013 return err;
8014}
8015
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008016static blk_status_t btrfs_subio_endio_read(struct inode *inode,
8017 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08008018{
8019 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8020
8021 if (skip_csum) {
8022 if (unlikely(err))
8023 return __btrfs_correct_data_nocsum(inode, io_bio);
8024 else
Omar Sandoval58efbc92017-08-22 23:45:59 -07008025 return BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08008026 } else {
8027 return __btrfs_subio_endio_read(inode, io_bio, err);
8028 }
8029}
8030
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008031static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008032{
8033 struct btrfs_dio_private *dip = bio->bi_private;
8034 struct inode *inode = dip->inode;
8035 struct bio *dio_bio;
8036 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008037 blk_status_t err = bio->bi_status;
Miao Xiec1dc0892014-09-12 18:43:56 +08008038
Liu Bo99c4e3b92017-09-15 15:06:51 -06008039 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
Miao Xie8b110e32014-09-12 18:44:03 +08008040 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008041
Josef Bacik4b46fce2010-05-23 11:00:55 -04008042 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008043 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008044 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008045
Josef Bacik4b46fce2010-05-23 11:00:55 -04008046 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008047
Liu Bo99c4e3b92017-09-15 15:06:51 -06008048 dio_bio->bi_status = err;
Christoph Hellwig40553512017-06-03 09:37:58 +02008049 dio_end_io(dio_bio);
Miao Xie23ea8e52014-09-12 18:43:54 +08008050
8051 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008052 io_bio->end_io(io_bio, blk_status_to_errno(err));
Chris Mason9be33952013-05-17 18:30:14 -04008053 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008054}
8055
Qu Wenruo524272602017-03-08 10:25:52 +08008056static void __endio_write_update_ordered(struct inode *inode,
8057 const u64 offset, const u64 bytes,
8058 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008059{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008060 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008061 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008062 struct btrfs_workqueue *wq;
8063 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008064 u64 ordered_offset = offset;
8065 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09008066 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008067
Qu Wenruo524272602017-03-08 10:25:52 +08008068 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8069 wq = fs_info->endio_freespace_worker;
8070 func = btrfs_freespace_write_helper;
8071 } else {
8072 wq = fs_info->endio_write_workers;
8073 func = btrfs_endio_write_helper;
8074 }
8075
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03008076 while (ordered_offset < offset + bytes) {
8077 last_offset = ordered_offset;
8078 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
8079 &ordered_offset,
8080 ordered_bytes,
8081 uptodate)) {
8082 btrfs_init_work(&ordered->work, func,
8083 finish_ordered_fn,
8084 NULL, NULL);
8085 btrfs_queue_work(wq, &ordered->work);
8086 }
8087 /*
8088 * If btrfs_dec_test_ordered_pending does not find any ordered
8089 * extent in the range, we can exit.
8090 */
8091 if (ordered_offset == last_offset)
8092 return;
8093 /*
8094 * Our bio might span multiple ordered extents. In this case
8095 * we keep goin until we have accounted the whole dio.
8096 */
8097 if (ordered_offset < offset + bytes) {
8098 ordered_bytes = offset + bytes - ordered_offset;
8099 ordered = NULL;
8100 }
Chris Mason163cf092010-11-28 19:56:33 -05008101 }
Filipe Manana14543772015-11-24 16:23:54 +00008102}
8103
8104static void btrfs_endio_direct_write(struct bio *bio)
8105{
8106 struct btrfs_dio_private *dip = bio->bi_private;
8107 struct bio *dio_bio = dip->dio_bio;
8108
Qu Wenruo524272602017-03-08 10:25:52 +08008109 __endio_write_update_ordered(dip->inode, dip->logical_offset,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008110 dip->bytes, !bio->bi_status);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008111
Josef Bacik4b46fce2010-05-23 11:00:55 -04008112 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008113
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008114 dio_bio->bi_status = bio->bi_status;
Christoph Hellwig40553512017-06-03 09:37:58 +02008115 dio_end_io(dio_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008116 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008117}
8118
David Sterbad0ee3932018-03-08 14:35:48 +01008119static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data,
David Sterbad0779292018-03-08 13:47:33 +01008120 struct bio *bio, u64 offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04008121{
Josef Bacikc6100a42017-05-05 11:57:13 -04008122 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008123 blk_status_t ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008124 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008125 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008126 return 0;
8127}
8128
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008129static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008130{
8131 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008132 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008133
Miao Xie8b110e32014-09-12 18:44:03 +08008134 if (err)
8135 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008136 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008137 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8138 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008139 (unsigned long long)bio->bi_iter.bi_sector,
8140 bio->bi_iter.bi_size, err);
8141
8142 if (dip->subio_endio)
8143 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008144
8145 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008146 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008147 * We want to perceive the errors flag being set before
8148 * decrementing the reference count. We don't need a barrier
8149 * since atomic operations with a return value are fully
8150 * ordered as per atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008151 */
Nikolay Borisovde224b72018-02-14 10:53:36 +02008152 dip->errors = 1;
Miao Xiee65e1532010-11-22 03:04:43 +00008153 }
8154
8155 /* if there are more bios still pending for this dio, just exit */
8156 if (!atomic_dec_and_test(&dip->pending_bios))
8157 goto out;
8158
Chris Mason9be33952013-05-17 18:30:14 -04008159 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008160 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008161 } else {
Anand Jain2dbe0c72017-10-14 08:35:56 +08008162 dip->dio_bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008163 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008164 }
8165out:
8166 bio_put(bio);
8167}
8168
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008169static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008170 struct btrfs_dio_private *dip,
8171 struct bio *bio,
8172 u64 file_offset)
8173{
8174 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8175 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008176 blk_status_t ret;
Miao Xiec1dc0892014-09-12 18:43:56 +08008177
8178 /*
8179 * We load all the csum data we need when we submit
8180 * the first bio to reduce the csum tree search and
8181 * contention.
8182 */
8183 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008184 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008185 file_offset);
8186 if (ret)
8187 return ret;
8188 }
8189
8190 if (bio == dip->orig_bio)
8191 return 0;
8192
8193 file_offset -= dip->logical_offset;
8194 file_offset >>= inode->i_sb->s_blocksize_bits;
8195 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8196
8197 return 0;
8198}
8199
David Sterbad0ee3932018-03-08 14:35:48 +01008200static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8201 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008202{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008203 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008204 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008205 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008206 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008207
Liu Bo4c274bc2017-11-01 17:19:27 -06008208 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008209 if (async_submit)
8210 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8211
Josef Bacik5fd02042012-05-02 14:00:54 -04008212 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008213 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008214 if (ret)
8215 goto err;
8216 }
Miao Xiee65e1532010-11-22 03:04:43 +00008217
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008218 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008219 goto map;
8220
8221 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04008222 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
8223 file_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02008224 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00008225 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008226 } else if (write) {
8227 /*
8228 * If we aren't doing async submit, calculate the csum of the
8229 * bio now.
8230 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008231 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008232 if (ret)
8233 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008234 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008235 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008236 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008237 if (ret)
8238 goto err;
8239 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008240map:
Liu Bo9b4a9b22017-08-18 11:54:02 -06008241 ret = btrfs_map_bio(fs_info, bio, 0, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008242err:
Miao Xiee65e1532010-11-22 03:04:43 +00008243 return ret;
8244}
8245
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008246static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip)
Miao Xiee65e1532010-11-22 03:04:43 +00008247{
8248 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008249 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008250 struct bio *bio;
8251 struct bio *orig_bio = dip->orig_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008252 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008253 u64 file_offset = dip->logical_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008254 u64 map_length;
Josef Bacik1ae39932011-04-06 14:41:34 -04008255 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008256 u64 submit_len;
8257 int clone_offset = 0;
8258 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308259 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008260 blk_status_t status;
Miao Xiee65e1532010-11-22 03:04:43 +00008261
Kent Overstreet4f024f32013-10-11 15:44:27 -07008262 map_length = orig_bio->bi_iter.bi_size;
Liu Bo725130b2017-05-16 09:51:39 -07008263 submit_len = map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008264 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8265 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008266 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008267 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008268
Liu Bo725130b2017-05-16 09:51:39 -07008269 if (map_length >= submit_len) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008270 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008271 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008272 goto submit;
8273 }
8274
David Woodhouse53b381b2013-01-29 18:40:14 -05008275 /* async crcs make it difficult to collect full stripe writes. */
Jeff Mahoney1b868262017-05-17 11:38:35 -04008276 if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008277 async_submit = 0;
8278 else
8279 async_submit = 1;
8280
Liu Bo725130b2017-05-16 09:51:39 -07008281 /* bio split */
8282 ASSERT(map_length <= INT_MAX);
Josef Bacik02f57c72011-04-06 14:25:44 -04008283 atomic_inc(&dip->pending_bios);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008284 do {
Liu Bo725130b2017-05-16 09:51:39 -07008285 clone_len = min_t(int, submit_len, map_length);
Josef Bacik02f57c72011-04-06 14:25:44 -04008286
Liu Bo725130b2017-05-16 09:51:39 -07008287 /*
8288 * This will never fail as it's passing GPF_NOFS and
8289 * the allocation is backed by btrfs_bioset.
8290 */
Liu Boe4770942017-05-16 10:57:14 -07008291 bio = btrfs_bio_clone_partial(orig_bio, clone_offset,
Liu Bo725130b2017-05-16 09:51:39 -07008292 clone_len);
8293 bio->bi_private = dip;
8294 bio->bi_end_io = btrfs_end_dio_bio;
8295 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008296
Liu Bo725130b2017-05-16 09:51:39 -07008297 ASSERT(submit_len >= clone_len);
8298 submit_len -= clone_len;
8299 if (submit_len == 0)
8300 break;
Miao Xiee65e1532010-11-22 03:04:43 +00008301
Liu Bo725130b2017-05-16 09:51:39 -07008302 /*
8303 * Increase the count before we submit the bio so we know
8304 * the end IO handler won't happen before we increase the
8305 * count. Otherwise, the dip might get freed before we're
8306 * done setting it up.
8307 */
8308 atomic_inc(&dip->pending_bios);
Miao Xiee65e1532010-11-22 03:04:43 +00008309
David Sterbad0ee3932018-03-08 14:35:48 +01008310 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008311 async_submit);
8312 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008313 bio_put(bio);
8314 atomic_dec(&dip->pending_bios);
8315 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00008316 }
Liu Bo725130b2017-05-16 09:51:39 -07008317
8318 clone_offset += clone_len;
8319 start_sector += clone_len >> 9;
8320 file_offset += clone_len;
8321
8322 map_length = submit_len;
8323 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
8324 start_sector << 9, &map_length, NULL, 0);
8325 if (ret)
8326 goto out_err;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008327 } while (submit_len > 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008328
Josef Bacik02f57c72011-04-06 14:25:44 -04008329submit:
David Sterbad0ee3932018-03-08 14:35:48 +01008330 status = btrfs_submit_dio_bio(bio, inode, file_offset, async_submit);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008331 if (!status)
Miao Xiee65e1532010-11-22 03:04:43 +00008332 return 0;
8333
8334 bio_put(bio);
8335out_err:
8336 dip->errors = 1;
8337 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008338 * Before atomic variable goto zero, we must make sure dip->errors is
8339 * perceived to be set. This ordering is ensured by the fact that an
8340 * atomic operations with a return value are fully ordered as per
8341 * atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008342 */
Miao Xiee65e1532010-11-22 03:04:43 +00008343 if (atomic_dec_and_test(&dip->pending_bios))
8344 bio_io_error(dip->orig_bio);
8345
8346 /* bio_end_io() will handle error, so we needn't return it */
8347 return 0;
8348}
8349
Mike Christie8a4c1e42016-06-05 14:31:50 -05008350static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8351 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008352{
Filipe Manana61de7182015-07-01 12:13:10 +01008353 struct btrfs_dio_private *dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008354 struct bio *bio = NULL;
8355 struct btrfs_io_bio *io_bio;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008356 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008357 int ret = 0;
8358
David Sterba8b6c1d52017-06-02 17:48:13 +02008359 bio = btrfs_bio_clone(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008360
Miao Xiec1dc0892014-09-12 18:43:56 +08008361 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008362 if (!dip) {
8363 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008364 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008365 }
8366
8367 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008368 dip->inode = inode;
8369 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008370 dip->bytes = dio_bio->bi_iter.bi_size;
8371 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Liu Bo3892ac92017-04-17 15:00:28 -07008372 bio->bi_private = dip;
8373 dip->orig_bio = bio;
Chris Mason9be33952013-05-17 18:30:14 -04008374 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008375 atomic_set(&dip->pending_bios, 0);
Liu Bo3892ac92017-04-17 15:00:28 -07008376 io_bio = btrfs_io_bio(bio);
8377 io_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008378
Miao Xiec1dc0892014-09-12 18:43:56 +08008379 if (write) {
Liu Bo3892ac92017-04-17 15:00:28 -07008380 bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008381 } else {
Liu Bo3892ac92017-04-17 15:00:28 -07008382 bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008383 dip->subio_endio = btrfs_subio_endio_read;
8384 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008385
Filipe Mananaf28a4922015-12-08 19:23:20 +00008386 /*
8387 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8388 * even if we fail to submit a bio, because in such case we do the
8389 * corresponding error handling below and it must not be done a second
8390 * time by btrfs_direct_IO().
8391 */
8392 if (write) {
8393 struct btrfs_dio_data *dio_data = current->journal_info;
8394
8395 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8396 dip->bytes;
8397 dio_data->unsubmitted_oe_range_start =
8398 dio_data->unsubmitted_oe_range_end;
8399 }
8400
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008401 ret = btrfs_submit_direct_hook(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00008402 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008403 return;
Chris Mason9be33952013-05-17 18:30:14 -04008404
Liu Bo3892ac92017-04-17 15:00:28 -07008405 if (io_bio->end_io)
8406 io_bio->end_io(io_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008407
Josef Bacik4b46fce2010-05-23 11:00:55 -04008408free_ordered:
8409 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008410 * If we arrived here it means either we failed to submit the dip
8411 * or we either failed to clone the dio_bio or failed to allocate the
8412 * dip. If we cloned the dio_bio and allocated the dip, we can just
8413 * call bio_endio against our io_bio so that we get proper resource
8414 * cleanup if we fail to submit the dip, otherwise, we must do the
8415 * same as btrfs_endio_direct_[write|read] because we can't call these
8416 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008417 */
Liu Bo3892ac92017-04-17 15:00:28 -07008418 if (bio && dip) {
Guoqing Jiang054ec2f2017-06-02 16:08:50 +08008419 bio_io_error(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008420 /*
Liu Bo3892ac92017-04-17 15:00:28 -07008421 * The end io callbacks free our dip, do the final put on bio
Filipe Manana61de7182015-07-01 12:13:10 +01008422 * and all the cleanup and final put for dio_bio (through
8423 * dio_end_io()).
8424 */
8425 dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008426 bio = NULL;
Filipe Manana61de7182015-07-01 12:13:10 +01008427 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008428 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008429 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008430 file_offset,
8431 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008432 false);
Filipe Manana14543772015-11-24 16:23:54 +00008433 else
Filipe Manana61de7182015-07-01 12:13:10 +01008434 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8435 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008436
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008437 dio_bio->bi_status = BLK_STS_IOERR;
Filipe Manana61de7182015-07-01 12:13:10 +01008438 /*
8439 * Releases and cleans up our dio_bio, no need to bio_put()
8440 * nor bio_endio()/bio_io_error() against dio_bio.
8441 */
Christoph Hellwig40553512017-06-03 09:37:58 +02008442 dio_end_io(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008443 }
Liu Bo3892ac92017-04-17 15:00:28 -07008444 if (bio)
8445 bio_put(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008446 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008447}
8448
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008449static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008450 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008451{
8452 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008453 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008454 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008455 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008456
8457 if (offset & blocksize_mask)
8458 goto out;
8459
Al Viro28060d52014-03-22 05:15:17 -04008460 if (iov_iter_alignment(iter) & blocksize_mask)
8461 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008462
Al Viro28060d52014-03-22 05:15:17 -04008463 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008464 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008465 return 0;
8466 /*
8467 * Check to make sure we don't have duplicate iov_base's in this
8468 * iovec, if so return EINVAL, otherwise we'll get csum errors
8469 * when reading back.
8470 */
8471 for (seg = 0; seg < iter->nr_segs; seg++) {
8472 for (i = seg + 1; i < iter->nr_segs; i++) {
8473 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008474 goto out;
8475 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008476 }
8477 retval = 0;
8478out:
8479 return retval;
8480}
Josef Bacikeb838e72012-07-31 16:28:48 -04008481
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008482static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008483{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008484 struct file *file = iocb->ki_filp;
8485 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008486 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308487 struct btrfs_dio_data dio_data = { 0 };
Qu Wenruo364ecf32017-02-27 15:10:38 +08008488 struct extent_changeset *data_reserved = NULL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008489 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008490 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008491 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008492 bool wakeup = true;
8493 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008494 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008495
Nikolay Borisov8c70c9f2017-08-21 12:43:46 +03008496 if (check_direct_IO(fs_info, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008497 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008498
Jens Axboefe0f07d2015-04-15 17:05:48 -06008499 inode_dio_begin(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008500
Josef Bacik0e267c42013-07-02 10:38:02 -04008501 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008502 * The generic stuff only does filemap_write_and_wait_range, which
8503 * isn't enough if we've written compressed pages to this area, so
8504 * we need to flush the dirty pages again to make absolutely sure
8505 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008506 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008507 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008508 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8509 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008510 filemap_fdatawrite_range(inode->i_mapping, offset,
8511 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008512
Omar Sandoval6f673762015-03-16 04:33:52 -07008513 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008514 /*
8515 * If the write DIO is beyond the EOF, we need update
8516 * the isize, but it is protected by i_mutex. So we can
8517 * not unlock the i_mutex at this case.
8518 */
8519 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008520 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008521 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008522 relock = true;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05008523 } else if (iocb->ki_flags & IOCB_NOWAIT) {
8524 ret = -EAGAIN;
8525 goto out;
Miao Xie38851cc2013-02-08 07:04:11 +00008526 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08008527 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
8528 offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008529 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008530 goto out;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008531
8532 /*
8533 * We need to know how many extents we reserved so that we can
8534 * do the accounting properly if we go over the number we
8535 * originally calculated. Abuse current->journal_info for this.
8536 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008537 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008538 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008539 dio_data.unsubmitted_oe_range_start = (u64)offset;
8540 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308541 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308542 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008543 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8544 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008545 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008546 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8547 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008548 }
8549
Omar Sandoval17f8c842015-03-16 04:33:50 -07008550 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008551 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008552 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008553 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008554 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308555 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008556 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008557 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308558 if (dio_data.reserve)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008559 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008560 offset, dio_data.reserve, true);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008561 /*
8562 * On error we might have left some ordered extents
8563 * without submitting corresponding bios for them, so
8564 * cleanup them up to avoid other tasks getting them
8565 * and waiting for them to complete forever.
8566 */
8567 if (dio_data.unsubmitted_oe_range_start <
8568 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008569 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008570 dio_data.unsubmitted_oe_range_start,
8571 dio_data.unsubmitted_oe_range_end -
8572 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008573 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008574 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008575 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008576 offset, count - (size_t)ret, true);
8577 btrfs_delalloc_release_extents(BTRFS_I(inode), count, false);
Miao Xie09348562013-02-07 10:12:07 +00008578 }
Miao Xie38851cc2013-02-08 07:04:11 +00008579out:
Miao Xie2e60a512013-02-08 07:01:08 +00008580 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008581 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008582 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008583 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008584
Qu Wenruo364ecf32017-02-27 15:10:38 +08008585 extent_changeset_free(data_reserved);
Miao Xie09348562013-02-07 10:12:07 +00008586 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008587}
8588
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008589#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8590
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008591static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8592 __u64 start, __u64 len)
8593{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008594 int ret;
8595
8596 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8597 if (ret)
8598 return ret;
8599
David Sterba2135fb92017-06-23 04:09:57 +02008600 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008601}
8602
Chris Mason9ebefb182007-06-15 13:50:00 -04008603int btrfs_readpage(struct file *file, struct page *page)
8604{
Chris Masond1310b22008-01-24 16:13:08 -05008605 struct extent_io_tree *tree;
8606 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008607 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008608}
Chris Mason1832a6d2007-12-21 16:27:21 -05008609
Chris Mason39279cc2007-06-12 06:35:45 -04008610static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8611{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008612 struct inode *inode = page->mapping->host;
8613 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008614
8615 if (current->flags & PF_MEMALLOC) {
8616 redirty_page_for_writepage(wbc, page);
8617 unlock_page(page);
8618 return 0;
8619 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008620
8621 /*
8622 * If we are under memory pressure we will call this directly from the
8623 * VM, we need to make sure we have the inode referenced for the ordered
8624 * extent. If not just return like we didn't do anything.
8625 */
8626 if (!igrab(inode)) {
8627 redirty_page_for_writepage(wbc, page);
8628 return AOP_WRITEPAGE_ACTIVATE;
8629 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008630 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008631 btrfs_add_delayed_iput(inode);
8632 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008633}
Chris Mason39279cc2007-06-12 06:35:45 -04008634
Eric Sandeen48a3b632013-04-25 20:41:01 +00008635static int btrfs_writepages(struct address_space *mapping,
8636 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008637{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008638 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008639}
8640
Chris Mason3ab2fb52007-11-08 10:59:22 -05008641static int
8642btrfs_readpages(struct file *file, struct address_space *mapping,
8643 struct list_head *pages, unsigned nr_pages)
8644{
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008645 return extent_readpages(mapping, pages, nr_pages);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008646}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008647
Chris Masone6dcd2d2008-07-17 12:53:50 -04008648static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008649{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008650 int ret = try_release_extent_mapping(page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008651 if (ret == 1) {
8652 ClearPagePrivate(page);
8653 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008654 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008655 }
8656 return ret;
8657}
Chris Mason39279cc2007-06-12 06:35:45 -04008658
Chris Masone6dcd2d2008-07-17 12:53:50 -04008659static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8660{
Chris Mason98509cf2008-09-11 15:51:43 -04008661 if (PageWriteback(page) || PageDirty(page))
8662 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008663 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008664}
8665
Lukas Czernerd47992f2013-05-21 23:17:23 -04008666static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8667 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008668{
Josef Bacik5fd02042012-05-02 14:00:54 -04008669 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008670 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008671 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008672 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008673 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008674 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308675 u64 start;
8676 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008677 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008678
Chris Mason8b62b722009-09-02 16:53:46 -04008679 /*
8680 * we have the page locked, so new writeback can't start,
8681 * and the dirty bit won't be cleared while we are here.
8682 *
8683 * Wait for IO on this page so that we can safely clear
8684 * the PagePrivate2 bit and do ordered accounting
8685 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008686 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008687
Josef Bacik5fd02042012-05-02 14:00:54 -04008688 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008689 if (offset) {
8690 btrfs_releasepage(page, GFP_NOFS);
8691 return;
8692 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008693
8694 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008695 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308696again:
8697 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008698 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308699 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008700 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308701 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008702 /*
8703 * IO on this page will never be started, so we need
8704 * to account for any ordered extents now
8705 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008706 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308707 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008708 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008709 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008710 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008711 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008712 /*
8713 * whoever cleared the private bit is responsible
8714 * for the finish_ordered_io
8715 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008716 if (TestClearPagePrivate2(page)) {
8717 struct btrfs_ordered_inode_tree *tree;
8718 u64 new_len;
8719
8720 tree = &BTRFS_I(inode)->ordered_tree;
8721
8722 spin_lock_irq(&tree->lock);
8723 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308724 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008725 if (new_len < ordered->truncated_len)
8726 ordered->truncated_len = new_len;
8727 spin_unlock_irq(&tree->lock);
8728
8729 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308730 start,
8731 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008732 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008733 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008734 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008735 if (!inode_evicting) {
8736 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308737 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008738 &cached_state);
8739 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308740
8741 start = end + 1;
8742 if (start < page_end)
8743 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008744 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008745
Qu Wenruob9d0b382015-09-29 10:35:16 +08008746 /*
8747 * Qgroup reserved space handler
8748 * Page here will be either
8749 * 1) Already written to disk
8750 * In this case, its reserved space is released from data rsv map
8751 * and will be freed by delayed_ref handler finally.
8752 * So even we call qgroup_free_data(), it won't decrease reserved
8753 * space.
8754 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008755 * This means the reserved space should be freed here. However,
8756 * if a truncate invalidates the page (by clearing PageDirty)
8757 * and the page is accounted for while allocating extent
8758 * in btrfs_check_data_free_space() we let delayed_ref to
8759 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008760 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008761 if (PageDirty(page))
Qu Wenruobc42bda2017-02-27 15:10:39 +08008762 btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008763 if (!inode_evicting) {
8764 clear_extent_bit(tree, page_start, page_end,
8765 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008766 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8767 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008768 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008769
8770 __btrfs_releasepage(page, GFP_NOFS);
8771 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008772
Chris Mason4a096752008-07-21 10:29:44 -04008773 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008774 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008775 ClearPagePrivate(page);
8776 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008777 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008778 }
Chris Mason39279cc2007-06-12 06:35:45 -04008779}
8780
Chris Mason9ebefb182007-06-15 13:50:00 -04008781/*
8782 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8783 * called from a page fault handler when a page is first dirtied. Hence we must
8784 * be careful to check for EOF conditions here. We set the page up correctly
8785 * for a written page which means we get ENOSPC checking when writing into
8786 * holes and correct delalloc and unwritten extent mapping on filesystems that
8787 * support these features.
8788 *
8789 * We are not allowed to take the i_mutex here so we have to play games to
8790 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008791 * truncate_setsize() writes the inode size before removing pages, once we have
8792 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008793 * beyond EOF, then the page is guaranteed safe against truncation until we
8794 * unlock the page.
8795 */
Souptick Joardera528a242018-06-06 19:54:44 +05308796vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008797{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008798 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008799 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008800 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008801 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8802 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008803 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008804 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008805 char *kaddr;
8806 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008807 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308808 vm_fault_t ret;
8809 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008810 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308811 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008812 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008813 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308814 u64 end;
8815
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008816 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008817
Jan Karab2b5ef52012-06-12 16:20:45 +02008818 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008819 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008820 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308821 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008822
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308823 /*
8824 * Reserving delalloc space after obtaining the page lock can lead to
8825 * deadlock. For example, if a dirty page is locked by this function
8826 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8827 * dirty page write out, then the btrfs_writepage() function could
8828 * end up waiting indefinitely to get a lock on the page currently
8829 * being processed by btrfs_page_mkwrite() function.
8830 */
Souptick Joardera528a242018-06-06 19:54:44 +05308831 ret2 = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308832 reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308833 if (!ret2) {
8834 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008835 reserved = 1;
8836 }
Souptick Joardera528a242018-06-06 19:54:44 +05308837 if (ret2) {
8838 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008839 if (reserved)
8840 goto out;
8841 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008842 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008843
Nick Piggin56a76f82009-03-31 15:23:23 -07008844 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008845again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008846 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008847 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008848
Chris Mason9ebefb182007-06-15 13:50:00 -04008849 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008850 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008851 /* page got truncated out from underneath us */
8852 goto out_unlock;
8853 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008854 wait_on_page_writeback(page);
8855
David Sterbaff13db42015-12-03 14:30:40 +01008856 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008857 set_page_extent_mapped(page);
8858
Chris Masoneb84ae02008-07-17 13:53:27 -04008859 /*
8860 * we can't set the delalloc bits if there are pending ordered
8861 * extents. Drop our locks and wait for them to finish
8862 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008863 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8864 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008865 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008866 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008867 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008868 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008869 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008870 btrfs_put_ordered_extent(ordered);
8871 goto again;
8872 }
8873
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008874 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008875 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008876 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008877 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308878 end = page_start + reserved_space - 1;
Qu Wenruobc42bda2017-02-27 15:10:39 +08008879 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008880 page_start, PAGE_SIZE - reserved_space,
8881 true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308882 }
8883 }
8884
Josef Bacikfbf19082009-10-01 17:10:23 -04008885 /*
Liu Bo54160342016-12-13 12:15:19 -08008886 * page_mkwrite gets called when the page is firstly dirtied after it's
8887 * faulted in, but write(2) could also dirty a page and set delalloc
8888 * bits, thus in this case for space account reason, we still need to
8889 * clear any delalloc bits within this page range since we have to
8890 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008891 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308892 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008893 EXTENT_DIRTY | EXTENT_DELALLOC |
8894 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01008895 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008896
Souptick Joardera528a242018-06-06 19:54:44 +05308897 ret2 = btrfs_set_extent_delalloc(inode, page_start, end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08008898 &cached_state, 0);
Souptick Joardera528a242018-06-06 19:54:44 +05308899 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008900 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008901 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008902 ret = VM_FAULT_SIGBUS;
8903 goto out_unlock;
8904 }
Souptick Joardera528a242018-06-06 19:54:44 +05308905 ret2 = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008906
8907 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008908 if (page_start + PAGE_SIZE > size)
8909 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04008910 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008911 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008912
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008913 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008914 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008915 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008916 flush_dcache_page(page);
8917 kunmap(page);
8918 }
Chris Mason247e7432008-07-17 12:53:51 -04008919 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008920 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008921 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008922
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008923 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04008924 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008925 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008926
David Sterbae43bbe52017-12-12 21:43:52 +01008927 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04008928
Souptick Joardera528a242018-06-06 19:54:44 +05308929 if (!ret2) {
Qu Wenruo43b18592017-12-12 15:34:32 +08008930 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, true);
Jan Karab2b5ef52012-06-12 16:20:45 +02008931 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008932 extent_changeset_free(data_reserved);
Chris Mason50a9b212009-09-11 12:33:12 -04008933 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008934 }
Chris Mason717beb92018-06-25 10:03:41 -07008935
8936out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008937 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008938out:
Qu Wenruo43b18592017-12-12 15:34:32 +08008939 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, (ret != 0));
Qu Wenruobc42bda2017-02-27 15:10:39 +08008940 btrfs_delalloc_release_space(inode, data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008941 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008942out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008943 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008944 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008945 return ret;
8946}
8947
Filipe Manana213e8c52018-02-06 20:40:31 +00008948static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008949{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008950 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008951 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008952 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008953 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008954 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008955 u64 mask = fs_info->sectorsize - 1;
8956 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008957
Filipe Manana213e8c52018-02-06 20:40:31 +00008958 if (!skip_writeback) {
8959 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8960 (u64)-1);
8961 if (ret)
8962 return ret;
8963 }
Chris Mason39279cc2007-06-12 06:35:45 -04008964
Josef Bacikfcb80c22011-05-03 10:40:22 -04008965 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008966 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8967 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008968 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008969 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008970 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008971 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008972 * be free'd up by the truncate operation, but also have some slack
8973 * space reserved in case it uses space during the truncate (thank you
8974 * very much snapshotting).
8975 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008976 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008977 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008978 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008979 * doesn't end up using space reserved for updating the inode. We also
8980 * need to be able to stop the transaction and start a new one, which
8981 * means we need to be able to update the inode several times, and we
8982 * have no idea of knowing how many times that will be, so we can't just
8983 * reserve 1 item for the entirety of the operation, so that has to be
8984 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008985 *
8986 * So that leaves us with
8987 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008988 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008989 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008990 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008991 * updating the inode.
8992 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008993 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008994 if (!rsv)
8995 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008996 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008997 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008998
Josef Bacik907cbce2011-08-08 13:46:15 -04008999 /*
Josef Bacik07127182011-08-19 10:29:59 -04009000 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009001 * 1 for updating the inode.
9002 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009003 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009004 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009005 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009006 goto out;
9007 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009008
Josef Bacik907cbce2011-08-08 13:46:15 -04009009 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009010 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009011 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009012 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009013
Chris Mason5a3f23d2009-03-31 13:27:11 -04009014 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009015 * So if we truncate and then write and fsync we normally would just
9016 * write the extents that changed, which is a problem if we need to
9017 * first truncate that entire inode. So set this flag so we write out
9018 * all of the extents in the inode to the sync log so we're completely
9019 * safe.
9020 */
9021 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009022 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009023
Yan, Zheng80825102009-11-12 09:35:36 +00009024 while (1) {
9025 ret = btrfs_truncate_inode_items(trans, root, inode,
9026 inode->i_size,
9027 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04009028 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009029 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00009030 break;
Chris Mason39279cc2007-06-12 06:35:45 -04009031
Yan, Zheng80825102009-11-12 09:35:36 +00009032 ret = btrfs_update_inode(trans, root, inode);
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009033 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05009034 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009035
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009036 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009037 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009038
9039 trans = btrfs_start_transaction(root, 2);
9040 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009041 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009042 trans = NULL;
9043 break;
9044 }
9045
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009046 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009047 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009048 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009049 BUG_ON(ret); /* shouldn't happen */
9050 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009051 }
9052
Josef Bacikddfae632017-10-19 14:16:02 -04009053 /*
9054 * We can't call btrfs_truncate_block inside a trans handle as we could
9055 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
9056 * we've truncated everything except the last little bit, and can do
9057 * btrfs_truncate_block and then update the disk_i_size.
9058 */
9059 if (ret == NEED_TRUNCATE_BLOCK) {
9060 btrfs_end_transaction(trans);
9061 btrfs_btree_balance_dirty(fs_info);
9062
9063 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
9064 if (ret)
9065 goto out;
9066 trans = btrfs_start_transaction(root, 1);
9067 if (IS_ERR(trans)) {
9068 ret = PTR_ERR(trans);
9069 goto out;
9070 }
9071 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
9072 }
9073
Chris Mason917c16b2011-11-08 14:49:59 -05009074 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009075 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04009076
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009077 trans->block_rsv = &fs_info->trans_block_rsv;
9078 ret2 = btrfs_update_inode(trans, root, inode);
9079 if (ret2 && !ret)
9080 ret = ret2;
9081
9082 ret2 = btrfs_end_transaction(trans);
9083 if (ret2 && !ret)
9084 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009085 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009086 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009087out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009088 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009089
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009090 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009091}
9092
Sven Wegener3b963622008-06-09 21:57:42 -04009093/*
Chris Masond352ac62008-09-29 15:18:18 -04009094 * create a new subvolume directory/inode (helper for the ioctl).
9095 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009096int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009097 struct btrfs_root *new_root,
9098 struct btrfs_root *parent_root,
9099 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009100{
Chris Mason39279cc2007-06-12 06:35:45 -04009101 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009102 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009103 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009104
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009105 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9106 new_dirid, new_dirid,
9107 S_IFDIR | (~current_umask() & S_IRWXUGO),
9108 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009109 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009110 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009111 inode->i_op = &btrfs_dir_inode_operations;
9112 inode->i_fop = &btrfs_dir_file_operations;
9113
Miklos Szeredibfe86842011-10-28 14:13:29 +02009114 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009115 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009116 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009117
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009118 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9119 if (err)
9120 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009121 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009122 new_root->root_key.objectid, err);
9123
Yan, Zheng76dda932009-09-21 16:00:26 -04009124 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009125
Yan, Zheng76dda932009-09-21 16:00:26 -04009126 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009127 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009128}
9129
Chris Mason39279cc2007-06-12 06:35:45 -04009130struct inode *btrfs_alloc_inode(struct super_block *sb)
9131{
Josef Bacik69fe2d72017-10-19 14:15:57 -04009132 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009133 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009134 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009135
David Sterba712e36c2017-10-31 17:08:27 +01009136 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04009137 if (!ei)
9138 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009139
9140 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009141 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009142 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009143 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009144 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009145 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009146 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009147 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009148 ei->disk_i_size = 0;
9149 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009150 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009151 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009152 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009153 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009154 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009155
Josef Bacik9e0baf62011-07-15 15:16:44 +00009156 spin_lock_init(&ei->lock);
9157 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009158 if (sb->s_magic != BTRFS_TEST_MAGIC)
9159 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9160 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009161 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009162 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009163 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009164
Miao Xie16cdcec2011-04-22 18:12:22 +08009165 ei->delayed_node = NULL;
9166
chandan r9cc97d62012-07-04 12:48:07 +05309167 ei->i_otime.tv_sec = 0;
9168 ei->i_otime.tv_nsec = 0;
9169
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009170 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009171 extent_map_tree_init(&ei->extent_tree);
Josef Bacikc6100a42017-05-05 11:57:13 -04009172 extent_io_tree_init(&ei->io_tree, inode);
9173 extent_io_tree_init(&ei->io_failure_tree, inode);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009174 ei->io_tree.track_uptodate = 1;
9175 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009176 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009177 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009178 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009179 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009180 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009181 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009182 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009183 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009184
9185 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009186}
9187
Josef Bacikaaedb552013-10-11 14:44:09 -04009188#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9189void btrfs_test_destroy_inode(struct inode *inode)
9190{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009191 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009192 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9193}
9194#endif
9195
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009196static void btrfs_i_callback(struct rcu_head *head)
9197{
9198 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009199 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9200}
9201
Chris Mason39279cc2007-06-12 06:35:45 -04009202void btrfs_destroy_inode(struct inode *inode)
9203{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009204 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009205 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009206 struct btrfs_root *root = BTRFS_I(inode)->root;
9207
Al Virob3d9b7a2012-06-09 13:51:19 -04009208 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009209 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04009210 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9211 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009212 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009213 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009214 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009215 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009216 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009217
Chris Mason5a3f23d2009-03-31 13:27:11 -04009218 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009219 * This can happen where we create an inode, but somebody else also
9220 * created the same inode and we need to destroy the one we already
9221 * created.
9222 */
9223 if (!root)
9224 goto free;
9225
Chris Masond3977122009-01-05 21:25:51 -05009226 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009227 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9228 if (!ordered)
9229 break;
9230 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009231 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009232 "found ordered extent %llu %llu on inode cleanup",
9233 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009234 btrfs_remove_ordered_extent(inode, ordered);
9235 btrfs_put_ordered_extent(ordered);
9236 btrfs_put_ordered_extent(ordered);
9237 }
9238 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009239 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009240 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009241 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009242free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009243 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009244}
9245
Al Viro45321ac2010-06-07 13:43:19 -04009246int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009247{
9248 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009249
Naohiro Aota6379ef92013-06-06 09:56:34 +00009250 if (root == NULL)
9251 return 1;
9252
Liu Bofa6ac872013-02-20 14:10:23 +00009253 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009254 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009255 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009256 else
Al Viro45321ac2010-06-07 13:43:19 -04009257 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009258}
9259
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009260static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009261{
9262 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9263
9264 inode_init_once(&ei->vfs_inode);
9265}
9266
David Sterbae67c7182018-02-19 17:24:18 +01009267void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009268{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009269 /*
9270 * Make sure all delayed rcu free inodes are flushed before we
9271 * destroy cache.
9272 */
9273 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009274 kmem_cache_destroy(btrfs_inode_cachep);
9275 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009276 kmem_cache_destroy(btrfs_path_cachep);
9277 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009278}
9279
Liu Bof5c29bd2017-11-02 17:21:50 -06009280int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009281{
David Sterba837e1972012-09-07 03:00:48 -06009282 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009283 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009284 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9285 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009286 if (!btrfs_inode_cachep)
9287 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009288
David Sterba837e1972012-09-07 03:00:48 -06009289 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009290 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009291 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009292 if (!btrfs_trans_handle_cachep)
9293 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009294
David Sterba837e1972012-09-07 03:00:48 -06009295 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009296 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009297 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009298 if (!btrfs_path_cachep)
9299 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009300
David Sterba837e1972012-09-07 03:00:48 -06009301 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009302 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009303 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009304 if (!btrfs_free_space_cachep)
9305 goto fail;
9306
Chris Mason39279cc2007-06-12 06:35:45 -04009307 return 0;
9308fail:
9309 btrfs_destroy_cachep();
9310 return -ENOMEM;
9311}
9312
David Howellsa528d352017-01-31 16:46:22 +00009313static int btrfs_getattr(const struct path *path, struct kstat *stat,
9314 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009315{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009316 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009317 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009318 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009319 u32 bi_flags = BTRFS_I(inode)->flags;
9320
9321 stat->result_mask |= STATX_BTIME;
9322 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9323 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9324 if (bi_flags & BTRFS_INODE_APPEND)
9325 stat->attributes |= STATX_ATTR_APPEND;
9326 if (bi_flags & BTRFS_INODE_COMPRESS)
9327 stat->attributes |= STATX_ATTR_COMPRESSED;
9328 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9329 stat->attributes |= STATX_ATTR_IMMUTABLE;
9330 if (bi_flags & BTRFS_INODE_NODUMP)
9331 stat->attributes |= STATX_ATTR_NODUMP;
9332
9333 stat->attributes_mask |= (STATX_ATTR_APPEND |
9334 STATX_ATTR_COMPRESSED |
9335 STATX_ATTR_IMMUTABLE |
9336 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009337
Chris Mason39279cc2007-06-12 06:35:45 -04009338 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009339 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009340
9341 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009342 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009343 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009344 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009345 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009346 return 0;
9347}
9348
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009349static int btrfs_rename_exchange(struct inode *old_dir,
9350 struct dentry *old_dentry,
9351 struct inode *new_dir,
9352 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009353{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009354 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009355 struct btrfs_trans_handle *trans;
9356 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009357 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009358 struct inode *new_inode = new_dentry->d_inode;
9359 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07009360 struct timespec64 ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009361 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009362 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9363 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009364 u64 old_idx = 0;
9365 u64 new_idx = 0;
9366 u64 root_objectid;
9367 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009368 bool root_log_pinned = false;
9369 bool dest_log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009370 struct btrfs_log_ctx ctx_root;
9371 struct btrfs_log_ctx ctx_dest;
9372 bool sync_log_root = false;
9373 bool sync_log_dest = false;
9374 bool commit_transaction = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009375
9376 /* we only allow rename subvolume link between subvolumes */
9377 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9378 return -EXDEV;
9379
Filipe Mananad4682ba2018-06-11 19:24:28 +01009380 btrfs_init_log_ctx(&ctx_root, old_inode);
9381 btrfs_init_log_ctx(&ctx_dest, new_inode);
9382
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009383 /* close the race window with snapshot create/destroy ioctl */
9384 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009385 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009386 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009387 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009388
9389 /*
9390 * We want to reserve the absolute worst case amount of items. So if
9391 * both inodes are subvols and we need to unlink them then that would
9392 * require 4 item modifications, but if they are both normal inodes it
9393 * would require 5 item modifications, so we'll assume their normal
9394 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9395 * should cover the worst case number of items we'll modify.
9396 */
9397 trans = btrfs_start_transaction(root, 12);
9398 if (IS_ERR(trans)) {
9399 ret = PTR_ERR(trans);
9400 goto out_notrans;
9401 }
9402
9403 /*
9404 * We need to find a free sequence number both in the source and
9405 * in the destination directory for the exchange.
9406 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009407 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009408 if (ret)
9409 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009410 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009411 if (ret)
9412 goto out_fail;
9413
9414 BTRFS_I(old_inode)->dir_index = 0ULL;
9415 BTRFS_I(new_inode)->dir_index = 0ULL;
9416
9417 /* Reference for the source. */
9418 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9419 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009420 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009421 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009422 btrfs_pin_log_trans(root);
9423 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009424 ret = btrfs_insert_inode_ref(trans, dest,
9425 new_dentry->d_name.name,
9426 new_dentry->d_name.len,
9427 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009428 btrfs_ino(BTRFS_I(new_dir)),
9429 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009430 if (ret)
9431 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009432 }
9433
9434 /* And now for the dest. */
9435 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9436 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009437 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009438 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009439 btrfs_pin_log_trans(dest);
9440 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009441 ret = btrfs_insert_inode_ref(trans, root,
9442 old_dentry->d_name.name,
9443 old_dentry->d_name.len,
9444 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009445 btrfs_ino(BTRFS_I(old_dir)),
9446 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009447 if (ret)
9448 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009449 }
9450
9451 /* Update inode version and ctime/mtime. */
9452 inode_inc_iversion(old_dir);
9453 inode_inc_iversion(new_dir);
9454 inode_inc_iversion(old_inode);
9455 inode_inc_iversion(new_inode);
9456 old_dir->i_ctime = old_dir->i_mtime = ctime;
9457 new_dir->i_ctime = new_dir->i_mtime = ctime;
9458 old_inode->i_ctime = ctime;
9459 new_inode->i_ctime = ctime;
9460
9461 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009462 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9463 BTRFS_I(old_inode), 1);
9464 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9465 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009466 }
9467
9468 /* src is a subvolume */
9469 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9470 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009471 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009472 old_dentry->d_name.name,
9473 old_dentry->d_name.len);
9474 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009475 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9476 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009477 old_dentry->d_name.name,
9478 old_dentry->d_name.len);
9479 if (!ret)
9480 ret = btrfs_update_inode(trans, root, old_inode);
9481 }
9482 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009483 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009484 goto out_fail;
9485 }
9486
9487 /* dest is a subvolume */
9488 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9489 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009490 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009491 new_dentry->d_name.name,
9492 new_dentry->d_name.len);
9493 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009494 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9495 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009496 new_dentry->d_name.name,
9497 new_dentry->d_name.len);
9498 if (!ret)
9499 ret = btrfs_update_inode(trans, dest, new_inode);
9500 }
9501 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009502 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009503 goto out_fail;
9504 }
9505
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009506 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009507 new_dentry->d_name.name,
9508 new_dentry->d_name.len, 0, old_idx);
9509 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009510 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009511 goto out_fail;
9512 }
9513
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009514 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009515 old_dentry->d_name.name,
9516 old_dentry->d_name.len, 0, new_idx);
9517 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009518 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009519 goto out_fail;
9520 }
9521
9522 if (old_inode->i_nlink == 1)
9523 BTRFS_I(old_inode)->dir_index = old_idx;
9524 if (new_inode->i_nlink == 1)
9525 BTRFS_I(new_inode)->dir_index = new_idx;
9526
Filipe Manana86e8aa02016-05-05 02:02:27 +01009527 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009528 parent = new_dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009529 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9530 BTRFS_I(old_dir), parent,
9531 false, &ctx_root);
9532 if (ret == BTRFS_NEED_LOG_SYNC)
9533 sync_log_root = true;
9534 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9535 commit_transaction = true;
9536 ret = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009537 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009538 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009539 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009540 if (dest_log_pinned) {
Filipe Mananad4682ba2018-06-11 19:24:28 +01009541 if (!commit_transaction) {
9542 parent = old_dentry->d_parent;
9543 ret = btrfs_log_new_name(trans, BTRFS_I(new_inode),
9544 BTRFS_I(new_dir), parent,
9545 false, &ctx_dest);
9546 if (ret == BTRFS_NEED_LOG_SYNC)
9547 sync_log_dest = true;
9548 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9549 commit_transaction = true;
9550 ret = 0;
9551 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009552 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009553 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009554 }
9555out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009556 /*
9557 * If we have pinned a log and an error happened, we unpin tasks
9558 * trying to sync the log and force them to fallback to a transaction
9559 * commit if the log currently contains any of the inodes involved in
9560 * this rename operation (to ensure we do not persist a log with an
9561 * inconsistent state for any of these inodes or leading to any
9562 * inconsistencies when replayed). If the transaction was aborted, the
9563 * abortion reason is propagated to userspace when attempting to commit
9564 * the transaction. If the log does not contain any of these inodes, we
9565 * allow the tasks to sync it.
9566 */
9567 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009568 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9569 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9570 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009571 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009572 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009573 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009574
9575 if (root_log_pinned) {
9576 btrfs_end_log_trans(root);
9577 root_log_pinned = false;
9578 }
9579 if (dest_log_pinned) {
9580 btrfs_end_log_trans(dest);
9581 dest_log_pinned = false;
9582 }
9583 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009584 if (!ret && sync_log_root && !commit_transaction) {
9585 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root,
9586 &ctx_root);
9587 if (ret)
9588 commit_transaction = true;
9589 }
9590 if (!ret && sync_log_dest && !commit_transaction) {
9591 ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root,
9592 &ctx_dest);
9593 if (ret)
9594 commit_transaction = true;
9595 }
9596 if (commit_transaction) {
9597 ret = btrfs_commit_transaction(trans);
9598 } else {
9599 int ret2;
9600
9601 ret2 = btrfs_end_transaction(trans);
9602 ret = ret ? ret : ret2;
9603 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009604out_notrans:
9605 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009606 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009607 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009608 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009609
9610 return ret;
9611}
9612
9613static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9614 struct btrfs_root *root,
9615 struct inode *dir,
9616 struct dentry *dentry)
9617{
9618 int ret;
9619 struct inode *inode;
9620 u64 objectid;
9621 u64 index;
9622
9623 ret = btrfs_find_free_ino(root, &objectid);
9624 if (ret)
9625 return ret;
9626
9627 inode = btrfs_new_inode(trans, root, dir,
9628 dentry->d_name.name,
9629 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009630 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009631 objectid,
9632 S_IFCHR | WHITEOUT_MODE,
9633 &index);
9634
9635 if (IS_ERR(inode)) {
9636 ret = PTR_ERR(inode);
9637 return ret;
9638 }
9639
9640 inode->i_op = &btrfs_special_inode_operations;
9641 init_special_inode(inode, inode->i_mode,
9642 WHITEOUT_DEV);
9643
9644 ret = btrfs_init_inode_security(trans, inode, dir,
9645 &dentry->d_name);
9646 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009647 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009648
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009649 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9650 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009651 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009652 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009653
9654 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009655out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009656 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009657 if (ret)
9658 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009659 iput(inode);
9660
Filipe Mananac9901612016-05-05 01:41:57 +01009661 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009662}
9663
Chris Mason39279cc2007-06-12 06:35:45 -04009664static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009665 struct inode *new_dir, struct dentry *new_dentry,
9666 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009667{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009668 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009669 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009670 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009671 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9672 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009673 struct inode *new_inode = d_inode(new_dentry);
9674 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009675 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009676 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009677 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009678 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009679 bool log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009680 struct btrfs_log_ctx ctx;
9681 bool sync_log = false;
9682 bool commit_transaction = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009683
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009684 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009685 return -EPERM;
9686
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009687 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009688 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009689 return -EXDEV;
9690
Li Zefan33345d012011-04-20 10:31:50 +08009691 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009692 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009693 return -ENOTEMPTY;
9694
Chris Mason39279cc2007-06-12 06:35:45 -04009695 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009696 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009697 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009698
9699
9700 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009701 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009702 new_dentry->d_name.name,
9703 new_dentry->d_name.len);
9704
9705 if (ret) {
9706 if (ret == -EEXIST) {
9707 /* we shouldn't get
9708 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309709 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009710 return ret;
9711 }
9712 } else {
9713 /* maybe -EOVERFLOW */
9714 return ret;
9715 }
9716 }
9717 ret = 0;
9718
Chris Mason5a3f23d2009-03-31 13:27:11 -04009719 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009720 * we're using rename to replace one file with another. Start IO on it
9721 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009722 */
Chris Mason8d875f92014-08-12 10:47:42 -07009723 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009724 filemap_flush(old_inode->i_mapping);
9725
Yan, Zheng76dda932009-09-21 16:00:26 -04009726 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009727 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009728 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009729 /*
9730 * We want to reserve the absolute worst case amount of items. So if
9731 * both inodes are subvols and we need to unlink them then that would
9732 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009733 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009734 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9735 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009736 * If our rename has the whiteout flag, we need more 5 units for the
9737 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9738 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009739 */
Filipe Manana5062af32016-05-05 10:26:26 +01009740 trans_num_items = 11;
9741 if (flags & RENAME_WHITEOUT)
9742 trans_num_items += 5;
9743 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009744 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009745 ret = PTR_ERR(trans);
9746 goto out_notrans;
9747 }
Chris Mason5f39d392007-10-15 16:14:19 -04009748
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009749 if (dest != root)
9750 btrfs_record_root_in_trans(trans, dest);
9751
Nikolay Borisov877574e2017-02-20 13:50:33 +02009752 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009753 if (ret)
9754 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009755
Miao Xie67de1172013-12-26 13:07:06 +08009756 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009757 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009758 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009759 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009760 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009761 btrfs_pin_log_trans(root);
9762 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009763 ret = btrfs_insert_inode_ref(trans, dest,
9764 new_dentry->d_name.name,
9765 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009766 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009767 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009768 if (ret)
9769 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009770 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009771
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009772 inode_inc_iversion(old_dir);
9773 inode_inc_iversion(new_dir);
9774 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009775 old_dir->i_ctime = old_dir->i_mtime =
9776 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009777 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009778
Chris Mason12fcfd22009-03-24 10:24:20 -04009779 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009780 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9781 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009782
Li Zefan33345d012011-04-20 10:31:50 +08009783 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009784 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009785 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009786 old_dentry->d_name.name,
9787 old_dentry->d_name.len);
9788 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009789 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9790 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009791 old_dentry->d_name.name,
9792 old_dentry->d_name.len);
9793 if (!ret)
9794 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009795 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009796 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009797 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009798 goto out_fail;
9799 }
Chris Mason39279cc2007-06-12 06:35:45 -04009800
9801 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009802 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009803 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009804 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009805 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9806 root_objectid = BTRFS_I(new_inode)->location.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009807 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009808 new_dentry->d_name.name,
9809 new_dentry->d_name.len);
9810 BUG_ON(new_inode->i_nlink == 0);
9811 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009812 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9813 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009814 new_dentry->d_name.name,
9815 new_dentry->d_name.len);
9816 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009817 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009818 ret = btrfs_orphan_add(trans,
9819 BTRFS_I(d_inode(new_dentry)));
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 }
Josef Bacikaec74772008-07-24 12:12:38 -04009825
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009826 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009827 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009828 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009829 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009830 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009831 goto out_fail;
9832 }
Chris Mason39279cc2007-06-12 06:35:45 -04009833
Miao Xie67de1172013-12-26 13:07:06 +08009834 if (old_inode->i_nlink == 1)
9835 BTRFS_I(old_inode)->dir_index = index;
9836
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009837 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009838 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009839
Filipe Mananad4682ba2018-06-11 19:24:28 +01009840 btrfs_init_log_ctx(&ctx, old_inode);
9841 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9842 BTRFS_I(old_dir), parent,
9843 false, &ctx);
9844 if (ret == BTRFS_NEED_LOG_SYNC)
9845 sync_log = true;
9846 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9847 commit_transaction = true;
9848 ret = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009849 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009850 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009851 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009852
9853 if (flags & RENAME_WHITEOUT) {
9854 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9855 old_dentry);
9856
9857 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009858 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009859 goto out_fail;
9860 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009861 }
Chris Mason39279cc2007-06-12 06:35:45 -04009862out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009863 /*
9864 * If we have pinned the log and an error happened, we unpin tasks
9865 * trying to sync the log and force them to fallback to a transaction
9866 * commit if the log currently contains any of the inodes involved in
9867 * this rename operation (to ensure we do not persist a log with an
9868 * inconsistent state for any of these inodes or leading to any
9869 * inconsistencies when replayed). If the transaction was aborted, the
9870 * abortion reason is propagated to userspace when attempting to commit
9871 * the transaction. If the log does not contain any of these inodes, we
9872 * allow the tasks to sync it.
9873 */
9874 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009875 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9876 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9877 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009878 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009879 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009880 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009881
9882 btrfs_end_log_trans(root);
9883 log_pinned = false;
9884 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009885 if (!ret && sync_log) {
9886 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx);
9887 if (ret)
9888 commit_transaction = true;
9889 }
9890 if (commit_transaction) {
9891 ret = btrfs_commit_transaction(trans);
9892 } else {
9893 int ret2;
9894
9895 ret2 = btrfs_end_transaction(trans);
9896 ret = ret ? ret : ret2;
9897 }
Johann Lombardib44c59a2011-03-31 13:23:47 +00009898out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009899 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009900 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009901
Chris Mason39279cc2007-06-12 06:35:45 -04009902 return ret;
9903}
9904
Miklos Szeredi80ace852014-07-23 15:15:32 +02009905static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9906 struct inode *new_dir, struct dentry *new_dentry,
9907 unsigned int flags)
9908{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009909 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009910 return -EINVAL;
9911
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009912 if (flags & RENAME_EXCHANGE)
9913 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9914 new_dentry);
9915
9916 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009917}
9918
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009919struct btrfs_delalloc_work {
9920 struct inode *inode;
9921 struct completion completion;
9922 struct list_head list;
9923 struct btrfs_work work;
9924};
9925
Miao Xie8ccf6f192012-10-25 09:28:04 +00009926static void btrfs_run_delalloc_work(struct btrfs_work *work)
9927{
9928 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009929 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009930
9931 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9932 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009933 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009934 filemap_flush(inode->i_mapping);
9935 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9936 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009937 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009938
Nikolay Borisov076da912018-04-23 10:54:16 +03009939 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009940 complete(&delalloc_work->completion);
9941}
9942
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009943static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009944{
9945 struct btrfs_delalloc_work *work;
9946
David Sterba100d5702015-12-08 14:39:32 +01009947 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009948 if (!work)
9949 return NULL;
9950
9951 init_completion(&work->completion);
9952 INIT_LIST_HEAD(&work->list);
9953 work->inode = inode;
Liu Bo9e0af232014-08-15 23:36:53 +08009954 WARN_ON_ONCE(!inode);
9955 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9956 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009957
9958 return work;
9959}
9960
Chris Masond352ac62008-09-29 15:18:18 -04009961/*
9962 * some fairly slow code that needs optimization. This walks the list
9963 * of all the inodes with pending delalloc and forces them to disk.
9964 */
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009965static int start_delalloc_inodes(struct btrfs_root *root, int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009966{
Chris Masonea8c2812008-08-04 23:17:27 -04009967 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009968 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009969 struct btrfs_delalloc_work *work, *next;
9970 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009971 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009972 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009973
Miao Xie8ccf6f192012-10-25 09:28:04 +00009974 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009975 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009976
Miao Xie573bfb72014-03-06 13:55:03 +08009977 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009978 spin_lock(&root->delalloc_lock);
9979 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009980 while (!list_empty(&splice)) {
9981 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009982 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009983
Miao Xieeb73c1b2013-05-15 07:48:22 +00009984 list_move_tail(&binode->delalloc_inodes,
9985 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009986 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009987 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009988 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009989 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009990 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009991 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009992
Nikolay Borisov076da912018-04-23 10:54:16 +03009993 work = btrfs_alloc_delalloc_work(inode);
David Sterba5d99a9982014-09-29 19:20:37 +02009994 if (!work) {
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009995 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009996 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009997 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009998 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009999 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010000 btrfs_queue_work(root->fs_info->flush_workers,
10001 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010002 ret++;
10003 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010004 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010005 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010006 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010007 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010008 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010009
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010010out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010011 list_for_each_entry_safe(work, next, &works, list) {
10012 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +030010013 wait_for_completion(&work->completion);
10014 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010015 }
10016
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010017 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010018 spin_lock(&root->delalloc_lock);
10019 list_splice_tail(&splice, &root->delalloc_inodes);
10020 spin_unlock(&root->delalloc_lock);
10021 }
Miao Xie573bfb72014-03-06 13:55:03 +080010022 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010023 return ret;
10024}
10025
Nikolay Borisov76f32e22018-04-23 10:54:14 +030010026int btrfs_start_delalloc_inodes(struct btrfs_root *root)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010027{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010028 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010029 int ret;
10030
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010031 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010032 return -EROFS;
10033
Nikolay Borisov4fbb5142018-04-23 10:54:15 +030010034 ret = start_delalloc_inodes(root, -1);
Miao Xie6c255e62014-03-06 13:55:01 +080010035 if (ret > 0)
10036 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010037 return ret;
10038}
10039
Nikolay Borisov82b3e532018-04-23 10:54:13 +030010040int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010041{
10042 struct btrfs_root *root;
10043 struct list_head splice;
10044 int ret;
10045
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010046 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010047 return -EROFS;
10048
10049 INIT_LIST_HEAD(&splice);
10050
Miao Xie573bfb72014-03-06 13:55:03 +080010051 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010052 spin_lock(&fs_info->delalloc_root_lock);
10053 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010054 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010055 root = list_first_entry(&splice, struct btrfs_root,
10056 delalloc_root);
10057 root = btrfs_grab_fs_root(root);
10058 BUG_ON(!root);
10059 list_move_tail(&root->delalloc_root,
10060 &fs_info->delalloc_roots);
10061 spin_unlock(&fs_info->delalloc_root_lock);
10062
Nikolay Borisov4fbb5142018-04-23 10:54:15 +030010063 ret = start_delalloc_inodes(root, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010064 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010065 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010066 goto out;
10067
Miao Xie6c255e62014-03-06 13:55:01 +080010068 if (nr != -1) {
10069 nr -= ret;
10070 WARN_ON(nr < 0);
10071 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010072 spin_lock(&fs_info->delalloc_root_lock);
10073 }
10074 spin_unlock(&fs_info->delalloc_root_lock);
10075
Miao Xie6c255e62014-03-06 13:55:01 +080010076 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010077out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010078 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010079 spin_lock(&fs_info->delalloc_root_lock);
10080 list_splice_tail(&splice, &fs_info->delalloc_roots);
10081 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010082 }
Miao Xie573bfb72014-03-06 13:55:03 +080010083 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010084 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010085}
10086
Chris Mason39279cc2007-06-12 06:35:45 -040010087static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10088 const char *symname)
10089{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010090 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010091 struct btrfs_trans_handle *trans;
10092 struct btrfs_root *root = BTRFS_I(dir)->root;
10093 struct btrfs_path *path;
10094 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010095 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010096 int err;
Chris Mason39279cc2007-06-12 06:35:45 -040010097 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010098 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010099 int name_len;
10100 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010101 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010102 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010103 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010104
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010105 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010106 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010107 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010108
Josef Bacik9ed74f22009-09-11 16:12:44 -040010109 /*
10110 * 2 items for inode item and ref
10111 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010112 * 1 item for updating parent inode item
10113 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010114 * 1 item for xattr if selinux is on
10115 */
Filipe Manana9269d122015-12-31 18:16:29 +000010116 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010117 if (IS_ERR(trans))
10118 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010119
Li Zefan581bb052011-04-20 10:06:11 +080010120 err = btrfs_find_free_ino(root, &objectid);
10121 if (err)
10122 goto out_unlock;
10123
Josef Bacikaec74772008-07-24 12:12:38 -040010124 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010125 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10126 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010127 if (IS_ERR(inode)) {
10128 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -040010129 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010130 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010131 }
Chris Mason39279cc2007-06-12 06:35:45 -040010132
Casey Schauflerad19db72011-12-15 10:09:07 -050010133 /*
10134 * If the active LSM wants to access the inode during
10135 * d_instantiate it needs these. Smack checks to see
10136 * if the filesystem supports xattrs by looking at the
10137 * ops vector.
10138 */
10139 inode->i_fop = &btrfs_file_operations;
10140 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010141 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010142 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10143
10144 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10145 if (err)
Al Viro32955c52018-05-16 12:20:05 -040010146 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -050010147
Chris Mason39279cc2007-06-12 06:35:45 -040010148 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010149 if (!path) {
10150 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -040010151 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010152 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010153 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010154 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010155 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010156 datasize = btrfs_file_extent_calc_inline_size(name_len);
10157 err = btrfs_insert_empty_item(trans, root, path, &key,
10158 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010159 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010160 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -040010161 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -040010162 }
Chris Mason5f39d392007-10-15 16:14:19 -040010163 leaf = path->nodes[0];
10164 ei = btrfs_item_ptr(leaf, path->slots[0],
10165 struct btrfs_file_extent_item);
10166 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10167 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010168 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010169 btrfs_set_file_extent_encryption(leaf, ei, 0);
10170 btrfs_set_file_extent_compression(leaf, ei, 0);
10171 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10172 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10173
Chris Mason39279cc2007-06-12 06:35:45 -040010174 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010175 write_extent_buffer(leaf, symname, ptr, name_len);
10176 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010177 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010178
Chris Mason39279cc2007-06-12 06:35:45 -040010179 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010180 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -070010181 inode->i_mapping->a_ops = &btrfs_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010182 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010183 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010184 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010185 /*
10186 * Last step, add directory indexes for our symlink inode. This is the
10187 * last step to avoid extra cleanup of these indexes if an error happens
10188 * elsewhere above.
10189 */
10190 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010191 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10192 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -040010193 if (err)
10194 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -070010195
Al Viro1e2e5472018-05-04 08:23:01 -040010196 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010197
10198out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010199 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010200 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -040010201 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -040010202 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010203 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010204 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010205 return err;
10206}
Chris Mason16432982008-04-10 10:23:21 -040010207
Josef Bacik0af3d002010-06-21 14:48:16 -040010208static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10209 u64 start, u64 num_bytes, u64 min_size,
10210 loff_t actual_len, u64 *alloc_hint,
10211 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010212{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010213 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010214 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10215 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010216 struct btrfs_root *root = BTRFS_I(inode)->root;
10217 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010218 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010219 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010220 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010221 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010222 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010223 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010224 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010225
Josef Bacik0af3d002010-06-21 14:48:16 -040010226 if (trans)
10227 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010228 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010229 if (own_trans) {
10230 trans = btrfs_start_transaction(root, 3);
10231 if (IS_ERR(trans)) {
10232 ret = PTR_ERR(trans);
10233 break;
10234 }
Yan Zhengd899e052008-10-30 14:25:28 -040010235 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010236
Byongho Leeee221842015-12-15 01:42:10 +090010237 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010238 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010239 /*
10240 * If we are severely fragmented we could end up with really
10241 * small allocations, so if the allocator is returning small
10242 * chunks lets make its job easier by only searching for those
10243 * sized chunks.
10244 */
10245 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010246 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10247 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010248 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010249 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010250 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010251 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010252 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010253 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010254
Josef Bacik0b670dc2015-09-23 17:11:16 -040010255 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010256 ret = insert_reserved_file_extent(trans, inode,
10257 cur_offset, ins.objectid,
10258 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010259 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010260 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010261 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010262 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010263 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010264 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010265 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010266 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010267 break;
10268 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010269
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010270 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010271 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010272
Josef Bacik5dc562c2012-08-17 13:14:17 -040010273 em = alloc_extent_map();
10274 if (!em) {
10275 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10276 &BTRFS_I(inode)->runtime_flags);
10277 goto next;
10278 }
10279
10280 em->start = cur_offset;
10281 em->orig_start = cur_offset;
10282 em->len = ins.offset;
10283 em->block_start = ins.objectid;
10284 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010285 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010286 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010287 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010288 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10289 em->generation = trans->transid;
10290
10291 while (1) {
10292 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010293 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010294 write_unlock(&em_tree->lock);
10295 if (ret != -EEXIST)
10296 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010297 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010298 cur_offset + ins.offset - 1,
10299 0);
10300 }
10301 free_extent_map(em);
10302next:
Yan Zhengd899e052008-10-30 14:25:28 -040010303 num_bytes -= ins.offset;
10304 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010305 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010306
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010307 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010308 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010309 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010310 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010311 (actual_len > inode->i_size) &&
10312 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010313 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010314 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010315 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010316 i_size = cur_offset;
10317 i_size_write(inode, i_size);
10318 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010319 }
10320
Yan Zhengd899e052008-10-30 14:25:28 -040010321 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010322
10323 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010324 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010325 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010326 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010327 break;
10328 }
Yan Zhengd899e052008-10-30 14:25:28 -040010329
Josef Bacik0af3d002010-06-21 14:48:16 -040010330 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010331 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010332 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010333 if (cur_offset < end)
Qu Wenruobc42bda2017-02-27 15:10:39 +080010334 btrfs_free_reserved_data_space(inode, NULL, cur_offset,
Wang Xiaoguang18513092016-07-25 15:51:40 +080010335 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010336 return ret;
10337}
10338
Josef Bacik0af3d002010-06-21 14:48:16 -040010339int btrfs_prealloc_file_range(struct inode *inode, int mode,
10340 u64 start, u64 num_bytes, u64 min_size,
10341 loff_t actual_len, u64 *alloc_hint)
10342{
10343 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10344 min_size, actual_len, alloc_hint,
10345 NULL);
10346}
10347
10348int btrfs_prealloc_file_range_trans(struct inode *inode,
10349 struct btrfs_trans_handle *trans, int mode,
10350 u64 start, u64 num_bytes, u64 min_size,
10351 loff_t actual_len, u64 *alloc_hint)
10352{
10353 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10354 min_size, actual_len, alloc_hint, trans);
10355}
10356
Chris Masone6dcd2d2008-07-17 12:53:50 -040010357static int btrfs_set_page_dirty(struct page *page)
10358{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010359 return __set_page_dirty_nobuffers(page);
10360}
10361
Al Viro10556cb22011-06-20 19:28:19 -040010362static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010363{
Li Zefanb83cc962010-12-20 16:04:08 +080010364 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010365 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010366
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010367 if (mask & MAY_WRITE &&
10368 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10369 if (btrfs_root_readonly(root))
10370 return -EROFS;
10371 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10372 return -EACCES;
10373 }
Al Viro2830ba72011-06-20 19:16:29 -040010374 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010375}
Chris Mason39279cc2007-06-12 06:35:45 -040010376
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010377static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10378{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010379 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010380 struct btrfs_trans_handle *trans;
10381 struct btrfs_root *root = BTRFS_I(dir)->root;
10382 struct inode *inode = NULL;
10383 u64 objectid;
10384 u64 index;
10385 int ret = 0;
10386
10387 /*
10388 * 5 units required for adding orphan entry
10389 */
10390 trans = btrfs_start_transaction(root, 5);
10391 if (IS_ERR(trans))
10392 return PTR_ERR(trans);
10393
10394 ret = btrfs_find_free_ino(root, &objectid);
10395 if (ret)
10396 goto out;
10397
10398 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010399 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010400 if (IS_ERR(inode)) {
10401 ret = PTR_ERR(inode);
10402 inode = NULL;
10403 goto out;
10404 }
10405
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010406 inode->i_fop = &btrfs_file_operations;
10407 inode->i_op = &btrfs_file_inode_operations;
10408
10409 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010410 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10411
Chris Masonb0d5d102014-09-08 13:08:51 -070010412 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10413 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010414 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -070010415
10416 ret = btrfs_update_inode(trans, root, inode);
10417 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010418 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010419 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010420 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010421 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010422
Filipe Manana5762b5c2014-08-01 00:10:32 +010010423 /*
10424 * We set number of links to 0 in btrfs_new_inode(), and here we set
10425 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10426 * through:
10427 *
10428 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10429 */
10430 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010431 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -040010432 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010433 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010434out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010435 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010436 if (ret && inode)
10437 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010438 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010439 return ret;
10440}
10441
David Sterba20a7db82017-02-17 16:24:29 +010010442__attribute__((const))
Liu Bo9d0d1c82017-03-24 15:04:50 -070010443static int btrfs_readpage_io_failed_hook(struct page *page, int failed_mirror)
David Sterba20a7db82017-02-17 16:24:29 +010010444{
Liu Bo9d0d1c82017-03-24 15:04:50 -070010445 return -EAGAIN;
David Sterba20a7db82017-02-17 16:24:29 +010010446}
10447
David Sterba5cdc84b2018-07-18 20:32:52 +020010448void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -040010449{
David Sterba5cdc84b2018-07-18 20:32:52 +020010450 struct inode *inode = tree->private_data;
Josef Bacikc6100a42017-05-05 11:57:13 -040010451 unsigned long index = start >> PAGE_SHIFT;
10452 unsigned long end_index = end >> PAGE_SHIFT;
10453 struct page *page;
10454
10455 while (index <= end_index) {
10456 page = find_get_page(inode->i_mapping, index);
10457 ASSERT(page); /* Pages should be in the extent_io_tree */
10458 set_page_writeback(page);
10459 put_page(page);
10460 index++;
10461 }
10462}
10463
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010464static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010465 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010466 .lookup = btrfs_lookup,
10467 .create = btrfs_create,
10468 .unlink = btrfs_unlink,
10469 .link = btrfs_link,
10470 .mkdir = btrfs_mkdir,
10471 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010472 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010473 .symlink = btrfs_symlink,
10474 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010475 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010476 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010477 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010478 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010479 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010480 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010481 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010482};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010483static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010484 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010485 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010486 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010487};
Yan, Zheng76dda932009-09-21 16:00:26 -040010488
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010489static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010490 .llseek = generic_file_llseek,
10491 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010492 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010493 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010494 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010495#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010496 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010497#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010498 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010499 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010500};
10501
David Sterba20e55062015-11-19 11:42:28 +010010502static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010503 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010504 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010505 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Liu Bo9d0d1c82017-03-24 15:04:50 -070010506 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
David Sterba4d53ddd2017-02-17 15:27:44 +010010507
10508 /* optional callbacks */
Josef Bacik9ed74f22009-09-11 16:12:44 -040010509 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010510};
10511
Chris Mason35054392009-01-21 13:11:13 -050010512/*
10513 * btrfs doesn't support the bmap operation because swapfiles
10514 * use bmap to make a mapping of extents in the file. They assume
10515 * these extents won't change over the life of the file and they
10516 * use the bmap result to do IO directly to the drive.
10517 *
10518 * the btrfs bmap call would return logical addresses that aren't
10519 * suitable for IO and they also will change frequently as COW
10520 * operations happen. So, swapfile + btrfs == corruption.
10521 *
10522 * For now we're avoiding this by dropping bmap.
10523 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010524static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010525 .readpage = btrfs_readpage,
10526 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010527 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010528 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010529 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010530 .invalidatepage = btrfs_invalidatepage,
10531 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010532 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010533 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010534};
10535
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010536static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010537 .getattr = btrfs_getattr,
10538 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010539 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010540 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010541 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010542 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010543 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010544 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010545};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010546static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010547 .getattr = btrfs_getattr,
10548 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010549 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010550 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010551 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010552 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010553 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010554};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010555static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010556 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010557 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010558 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010559 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010560 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010561 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010562};
Yan, Zheng76dda932009-09-21 16:00:26 -040010563
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010564const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010565 .d_delete = btrfs_dentry_delete,
10566};