blob: a35f63691cf84bc963e76aaada64c2dab965587c [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>
Omar Sandovaled46ff32016-11-03 10:28:14 -070030#include <linux/swap.h>
David Sterba92d32172018-04-16 21:10:14 +020031#include <asm/unaligned.h>
Chris Mason39279cc2007-06-12 06:35:45 -040032#include "ctree.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040036#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040037#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040038#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020040#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040041#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050042#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050043#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080044#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000045#include "backref.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000046#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080047#include "qgroup.h"
Wang Xiaoguangdda32452016-07-11 11:05:29 +080048#include "dedupe.h"
Chris Mason39279cc2007-06-12 06:35:45 -040049
50struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080051 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040052 struct btrfs_root *root;
53};
54
Filipe Mananaf28a4922015-12-08 19:23:20 +000055struct btrfs_dio_data {
Filipe Mananaf28a4922015-12-08 19:23:20 +000056 u64 reserve;
57 u64 unsubmitted_oe_range_start;
58 u64 unsubmitted_oe_range_end;
Liu Bo4aaedfb2016-12-14 22:36:05 -080059 int overwrite;
Filipe Mananaf28a4922015-12-08 19:23:20 +000060};
61
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070062static const struct inode_operations btrfs_dir_inode_operations;
63static const struct inode_operations btrfs_symlink_inode_operations;
64static const struct inode_operations btrfs_dir_ro_inode_operations;
65static const struct inode_operations btrfs_special_inode_operations;
66static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070067static const struct address_space_operations btrfs_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070068static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010069static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040070
71static struct kmem_cache *btrfs_inode_cachep;
72struct kmem_cache *btrfs_trans_handle_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040073struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050074struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075
76#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010077static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040078 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
79 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
80 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
81 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
82 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
83 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
84 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
85};
86
Eric Sandeen3972f262013-01-12 02:57:22 +000087static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Filipe Manana213e8c52018-02-06 20:40:31 +000088static int btrfs_truncate(struct inode *inode, bool skip_writeback);
Josef Bacik5fd02042012-05-02 14:00:54 -040089static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050090static noinline int cow_file_range(struct inode *inode,
91 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +080092 u64 start, u64 end, u64 delalloc_end,
93 int *page_started, unsigned long *nr_written,
94 int unlock, struct btrfs_dedupe_hash *hash);
Liu Bo6f9994d2017-01-31 07:50:22 -080095static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
96 u64 orig_start, u64 block_start,
97 u64 block_len, u64 orig_block_len,
98 u64 ram_bytes, int compress_type,
99 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400100
Qu Wenruo524272602017-03-08 10:25:52 +0800101static void __endio_write_update_ordered(struct inode *inode,
102 const u64 offset, const u64 bytes,
103 const bool uptodate);
104
105/*
106 * Cleanup all submitted ordered extents in specified range to handle errors
Andrea Gelmini52042d82018-11-28 12:05:13 +0100107 * from the btrfs_run_delalloc_range() callback.
Qu Wenruo524272602017-03-08 10:25:52 +0800108 *
109 * NOTE: caller must ensure that when an error happens, it can not call
110 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
111 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
112 * to be released, which we want to happen only when finishing the ordered
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200113 * extent (btrfs_finish_ordered_io()).
Qu Wenruo524272602017-03-08 10:25:52 +0800114 */
115static inline void btrfs_cleanup_ordered_extents(struct inode *inode,
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200116 struct page *locked_page,
117 u64 offset, u64 bytes)
Qu Wenruo524272602017-03-08 10:25:52 +0800118{
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900119 unsigned long index = offset >> PAGE_SHIFT;
120 unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT;
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200121 u64 page_start = page_offset(locked_page);
122 u64 page_end = page_start + PAGE_SIZE - 1;
123
Naohiro Aota63d71450c2017-09-01 17:58:47 +0900124 struct page *page;
125
126 while (index <= end_index) {
127 page = find_get_page(inode->i_mapping, index);
128 index++;
129 if (!page)
130 continue;
131 ClearPagePrivate2(page);
132 put_page(page);
133 }
Nikolay Borisovd1051d62018-11-21 17:10:52 +0200134
135 /*
136 * In case this page belongs to the delalloc range being instantiated
137 * then skip it, since the first page of a range is going to be
138 * properly cleaned up by the caller of run_delalloc_range
139 */
140 if (page_start >= offset && page_end <= (offset + bytes - 1)) {
141 offset += PAGE_SIZE;
142 bytes -= PAGE_SIZE;
143 }
144
145 return __endio_write_update_ordered(inode, offset, bytes, false);
Qu Wenruo524272602017-03-08 10:25:52 +0800146}
147
Eric Sandeen48a3b632013-04-25 20:41:01 +0000148static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400149
Josef Bacik6a3891c2015-03-16 17:38:52 -0400150#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
151void btrfs_test_inode_set_ops(struct inode *inode)
152{
153 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
154}
155#endif
156
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000157static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500158 struct inode *inode, struct inode *dir,
159 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500160{
161 int err;
162
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000163 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500164 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500165 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500166 return err;
167}
168
Chris Masond352ac62008-09-29 15:18:18 -0400169/*
Chris Masonc8b97812008-10-29 14:49:59 -0400170 * this does all the hard work for inserting an inline extent into
171 * the btree. The caller should have done a btrfs_drop_extents so that
172 * no overlapping inline items exist in the btree
173 */
Chris Mason40f76582014-05-21 13:35:51 -0700174static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000175 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400176 struct btrfs_root *root, struct inode *inode,
177 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000178 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400179 struct page **compressed_pages)
180{
Chris Masonc8b97812008-10-29 14:49:59 -0400181 struct extent_buffer *leaf;
182 struct page *page = NULL;
183 char *kaddr;
184 unsigned long ptr;
185 struct btrfs_file_extent_item *ei;
Chris Masonc8b97812008-10-29 14:49:59 -0400186 int ret;
187 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400188 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400189
Li Zefanfe3f5662011-03-28 08:30:38 +0000190 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400191 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400192
Chris Masonc8b97812008-10-29 14:49:59 -0400193 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000194
195 if (!extent_inserted) {
196 struct btrfs_key key;
197 size_t datasize;
198
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200199 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000200 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200201 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000202
203 datasize = btrfs_file_extent_calc_inline_size(cur_size);
204 path->leave_spinning = 1;
205 ret = btrfs_insert_empty_item(trans, root, path, &key,
206 datasize);
David Sterba79b4f4c2017-06-15 19:09:51 +0200207 if (ret)
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000208 goto fail;
Chris Masonc8b97812008-10-29 14:49:59 -0400209 }
210 leaf = path->nodes[0];
211 ei = btrfs_item_ptr(leaf, path->slots[0],
212 struct btrfs_file_extent_item);
213 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
214 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
215 btrfs_set_file_extent_encryption(leaf, ei, 0);
216 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
217 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
218 ptr = btrfs_file_extent_inline_start(ei);
219
Li Zefan261507a02010-12-17 14:21:50 +0800220 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400221 struct page *cpage;
222 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500223 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400224 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500225 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300226 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400227
Cong Wang7ac687d2011-11-25 23:14:28 +0800228 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400229 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800230 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400231
232 i++;
233 ptr += cur_size;
234 compressed_size -= cur_size;
235 }
236 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800237 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400238 } else {
239 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300240 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400241 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800242 kaddr = kmap_atomic(page);
Johannes Thumshirn70730172018-12-05 15:23:03 +0100243 offset = offset_in_page(start);
Chris Masonc8b97812008-10-29 14:49:59 -0400244 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800245 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300246 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 }
248 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000249 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400250
Yan, Zhengc2167752009-11-12 09:34:21 +0000251 /*
252 * we're an inline extent, so nobody can
253 * extend the file past i_size without locking
254 * a page we already have locked.
255 *
256 * We must do any isize and inode updates
257 * before we unlock the pages. Otherwise we
258 * could end up racing with unlink.
259 */
Chris Masonc8b97812008-10-29 14:49:59 -0400260 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100261 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000262
Chris Masonc8b97812008-10-29 14:49:59 -0400263fail:
David Sterba79b4f4c2017-06-15 19:09:51 +0200264 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400265}
266
267
268/*
269 * conditionally insert an inline extent into the file. This
270 * does the checks required to make sure the data is small enough
271 * to fit as an inline extent.
272 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200273static noinline int cow_file_range_inline(struct inode *inode, u64 start,
Josef Bacik00361582013-08-14 14:02:47 -0400274 u64 end, size_t compressed_size,
275 int compress_type,
276 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400277{
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200278 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400279 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400280 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400281 u64 isize = i_size_read(inode);
282 u64 actual_end = min(end + 1, isize);
283 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400284 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400285 u64 data_len = inline_len;
286 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000287 struct btrfs_path *path;
288 int extent_inserted = 0;
289 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400290
291 if (compressed_size)
292 data_len = compressed_size;
293
294 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400295 actual_end > fs_info->sectorsize ||
296 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400297 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400298 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400299 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400300 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400301 return 1;
302 }
303
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000304 path = btrfs_alloc_path();
305 if (!path)
306 return -ENOMEM;
307
Josef Bacik00361582013-08-14 14:02:47 -0400308 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000309 if (IS_ERR(trans)) {
310 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400311 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000312 }
Josef Bacik69fe2d72017-10-19 14:15:57 -0400313 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400314
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000315 if (compressed_size && compressed_pages)
316 extent_item_size = btrfs_file_extent_calc_inline_size(
317 compressed_size);
318 else
319 extent_item_size = btrfs_file_extent_calc_inline_size(
320 inline_len);
321
322 ret = __btrfs_drop_extents(trans, root, inode, path,
323 start, aligned_end, NULL,
324 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400325 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400326 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400327 goto out;
328 }
Chris Masonc8b97812008-10-29 14:49:59 -0400329
330 if (isize > actual_end)
331 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000332 ret = insert_inline_extent(trans, path, extent_inserted,
333 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400334 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000335 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400336 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400337 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400338 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400339 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400340 ret = 1;
341 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100342 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400343
Josef Bacikbdc20e62013-02-28 13:23:38 -0500344 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200345 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400346out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800347 /*
348 * Don't forget to free the reserved space, as for inlined extent
349 * it won't count as data extent, free them directly here.
350 * And at reserve time, it's always aligned to page size, so
351 * just free one page here.
352 */
Qu Wenruobc42bda2017-02-27 15:10:39 +0800353 btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000354 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400355 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400356 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400357}
358
Chris Mason771ed682008-11-06 22:02:51 -0500359struct async_extent {
360 u64 start;
361 u64 ram_size;
362 u64 compressed_size;
363 struct page **pages;
364 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800365 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500366 struct list_head list;
367};
368
369struct async_cow {
370 struct inode *inode;
David Sterba600b6cf2018-11-22 17:16:44 +0100371 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -0500372 struct page *locked_page;
373 u64 start;
374 u64 end;
Liu Bof82b7352017-10-23 23:18:16 -0600375 unsigned int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500376 struct list_head extents;
377 struct btrfs_work work;
378};
379
380static noinline int add_async_extent(struct async_cow *cow,
381 u64 start, u64 ram_size,
382 u64 compressed_size,
383 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800384 unsigned long nr_pages,
385 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500386{
387 struct async_extent *async_extent;
388
389 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100390 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500391 async_extent->start = start;
392 async_extent->ram_size = ram_size;
393 async_extent->compressed_size = compressed_size;
394 async_extent->pages = pages;
395 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800396 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500397 list_add_tail(&async_extent->list, &cow->extents);
398 return 0;
399}
400
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300401static inline int inode_need_compress(struct inode *inode, u64 start, u64 end)
Wang Shilongf79707b2014-07-17 11:44:09 +0800402{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400403 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800404
405 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400406 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800407 return 1;
David Sterbaeec63c62017-07-17 19:41:31 +0200408 /* defrag ioctl */
409 if (BTRFS_I(inode)->defrag_compress)
410 return 1;
Wang Shilongf79707b2014-07-17 11:44:09 +0800411 /* bad compression ratios */
412 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
413 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400414 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800415 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
David Sterbab52aa8c2017-07-17 19:17:20 +0200416 BTRFS_I(inode)->prop_compress)
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300417 return btrfs_compress_heuristic(inode, start, end);
Wang Shilongf79707b2014-07-17 11:44:09 +0800418 return 0;
419}
420
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200421static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800422 u64 start, u64 end, u64 num_bytes, u64 small_write)
423{
424 /* If this is a small write inside eof, kick off a defrag */
425 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200426 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800427 btrfs_add_inode_defrag(NULL, inode);
428}
429
Chris Masonc8b97812008-10-29 14:49:59 -0400430/*
Chris Mason771ed682008-11-06 22:02:51 -0500431 * we create compressed extents in two phases. The first
432 * phase compresses a range of pages that have already been
433 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400434 *
Chris Mason771ed682008-11-06 22:02:51 -0500435 * This is done inside an ordered work queue, and the compression
436 * is spread across many cpus. The actual IO submission is step
437 * two, and the ordered work queue takes care of making sure that
438 * happens in the same order things were put onto the queue by
439 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400440 *
Chris Mason771ed682008-11-06 22:02:51 -0500441 * If this code finds it can't get good compression, it puts an
442 * entry onto the work queue to write the uncompressed bytes. This
443 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300444 * are written in the same order that the flusher thread sent them
445 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400446 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100447static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500448 struct page *locked_page,
449 u64 start, u64 end,
450 struct async_cow *async_cow,
451 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400452{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400453 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400454 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400455 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500456 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400457 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400458 struct page **pages = NULL;
459 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400460 unsigned long total_compressed = 0;
461 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400462 int i;
463 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400464 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400465 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400466
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200467 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
468 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400469
Chris Mason42dc7ba2008-12-15 11:44:56 -0500470 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400471again:
472 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300473 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100474 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
475 nr_pages = min_t(unsigned long, nr_pages,
476 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400477
Chris Masonf03d9301f2009-02-04 09:31:06 -0500478 /*
479 * we don't want to send crud past the end of i_size through
480 * compression, that's just a waste of CPU time. So, if the
481 * end of the file is before the start of our current
482 * requested range of bytes, we bail out to the uncompressed
483 * cleanup code that can deal with all of this.
484 *
485 * It isn't really the fastest way to fix things, but this is a
486 * very uncommon corner.
487 */
488 if (actual_end <= start)
489 goto cleanup_and_bail_uncompressed;
490
Chris Masonc8b97812008-10-29 14:49:59 -0400491 total_compressed = actual_end - start;
492
Shilong Wang4bcbb332014-10-07 18:44:35 -0400493 /*
494 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400495 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400496 */
497 if (total_compressed <= blocksize &&
498 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
499 goto cleanup_and_bail_uncompressed;
500
David Sterba069eac72017-02-14 19:36:54 +0100501 total_compressed = min_t(unsigned long, total_compressed,
502 BTRFS_MAX_UNCOMPRESSED);
Chris Masonc8b97812008-10-29 14:49:59 -0400503 total_in = 0;
504 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400505
Chris Mason771ed682008-11-06 22:02:51 -0500506 /*
507 * we do compression for mount -o compress and when the
508 * inode has not been flagged as nocompress. This flag can
509 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400510 */
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300511 if (inode_need_compress(inode, start, end)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400512 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100513 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800514 if (!pages) {
515 /* just bail out to the uncompressed code */
Filipe Manana3527a012018-10-13 00:37:25 +0100516 nr_pages = 0;
Li Zefan560f7d72011-09-08 10:22:01 +0800517 goto cont;
518 }
Chris Mason179e29e2007-11-01 11:28:41 -0400519
David Sterbaeec63c62017-07-17 19:41:31 +0200520 if (BTRFS_I(inode)->defrag_compress)
521 compress_type = BTRFS_I(inode)->defrag_compress;
522 else if (BTRFS_I(inode)->prop_compress)
David Sterbab52aa8c2017-07-17 19:17:20 +0200523 compress_type = BTRFS_I(inode)->prop_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800524
Chris Mason4adaa612013-03-26 13:07:00 -0400525 /*
526 * we need to call clear_page_dirty_for_io on each
527 * page in the range. Otherwise applications with the file
528 * mmap'd can wander in and change the page contents while
529 * we are compressing them.
530 *
531 * If the compression fails for any reason, we set the pages
532 * dirty again later on.
Timofey Titovetse9679de2017-10-24 01:29:48 +0300533 *
534 * Note that the remaining part is redirtied, the start pointer
535 * has moved, the end is the original one.
Chris Mason4adaa612013-03-26 13:07:00 -0400536 */
Timofey Titovetse9679de2017-10-24 01:29:48 +0300537 if (!redirty) {
538 extent_range_clear_dirty_for_io(inode, start, end);
539 redirty = 1;
540 }
David Sterbaf51d2b52017-09-15 17:36:57 +0200541
542 /* Compression level is applied here and only here */
543 ret = btrfs_compress_pages(
544 compress_type | (fs_info->compress_level << 4),
Li Zefan261507a02010-12-17 14:21:50 +0800545 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100546 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100547 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800548 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100549 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400550
551 if (!ret) {
Johannes Thumshirn70730172018-12-05 15:23:03 +0100552 unsigned long offset = offset_in_page(total_compressed);
David Sterba4d3a8002017-02-14 19:04:07 +0100553 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400554 char *kaddr;
555
556 /* zero the tail end of the last page, we might be
557 * sending it down to disk
558 */
559 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800560 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400561 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300562 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800563 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400564 }
565 will_compress = 1;
566 }
567 }
Li Zefan560f7d72011-09-08 10:22:01 +0800568cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400569 if (start == 0) {
570 /* lets try to make an inline extent */
Timofey Titovets6018ba02017-09-15 01:57:26 +0300571 if (ret || total_in < actual_end) {
Chris Masonc8b97812008-10-29 14:49:59 -0400572 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500573 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400574 */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200575 ret = cow_file_range_inline(inode, start, end, 0,
576 BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400577 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500578 /* try making a compressed inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200579 ret = cow_file_range_inline(inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000580 total_compressed,
581 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400582 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100583 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400584 unsigned long clear_flags = EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400585 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
586 EXTENT_DO_ACCOUNTING;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100587 unsigned long page_error_op;
588
Filipe Mananae6eb4312014-10-10 10:45:12 +0100589 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400590
Chris Mason771ed682008-11-06 22:02:51 -0500591 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100592 * inline extent creation worked or returned error,
593 * we don't need to create any more async work items.
594 * Unlock and free up our temp pages.
Josef Bacik8b62f872017-10-19 14:15:55 -0400595 *
596 * We use DO_ACCOUNTING here because we need the
597 * delalloc_release_metadata to be done _after_ we drop
598 * our outstanding extent for clearing delalloc for this
599 * range.
Chris Mason771ed682008-11-06 22:02:51 -0500600 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800601 extent_clear_unlock_delalloc(inode, start, end, end,
602 NULL, clear_flags,
603 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400604 PAGE_CLEAR_DIRTY |
605 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100606 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400607 PAGE_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400608 goto free_pages_out;
609 }
610 }
611
612 if (will_compress) {
613 /*
614 * we aren't doing an inline extent round the compressed size
615 * up to a block size boundary so the allocator does sane
616 * things
617 */
Qu Wenruofda28322013-02-26 08:10:22 +0000618 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400619
620 /*
621 * one last check to make sure the compression is really a
Timofey Titovets170607e2017-06-06 14:41:15 +0300622 * win, compare the page count read with the blocks on disk,
623 * compression must free at least one sector size
Chris Masonc8b97812008-10-29 14:49:59 -0400624 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300625 total_in = ALIGN(total_in, PAGE_SIZE);
Timofey Titovets170607e2017-06-06 14:41:15 +0300626 if (total_compressed + blocksize <= total_in) {
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700627 *num_added += 1;
628
629 /*
630 * The async work queues will take care of doing actual
631 * allocation on disk for these compressed pages, and
632 * will submit them to the elevator.
633 */
Timofey Titovets11708622017-10-03 18:06:01 +0300634 add_async_extent(async_cow, start, total_in,
David Sterba4d3a8002017-02-14 19:04:07 +0100635 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700636 compress_type);
637
Timofey Titovets11708622017-10-03 18:06:01 +0300638 if (start + total_in < end) {
639 start += total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700640 pages = NULL;
641 cond_resched();
642 goto again;
643 }
644 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400645 }
646 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700647 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400648 /*
649 * the compression code ran but failed to make things smaller,
650 * free any pages it allocated and our page pointer array
651 */
David Sterba4d3a8002017-02-14 19:04:07 +0100652 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400653 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300654 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400655 }
656 kfree(pages);
657 pages = NULL;
658 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100659 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400660
661 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400662 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
David Sterbab52aa8c2017-07-17 19:17:20 +0200663 !(BTRFS_I(inode)->prop_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500664 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500665 }
Chris Masonc8b97812008-10-29 14:49:59 -0400666 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500667cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700668 /*
669 * No compression, but we still need to write the pages in the file
670 * we've been given so far. redirty the locked page if it corresponds
671 * to our extent and set things up for the async work queue to run
672 * cow_file_range to do the normal delalloc dance.
673 */
674 if (page_offset(locked_page) >= start &&
675 page_offset(locked_page) <= end)
676 __set_page_dirty_nobuffers(locked_page);
677 /* unlocked later on in the async handlers */
678
679 if (redirty)
680 extent_range_redirty_for_io(inode, start, end);
681 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
682 BTRFS_COMPRESS_NONE);
683 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500684
Filipe Mananac44f6492014-10-09 21:15:44 +0100685 return;
Chris Mason771ed682008-11-06 22:02:51 -0500686
687free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100688 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500689 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300690 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500691 }
Chris Masond3977122009-01-05 21:25:51 -0500692 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500693}
Chris Mason771ed682008-11-06 22:02:51 -0500694
Filipe Manana40ae8372014-10-06 22:14:24 +0100695static void free_async_extent_pages(struct async_extent *async_extent)
696{
697 int i;
698
699 if (!async_extent->pages)
700 return;
701
702 for (i = 0; i < async_extent->nr_pages; i++) {
703 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300704 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100705 }
706 kfree(async_extent->pages);
707 async_extent->nr_pages = 0;
708 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500709}
710
711/*
712 * phase two of compressed writeback. This is the ordered portion
713 * of the code, which only gets called in the order the work was
714 * queued. We walk all the async extents created by compress_file_range
715 * and send them down to the disk.
716 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100717static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500718 struct async_cow *async_cow)
719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400720 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500721 struct async_extent *async_extent;
722 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500723 struct btrfs_key ins;
724 struct extent_map *em;
725 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500726 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500727 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500728
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500729again:
Chris Masond3977122009-01-05 21:25:51 -0500730 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500731 async_extent = list_entry(async_cow->extents.next,
732 struct async_extent, list);
733 list_del(&async_extent->list);
734
735 io_tree = &BTRFS_I(inode)->io_tree;
736
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500737retry:
Chris Mason771ed682008-11-06 22:02:51 -0500738 /* did the compression code fall back to uncompressed IO? */
739 if (!async_extent->pages) {
740 int page_started = 0;
741 unsigned long nr_written = 0;
742
743 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000744 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100745 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500746
747 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500748 ret = cow_file_range(inode, async_cow->locked_page,
749 async_extent->start,
750 async_extent->start +
751 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800752 async_extent->start +
753 async_extent->ram_size - 1,
754 &page_started, &nr_written, 0,
755 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500756
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100757 /* JDM XXX */
758
Chris Mason771ed682008-11-06 22:02:51 -0500759 /*
760 * if page_started, cow_file_range inserted an
761 * inline extent and took care of all the unlocking
762 * and IO for us. Otherwise, we need to submit
763 * all those pages down to the drive.
764 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500765 if (!page_started && !ret)
Nikolay Borisov5e3ee232017-12-08 15:55:58 +0200766 extent_write_locked_range(inode,
767 async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500768 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500769 async_extent->ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500770 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500771 else if (ret)
772 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500773 kfree(async_extent);
774 cond_resched();
775 continue;
776 }
777
778 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100779 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500780
Wang Xiaoguang18513092016-07-25 15:51:40 +0800781 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500782 async_extent->compressed_size,
783 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800784 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500785 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100786 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500787
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400788 if (ret == -ENOSPC) {
789 unlock_extent(io_tree, async_extent->start,
790 async_extent->start +
791 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800792
793 /*
794 * we need to redirty the pages if we decide to
795 * fallback to uncompressed IO, otherwise we
796 * will not submit these pages down to lower
797 * layers.
798 */
799 extent_range_redirty_for_io(inode,
800 async_extent->start,
801 async_extent->start +
802 async_extent->ram_size - 1);
803
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100804 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400805 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500806 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500807 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000808 /*
809 * here we're doing allocation and writeback of the
810 * compressed pages
811 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800812 em = create_io_em(inode, async_extent->start,
813 async_extent->ram_size, /* len */
814 async_extent->start, /* orig_start */
815 ins.objectid, /* block_start */
816 ins.offset, /* block_len */
817 ins.offset, /* orig_block_len */
818 async_extent->ram_size, /* ram_bytes */
819 async_extent->compress_type,
820 BTRFS_ORDERED_COMPRESSED);
821 if (IS_ERR(em))
822 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500823 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800824 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500825
Li Zefan261507a02010-12-17 14:21:50 +0800826 ret = btrfs_add_ordered_extent_compress(inode,
827 async_extent->start,
828 ins.objectid,
829 async_extent->ram_size,
830 ins.offset,
831 BTRFS_ORDERED_COMPRESSED,
832 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100833 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200834 btrfs_drop_extent_cache(BTRFS_I(inode),
835 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100836 async_extent->start +
837 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500838 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100839 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400840 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500841
Chris Mason771ed682008-11-06 22:02:51 -0500842 /*
843 * clear dirty, set writeback and unlock the pages.
844 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400845 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400846 async_extent->start +
847 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800848 async_extent->start +
849 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400850 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
851 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400852 PAGE_SET_WRITEBACK);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200853 if (btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500854 async_extent->start,
855 async_extent->ram_size,
856 ins.objectid,
857 ins.offset, async_extent->pages,
Liu Bof82b7352017-10-23 23:18:16 -0600858 async_extent->nr_pages,
859 async_cow->write_flags)) {
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100860 struct page *p = async_extent->pages[0];
861 const u64 start = async_extent->start;
862 const u64 end = start + async_extent->ram_size - 1;
863
864 p->mapping = inode->i_mapping;
Nikolay Borisovc6297322018-11-08 10:18:08 +0200865 btrfs_writepage_endio_finish_ordered(p, start, end, 0);
Nikolay Borisov7087a9d2018-11-01 14:09:48 +0200866
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100867 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800868 extent_clear_unlock_delalloc(inode, start, end, end,
869 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100870 PAGE_END_WRITEBACK |
871 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100872 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100873 }
Chris Mason771ed682008-11-06 22:02:51 -0500874 alloc_hint = ins.objectid + ins.offset;
875 kfree(async_extent);
876 cond_resched();
877 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100878 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500879out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400880 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400881 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100882out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400883 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500884 async_extent->start +
885 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800886 async_extent->start +
887 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400888 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100889 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400890 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
891 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100892 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
893 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100894 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100895 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500896 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500897}
898
Josef Bacik4b46fce2010-05-23 11:00:55 -0400899static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
900 u64 num_bytes)
901{
902 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
903 struct extent_map *em;
904 u64 alloc_hint = 0;
905
906 read_lock(&em_tree->lock);
907 em = search_extent_mapping(em_tree, start, num_bytes);
908 if (em) {
909 /*
910 * if block start isn't an actual block number then find the
911 * first block in this inode and use that as a hint. If that
912 * block is also bogus then just don't worry about it.
913 */
914 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
915 free_extent_map(em);
916 em = search_extent_mapping(em_tree, 0, 0);
917 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
918 alloc_hint = em->block_start;
919 if (em)
920 free_extent_map(em);
921 } else {
922 alloc_hint = em->block_start;
923 free_extent_map(em);
924 }
925 }
926 read_unlock(&em_tree->lock);
927
928 return alloc_hint;
929}
930
Chris Mason771ed682008-11-06 22:02:51 -0500931/*
932 * when extent_io.c finds a delayed allocation range in the file,
933 * the call backs end up in this code. The basic idea is to
934 * allocate extents on disk for the range, and create ordered data structs
935 * in ram to track those extents.
936 *
937 * locked_page is the page that writepage had locked already. We use
938 * it to make sure we don't do extra locks or unlocks.
939 *
940 * *page_started is set to one if we unlock locked_page and do everything
941 * required to start IO on it. It may be clean and already done with
942 * IO when we return.
943 */
Josef Bacik00361582013-08-14 14:02:47 -0400944static noinline int cow_file_range(struct inode *inode,
945 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800946 u64 start, u64 end, u64 delalloc_end,
947 int *page_started, unsigned long *nr_written,
948 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500949{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400950 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400951 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500952 u64 alloc_hint = 0;
953 u64 num_bytes;
954 unsigned long ram_size;
Filipe Mananaa315e682017-03-06 23:04:20 +0000955 u64 cur_alloc_size = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400956 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500957 struct btrfs_key ins;
958 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000959 unsigned clear_bits;
960 unsigned long page_ops;
961 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500962 int ret = 0;
963
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200964 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400965 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500966 ret = -EINVAL;
967 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400968 }
Chris Mason771ed682008-11-06 22:02:51 -0500969
Qu Wenruofda28322013-02-26 08:10:22 +0000970 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500971 num_bytes = max(blocksize, num_bytes);
Anand Jain566b1762018-02-15 18:07:59 +0800972 ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy));
Chris Mason771ed682008-11-06 22:02:51 -0500973
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200974 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400975
Chris Mason771ed682008-11-06 22:02:51 -0500976 if (start == 0) {
977 /* lets try to make an inline extent */
Nikolay Borisovd02c0e22018-03-02 09:43:15 +0200978 ret = cow_file_range_inline(inode, start, end, 0,
979 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500980 if (ret == 0) {
Josef Bacik8b62f872017-10-19 14:15:55 -0400981 /*
982 * We use DO_ACCOUNTING here because we need the
983 * delalloc_release_metadata to be run _after_ we drop
984 * our outstanding extent for clearing delalloc for this
985 * range.
986 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800987 extent_clear_unlock_delalloc(inode, start, end,
988 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400989 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik8b62f872017-10-19 14:15:55 -0400990 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG |
991 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400992 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
993 PAGE_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500994 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300995 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500996 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500997 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100998 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100999 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -05001000 }
1001 }
Chris Masonc8b97812008-10-29 14:49:59 -04001002
Josef Bacik4b46fce2010-05-23 11:00:55 -04001003 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001004 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1005 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -04001006
Anand Jain3752d222018-02-15 12:29:38 +08001007 while (num_bytes > 0) {
1008 cur_alloc_size = num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001009 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001010 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001011 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001012 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001013 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001014 cur_alloc_size = ins.offset;
1015 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001016
Chris Mason771ed682008-11-06 22:02:51 -05001017 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -08001018 em = create_io_em(inode, start, ins.offset, /* len */
1019 start, /* orig_start */
1020 ins.objectid, /* block_start */
1021 ins.offset, /* block_len */
1022 ins.offset, /* orig_block_len */
1023 ram_size, /* ram_bytes */
1024 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001025 BTRFS_ORDERED_REGULAR /* type */);
Su Yue090a127a2018-05-30 16:48:56 +08001026 if (IS_ERR(em)) {
1027 ret = PTR_ERR(em);
Liu Boace68ba2013-04-22 10:53:47 +00001028 goto out_reserve;
Su Yue090a127a2018-05-30 16:48:56 +08001029 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001030 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001031
Chris Masone6dcd2d2008-07-17 12:53:50 -04001032 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001033 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001034 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001035 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001036
Yan Zheng17d217f2008-12-12 10:03:38 -05001037 if (root->root_key.objectid ==
1038 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1039 ret = btrfs_reloc_clone_csums(inode, start,
1040 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001041 /*
1042 * Only drop cache here, and process as normal.
1043 *
1044 * We must not allow extent_clear_unlock_delalloc()
1045 * at out_unlock label to free meta of this ordered
1046 * extent, as its meta should be freed by
1047 * btrfs_finish_ordered_io().
1048 *
1049 * So we must continue until @start is increased to
1050 * skip current ordered extent.
1051 */
Josef Bacik00361582013-08-14 14:02:47 -04001052 if (ret)
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001053 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1054 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001055 }
1056
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001057 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001058
Chris Masonc8b97812008-10-29 14:49:59 -04001059 /* we're not doing compressed IO, don't unlock the first
1060 * page (which the caller expects to stay locked), don't
1061 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001062 *
1063 * Do set the Private2 bit so we know this page was properly
1064 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001065 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001066 page_ops = unlock ? PAGE_UNLOCK : 0;
1067 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001068
Josef Bacikc2790a22013-07-29 11:20:47 -04001069 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001070 start + ram_size - 1,
1071 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001072 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001073 page_ops);
Anand Jain3752d222018-02-15 12:29:38 +08001074 if (num_bytes < cur_alloc_size)
1075 num_bytes = 0;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001076 else
Anand Jain3752d222018-02-15 12:29:38 +08001077 num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001078 alloc_hint = ins.objectid + ins.offset;
1079 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001080 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001081
1082 /*
1083 * btrfs_reloc_clone_csums() error, since start is increased
1084 * extent_clear_unlock_delalloc() at out_unlock label won't
1085 * free metadata of current ordered extent, we're OK to exit.
1086 */
1087 if (ret)
1088 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001089 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001090out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001091 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001092
Filipe Mananad9f85962014-08-25 10:43:00 +01001093out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001094 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001095out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001096 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001097 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001098out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001099 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1100 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001101 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1102 PAGE_END_WRITEBACK;
1103 /*
1104 * If we reserved an extent for our delalloc range (or a subrange) and
1105 * failed to create the respective ordered extent, then it means that
1106 * when we reserved the extent we decremented the extent's size from
1107 * the data space_info's bytes_may_use counter and incremented the
1108 * space_info's bytes_reserved counter by the same amount. We must make
1109 * sure extent_clear_unlock_delalloc() does not try to decrement again
1110 * the data space_info's bytes_may_use counter, therefore we do not pass
1111 * it the flag EXTENT_CLEAR_DATA_RESV.
1112 */
1113 if (extent_reserved) {
1114 extent_clear_unlock_delalloc(inode, start,
1115 start + cur_alloc_size,
1116 start + cur_alloc_size,
1117 locked_page,
1118 clear_bits,
1119 page_ops);
1120 start += cur_alloc_size;
1121 if (start >= end)
1122 goto out;
1123 }
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001124 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1125 locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001126 clear_bits | EXTENT_CLEAR_DATA_RESV,
1127 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001128 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001129}
Chris Masonc8b97812008-10-29 14:49:59 -04001130
Chris Mason771ed682008-11-06 22:02:51 -05001131/*
1132 * work queue call back to started compression on a file and pages
1133 */
1134static noinline void async_cow_start(struct btrfs_work *work)
1135{
1136 struct async_cow *async_cow;
1137 int num_added = 0;
1138 async_cow = container_of(work, struct async_cow, work);
1139
1140 compress_file_range(async_cow->inode, async_cow->locked_page,
1141 async_cow->start, async_cow->end, async_cow,
1142 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001143 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001144 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001145 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001146 }
Chris Mason771ed682008-11-06 22:02:51 -05001147}
1148
1149/*
1150 * work queue call back to submit previously compressed pages
1151 */
1152static noinline void async_cow_submit(struct btrfs_work *work)
1153{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001154 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001155 struct async_cow *async_cow;
Chris Mason771ed682008-11-06 22:02:51 -05001156 unsigned long nr_pages;
1157
1158 async_cow = container_of(work, struct async_cow, work);
1159
David Sterba600b6cf2018-11-22 17:16:44 +01001160 fs_info = async_cow->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001161 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1162 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001163
David Sterba093258e2018-02-26 16:15:17 +01001164 /* atomic_sub_return implies a barrier */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001165 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
David Sterba093258e2018-02-26 16:15:17 +01001166 5 * SZ_1M)
1167 cond_wake_up_nomb(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001168
Chris Masond3977122009-01-05 21:25:51 -05001169 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001170 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001171}
Chris Masonc8b97812008-10-29 14:49:59 -04001172
Chris Mason771ed682008-11-06 22:02:51 -05001173static noinline void async_cow_free(struct btrfs_work *work)
1174{
1175 struct async_cow *async_cow;
1176 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001177 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001178 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001179 kfree(async_cow);
1180}
1181
1182static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1183 u64 start, u64 end, int *page_started,
Liu Bof82b7352017-10-23 23:18:16 -06001184 unsigned long *nr_written,
1185 unsigned int write_flags)
Chris Mason771ed682008-11-06 22:02:51 -05001186{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001187 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001188 struct async_cow *async_cow;
Chris Mason771ed682008-11-06 22:02:51 -05001189 unsigned long nr_pages;
1190 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001191
Chris Masona3429ab2009-10-08 12:30:20 -04001192 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
David Sterbaae0f1622017-10-31 16:37:52 +01001193 1, 0, NULL);
Chris Masond3977122009-01-05 21:25:51 -05001194 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001195 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001196 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001197 async_cow->inode = igrab(inode);
David Sterba600b6cf2018-11-22 17:16:44 +01001198 async_cow->fs_info = fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001199 async_cow->locked_page = locked_page;
1200 async_cow->start = start;
Liu Bof82b7352017-10-23 23:18:16 -06001201 async_cow->write_flags = write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05001202
Wang Shilongf79707b2014-07-17 11:44:09 +08001203 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001204 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001205 cur_end = end;
1206 else
Byongho Leeee221842015-12-15 01:42:10 +09001207 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001208
1209 async_cow->end = cur_end;
1210 INIT_LIST_HEAD(&async_cow->extents);
1211
Liu Bo9e0af232014-08-15 23:36:53 +08001212 btrfs_init_work(&async_cow->work,
1213 btrfs_delalloc_helper,
1214 async_cow_start, async_cow_submit,
1215 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001216
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001217 nr_pages = (cur_end - start + PAGE_SIZE) >>
1218 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001219 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001220
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001221 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001222
Chris Mason771ed682008-11-06 22:02:51 -05001223 *nr_written += nr_pages;
1224 start = cur_end + 1;
1225 }
1226 *page_started = 1;
1227 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001228}
1229
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001230static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001231 u64 bytenr, u64 num_bytes)
1232{
1233 int ret;
1234 struct btrfs_ordered_sum *sums;
1235 LIST_HEAD(list);
1236
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001237 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001238 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001239 if (ret == 0 && list_empty(&list))
1240 return 0;
1241
1242 while (!list_empty(&list)) {
1243 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1244 list_del(&sums->list);
1245 kfree(sums);
1246 }
Liu Bo58113752018-01-31 17:09:13 -07001247 if (ret < 0)
1248 return ret;
Yan Zheng17d217f2008-12-12 10:03:38 -05001249 return 1;
1250}
1251
Chris Masond352ac62008-09-29 15:18:18 -04001252/*
1253 * when nowcow writeback call back. This checks for snapshots or COW copies
1254 * of the extents that exist in the file, and COWs the file as required.
1255 *
1256 * If no cow copies or snapshots exist, we write directly to the existing
1257 * blocks on disk
1258 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001259static noinline int run_delalloc_nocow(struct inode *inode,
1260 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001261 u64 start, u64 end, int *page_started, int force,
1262 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001263{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001264 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001265 struct btrfs_root *root = BTRFS_I(inode)->root;
1266 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001267 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001268 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001269 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001270 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001271 u64 cow_start;
1272 u64 cur_offset;
1273 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001274 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001275 u64 disk_bytenr;
1276 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001277 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001278 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001279 int extent_type;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001280 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001281 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001282 int nocow;
1283 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001284 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001285 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001286
1287 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001288 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001289 extent_clear_unlock_delalloc(inode, start, end, end,
1290 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001291 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001292 EXTENT_DO_ACCOUNTING |
1293 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001294 PAGE_CLEAR_DIRTY |
1295 PAGE_SET_WRITEBACK |
1296 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001297 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001298 }
Li Zefan82d59022011-04-20 10:33:24 +08001299
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001300 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001301
Yan Zheng80ff3852008-10-30 14:20:02 -04001302 cow_start = (u64)-1;
1303 cur_offset = start;
1304 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001305 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001306 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001307 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001308 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001309 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1310 leaf = path->nodes[0];
1311 btrfs_item_key_to_cpu(leaf, &found_key,
1312 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001313 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001314 found_key.type == BTRFS_EXTENT_DATA_KEY)
1315 path->slots[0]--;
1316 }
1317 check_prev = 0;
1318next_slot:
1319 leaf = path->nodes[0];
1320 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1321 ret = btrfs_next_leaf(root, path);
Liu Boe8916692018-01-25 11:02:50 -07001322 if (ret < 0) {
1323 if (cow_start != (u64)-1)
1324 cur_offset = cow_start;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001325 goto error;
Liu Boe8916692018-01-25 11:02:50 -07001326 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001327 if (ret > 0)
1328 break;
1329 leaf = path->nodes[0];
1330 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001331
Yan Zheng80ff3852008-10-30 14:20:02 -04001332 nocow = 0;
1333 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001334 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001335 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001336
Filipe Manana1d512cb2015-11-09 00:33:58 +00001337 if (found_key.objectid > ino)
1338 break;
1339 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1340 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1341 path->slots[0]++;
1342 goto next_slot;
1343 }
1344 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 found_key.offset > end)
1346 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001347
Yan Zheng80ff3852008-10-30 14:20:02 -04001348 if (found_key.offset > cur_offset) {
1349 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001350 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001351 goto out_check;
1352 }
Chris Masonc31f8832008-01-08 15:46:31 -05001353
Yan Zheng80ff3852008-10-30 14:20:02 -04001354 fi = btrfs_item_ptr(leaf, path->slots[0],
1355 struct btrfs_file_extent_item);
1356 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001357
Josef Bacikcc95bef2013-04-04 14:31:27 -04001358 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001359 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1360 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001361 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001362 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001363 extent_end = found_key.offset +
1364 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001365 disk_num_bytes =
1366 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001367 if (extent_end <= start) {
1368 path->slots[0]++;
1369 goto next_slot;
1370 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001371 if (disk_bytenr == 0)
1372 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001373 if (btrfs_file_extent_compression(leaf, fi) ||
1374 btrfs_file_extent_encryption(leaf, fi) ||
1375 btrfs_file_extent_other_encoding(leaf, fi))
1376 goto out_check;
Ethan Lien78d42952018-05-17 14:58:29 +08001377 /*
1378 * Do the same check as in btrfs_cross_ref_exist but
1379 * without the unnecessary search.
1380 */
Lu Fengqi27a7ff52018-11-29 17:31:32 +08001381 if (!nolock &&
1382 btrfs_file_extent_generation(leaf, fi) <=
Ethan Lien78d42952018-05-17 14:58:29 +08001383 btrfs_root_last_snapshot(&root->root_item))
1384 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001385 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1386 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001387 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001388 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001389 ret = btrfs_cross_ref_exist(root, ino,
1390 found_key.offset -
1391 extent_offset, disk_bytenr);
1392 if (ret) {
1393 /*
1394 * ret could be -EIO if the above fails to read
1395 * metadata.
1396 */
1397 if (ret < 0) {
1398 if (cow_start != (u64)-1)
1399 cur_offset = cow_start;
1400 goto error;
1401 }
1402
1403 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001404 goto out_check;
Liu Bo58113752018-01-31 17:09:13 -07001405 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001406 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001407 disk_bytenr += cur_offset - found_key.offset;
1408 num_bytes = min(end + 1, extent_end) - cur_offset;
1409 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001410 * if there are pending snapshots for this root,
1411 * we fall into common COW way.
1412 */
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001413 if (!nolock && atomic_read(&root->snapshot_force_cow))
1414 goto out_check;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001415 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001416 * force cow if csum exists in the range.
1417 * this ensure that csum for a given extent are
1418 * either valid or do not exist.
1419 */
Liu Bo58113752018-01-31 17:09:13 -07001420 ret = csum_exist_in_range(fs_info, disk_bytenr,
1421 num_bytes);
1422 if (ret) {
Liu Bo58113752018-01-31 17:09:13 -07001423 /*
1424 * ret could be -EIO if the above fails to read
1425 * metadata.
1426 */
1427 if (ret < 0) {
1428 if (cow_start != (u64)-1)
1429 cur_offset = cow_start;
1430 goto error;
1431 }
1432 WARN_ON_ONCE(nolock);
Yan Zheng17d217f2008-12-12 10:03:38 -05001433 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001434 }
Robbie Ko8ecebf4d2018-08-06 10:30:30 +08001435 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001436 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001437 nocow = 1;
1438 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1439 extent_end = found_key.offset +
Qu Wenruoe41ca582018-06-06 15:41:49 +08001440 btrfs_file_extent_ram_bytes(leaf, fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001441 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001442 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001443 } else {
1444 BUG_ON(1);
1445 }
1446out_check:
1447 if (extent_end <= start) {
1448 path->slots[0]++;
Filipe Mananaf78c4362016-05-09 13:15:41 +01001449 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001450 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001451 goto next_slot;
1452 }
1453 if (!nocow) {
1454 if (cow_start == (u64)-1)
1455 cow_start = cur_offset;
1456 cur_offset = extent_end;
1457 if (cur_offset > end)
1458 break;
1459 path->slots[0]++;
1460 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001461 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001462
David Sterbab3b4aa72011-04-21 01:20:15 +02001463 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001464 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001465 ret = cow_file_range(inode, locked_page,
1466 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001467 end, page_started, nr_written, 1,
1468 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001469 if (ret) {
Filipe Mananaf78c4362016-05-09 13:15:41 +01001470 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001471 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001472 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001473 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001474 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001475 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001476 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001477
Yan Zhengd899e052008-10-30 14:25:28 -04001478 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001479 u64 orig_start = found_key.offset - extent_offset;
1480
1481 em = create_io_em(inode, cur_offset, num_bytes,
1482 orig_start,
1483 disk_bytenr, /* block_start */
1484 num_bytes, /* block_len */
1485 disk_num_bytes, /* orig_block_len */
1486 ram_bytes, BTRFS_COMPRESS_NONE,
1487 BTRFS_ORDERED_PREALLOC);
1488 if (IS_ERR(em)) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001489 if (nocow)
1490 btrfs_dec_nocow_writers(fs_info,
1491 disk_bytenr);
1492 ret = PTR_ERR(em);
1493 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001494 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001495 free_extent_map(em);
1496 }
1497
1498 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001499 type = BTRFS_ORDERED_PREALLOC;
1500 } else {
1501 type = BTRFS_ORDERED_NOCOW;
1502 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001503
1504 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001505 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001506 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001507 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001508 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001509
Yan, Zhengefa56462010-05-16 10:49:59 -04001510 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001511 BTRFS_DATA_RELOC_TREE_OBJECTID)
1512 /*
1513 * Error handled later, as we must prevent
1514 * extent_clear_unlock_delalloc() in error handler
1515 * from freeing metadata of created ordered extent.
1516 */
Yan, Zhengefa56462010-05-16 10:49:59 -04001517 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1518 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001519
Josef Bacikc2790a22013-07-29 11:20:47 -04001520 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001521 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001522 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001523 EXTENT_DELALLOC |
1524 EXTENT_CLEAR_DATA_RESV,
1525 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1526
Yan Zheng80ff3852008-10-30 14:20:02 -04001527 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001528
1529 /*
1530 * btrfs_reloc_clone_csums() error, now we're OK to call error
1531 * handler, as metadata for created ordered extent will only
1532 * be freed by btrfs_finish_ordered_io().
1533 */
1534 if (ret)
1535 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001536 if (cur_offset > end)
1537 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001538 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001539 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001540
Robbie Ko506481b2018-10-30 18:04:04 +08001541 if (cur_offset <= end && cow_start == (u64)-1)
Yan Zheng80ff3852008-10-30 14:20:02 -04001542 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001543
Yan Zheng80ff3852008-10-30 14:20:02 -04001544 if (cow_start != (u64)-1) {
Robbie Ko506481b2018-10-30 18:04:04 +08001545 cur_offset = end;
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001546 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1547 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001548 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001549 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001550 }
1551
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001552error:
Josef Bacik17ca04a2012-05-31 15:58:55 -04001553 if (ret && cur_offset < end)
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001554 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001555 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001556 EXTENT_DELALLOC | EXTENT_DEFRAG |
1557 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1558 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001559 PAGE_SET_WRITEBACK |
1560 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001561 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001562 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001563}
1564
Wang Shilong47059d92014-07-03 18:22:07 +08001565static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1566{
1567
1568 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1569 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1570 return 0;
1571
1572 /*
1573 * @defrag_bytes is a hint value, no spinlock held here,
1574 * if is not zero, it means the file is defragging.
1575 * Force cow if given extent needs to be defragged.
1576 */
1577 if (BTRFS_I(inode)->defrag_bytes &&
1578 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1579 EXTENT_DEFRAG, 0, NULL))
1580 return 1;
1581
1582 return 0;
1583}
1584
Chris Masond352ac62008-09-29 15:18:18 -04001585/*
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001586 * Function to process delayed allocation (create CoW) for ranges which are
1587 * being touched for the first time.
Chris Masond352ac62008-09-29 15:18:18 -04001588 */
Nikolay Borisovbc9a8bf2018-12-19 09:50:20 +02001589int btrfs_run_delalloc_range(struct inode *inode, struct page *locked_page,
Nikolay Borisov5eaad972018-11-01 14:09:46 +02001590 u64 start, u64 end, int *page_started, unsigned long *nr_written,
1591 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001592{
Chris Masonbe20aa92007-12-17 20:14:01 -05001593 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001594 int force_cow = need_force_cow(inode, start, end);
Liu Bof82b7352017-10-23 23:18:16 -06001595 unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Masona2135012008-06-25 16:01:30 -04001596
Wang Shilong47059d92014-07-03 18:22:07 +08001597 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001598 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001599 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001600 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001601 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001602 page_started, 0, nr_written);
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001603 } else if (!inode_need_compress(inode, start, end)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001604 ret = cow_file_range(inode, locked_page, start, end, end,
1605 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001606 } else {
1607 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1608 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001609 ret = cow_file_range_async(inode, locked_page, start, end,
Liu Bof82b7352017-10-23 23:18:16 -06001610 page_started, nr_written,
1611 write_flags);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001612 }
Qu Wenruo524272602017-03-08 10:25:52 +08001613 if (ret)
Nikolay Borisovd1051d62018-11-21 17:10:52 +02001614 btrfs_cleanup_ordered_extents(inode, locked_page, start,
1615 end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001616 return ret;
1617}
1618
Nikolay Borisovabbb55f2018-11-01 14:09:53 +02001619void btrfs_split_delalloc_extent(struct inode *inode,
1620 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001621{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001622 u64 size;
1623
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001624 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001625 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001626 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001627
Josef Bacikdcab6a32015-02-11 15:08:59 -05001628 size = orig->end - orig->start + 1;
1629 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001630 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001631 u64 new_size;
1632
1633 /*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001634 * See the explanation in btrfs_merge_delalloc_extent, the same
Josef Bacikba117212015-03-13 15:01:24 -04001635 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001636 */
1637 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001638 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001639 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001640 num_extents += count_max_extents(new_size);
1641 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001642 return;
1643 }
1644
Josef Bacik9e0baf62011-07-15 15:16:44 +00001645 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001646 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001647 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001648}
1649
1650/*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001651 * Handle merged delayed allocation extents so we can keep track of new extents
1652 * that are just merged onto old extents, such as when we are doing sequential
1653 * writes, so we can properly account for the metadata space we'll need.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001654 */
Nikolay Borisov5c848192018-11-01 14:09:52 +02001655void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1656 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001657{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001658 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001659 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001660
Josef Bacik9ed74f22009-09-11 16:12:44 -04001661 /* not delalloc, ignore it */
1662 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001663 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001664
Josef Bacik8461a3d2015-03-13 15:12:08 -04001665 if (new->start > other->start)
1666 new_size = new->end - other->start + 1;
1667 else
1668 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001669
1670 /* we're not bigger than the max, unreserve the space and go */
1671 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1672 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001673 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001674 spin_unlock(&BTRFS_I(inode)->lock);
1675 return;
1676 }
1677
1678 /*
Josef Bacikba117212015-03-13 15:01:24 -04001679 * We have to add up either side to figure out how many extents were
1680 * accounted for before we merged into one big extent. If the number of
1681 * extents we accounted for is <= the amount we need for the new range
1682 * then we can return, otherwise drop. Think of it like this
1683 *
1684 * [ 4k][MAX_SIZE]
1685 *
1686 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1687 * need 2 outstanding extents, on one side we have 1 and the other side
1688 * we have 1 so they are == and we can return. But in this case
1689 *
1690 * [MAX_SIZE+4k][MAX_SIZE+4k]
1691 *
1692 * Each range on their own accounts for 2 extents, but merged together
1693 * they are only 3 extents worth of accounting, so we need to drop in
1694 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001695 */
Josef Bacikba117212015-03-13 15:01:24 -04001696 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001697 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001698 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001699 num_extents += count_max_extents(old_size);
1700 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001701 return;
1702
Josef Bacik9e0baf62011-07-15 15:16:44 +00001703 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001704 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001705 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001706}
1707
Miao Xieeb73c1b2013-05-15 07:48:22 +00001708static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1709 struct inode *inode)
1710{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001711 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1712
Miao Xieeb73c1b2013-05-15 07:48:22 +00001713 spin_lock(&root->delalloc_lock);
1714 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1715 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1716 &root->delalloc_inodes);
1717 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1718 &BTRFS_I(inode)->runtime_flags);
1719 root->nr_delalloc_inodes++;
1720 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001721 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001722 BUG_ON(!list_empty(&root->delalloc_root));
1723 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001724 &fs_info->delalloc_roots);
1725 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001726 }
1727 }
1728 spin_unlock(&root->delalloc_lock);
1729}
1730
Nikolay Borisov2b877332018-04-27 12:21:51 +03001731
1732void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1733 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001734{
David Sterba3ffbd682018-06-29 10:56:42 +02001735 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001736
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001737 if (!list_empty(&inode->delalloc_inodes)) {
1738 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001739 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001740 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001741 root->nr_delalloc_inodes--;
1742 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03001743 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001744 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001745 BUG_ON(list_empty(&root->delalloc_root));
1746 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001747 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001748 }
1749 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03001750}
1751
1752static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1753 struct btrfs_inode *inode)
1754{
1755 spin_lock(&root->delalloc_lock);
1756 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001757 spin_unlock(&root->delalloc_lock);
1758}
1759
Chris Masond352ac62008-09-29 15:18:18 -04001760/*
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001761 * Properly track delayed allocation bytes in the inode and to maintain the
1762 * list of inodes that have pending delalloc work to be done.
Chris Masond352ac62008-09-29 15:18:18 -04001763 */
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001764void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
1765 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001766{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001767 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1768
Wang Shilong47059d92014-07-03 18:22:07 +08001769 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1770 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001771 /*
1772 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001773 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001774 * bit, which is only set or cleared with irqs on
1775 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001776 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001777 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001778 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04001779 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001780 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001781
Josef Bacik8b62f872017-10-19 14:15:55 -04001782 spin_lock(&BTRFS_I(inode)->lock);
1783 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1784 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001785
Josef Bacik6a3891c2015-03-16 17:38:52 -04001786 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001787 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001788 return;
1789
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001790 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1791 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001792 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001793 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001794 if (*bits & EXTENT_DEFRAG)
1795 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001796 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001797 &BTRFS_I(inode)->runtime_flags))
1798 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001799 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001800 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001801
1802 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1803 (*bits & EXTENT_DELALLOC_NEW)) {
1804 spin_lock(&BTRFS_I(inode)->lock);
1805 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1806 state->start;
1807 spin_unlock(&BTRFS_I(inode)->lock);
1808 }
Chris Mason291d6732008-01-29 15:55:23 -05001809}
1810
Chris Masond352ac62008-09-29 15:18:18 -04001811/*
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001812 * Once a range is no longer delalloc this function ensures that proper
1813 * accounting happens.
Chris Masond352ac62008-09-29 15:18:18 -04001814 */
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001815void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
1816 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001817{
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001818 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
1819 struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001820 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001821 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001822
Filipe Manana4a4b9642017-07-27 19:52:55 +01001823 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1824 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001825 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01001826 spin_unlock(&inode->lock);
1827 }
Wang Shilong47059d92014-07-03 18:22:07 +08001828
Chris Mason75eff682008-12-15 15:54:40 -05001829 /*
1830 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001831 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001832 * bit, which is only set or cleared with irqs on
1833 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001834 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001835 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001836 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001837
Josef Bacik8b62f872017-10-19 14:15:55 -04001838 spin_lock(&inode->lock);
1839 btrfs_mod_outstanding_extents(inode, -num_extents);
1840 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001841
Josef Bacikb6d08f02013-09-27 14:57:43 -04001842 /*
1843 * We don't reserve metadata space for space cache inodes so we
Andrea Gelmini52042d82018-11-28 12:05:13 +01001844 * don't need to call delalloc_release_metadata if there is an
Josef Bacikb6d08f02013-09-27 14:57:43 -04001845 * error.
1846 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001847 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001848 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08001849 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001850
Josef Bacik6a3891c2015-03-16 17:38:52 -04001851 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001852 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001853 return;
1854
Filipe Mananaa315e682017-03-06 23:04:20 +00001855 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1856 do_list && !(state->state & EXTENT_NORESERVE) &&
1857 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001858 btrfs_free_reserved_data_space_noquota(
1859 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001860 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001861
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001862 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1863 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001864 spin_lock(&inode->lock);
1865 inode->delalloc_bytes -= len;
1866 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001867 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001868 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001869 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001870 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001871 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001872
1873 if ((state->state & EXTENT_DELALLOC_NEW) &&
1874 (*bits & EXTENT_DELALLOC_NEW)) {
1875 spin_lock(&inode->lock);
1876 ASSERT(inode->new_delalloc_bytes >= len);
1877 inode->new_delalloc_bytes -= len;
1878 spin_unlock(&inode->lock);
1879 }
Chris Mason291d6732008-01-29 15:55:23 -05001880}
1881
Chris Masond352ac62008-09-29 15:18:18 -04001882/*
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001883 * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit
1884 * in a chunk's stripe. This function ensures that bios do not span a
1885 * stripe/chunk
Liu Bo6f034ec2016-06-22 18:31:49 -07001886 *
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001887 * @page - The page we are about to add to the bio
1888 * @size - size we want to add to the bio
1889 * @bio - bio we want to ensure is smaller than a stripe
1890 * @bio_flags - flags of the bio
1891 *
1892 * return 1 if page cannot be added to the bio
1893 * return 0 if page can be added to the bio
Liu Bo6f034ec2016-06-22 18:31:49 -07001894 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001895 */
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001896int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
1897 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001898{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001899 struct inode *inode = page->mapping->host;
1900 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001901 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001902 u64 length = 0;
1903 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001904 int ret;
1905
Chris Mason771ed682008-11-06 22:02:51 -05001906 if (bio_flags & EXTENT_BIO_COMPRESSED)
1907 return 0;
1908
Kent Overstreet4f024f32013-10-11 15:44:27 -07001909 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001910 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001911 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1912 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001913 if (ret < 0)
1914 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001915 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001916 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001917 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001918}
1919
Chris Masond352ac62008-09-29 15:18:18 -04001920/*
1921 * in order to insert checksums into the metadata in large chunks,
1922 * we wait until bio submission time. All the pages in the bio are
1923 * checksummed and sums are attached onto the ordered extent record.
1924 *
1925 * At IO completion time the cums attached on the ordered extent record
1926 * are inserted into the btree
1927 */
David Sterbad0ee3932018-03-08 14:35:48 +01001928static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001929 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001930{
Josef Bacikc6100a42017-05-05 11:57:13 -04001931 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001932 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001933
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001934 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001935 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001936 return 0;
1937}
Chris Masone0156402008-04-16 11:15:20 -04001938
Chris Mason4a69a412008-11-06 22:03:00 -05001939/*
Chris Masoncad321a2008-12-17 14:51:42 -05001940 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06001941 * on write, or reading the csums from the tree before a read.
1942 *
1943 * Rules about async/sync submit,
1944 * a) read: sync submit
1945 *
1946 * b) write without checksum: sync submit
1947 *
1948 * c) write with checksum:
1949 * c-1) if bio is issued by fsync: sync submit
1950 * (sync_writers != 0)
1951 *
1952 * c-2) if root is reloc root: sync submit
1953 * (only in case of buffered IO)
1954 *
1955 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04001956 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001957static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
Josef Bacikc6100a42017-05-05 11:57:13 -04001958 int mirror_num, unsigned long bio_flags,
1959 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001960{
Josef Bacikc6100a42017-05-05 11:57:13 -04001961 struct inode *inode = private_data;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001962 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001963 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301964 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001965 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001966 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001967 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001968
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001969 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001970
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001971 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301972 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001973
Mike Christie37226b22016-06-05 14:31:52 -05001974 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001975 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001976 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001977 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001978
Chris Masond20f7042008-12-08 16:58:54 -05001979 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001980 ret = btrfs_submit_compressed_read(inode, bio,
1981 mirror_num,
1982 bio_flags);
1983 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001984 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001985 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001986 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001987 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001988 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001989 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001990 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001991 /* csum items have already been cloned */
1992 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1993 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001994 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04001995 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
1996 bio_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02001997 btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01001998 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001999 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002000 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002001 if (ret)
2002 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002003 }
2004
Chris Mason0b86a832008-03-24 15:01:56 -04002005mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002006 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01002007
2008out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002009 if (ret) {
2010 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002011 bio_endio(bio);
2012 }
Stefan Behrens61891922012-11-05 18:51:52 +01002013 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002014}
Chris Mason6885f302008-02-20 16:11:05 -05002015
Chris Masond352ac62008-09-29 15:18:18 -04002016/*
2017 * given a list of ordered sums record them in the inode. This happens
2018 * at IO completion time based on sums calculated at bio submission time.
2019 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002020static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002021 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002022{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002023 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002024 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002025
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002026 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002027 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002028 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002029 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002030 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002031 if (ret)
2032 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002033 }
2034 return 0;
2035}
2036
Josef Bacik2ac55d42010-02-03 19:33:23 +00002037int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002038 unsigned int extra_bits,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002039 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002040{
Johannes Thumshirnfdb1e122018-12-05 15:23:04 +01002041 WARN_ON(PAGE_ALIGNED(end));
Chris Masonea8c2812008-08-04 23:17:27 -04002042 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002043 extra_bits, cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002044}
2045
Chris Masond352ac62008-09-29 15:18:18 -04002046/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002047struct btrfs_writepage_fixup {
2048 struct page *page;
2049 struct btrfs_work work;
2050};
2051
Christoph Hellwigb2950862008-12-02 09:54:17 -05002052static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002053{
2054 struct btrfs_writepage_fixup *fixup;
2055 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002056 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002057 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002058 struct page *page;
2059 struct inode *inode;
2060 u64 page_start;
2061 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002062 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002063
2064 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2065 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002066again:
Chris Mason247e7432008-07-17 12:53:51 -04002067 lock_page(page);
2068 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2069 ClearPageChecked(page);
2070 goto out_page;
2071 }
2072
2073 inode = page->mapping->host;
2074 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002075 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002076
David Sterbaff13db42015-12-03 14:30:40 +01002077 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002078 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002079
2080 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002081 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002082 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002083
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002084 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002085 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002086 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002087 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
David Sterbae43bbe52017-12-12 21:43:52 +01002088 page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002089 unlock_page(page);
2090 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002091 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002092 goto again;
2093 }
Chris Mason247e7432008-07-17 12:53:51 -04002094
Qu Wenruo364ecf32017-02-27 15:10:38 +08002095 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002096 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002097 if (ret) {
2098 mapping_set_error(page->mapping, ret);
2099 end_extent_writepage(page, ret, page_start, page_end);
2100 ClearPageChecked(page);
2101 goto out;
2102 }
2103
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002104 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2105 &cached_state, 0);
2106 if (ret) {
2107 mapping_set_error(page->mapping, ret);
2108 end_extent_writepage(page, ret, page_start, page_end);
2109 ClearPageChecked(page);
2110 goto out;
2111 }
2112
Chris Mason247e7432008-07-17 12:53:51 -04002113 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002114 set_page_dirty(page);
Qu Wenruo43b18592017-12-12 15:34:32 +08002115 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false);
Chris Mason247e7432008-07-17 12:53:51 -04002116out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002117 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002118 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002119out_page:
2120 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002121 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002122 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002123 extent_changeset_free(data_reserved);
Chris Mason247e7432008-07-17 12:53:51 -04002124}
2125
2126/*
2127 * There are a few paths in the higher layers of the kernel that directly
2128 * set the page dirty bit without asking the filesystem if it is a
2129 * good idea. This causes problems because we want to make sure COW
2130 * properly happens and the data=ordered rules are followed.
2131 *
Chris Masonc8b97812008-10-29 14:49:59 -04002132 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002133 * hasn't been properly setup for IO. We kick off an async process
2134 * to fix it up. The async helper will wait for ordered extents, set
2135 * the delalloc bit and make it safe to write the page.
2136 */
Nikolay Borisovd75855b2018-11-01 14:09:47 +02002137int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002138{
2139 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002140 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002141 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002142
Chris Mason8b62b722009-09-02 16:53:46 -04002143 /* this page is properly in the ordered list */
2144 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002145 return 0;
2146
2147 if (PageChecked(page))
2148 return -EAGAIN;
2149
2150 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2151 if (!fixup)
2152 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002153
Chris Mason247e7432008-07-17 12:53:51 -04002154 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002155 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002156 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2157 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002158 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002159 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002160 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002161}
2162
Yan Zhengd899e052008-10-30 14:25:28 -04002163static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2164 struct inode *inode, u64 file_pos,
2165 u64 disk_bytenr, u64 disk_num_bytes,
2166 u64 num_bytes, u64 ram_bytes,
2167 u8 compression, u8 encryption,
2168 u16 other_encoding, int extent_type)
2169{
2170 struct btrfs_root *root = BTRFS_I(inode)->root;
2171 struct btrfs_file_extent_item *fi;
2172 struct btrfs_path *path;
2173 struct extent_buffer *leaf;
2174 struct btrfs_key ins;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002175 u64 qg_released;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002176 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002177 int ret;
2178
2179 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002180 if (!path)
2181 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002182
Chris Masona1ed8352009-09-11 12:27:37 -04002183 /*
2184 * we may be replacing one extent in the tree with another.
2185 * The new extent is pinned in the extent map, and we don't want
2186 * to drop it from the cache until it is completely in the btree.
2187 *
2188 * So, tell btrfs_drop_extents to leave this extent in the cache.
2189 * the caller is expected to unpin it and allow it to be merged
2190 * with the others.
2191 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002192 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2193 file_pos + num_bytes, NULL, 0,
2194 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002195 if (ret)
2196 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002197
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002198 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002199 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002200 ins.offset = file_pos;
2201 ins.type = BTRFS_EXTENT_DATA_KEY;
2202
2203 path->leave_spinning = 1;
2204 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2205 sizeof(*fi));
2206 if (ret)
2207 goto out;
2208 }
Yan Zhengd899e052008-10-30 14:25:28 -04002209 leaf = path->nodes[0];
2210 fi = btrfs_item_ptr(leaf, path->slots[0],
2211 struct btrfs_file_extent_item);
2212 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2213 btrfs_set_file_extent_type(leaf, fi, extent_type);
2214 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2215 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2216 btrfs_set_file_extent_offset(leaf, fi, 0);
2217 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2218 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2219 btrfs_set_file_extent_compression(leaf, fi, compression);
2220 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2221 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002222
Yan Zhengd899e052008-10-30 14:25:28 -04002223 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002224 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002225
2226 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002227
2228 ins.objectid = disk_bytenr;
2229 ins.offset = disk_num_bytes;
2230 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002231
Qu Wenruo297d7502015-09-08 17:08:37 +08002232 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002233 * Release the reserved range from inode dirty range map, as it is
2234 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002235 */
Qu Wenruoa12b8772017-02-27 15:10:37 +08002236 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2237 if (ret < 0)
2238 goto out;
2239 qg_released = ret;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002240 ret = btrfs_alloc_reserved_file_extent(trans, root,
2241 btrfs_ino(BTRFS_I(inode)),
2242 file_pos, qg_released, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002243out:
Yan Zhengd899e052008-10-30 14:25:28 -04002244 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002245
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002246 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002247}
2248
Liu Bo38c227d2013-01-29 03:18:40 +00002249/* snapshot-aware defrag */
2250struct sa_defrag_extent_backref {
2251 struct rb_node node;
2252 struct old_sa_defrag_extent *old;
2253 u64 root_id;
2254 u64 inum;
2255 u64 file_pos;
2256 u64 extent_offset;
2257 u64 num_bytes;
2258 u64 generation;
2259};
2260
2261struct old_sa_defrag_extent {
2262 struct list_head list;
2263 struct new_sa_defrag_extent *new;
2264
2265 u64 extent_offset;
2266 u64 bytenr;
2267 u64 offset;
2268 u64 len;
2269 int count;
2270};
2271
2272struct new_sa_defrag_extent {
2273 struct rb_root root;
2274 struct list_head head;
2275 struct btrfs_path *path;
2276 struct inode *inode;
2277 u64 file_pos;
2278 u64 len;
2279 u64 bytenr;
2280 u64 disk_len;
2281 u8 compress_type;
2282};
2283
2284static int backref_comp(struct sa_defrag_extent_backref *b1,
2285 struct sa_defrag_extent_backref *b2)
2286{
2287 if (b1->root_id < b2->root_id)
2288 return -1;
2289 else if (b1->root_id > b2->root_id)
2290 return 1;
2291
2292 if (b1->inum < b2->inum)
2293 return -1;
2294 else if (b1->inum > b2->inum)
2295 return 1;
2296
2297 if (b1->file_pos < b2->file_pos)
2298 return -1;
2299 else if (b1->file_pos > b2->file_pos)
2300 return 1;
2301
2302 /*
2303 * [------------------------------] ===> (a range of space)
2304 * |<--->| |<---->| =============> (fs/file tree A)
2305 * |<---------------------------->| ===> (fs/file tree B)
2306 *
2307 * A range of space can refer to two file extents in one tree while
2308 * refer to only one file extent in another tree.
2309 *
2310 * So we may process a disk offset more than one time(two extents in A)
2311 * and locate at the same extent(one extent in B), then insert two same
2312 * backrefs(both refer to the extent in B).
2313 */
2314 return 0;
2315}
2316
2317static void backref_insert(struct rb_root *root,
2318 struct sa_defrag_extent_backref *backref)
2319{
2320 struct rb_node **p = &root->rb_node;
2321 struct rb_node *parent = NULL;
2322 struct sa_defrag_extent_backref *entry;
2323 int ret;
2324
2325 while (*p) {
2326 parent = *p;
2327 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2328
2329 ret = backref_comp(backref, entry);
2330 if (ret < 0)
2331 p = &(*p)->rb_left;
2332 else
2333 p = &(*p)->rb_right;
2334 }
2335
2336 rb_link_node(&backref->node, parent, p);
2337 rb_insert_color(&backref->node, root);
2338}
2339
2340/*
2341 * Note the backref might has changed, and in this case we just return 0.
2342 */
2343static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2344 void *ctx)
2345{
2346 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002347 struct old_sa_defrag_extent *old = ctx;
2348 struct new_sa_defrag_extent *new = old->new;
2349 struct btrfs_path *path = new->path;
2350 struct btrfs_key key;
2351 struct btrfs_root *root;
2352 struct sa_defrag_extent_backref *backref;
2353 struct extent_buffer *leaf;
2354 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002355 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002356 int slot;
2357 int ret;
2358 u64 extent_offset;
2359 u64 num_bytes;
2360
2361 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002362 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002363 return 0;
2364
2365 key.objectid = root_id;
2366 key.type = BTRFS_ROOT_ITEM_KEY;
2367 key.offset = (u64)-1;
2368
Liu Bo38c227d2013-01-29 03:18:40 +00002369 root = btrfs_read_fs_root_no_name(fs_info, &key);
2370 if (IS_ERR(root)) {
2371 if (PTR_ERR(root) == -ENOENT)
2372 return 0;
2373 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002374 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002375 inum, offset, root_id);
2376 return PTR_ERR(root);
2377 }
2378
2379 key.objectid = inum;
2380 key.type = BTRFS_EXTENT_DATA_KEY;
2381 if (offset > (u64)-1 << 32)
2382 key.offset = 0;
2383 else
2384 key.offset = offset;
2385
2386 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302387 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002388 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002389 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002390
2391 while (1) {
2392 cond_resched();
2393
2394 leaf = path->nodes[0];
2395 slot = path->slots[0];
2396
2397 if (slot >= btrfs_header_nritems(leaf)) {
2398 ret = btrfs_next_leaf(root, path);
2399 if (ret < 0) {
2400 goto out;
2401 } else if (ret > 0) {
2402 ret = 0;
2403 goto out;
2404 }
2405 continue;
2406 }
2407
2408 path->slots[0]++;
2409
2410 btrfs_item_key_to_cpu(leaf, &key, slot);
2411
2412 if (key.objectid > inum)
2413 goto out;
2414
2415 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2416 continue;
2417
2418 extent = btrfs_item_ptr(leaf, slot,
2419 struct btrfs_file_extent_item);
2420
2421 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2422 continue;
2423
Liu Boe68afa42013-07-01 22:13:26 +08002424 /*
2425 * 'offset' refers to the exact key.offset,
2426 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2427 * (key.offset - extent_offset).
2428 */
2429 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002430 continue;
2431
Liu Boe68afa42013-07-01 22:13:26 +08002432 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002433 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002434
Liu Bo38c227d2013-01-29 03:18:40 +00002435 if (extent_offset >= old->extent_offset + old->offset +
2436 old->len || extent_offset + num_bytes <=
2437 old->extent_offset + old->offset)
2438 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002439 break;
2440 }
2441
2442 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2443 if (!backref) {
2444 ret = -ENOENT;
2445 goto out;
2446 }
2447
2448 backref->root_id = root_id;
2449 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002450 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002451 backref->num_bytes = num_bytes;
2452 backref->extent_offset = extent_offset;
2453 backref->generation = btrfs_file_extent_generation(leaf, extent);
2454 backref->old = old;
2455 backref_insert(&new->root, backref);
2456 old->count++;
2457out:
2458 btrfs_release_path(path);
2459 WARN_ON(ret);
2460 return ret;
2461}
2462
2463static noinline bool record_extent_backrefs(struct btrfs_path *path,
2464 struct new_sa_defrag_extent *new)
2465{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002466 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002467 struct old_sa_defrag_extent *old, *tmp;
2468 int ret;
2469
2470 new->path = path;
2471
2472 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002473 ret = iterate_inodes_from_logical(old->bytenr +
2474 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002475 path, record_one_backref,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002476 old, false);
Josef Bacik4724b102013-11-05 11:11:40 -05002477 if (ret < 0 && ret != -ENOENT)
2478 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002479
2480 /* no backref to be processed for this extent */
2481 if (!old->count) {
2482 list_del(&old->list);
2483 kfree(old);
2484 }
2485 }
2486
2487 if (list_empty(&new->head))
2488 return false;
2489
2490 return true;
2491}
2492
2493static int relink_is_mergable(struct extent_buffer *leaf,
2494 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002495 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002496{
Liu Bo116e0022013-08-02 16:30:40 +08002497 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002498 return 0;
2499
2500 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2501 return 0;
2502
Liu Bo116e0022013-08-02 16:30:40 +08002503 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2504 return 0;
2505
2506 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002507 btrfs_file_extent_other_encoding(leaf, fi))
2508 return 0;
2509
2510 return 1;
2511}
2512
2513/*
2514 * Note the backref might has changed, and in this case we just return 0.
2515 */
2516static noinline int relink_extent_backref(struct btrfs_path *path,
2517 struct sa_defrag_extent_backref *prev,
2518 struct sa_defrag_extent_backref *backref)
2519{
2520 struct btrfs_file_extent_item *extent;
2521 struct btrfs_file_extent_item *item;
2522 struct btrfs_ordered_extent *ordered;
2523 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002524 struct btrfs_root *root;
2525 struct btrfs_key key;
2526 struct extent_buffer *leaf;
2527 struct old_sa_defrag_extent *old = backref->old;
2528 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002529 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002530 struct inode *inode;
2531 struct extent_state *cached = NULL;
2532 int ret = 0;
2533 u64 start;
2534 u64 len;
2535 u64 lock_start;
2536 u64 lock_end;
2537 bool merge = false;
2538 int index;
2539
2540 if (prev && prev->root_id == backref->root_id &&
2541 prev->inum == backref->inum &&
2542 prev->file_pos + prev->num_bytes == backref->file_pos)
2543 merge = true;
2544
2545 /* step 1: get root */
2546 key.objectid = backref->root_id;
2547 key.type = BTRFS_ROOT_ITEM_KEY;
2548 key.offset = (u64)-1;
2549
Liu Bo38c227d2013-01-29 03:18:40 +00002550 index = srcu_read_lock(&fs_info->subvol_srcu);
2551
2552 root = btrfs_read_fs_root_no_name(fs_info, &key);
2553 if (IS_ERR(root)) {
2554 srcu_read_unlock(&fs_info->subvol_srcu, index);
2555 if (PTR_ERR(root) == -ENOENT)
2556 return 0;
2557 return PTR_ERR(root);
2558 }
Liu Bo38c227d2013-01-29 03:18:40 +00002559
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002560 if (btrfs_root_readonly(root)) {
2561 srcu_read_unlock(&fs_info->subvol_srcu, index);
2562 return 0;
2563 }
2564
Liu Bo38c227d2013-01-29 03:18:40 +00002565 /* step 2: get inode */
2566 key.objectid = backref->inum;
2567 key.type = BTRFS_INODE_ITEM_KEY;
2568 key.offset = 0;
2569
2570 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2571 if (IS_ERR(inode)) {
2572 srcu_read_unlock(&fs_info->subvol_srcu, index);
2573 return 0;
2574 }
2575
2576 srcu_read_unlock(&fs_info->subvol_srcu, index);
2577
2578 /* step 3: relink backref */
2579 lock_start = backref->file_pos;
2580 lock_end = backref->file_pos + backref->num_bytes - 1;
2581 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002582 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002583
2584 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2585 if (ordered) {
2586 btrfs_put_ordered_extent(ordered);
2587 goto out_unlock;
2588 }
2589
2590 trans = btrfs_join_transaction(root);
2591 if (IS_ERR(trans)) {
2592 ret = PTR_ERR(trans);
2593 goto out_unlock;
2594 }
2595
2596 key.objectid = backref->inum;
2597 key.type = BTRFS_EXTENT_DATA_KEY;
2598 key.offset = backref->file_pos;
2599
2600 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2601 if (ret < 0) {
2602 goto out_free_path;
2603 } else if (ret > 0) {
2604 ret = 0;
2605 goto out_free_path;
2606 }
2607
2608 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2609 struct btrfs_file_extent_item);
2610
2611 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2612 backref->generation)
2613 goto out_free_path;
2614
2615 btrfs_release_path(path);
2616
2617 start = backref->file_pos;
2618 if (backref->extent_offset < old->extent_offset + old->offset)
2619 start += old->extent_offset + old->offset -
2620 backref->extent_offset;
2621
2622 len = min(backref->extent_offset + backref->num_bytes,
2623 old->extent_offset + old->offset + old->len);
2624 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2625
2626 ret = btrfs_drop_extents(trans, root, inode, start,
2627 start + len, 1);
2628 if (ret)
2629 goto out_free_path;
2630again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002631 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002632 key.type = BTRFS_EXTENT_DATA_KEY;
2633 key.offset = start;
2634
Liu Boa09a0a72013-03-11 09:20:58 +00002635 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002636 if (merge) {
2637 struct btrfs_file_extent_item *fi;
2638 u64 extent_len;
2639 struct btrfs_key found_key;
2640
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002641 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002642 if (ret < 0)
2643 goto out_free_path;
2644
2645 path->slots[0]--;
2646 leaf = path->nodes[0];
2647 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2648
2649 fi = btrfs_item_ptr(leaf, path->slots[0],
2650 struct btrfs_file_extent_item);
2651 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2652
Liu Bo116e0022013-08-02 16:30:40 +08002653 if (extent_len + found_key.offset == start &&
2654 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002655 btrfs_set_file_extent_num_bytes(leaf, fi,
2656 extent_len + len);
2657 btrfs_mark_buffer_dirty(leaf);
2658 inode_add_bytes(inode, len);
2659
2660 ret = 1;
2661 goto out_free_path;
2662 } else {
2663 merge = false;
2664 btrfs_release_path(path);
2665 goto again;
2666 }
2667 }
2668
2669 ret = btrfs_insert_empty_item(trans, root, path, &key,
2670 sizeof(*extent));
2671 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002672 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002673 goto out_free_path;
2674 }
2675
2676 leaf = path->nodes[0];
2677 item = btrfs_item_ptr(leaf, path->slots[0],
2678 struct btrfs_file_extent_item);
2679 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2680 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2681 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2682 btrfs_set_file_extent_num_bytes(leaf, item, len);
2683 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2684 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2685 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2686 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2687 btrfs_set_file_extent_encryption(leaf, item, 0);
2688 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2689
2690 btrfs_mark_buffer_dirty(leaf);
2691 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002692 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002693
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002694 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002695 new->disk_len, 0,
2696 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002697 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002698 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002699 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002700 goto out_free_path;
2701 }
2702
2703 ret = 1;
2704out_free_path:
2705 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002706 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002707 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002708out_unlock:
2709 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002710 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002711 iput(inode);
2712 return ret;
2713}
2714
Liu Bo6f519562013-10-29 10:45:05 +08002715static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2716{
2717 struct old_sa_defrag_extent *old, *tmp;
2718
2719 if (!new)
2720 return;
2721
2722 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002723 kfree(old);
2724 }
2725 kfree(new);
2726}
2727
Liu Bo38c227d2013-01-29 03:18:40 +00002728static void relink_file_extents(struct new_sa_defrag_extent *new)
2729{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002730 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002731 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002732 struct sa_defrag_extent_backref *backref;
2733 struct sa_defrag_extent_backref *prev = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002734 struct rb_node *node;
2735 int ret;
2736
Liu Bo38c227d2013-01-29 03:18:40 +00002737 path = btrfs_alloc_path();
2738 if (!path)
2739 return;
2740
2741 if (!record_extent_backrefs(path, new)) {
2742 btrfs_free_path(path);
2743 goto out;
2744 }
2745 btrfs_release_path(path);
2746
2747 while (1) {
2748 node = rb_first(&new->root);
2749 if (!node)
2750 break;
2751 rb_erase(node, &new->root);
2752
2753 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2754
2755 ret = relink_extent_backref(path, prev, backref);
2756 WARN_ON(ret < 0);
2757
2758 kfree(prev);
2759
2760 if (ret == 1)
2761 prev = backref;
2762 else
2763 prev = NULL;
2764 cond_resched();
2765 }
2766 kfree(prev);
2767
2768 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002769out:
Liu Bo6f519562013-10-29 10:45:05 +08002770 free_sa_defrag_extent(new);
2771
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002772 atomic_dec(&fs_info->defrag_running);
2773 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002774}
2775
2776static struct new_sa_defrag_extent *
2777record_old_file_extents(struct inode *inode,
2778 struct btrfs_ordered_extent *ordered)
2779{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002780 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002781 struct btrfs_root *root = BTRFS_I(inode)->root;
2782 struct btrfs_path *path;
2783 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002784 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002785 struct new_sa_defrag_extent *new;
2786 int ret;
2787
2788 new = kmalloc(sizeof(*new), GFP_NOFS);
2789 if (!new)
2790 return NULL;
2791
2792 new->inode = inode;
2793 new->file_pos = ordered->file_offset;
2794 new->len = ordered->len;
2795 new->bytenr = ordered->start;
2796 new->disk_len = ordered->disk_len;
2797 new->compress_type = ordered->compress_type;
2798 new->root = RB_ROOT;
2799 INIT_LIST_HEAD(&new->head);
2800
2801 path = btrfs_alloc_path();
2802 if (!path)
2803 goto out_kfree;
2804
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002805 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002806 key.type = BTRFS_EXTENT_DATA_KEY;
2807 key.offset = new->file_pos;
2808
2809 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2810 if (ret < 0)
2811 goto out_free_path;
2812 if (ret > 0 && path->slots[0] > 0)
2813 path->slots[0]--;
2814
2815 /* find out all the old extents for the file range */
2816 while (1) {
2817 struct btrfs_file_extent_item *extent;
2818 struct extent_buffer *l;
2819 int slot;
2820 u64 num_bytes;
2821 u64 offset;
2822 u64 end;
2823 u64 disk_bytenr;
2824 u64 extent_offset;
2825
2826 l = path->nodes[0];
2827 slot = path->slots[0];
2828
2829 if (slot >= btrfs_header_nritems(l)) {
2830 ret = btrfs_next_leaf(root, path);
2831 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002832 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002833 else if (ret > 0)
2834 break;
2835 continue;
2836 }
2837
2838 btrfs_item_key_to_cpu(l, &key, slot);
2839
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002840 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002841 break;
2842 if (key.type != BTRFS_EXTENT_DATA_KEY)
2843 break;
2844 if (key.offset >= new->file_pos + new->len)
2845 break;
2846
2847 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2848
2849 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2850 if (key.offset + num_bytes < new->file_pos)
2851 goto next;
2852
2853 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2854 if (!disk_bytenr)
2855 goto next;
2856
2857 extent_offset = btrfs_file_extent_offset(l, extent);
2858
2859 old = kmalloc(sizeof(*old), GFP_NOFS);
2860 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002861 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002862
2863 offset = max(new->file_pos, key.offset);
2864 end = min(new->file_pos + new->len, key.offset + num_bytes);
2865
2866 old->bytenr = disk_bytenr;
2867 old->extent_offset = extent_offset;
2868 old->offset = offset - key.offset;
2869 old->len = end - offset;
2870 old->new = new;
2871 old->count = 0;
2872 list_add_tail(&old->list, &new->head);
2873next:
2874 path->slots[0]++;
2875 cond_resched();
2876 }
2877
2878 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002879 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002880
2881 return new;
2882
Liu Bo38c227d2013-01-29 03:18:40 +00002883out_free_path:
2884 btrfs_free_path(path);
2885out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002886 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002887 return NULL;
2888}
2889
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002890static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002891 u64 start, u64 len)
2892{
2893 struct btrfs_block_group_cache *cache;
2894
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002895 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002896 ASSERT(cache);
2897
2898 spin_lock(&cache->lock);
2899 cache->delalloc_bytes -= len;
2900 spin_unlock(&cache->lock);
2901
2902 btrfs_put_block_group(cache);
2903}
2904
Chris Masond352ac62008-09-29 15:18:18 -04002905/* as ordered data IO finishes, this gets called so we can finish
2906 * an ordered extent if the range of bytes in the file it covers are
2907 * fully written.
2908 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002909static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002910{
Josef Bacik5fd02042012-05-02 14:00:54 -04002911 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002912 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002913 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002914 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002915 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002916 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002917 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002918 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002919 int ret = 0;
2920 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002921 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002922 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002923 bool range_locked = false;
2924 bool clear_new_delalloc_bytes = false;
Josef Bacik49940bd2018-10-11 15:54:21 -04002925 bool clear_reserved_extent = true;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002926
2927 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2928 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2929 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2930 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002931
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002932 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002933
Josef Bacik5fd02042012-05-02 14:00:54 -04002934 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2935 ret = -EIO;
2936 goto out;
2937 }
2938
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002939 btrfs_free_io_failure_record(BTRFS_I(inode),
2940 ordered_extent->file_offset,
2941 ordered_extent->file_offset +
2942 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002943
Josef Bacik77cef2e2013-08-29 13:57:21 -04002944 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2945 truncated = true;
2946 logical_len = ordered_extent->truncated_len;
2947 /* Truncated the entire extent, don't bother adding */
2948 if (!logical_len)
2949 goto out;
2950 }
2951
Yan, Zhengc2167752009-11-12 09:34:21 +00002952 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002953 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002954
2955 /*
2956 * For mwrite(mmap + memset to write) case, we still reserve
2957 * space for NOCOW range.
2958 * As NOCOW won't cause a new delayed ref, just free the space
2959 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08002960 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
Qu Wenruo94ed9382015-09-08 17:25:56 +08002961 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002962 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2963 if (nolock)
2964 trans = btrfs_join_transaction_nolock(root);
2965 else
2966 trans = btrfs_join_transaction(root);
2967 if (IS_ERR(trans)) {
2968 ret = PTR_ERR(trans);
2969 trans = NULL;
2970 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002971 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04002972 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002973 ret = btrfs_update_inode_fallback(trans, root, inode);
2974 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002975 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002976 goto out;
2977 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002978
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002979 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002980 lock_extent_bits(io_tree, ordered_extent->file_offset,
2981 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002982 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002983
Liu Bo38c227d2013-01-29 03:18:40 +00002984 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2985 ordered_extent->file_offset + ordered_extent->len - 1,
Liu Bo452e62b2017-05-26 17:44:23 -06002986 EXTENT_DEFRAG, 0, cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00002987 if (ret) {
2988 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002989 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002990 /* the inode is shared */
2991 new = record_old_file_extents(inode, ordered_extent);
2992
2993 clear_extent_bit(io_tree, ordered_extent->file_offset,
2994 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01002995 EXTENT_DEFRAG, 0, 0, &cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00002996 }
2997
Josef Bacik0cb59c92010-07-02 12:14:14 -04002998 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002999 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003000 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003001 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003002 if (IS_ERR(trans)) {
3003 ret = PTR_ERR(trans);
3004 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003005 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003006 }
Chris Masona79b7d42014-05-22 16:18:52 -07003007
Josef Bacik69fe2d72017-10-19 14:15:57 -04003008 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003009
Chris Masonc8b97812008-10-29 14:49:59 -04003010 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003011 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003012 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003013 BUG_ON(compress_type);
Justin Maggardb430b772017-10-30 15:29:10 -07003014 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3015 ordered_extent->len);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02003016 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04003017 ordered_extent->file_offset,
3018 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003019 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003020 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003021 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04003022 ret = insert_reserved_file_extent(trans, inode,
3023 ordered_extent->file_offset,
3024 ordered_extent->start,
3025 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04003026 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08003027 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04003028 BTRFS_FILE_EXTENT_REG);
Josef Bacik49940bd2018-10-11 15:54:21 -04003029 if (!ret) {
3030 clear_reserved_extent = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003031 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08003032 ordered_extent->start,
3033 ordered_extent->disk_len);
Josef Bacik49940bd2018-10-11 15:54:21 -04003034 }
Yan Zhengd899e052008-10-30 14:25:28 -04003035 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003036 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3037 ordered_extent->file_offset, ordered_extent->len,
3038 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003039 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003040 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003041 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003042 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003043
Nikolay Borisovac01f262018-01-08 10:59:43 +02003044 ret = add_pending_csums(trans, inode, &ordered_extent->list);
3045 if (ret) {
3046 btrfs_abort_transaction(trans, ret);
3047 goto out;
3048 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003049
Josef Bacik6c760c02012-11-09 10:53:21 -05003050 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3051 ret = btrfs_update_inode_fallback(trans, root, inode);
3052 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003053 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003054 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003055 }
3056 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003057out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003058 if (range_locked || clear_new_delalloc_bytes) {
3059 unsigned int clear_bits = 0;
3060
3061 if (range_locked)
3062 clear_bits |= EXTENT_LOCKED;
3063 if (clear_new_delalloc_bytes)
3064 clear_bits |= EXTENT_DELALLOC_NEW;
3065 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3066 ordered_extent->file_offset,
3067 ordered_extent->file_offset +
3068 ordered_extent->len - 1,
3069 clear_bits,
3070 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
David Sterbaae0f1622017-10-31 16:37:52 +01003071 0, &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003072 }
3073
Miao Xiea698d0752012-09-20 01:51:59 -06003074 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003075 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003076
Josef Bacik77cef2e2013-08-29 13:57:21 -04003077 if (ret || truncated) {
3078 u64 start, end;
3079
3080 if (truncated)
3081 start = ordered_extent->file_offset + logical_len;
3082 else
3083 start = ordered_extent->file_offset;
3084 end = ordered_extent->file_offset + ordered_extent->len - 1;
David Sterbaf08dc362017-10-31 17:02:39 +01003085 clear_extent_uptodate(io_tree, start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003086
3087 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003088 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003089
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003090 /*
3091 * If the ordered extent had an IOERR or something else went
3092 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003093 * back to the allocator. We only free the extent in the
3094 * truncated case if we didn't write out the extent at all.
Josef Bacik49940bd2018-10-11 15:54:21 -04003095 *
3096 * If we made it past insert_reserved_file_extent before we
3097 * errored out then we don't need to do this as the accounting
3098 * has already been done.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003099 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003100 if ((ret || !logical_len) &&
Josef Bacik49940bd2018-10-11 15:54:21 -04003101 clear_reserved_extent &&
Josef Bacik77cef2e2013-08-29 13:57:21 -04003102 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003103 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003104 btrfs_free_reserved_extent(fs_info,
3105 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003106 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003107 }
3108
3109
Josef Bacik5fd02042012-05-02 14:00:54 -04003110 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003111 * This needs to be done to make sure anybody waiting knows we are done
3112 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003113 */
3114 btrfs_remove_ordered_extent(inode, ordered_extent);
3115
Liu Bo38c227d2013-01-29 03:18:40 +00003116 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003117 if (new) {
3118 if (ret) {
3119 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003120 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003121 } else {
3122 relink_file_extents(new);
3123 }
3124 }
Liu Bo38c227d2013-01-29 03:18:40 +00003125
Chris Masone6dcd2d2008-07-17 12:53:50 -04003126 /* once for us */
3127 btrfs_put_ordered_extent(ordered_extent);
3128 /* once for the tree */
3129 btrfs_put_ordered_extent(ordered_extent);
3130
Josef Bacik5fd02042012-05-02 14:00:54 -04003131 return ret;
3132}
3133
3134static void finish_ordered_fn(struct btrfs_work *work)
3135{
3136 struct btrfs_ordered_extent *ordered_extent;
3137 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3138 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003139}
3140
Nikolay Borisovc6297322018-11-08 10:18:08 +02003141void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start,
3142 u64 end, int uptodate)
Chris Mason211f90e2008-07-18 11:56:15 -04003143{
Josef Bacik5fd02042012-05-02 14:00:54 -04003144 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003145 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003146 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003147 struct btrfs_workqueue *wq;
3148 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003149
liubo1abe9b82011-03-24 11:18:59 +00003150 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3151
Chris Mason8b62b722009-09-02 16:53:46 -04003152 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003153 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3154 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003155 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003156
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003157 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003158 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003159 func = btrfs_freespace_write_helper;
3160 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003161 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003162 func = btrfs_endio_write_helper;
3163 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003164
Liu Bo9e0af232014-08-15 23:36:53 +08003165 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3166 NULL);
3167 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003168}
3169
Miao Xiedc380ae2014-09-12 18:43:55 +08003170static int __readpage_endio_check(struct inode *inode,
3171 struct btrfs_io_bio *io_bio,
3172 int icsum, struct page *page,
3173 int pgoff, u64 start, size_t len)
3174{
3175 char *kaddr;
3176 u32 csum_expected;
3177 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003178
3179 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3180
3181 kaddr = kmap_atomic(page);
3182 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003183 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003184 if (csum != csum_expected)
3185 goto zeroit;
3186
3187 kunmap_atomic(kaddr);
3188 return 0;
3189zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003190 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003191 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003192 memset(kaddr + pgoff, 1, len);
3193 flush_dcache_page(page);
3194 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003195 return -EIO;
3196}
3197
Chris Masond352ac62008-09-29 15:18:18 -04003198/*
Chris Masond352ac62008-09-29 15:18:18 -04003199 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003200 * if there's a match, we allow the bio to finish. If not, the code in
3201 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003202 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003203static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3204 u64 phy_offset, struct page *page,
3205 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003206{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003207 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003208 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003209 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003210 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003211
Chris Masond20f7042008-12-08 16:58:54 -05003212 if (PageChecked(page)) {
3213 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003214 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003215 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003216
3217 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003218 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003219
Yan Zheng17d217f2008-12-12 10:03:38 -05003220 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003221 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003222 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003223 return 0;
3224 }
3225
Miao Xiefacc8a222013-07-25 19:22:34 +08003226 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003227 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3228 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003229}
Chris Masonb888db22007-08-27 16:49:44 -04003230
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003231/*
3232 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3233 *
3234 * @inode: The inode we want to perform iput on
3235 *
3236 * This function uses the generic vfs_inode::i_count to track whether we should
3237 * just decrement it (in case it's > 1) or if this is the last iput then link
3238 * the inode to the delayed iput machinery. Delayed iputs are processed at
3239 * transaction commit time/superblock commit/cleaner kthread.
3240 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003241void btrfs_add_delayed_iput(struct inode *inode)
3242{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003243 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003244 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003245
3246 if (atomic_add_unless(&inode->i_count, -1, 1))
3247 return;
3248
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003249 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003250 ASSERT(list_empty(&binode->delayed_iput));
3251 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003252 spin_unlock(&fs_info->delayed_iput_lock);
Josef Bacikfd340d02019-01-11 10:21:02 -05003253 if (!test_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags))
3254 wake_up_process(fs_info->cleaner_kthread);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003255}
3256
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003257void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003258{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003259
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003260 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003261 while (!list_empty(&fs_info->delayed_iputs)) {
3262 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003263
David Sterba8089fe62015-11-19 14:15:51 +01003264 inode = list_first_entry(&fs_info->delayed_iputs,
3265 struct btrfs_inode, delayed_iput);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003266 list_del_init(&inode->delayed_iput);
David Sterba8089fe62015-11-19 14:15:51 +01003267 spin_unlock(&fs_info->delayed_iput_lock);
3268 iput(&inode->vfs_inode);
3269 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003270 }
David Sterba8089fe62015-11-19 14:15:51 +01003271 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003272}
3273
Yan, Zhengd68fc572010-05-16 10:49:58 -04003274/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003275 * This creates an orphan entry for the given inode in case something goes wrong
3276 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04003277 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003278int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07003279 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003280{
Yan, Zhengd68fc572010-05-16 10:49:58 -04003281 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003282
Omar Sandoval27919062018-05-11 13:13:37 -07003283 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3284 if (ret && ret != -EEXIST) {
3285 btrfs_abort_transaction(trans, ret);
3286 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003287 }
3288
Yan, Zhengd68fc572010-05-16 10:49:58 -04003289 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003290}
3291
3292/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003293 * We have done the delete so we can go ahead and remove the orphan item for
3294 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04003295 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003296static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003297 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003298{
Omar Sandoval27919062018-05-11 13:13:37 -07003299 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003300}
3301
3302/*
3303 * this cleans up any orphans that may be left on the list from the last use
3304 * of this root.
3305 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003306int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003307{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003308 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003309 struct btrfs_path *path;
3310 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003311 struct btrfs_key key, found_key;
3312 struct btrfs_trans_handle *trans;
3313 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003314 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003315 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003316
Yan, Zhengd68fc572010-05-16 10:49:58 -04003317 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003318 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003319
3320 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003321 if (!path) {
3322 ret = -ENOMEM;
3323 goto out;
3324 }
David Sterbae4058b52015-11-27 16:31:35 +01003325 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003326
3327 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003328 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003329 key.offset = (u64)-1;
3330
Josef Bacik7b128762008-07-24 12:17:14 -04003331 while (1) {
3332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003333 if (ret < 0)
3334 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003335
3336 /*
3337 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003338 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003339 * find the key and see if we have stuff that matches
3340 */
3341 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003342 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003343 if (path->slots[0] == 0)
3344 break;
3345 path->slots[0]--;
3346 }
3347
3348 /* pull out the item */
3349 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3351
3352 /* make sure the item matches what we want */
3353 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3354 break;
David Sterba962a2982014-06-04 18:41:45 +02003355 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003356 break;
3357
3358 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003359 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003360
3361 /*
3362 * this is where we are basically btrfs_lookup, without the
3363 * crossing root thing. we store the inode number in the
3364 * offset of the orphan item.
3365 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003366
3367 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003368 btrfs_err(fs_info,
3369 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003370 ret = -EINVAL;
3371 goto out;
3372 }
3373
3374 last_objectid = found_key.offset;
3375
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003376 found_key.objectid = found_key.offset;
3377 found_key.type = BTRFS_INODE_ITEM_KEY;
3378 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003379 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303380 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003381 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003382 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003383
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003384 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003385 struct btrfs_root *dead_root;
3386 struct btrfs_fs_info *fs_info = root->fs_info;
3387 int is_dead_root = 0;
3388
3389 /*
3390 * this is an orphan in the tree root. Currently these
3391 * could come from 2 sources:
3392 * a) a snapshot deletion in progress
3393 * b) a free space cache inode
3394 * We need to distinguish those two, as the snapshot
3395 * orphan must not get deleted.
3396 * find_dead_roots already ran before us, so if this
3397 * is a snapshot deletion, we should find the root
3398 * in the dead_roots list
3399 */
3400 spin_lock(&fs_info->trans_lock);
3401 list_for_each_entry(dead_root, &fs_info->dead_roots,
3402 root_list) {
3403 if (dead_root->root_key.objectid ==
3404 found_key.objectid) {
3405 is_dead_root = 1;
3406 break;
3407 }
3408 }
3409 spin_unlock(&fs_info->trans_lock);
3410 if (is_dead_root) {
3411 /* prevent this orphan from being found again */
3412 key.offset = found_key.objectid - 1;
3413 continue;
3414 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003415
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003416 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003417
Josef Bacika8c9e572011-09-21 16:55:59 -04003418 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003419 * If we have an inode with links, there are a couple of
3420 * possibilities. Old kernels (before v3.12) used to create an
3421 * orphan item for truncate indicating that there were possibly
3422 * extent items past i_size that needed to be deleted. In v3.12,
3423 * truncate was changed to update i_size in sync with the extent
3424 * items, but the (useless) orphan item was still created. Since
3425 * v4.18, we don't create the orphan item for truncate at all.
3426 *
3427 * So, this item could mean that we need to do a truncate, but
3428 * only if this filesystem was last used on a pre-v3.12 kernel
3429 * and was not cleanly unmounted. The odds of that are quite
3430 * slim, and it's a pain to do the truncate now, so just delete
3431 * the orphan item.
3432 *
3433 * It's also possible that this orphan item was supposed to be
3434 * deleted but wasn't. The inode number may have been reused,
3435 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003436 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003437 if (ret == -ENOENT || inode->i_nlink) {
3438 if (!ret)
3439 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003440 trans = btrfs_start_transaction(root, 1);
3441 if (IS_ERR(trans)) {
3442 ret = PTR_ERR(trans);
3443 goto out;
3444 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003445 btrfs_debug(fs_info, "auto deleting %Lu",
3446 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003447 ret = btrfs_del_orphan_item(trans, root,
3448 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003449 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003450 if (ret)
3451 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003452 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003453 }
Josef Bacik7b128762008-07-24 12:17:14 -04003454
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003455 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003456
3457 /* this will do delete_inode and everything for us */
3458 iput(inode);
3459 }
Miao Xie3254c872011-11-10 20:45:05 -05003460 /* release the path since we're done with it */
3461 btrfs_release_path(path);
3462
Yan, Zhengd68fc572010-05-16 10:49:58 -04003463 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3464
Omar Sandovala575cee2018-05-11 13:13:38 -07003465 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003466 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003467 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003468 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003469 }
Josef Bacik7b128762008-07-24 12:17:14 -04003470
3471 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003472 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003473
3474out:
3475 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003476 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003477 btrfs_free_path(path);
3478 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003479}
3480
Chris Masond352ac62008-09-29 15:18:18 -04003481/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003482 * very simple check to peek ahead in the leaf looking for xattrs. If we
3483 * don't find any xattrs, we know there can't be any acls.
3484 *
3485 * slot is the slot the inode is in, objectid is the objectid of the inode
3486 */
3487static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003488 int slot, u64 objectid,
3489 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003490{
3491 u32 nritems = btrfs_header_nritems(leaf);
3492 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003493 static u64 xattr_access = 0;
3494 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003495 int scanned = 0;
3496
Josef Bacikf23b5a52013-06-19 10:16:26 -04003497 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003498 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3499 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3500 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3501 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003502 }
3503
Chris Mason46a53cc2009-04-27 11:47:50 -04003504 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003505 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003506 while (slot < nritems) {
3507 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3508
3509 /* we found a different objectid, there must not be acls */
3510 if (found_key.objectid != objectid)
3511 return 0;
3512
3513 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003514 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003515 if (*first_xattr_slot == -1)
3516 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003517 if (found_key.offset == xattr_access ||
3518 found_key.offset == xattr_default)
3519 return 1;
3520 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003521
3522 /*
3523 * we found a key greater than an xattr key, there can't
3524 * be any acls later on
3525 */
3526 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3527 return 0;
3528
3529 slot++;
3530 scanned++;
3531
3532 /*
3533 * it goes inode, inode backrefs, xattrs, extents,
3534 * so if there are a ton of hard links to an inode there can
3535 * be a lot of backrefs. Don't waste time searching too hard,
3536 * this is just an optimization
3537 */
3538 if (scanned >= 8)
3539 break;
3540 }
3541 /* we hit the end of the leaf before we found an xattr or
3542 * something larger than an xattr. We have to assume the inode
3543 * has acls
3544 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003545 if (*first_xattr_slot == -1)
3546 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003547 return 1;
3548}
3549
3550/*
Chris Masond352ac62008-09-29 15:18:18 -04003551 * read an inode from the btree into the in-memory inode
3552 */
Filipe Manana4222ea72018-10-24 10:13:03 +01003553static int btrfs_read_locked_inode(struct inode *inode,
3554 struct btrfs_path *in_path)
Chris Mason39279cc2007-06-12 06:35:45 -04003555{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003556 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Filipe Manana4222ea72018-10-24 10:13:03 +01003557 struct btrfs_path *path = in_path;
Chris Mason5f39d392007-10-15 16:14:19 -04003558 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003559 struct btrfs_inode_item *inode_item;
3560 struct btrfs_root *root = BTRFS_I(inode)->root;
3561 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003562 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003563 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003564 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003565 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003566 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003567 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003568
3569 ret = btrfs_fill_inode(inode, &rdev);
3570 if (!ret)
3571 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003572
Filipe Manana4222ea72018-10-24 10:13:03 +01003573 if (!path) {
3574 path = btrfs_alloc_path();
3575 if (!path)
3576 return -ENOMEM;
3577 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003578
Chris Mason39279cc2007-06-12 06:35:45 -04003579 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003580
Chris Mason39279cc2007-06-12 06:35:45 -04003581 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003582 if (ret) {
Filipe Manana4222ea72018-10-24 10:13:03 +01003583 if (path != in_path)
3584 btrfs_free_path(path);
Al Virof5b3a412018-07-29 23:04:51 +01003585 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003586 }
Chris Mason39279cc2007-06-12 06:35:45 -04003587
Chris Mason5f39d392007-10-15 16:14:19 -04003588 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003589
3590 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003591 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003592
Chris Mason5f39d392007-10-15 16:14:19 -04003593 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3594 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003595 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003596 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003597 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3598 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003599 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003600
David Sterbaa937b972014-12-12 17:39:12 +01003601 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3602 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003603
David Sterbaa937b972014-12-12 17:39:12 +01003604 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3605 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003606
David Sterbaa937b972014-12-12 17:39:12 +01003607 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3608 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003609
chandan r9cc97d62012-07-04 12:48:07 +05303610 BTRFS_I(inode)->i_otime.tv_sec =
3611 btrfs_timespec_sec(leaf, &inode_item->otime);
3612 BTRFS_I(inode)->i_otime.tv_nsec =
3613 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003614
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003615 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003616 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003617 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3618
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003619 inode_set_iversion_queried(inode,
3620 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003621 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003622 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003623 rdev = btrfs_inode_rdev(leaf, inode_item);
3624
Josef Bacikaec74772008-07-24 12:12:38 -04003625 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003626 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003627
3628cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003629 /*
3630 * If we were modified in the current generation and evicted from memory
3631 * and then re-read we need to do a full sync since we don't have any
3632 * idea about which extents were modified before we were evicted from
3633 * cache.
3634 *
3635 * This is required for both inode re-read from disk and delayed inode
3636 * in delayed_nodes_tree.
3637 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003638 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003639 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3640 &BTRFS_I(inode)->runtime_flags);
3641
Filipe Mananabde6c242015-07-24 00:00:19 +01003642 /*
3643 * We don't persist the id of the transaction where an unlink operation
3644 * against the inode was last made. So here we assume the inode might
3645 * have been evicted, and therefore the exact value of last_unlink_trans
3646 * lost, and set it to last_trans to avoid metadata inconsistencies
3647 * between the inode and its parent if the inode is fsync'ed and the log
3648 * replayed. For example, in the scenario:
3649 *
3650 * touch mydir/foo
3651 * ln mydir/foo mydir/bar
3652 * sync
3653 * unlink mydir/bar
3654 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3655 * xfs_io -c fsync mydir/foo
3656 * <power failure>
3657 * mount fs, triggers fsync log replay
3658 *
3659 * We must make sure that when we fsync our inode foo we also log its
3660 * parent inode, otherwise after log replay the parent still has the
3661 * dentry with the "bar" name but our inode foo has a link count of 1
3662 * and doesn't have an inode ref with the name "bar" anymore.
3663 *
3664 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003665 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003666 * transaction commits on fsync if our inode is a directory, or if our
3667 * inode is not a directory, logging its parent unnecessarily.
3668 */
3669 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
Filipe Manana41bd6062018-11-28 14:54:28 +00003670 /*
3671 * Similar reasoning for last_link_trans, needs to be set otherwise
3672 * for a case like the following:
3673 *
3674 * mkdir A
3675 * touch foo
3676 * ln foo A/bar
3677 * echo 2 > /proc/sys/vm/drop_caches
3678 * fsync foo
3679 * <power failure>
3680 *
3681 * Would result in link bar and directory A not existing after the power
3682 * failure.
3683 */
3684 BTRFS_I(inode)->last_link_trans = BTRFS_I(inode)->last_trans;
Filipe Mananabde6c242015-07-24 00:00:19 +01003685
Miao Xie67de1172013-12-26 13:07:06 +08003686 path->slots[0]++;
3687 if (inode->i_nlink != 1 ||
3688 path->slots[0] >= btrfs_header_nritems(leaf))
3689 goto cache_acl;
3690
3691 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003692 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003693 goto cache_acl;
3694
3695 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3696 if (location.type == BTRFS_INODE_REF_KEY) {
3697 struct btrfs_inode_ref *ref;
3698
3699 ref = (struct btrfs_inode_ref *)ptr;
3700 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3701 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3702 struct btrfs_inode_extref *extref;
3703
3704 extref = (struct btrfs_inode_extref *)ptr;
3705 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3706 extref);
3707 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003708cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003709 /*
3710 * try to precache a NULL acl entry for files that don't have
3711 * any xattrs or acls
3712 */
Li Zefan33345d012011-04-20 10:31:50 +08003713 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003714 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003715 if (first_xattr_slot != -1) {
3716 path->slots[0] = first_xattr_slot;
3717 ret = btrfs_load_inode_props(inode, path);
3718 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003719 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003720 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003721 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003722 root->root_key.objectid, ret);
3723 }
Filipe Manana4222ea72018-10-24 10:13:03 +01003724 if (path != in_path)
3725 btrfs_free_path(path);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003726
Al Viro72c04902009-06-24 16:58:48 -04003727 if (!maybe_acls)
3728 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003729
Chris Mason39279cc2007-06-12 06:35:45 -04003730 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003731 case S_IFREG:
3732 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003733 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003734 inode->i_fop = &btrfs_file_operations;
3735 inode->i_op = &btrfs_file_inode_operations;
3736 break;
3737 case S_IFDIR:
3738 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003739 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003740 break;
3741 case S_IFLNK:
3742 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003743 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003744 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003745 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003746 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003747 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003748 init_special_inode(inode, inode->i_mode, rdev);
3749 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003750 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003751
David Sterba7b6a2212018-03-26 18:40:21 +02003752 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003753 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003754}
3755
Chris Masond352ac62008-09-29 15:18:18 -04003756/*
3757 * given a leaf and an inode, copy the inode fields into the leaf
3758 */
Chris Masone02119d2008-09-05 16:13:11 -04003759static void fill_inode_item(struct btrfs_trans_handle *trans,
3760 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003761 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003762 struct inode *inode)
3763{
Liu Bo51fab692012-12-27 09:01:21 +00003764 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003765
Liu Bo51fab692012-12-27 09:01:21 +00003766 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003767
Liu Bo51fab692012-12-27 09:01:21 +00003768 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3769 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3770 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3771 &token);
3772 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3773 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003774
David Sterbaa937b972014-12-12 17:39:12 +01003775 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003776 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003777 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003778 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003779
David Sterbaa937b972014-12-12 17:39:12 +01003780 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003781 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003782 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003783 inode->i_mtime.tv_nsec, &token);
3784
David Sterbaa937b972014-12-12 17:39:12 +01003785 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003786 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003787 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003788 inode->i_ctime.tv_nsec, &token);
3789
chandan r9cc97d62012-07-04 12:48:07 +05303790 btrfs_set_token_timespec_sec(leaf, &item->otime,
3791 BTRFS_I(inode)->i_otime.tv_sec, &token);
3792 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3793 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3794
Liu Bo51fab692012-12-27 09:01:21 +00003795 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3796 &token);
3797 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3798 &token);
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003799 btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode),
3800 &token);
Liu Bo51fab692012-12-27 09:01:21 +00003801 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3802 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3803 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3804 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003805}
3806
Chris Masond352ac62008-09-29 15:18:18 -04003807/*
3808 * copy everything in the in-memory inode into the btree.
3809 */
Chris Mason21151332011-11-10 20:39:08 -05003810static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003811 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003812{
3813 struct btrfs_inode_item *inode_item;
3814 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003815 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003816 int ret;
3817
3818 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003819 if (!path)
3820 return -ENOMEM;
3821
Chris Masonb9473432009-03-13 11:00:37 -04003822 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003823 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3824 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003825 if (ret) {
3826 if (ret > 0)
3827 ret = -ENOENT;
3828 goto failed;
3829 }
3830
Chris Mason5f39d392007-10-15 16:14:19 -04003831 leaf = path->nodes[0];
3832 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003833 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003834
Chris Masone02119d2008-09-05 16:13:11 -04003835 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003836 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003837 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003838 ret = 0;
3839failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003840 btrfs_free_path(path);
3841 return ret;
3842}
3843
Chris Masond352ac62008-09-29 15:18:18 -04003844/*
Chris Mason21151332011-11-10 20:39:08 -05003845 * copy everything in the in-memory inode into the btree.
3846 */
3847noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3848 struct btrfs_root *root, struct inode *inode)
3849{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003850 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003851 int ret;
3852
3853 /*
3854 * If the inode is a free space inode, we can deadlock during commit
3855 * if we put it into the delayed code.
3856 *
3857 * The data relocation inode should also be directly updated
3858 * without delay
3859 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003860 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003861 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003862 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003863 btrfs_update_root_times(trans, root);
3864
Chris Mason21151332011-11-10 20:39:08 -05003865 ret = btrfs_delayed_update_inode(trans, root, inode);
3866 if (!ret)
3867 btrfs_set_inode_last_trans(trans, inode);
3868 return ret;
3869 }
3870
3871 return btrfs_update_inode_item(trans, root, inode);
3872}
3873
Josef Bacikbe6aef62012-10-22 15:43:12 -04003874noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3875 struct btrfs_root *root,
3876 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003877{
3878 int ret;
3879
3880 ret = btrfs_update_inode(trans, root, inode);
3881 if (ret == -ENOSPC)
3882 return btrfs_update_inode_item(trans, root, inode);
3883 return ret;
3884}
3885
3886/*
Chris Masond352ac62008-09-29 15:18:18 -04003887 * unlink helper that gets used here in inode.c and in the tree logging
3888 * recovery code. It remove a link in a directory with a given name, and
3889 * also drops the back refs in the inode to the directory
3890 */
Al Viro92986792011-03-04 17:14:37 +00003891static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3892 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003893 struct btrfs_inode *dir,
3894 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003895 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003896{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003897 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003898 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003899 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003900 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003902 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003903 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003904 u64 ino = btrfs_ino(inode);
3905 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003906
3907 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003908 if (!path) {
3909 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003910 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003911 }
3912
Chris Masonb9473432009-03-13 11:00:37 -04003913 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003914 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003915 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08003916 if (IS_ERR_OR_NULL(di)) {
3917 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003918 goto err;
3919 }
Chris Mason5f39d392007-10-15 16:14:19 -04003920 leaf = path->nodes[0];
3921 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003922 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003923 if (ret)
3924 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003925 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003926
Miao Xie67de1172013-12-26 13:07:06 +08003927 /*
3928 * If we don't have dir index, we have to get it by looking up
3929 * the inode ref, since we get the inode ref, remove it directly,
3930 * it is unnecessary to do delayed deletion.
3931 *
3932 * But if we have dir index, needn't search inode ref to get it.
3933 * Since the inode ref is close to the inode item, it is better
3934 * that we delay to delete it, and just do this deletion when
3935 * we update the inode item.
3936 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003937 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08003938 ret = btrfs_delayed_delete_inode_ref(inode);
3939 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003940 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003941 goto skip_backref;
3942 }
3943 }
3944
Li Zefan33345d012011-04-20 10:31:50 +08003945 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3946 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003947 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003948 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003949 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003950 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003951 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003952 goto err;
3953 }
Miao Xie67de1172013-12-26 13:07:06 +08003954skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08003955 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003956 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003957 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003958 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003959 }
Chris Mason39279cc2007-06-12 06:35:45 -04003960
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003961 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3962 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003963 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003964 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003965 goto err;
3966 }
Chris Masone02119d2008-09-05 16:13:11 -04003967
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003968 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3969 index);
Chris Mason6418c962010-10-30 07:34:24 -04003970 if (ret == -ENOENT)
3971 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003972 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003973 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003974err:
3975 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003976 if (ret)
3977 goto out;
3978
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003979 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003980 inode_inc_iversion(&inode->vfs_inode);
3981 inode_inc_iversion(&dir->vfs_inode);
3982 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3983 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3984 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003985out:
Chris Mason39279cc2007-06-12 06:35:45 -04003986 return ret;
3987}
3988
Al Viro92986792011-03-04 17:14:37 +00003989int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3990 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003991 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003992 const char *name, int name_len)
3993{
3994 int ret;
3995 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3996 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003997 drop_nlink(&inode->vfs_inode);
3998 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00003999 }
4000 return ret;
4001}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004002
4003/*
4004 * helper to start transaction for unlink and rmdir.
4005 *
Josef Bacikd52be812013-05-29 14:54:47 -04004006 * unlink and rmdir are special in btrfs, they do not always free space, so
4007 * if we cannot make our reservations the normal way try and see if there is
4008 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4009 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004010 */
Josef Bacikd52be812013-05-29 14:54:47 -04004011static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004012{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004013 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004014
Josef Bacike70bea52011-10-11 14:18:24 -04004015 /*
4016 * 1 for the possible orphan item
4017 * 1 for the dir item
4018 * 1 for the dir index
4019 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004020 * 1 for the inode
4021 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004022 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004023}
4024
Chris Mason39279cc2007-06-12 06:35:45 -04004025static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4026{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004027 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004028 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004029 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004030 int ret;
4031
Josef Bacikd52be812013-05-29 14:54:47 -04004032 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004033 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004034 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004035
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004036 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4037 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004038
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004039 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4040 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4041 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004042 if (ret)
4043 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004044
Yan, Zhenga22285a2010-05-16 10:48:46 -04004045 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004046 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004047 if (ret)
4048 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004049 }
Josef Bacik7b128762008-07-24 12:17:14 -04004050
Tsutomu Itohb5324022011-07-19 07:27:20 +00004051out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004052 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004053 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004054 return ret;
4055}
4056
Misono Tomohirof60a2362018-04-18 11:34:52 +09004057static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Lu Fengqi401b3b12018-08-01 11:32:30 +08004058 struct inode *dir, u64 objectid,
4059 const char *name, int name_len)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004060{
Lu Fengqi401b3b12018-08-01 11:32:30 +08004061 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004062 struct btrfs_path *path;
4063 struct extent_buffer *leaf;
4064 struct btrfs_dir_item *di;
4065 struct btrfs_key key;
4066 u64 index;
4067 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004068 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004069
4070 path = btrfs_alloc_path();
4071 if (!path)
4072 return -ENOMEM;
4073
Li Zefan33345d012011-04-20 10:31:50 +08004074 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004075 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004076 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08004077 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004078 goto out;
4079 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004080
4081 leaf = path->nodes[0];
4082 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4083 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4084 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004085 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004086 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004087 goto out;
4088 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004089 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004090
Lu Fengqi3ee1c552018-08-01 11:32:28 +08004091 ret = btrfs_del_root_ref(trans, objectid, root->root_key.objectid,
4092 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004093 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004094 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004095 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004096 goto out;
4097 }
Li Zefan33345d012011-04-20 10:31:50 +08004098 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004099 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004100 if (IS_ERR_OR_NULL(di)) {
4101 if (!di)
4102 ret = -ENOENT;
4103 else
4104 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004105 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004106 goto out;
4107 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004108
4109 leaf = path->nodes[0];
4110 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004111 index = key.offset;
4112 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004113 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004114
Lu Fengqi9add2942018-08-01 11:32:26 +08004115 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004116 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004117 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004118 goto out;
4119 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004120
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004121 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004122 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004123 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004124 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004125 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004126 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004127out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004128 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004129 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004130}
4131
Misono Tomohiroec42f162018-04-18 11:34:13 +09004132/*
4133 * Helper to check if the subvolume references other subvolumes or if it's
4134 * default.
4135 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09004136static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09004137{
4138 struct btrfs_fs_info *fs_info = root->fs_info;
4139 struct btrfs_path *path;
4140 struct btrfs_dir_item *di;
4141 struct btrfs_key key;
4142 u64 dir_id;
4143 int ret;
4144
4145 path = btrfs_alloc_path();
4146 if (!path)
4147 return -ENOMEM;
4148
4149 /* Make sure this root isn't set as the default subvol */
4150 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4151 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4152 dir_id, "default", 7, 0);
4153 if (di && !IS_ERR(di)) {
4154 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4155 if (key.objectid == root->root_key.objectid) {
4156 ret = -EPERM;
4157 btrfs_err(fs_info,
4158 "deleting default subvolume %llu is not allowed",
4159 key.objectid);
4160 goto out;
4161 }
4162 btrfs_release_path(path);
4163 }
4164
4165 key.objectid = root->root_key.objectid;
4166 key.type = BTRFS_ROOT_REF_KEY;
4167 key.offset = (u64)-1;
4168
4169 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4170 if (ret < 0)
4171 goto out;
4172 BUG_ON(ret == 0);
4173
4174 ret = 0;
4175 if (path->slots[0] > 0) {
4176 path->slots[0]--;
4177 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4178 if (key.objectid == root->root_key.objectid &&
4179 key.type == BTRFS_ROOT_REF_KEY)
4180 ret = -ENOTEMPTY;
4181 }
4182out:
4183 btrfs_free_path(path);
4184 return ret;
4185}
4186
Nikolay Borisov20a68002018-04-27 14:36:24 +03004187/* Delete all dentries for inodes belonging to the root */
4188static void btrfs_prune_dentries(struct btrfs_root *root)
4189{
4190 struct btrfs_fs_info *fs_info = root->fs_info;
4191 struct rb_node *node;
4192 struct rb_node *prev;
4193 struct btrfs_inode *entry;
4194 struct inode *inode;
4195 u64 objectid = 0;
4196
4197 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4198 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4199
4200 spin_lock(&root->inode_lock);
4201again:
4202 node = root->inode_tree.rb_node;
4203 prev = NULL;
4204 while (node) {
4205 prev = node;
4206 entry = rb_entry(node, struct btrfs_inode, rb_node);
4207
David Sterba37508512018-06-29 10:56:40 +02004208 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004209 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02004210 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004211 node = node->rb_right;
4212 else
4213 break;
4214 }
4215 if (!node) {
4216 while (prev) {
4217 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004218 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03004219 node = prev;
4220 break;
4221 }
4222 prev = rb_next(prev);
4223 }
4224 }
4225 while (node) {
4226 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004227 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03004228 inode = igrab(&entry->vfs_inode);
4229 if (inode) {
4230 spin_unlock(&root->inode_lock);
4231 if (atomic_read(&inode->i_count) > 1)
4232 d_prune_aliases(inode);
4233 /*
4234 * btrfs_drop_inode will have it removed from the inode
4235 * cache when its usage count hits zero.
4236 */
4237 iput(inode);
4238 cond_resched();
4239 spin_lock(&root->inode_lock);
4240 goto again;
4241 }
4242
4243 if (cond_resched_lock(&root->inode_lock))
4244 goto again;
4245
4246 node = rb_next(node);
4247 }
4248 spin_unlock(&root->inode_lock);
4249}
4250
Misono Tomohirof60a2362018-04-18 11:34:52 +09004251int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4252{
4253 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4254 struct btrfs_root *root = BTRFS_I(dir)->root;
4255 struct inode *inode = d_inode(dentry);
4256 struct btrfs_root *dest = BTRFS_I(inode)->root;
4257 struct btrfs_trans_handle *trans;
4258 struct btrfs_block_rsv block_rsv;
4259 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004260 int ret;
4261 int err;
4262
4263 /*
4264 * Don't allow to delete a subvolume with send in progress. This is
4265 * inside the inode lock so the error handling that has to drop the bit
4266 * again is not run concurrently.
4267 */
4268 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08004269 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004270 spin_unlock(&dest->root_item_lock);
4271 btrfs_warn(fs_info,
4272 "attempt to delete subvolume %llu during send",
4273 dest->root_key.objectid);
4274 return -EPERM;
4275 }
Lu Fengqia7176f72018-08-04 21:10:53 +08004276 root_flags = btrfs_root_flags(&dest->root_item);
4277 btrfs_set_root_flags(&dest->root_item,
4278 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4279 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004280
4281 down_write(&fs_info->subvol_sem);
4282
4283 err = may_destroy_subvol(dest);
4284 if (err)
4285 goto out_up_write;
4286
4287 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4288 /*
4289 * One for dir inode,
4290 * two for dir entries,
4291 * two for root ref/backref.
4292 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +08004293 err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004294 if (err)
4295 goto out_up_write;
4296
4297 trans = btrfs_start_transaction(root, 0);
4298 if (IS_ERR(trans)) {
4299 err = PTR_ERR(trans);
4300 goto out_release;
4301 }
4302 trans->block_rsv = &block_rsv;
4303 trans->bytes_reserved = block_rsv.size;
4304
4305 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4306
Lu Fengqi401b3b12018-08-01 11:32:30 +08004307 ret = btrfs_unlink_subvol(trans, dir, dest->root_key.objectid,
4308 dentry->d_name.name, dentry->d_name.len);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004309 if (ret) {
4310 err = ret;
4311 btrfs_abort_transaction(trans, ret);
4312 goto out_end_trans;
4313 }
4314
4315 btrfs_record_root_in_trans(trans, dest);
4316
4317 memset(&dest->root_item.drop_progress, 0,
4318 sizeof(dest->root_item.drop_progress));
4319 dest->root_item.drop_level = 0;
4320 btrfs_set_root_refs(&dest->root_item, 0);
4321
4322 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4323 ret = btrfs_insert_orphan_item(trans,
4324 fs_info->tree_root,
4325 dest->root_key.objectid);
4326 if (ret) {
4327 btrfs_abort_transaction(trans, ret);
4328 err = ret;
4329 goto out_end_trans;
4330 }
4331 }
4332
Lu Fengqid1957792018-05-29 15:01:54 +08004333 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004334 BTRFS_UUID_KEY_SUBVOL,
4335 dest->root_key.objectid);
4336 if (ret && ret != -ENOENT) {
4337 btrfs_abort_transaction(trans, ret);
4338 err = ret;
4339 goto out_end_trans;
4340 }
4341 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004342 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004343 dest->root_item.received_uuid,
4344 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4345 dest->root_key.objectid);
4346 if (ret && ret != -ENOENT) {
4347 btrfs_abort_transaction(trans, ret);
4348 err = ret;
4349 goto out_end_trans;
4350 }
4351 }
4352
4353out_end_trans:
4354 trans->block_rsv = NULL;
4355 trans->bytes_reserved = 0;
4356 ret = btrfs_end_transaction(trans);
4357 if (ret && !err)
4358 err = ret;
4359 inode->i_flags |= S_DEAD;
4360out_release:
4361 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
4362out_up_write:
4363 up_write(&fs_info->subvol_sem);
4364 if (err) {
4365 spin_lock(&dest->root_item_lock);
4366 root_flags = btrfs_root_flags(&dest->root_item);
4367 btrfs_set_root_flags(&dest->root_item,
4368 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4369 spin_unlock(&dest->root_item_lock);
4370 } else {
4371 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004372 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004373 ASSERT(dest->send_in_progress == 0);
4374
4375 /* the last ref */
4376 if (dest->ino_cache_inode) {
4377 iput(dest->ino_cache_inode);
4378 dest->ino_cache_inode = NULL;
4379 }
4380 }
4381
4382 return err;
4383}
4384
Chris Mason39279cc2007-06-12 06:35:45 -04004385static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4386{
David Howells2b0143b2015-03-17 22:25:59 +00004387 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004388 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004389 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004390 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004391 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004392
David Sterbab3ae2442012-09-13 16:04:34 -06004393 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004394 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004395 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004396 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004397
Josef Bacikd52be812013-05-29 14:54:47 -04004398 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004399 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004400 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004401
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004402 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Lu Fengqi401b3b12018-08-01 11:32:30 +08004403 err = btrfs_unlink_subvol(trans, dir,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004404 BTRFS_I(inode)->location.objectid,
4405 dentry->d_name.name,
4406 dentry->d_name.len);
4407 goto out;
4408 }
4409
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004410 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004411 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004412 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004413
Filipe Manana44f714d2016-06-06 16:11:13 +01004414 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4415
Chris Mason39279cc2007-06-12 06:35:45 -04004416 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004417 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4418 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4419 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004420 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004421 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004422 /*
4423 * Propagate the last_unlink_trans value of the deleted dir to
4424 * its parent directory. This is to prevent an unrecoverable
4425 * log tree in the case we do something like this:
4426 * 1) create dir foo
4427 * 2) create snapshot under dir foo
4428 * 3) delete the snapshot
4429 * 4) rmdir foo
4430 * 5) mkdir foo
4431 * 6) fsync foo or some file inside foo
4432 */
4433 if (last_unlink_trans >= trans->transid)
4434 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4435 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004436out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004437 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004438 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004439
Chris Mason39279cc2007-06-12 06:35:45 -04004440 return err;
4441}
4442
Josef Bacikddfae632017-10-19 14:16:02 -04004443/*
4444 * Return this if we need to call truncate_block for the last bit of the
4445 * truncate.
4446 */
4447#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004448
Chris Mason323ac952008-10-01 19:05:46 -04004449/*
Chris Mason39279cc2007-06-12 06:35:45 -04004450 * this can truncate away extent items, csum items and directory items.
4451 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004452 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004453 *
4454 * csum items that cross the new i_size are truncated to the new size
4455 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004456 *
4457 * min_type is the minimum key type to truncate down to. If set to 0, this
4458 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004459 */
Yan, Zheng80825102009-11-12 09:35:36 +00004460int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4461 struct btrfs_root *root,
4462 struct inode *inode,
4463 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004464{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004465 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004466 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004467 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004468 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004469 struct btrfs_key key;
4470 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004471 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004472 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004473 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004474 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004475 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004476 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004477 int found_extent;
4478 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004479 int pending_del_nr = 0;
4480 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004481 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004482 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004483 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004484 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004485 bool be_nice = false;
4486 bool should_throttle = false;
Yan, Zheng80825102009-11-12 09:35:36 +00004487
4488 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004489
Chris Mason28ed1342014-12-17 09:41:04 -08004490 /*
4491 * for non-free space inodes and ref cows, we want to back off from
4492 * time to time
4493 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004494 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004495 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004496 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004497
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004498 path = btrfs_alloc_path();
4499 if (!path)
4500 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004501 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004502
Josef Bacik5dc562c2012-08-17 13:14:17 -04004503 /*
4504 * We want to drop from the next block forward in case this new size is
4505 * not block aligned since we will be keeping the last block of the
4506 * extent just the way it is.
4507 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004508 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004509 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004510 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004511 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004512 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004513
Miao Xie16cdcec2011-04-22 18:12:22 +08004514 /*
4515 * This function is also used to drop the items in the log tree before
4516 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
Andrea Gelmini52042d82018-11-28 12:05:13 +01004517 * it is used to drop the logged items. So we shouldn't kill the delayed
Miao Xie16cdcec2011-04-22 18:12:22 +08004518 * items.
4519 */
4520 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004521 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004522
Li Zefan33345d012011-04-20 10:31:50 +08004523 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004524 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004525 key.type = (u8)-1;
4526
Chris Mason85e21ba2008-01-29 15:11:36 -05004527search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004528 /*
4529 * with a 16K leaf size and 128MB extents, you can actually queue
4530 * up a huge file in a single leaf. Most of the time that
4531 * bytes_deleted is > 0, it will be huge by the time we get here
4532 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004533 if (be_nice && bytes_deleted > SZ_32M &&
4534 btrfs_should_end_transaction(trans)) {
4535 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004536 goto out;
4537 }
Chris Masond3977122009-01-05 21:25:51 -05004538
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004539 path->leave_spinning = 1;
4540 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4541 if (ret < 0)
4542 goto out;
4543
Chris Mason85e21ba2008-01-29 15:11:36 -05004544 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004545 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004546 /* there are no items in the tree for us to truncate, we're
4547 * done
4548 */
Yan, Zheng80825102009-11-12 09:35:36 +00004549 if (path->slots[0] == 0)
4550 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004551 path->slots[0]--;
4552 }
4553
Chris Masond3977122009-01-05 21:25:51 -05004554 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004555 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004556 leaf = path->nodes[0];
4557 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004558 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004559
Li Zefan33345d012011-04-20 10:31:50 +08004560 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004561 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004562
Chris Mason85e21ba2008-01-29 15:11:36 -05004563 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004564 break;
4565
Chris Mason5f39d392007-10-15 16:14:19 -04004566 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004567 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004568 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004569 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004570 extent_type = btrfs_file_extent_type(leaf, fi);
4571 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004572 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004573 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004574
4575 trace_btrfs_truncate_show_fi_regular(
4576 BTRFS_I(inode), leaf, fi,
4577 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004578 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004579 item_end += btrfs_file_extent_ram_bytes(leaf,
4580 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004581
4582 trace_btrfs_truncate_show_fi_inline(
4583 BTRFS_I(inode), leaf, fi, path->slots[0],
4584 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004585 }
Yan008630c2007-11-07 13:31:09 -05004586 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004587 }
Yan, Zheng80825102009-11-12 09:35:36 +00004588 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004589 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004590 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004591 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004592 break;
4593 if (found_key.offset >= new_size)
4594 del_item = 1;
4595 else
4596 del_item = 0;
4597 }
Chris Mason39279cc2007-06-12 06:35:45 -04004598 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004599 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004600 if (found_type != BTRFS_EXTENT_DATA_KEY)
4601 goto delete;
4602
4603 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004604 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004605 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004606 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004607 u64 orig_num_bytes =
4608 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004609 extent_num_bytes = ALIGN(new_size -
4610 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004611 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004612 btrfs_set_file_extent_num_bytes(leaf, fi,
4613 extent_num_bytes);
4614 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004615 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004616 if (test_bit(BTRFS_ROOT_REF_COWS,
4617 &root->state) &&
4618 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004619 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004620 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004621 } else {
Chris Masondb945352007-10-15 16:15:53 -04004622 extent_num_bytes =
4623 btrfs_file_extent_disk_num_bytes(leaf,
4624 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004625 extent_offset = found_key.offset -
4626 btrfs_file_extent_offset(leaf, fi);
4627
Chris Mason39279cc2007-06-12 06:35:45 -04004628 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004629 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004630 if (extent_start != 0) {
4631 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004632 if (test_bit(BTRFS_ROOT_REF_COWS,
4633 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004634 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004635 }
4636 }
Chris Mason90692182008-02-08 13:49:28 -05004637 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004638 /*
4639 * we can't truncate inline items that have had
4640 * special encodings
4641 */
4642 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004643 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004644 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4645 btrfs_file_extent_compression(leaf, fi) == 0) {
4646 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004647
Josef Bacikddfae632017-10-19 14:16:02 -04004648 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4649 size = btrfs_file_extent_calc_inline_size(size);
4650 btrfs_truncate_item(root->fs_info, path, size, 1);
4651 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004652 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004653 * We have to bail so the last_size is set to
4654 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004655 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004656 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004657 break;
Chris Mason90692182008-02-08 13:49:28 -05004658 }
Josef Bacikddfae632017-10-19 14:16:02 -04004659
4660 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4661 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004662 }
Chris Mason179e29e2007-11-01 11:28:41 -04004663delete:
Josef Bacikddfae632017-10-19 14:16:02 -04004664 if (del_item)
4665 last_size = found_key.offset;
4666 else
4667 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004668 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004669 if (!pending_del_nr) {
4670 /* no pending yet, add ourselves */
4671 pending_del_slot = path->slots[0];
4672 pending_del_nr = 1;
4673 } else if (pending_del_nr &&
4674 path->slots[0] + 1 == pending_del_slot) {
4675 /* hop on the pending chunk */
4676 pending_del_nr++;
4677 pending_del_slot = path->slots[0];
4678 } else {
Chris Masond3977122009-01-05 21:25:51 -05004679 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004680 }
Chris Mason39279cc2007-06-12 06:35:45 -04004681 } else {
4682 break;
4683 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004684 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004685
Miao Xie27cdeb72014-04-02 19:51:05 +08004686 if (found_extent &&
4687 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004688 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004689 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004690 bytes_deleted += extent_num_bytes;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04004691 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004692 extent_num_bytes, 0,
4693 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004694 ino, extent_offset);
Omar Sandoval05522102018-05-11 13:13:31 -07004695 if (ret) {
4696 btrfs_abort_transaction(trans, ret);
4697 break;
4698 }
Chris Mason28f75a02015-02-04 06:59:29 -08004699 if (be_nice) {
Lu Fengqi7c861622018-10-11 13:40:36 +08004700 if (btrfs_should_throttle_delayed_refs(trans))
Thomas Meyer897ca812017-10-07 16:02:21 +02004701 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004702 }
Chris Mason39279cc2007-06-12 06:35:45 -04004703 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004704
Yan, Zheng80825102009-11-12 09:35:36 +00004705 if (found_type == BTRFS_INODE_ITEM_KEY)
4706 break;
4707
4708 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004709 path->slots[0] != pending_del_slot ||
Josef Bacik28bad212018-12-03 10:20:38 -05004710 should_throttle) {
Yan, Zheng80825102009-11-12 09:35:36 +00004711 if (pending_del_nr) {
4712 ret = btrfs_del_items(trans, root, path,
4713 pending_del_slot,
4714 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004715 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004716 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004717 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004718 }
Yan, Zheng80825102009-11-12 09:35:36 +00004719 pending_del_nr = 0;
4720 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004721 btrfs_release_path(path);
Josef Bacik28bad212018-12-03 10:20:38 -05004722
Chris Mason28f75a02015-02-04 06:59:29 -08004723 /*
Josef Bacik28bad212018-12-03 10:20:38 -05004724 * We can generate a lot of delayed refs, so we need to
4725 * throttle every once and a while and make sure we're
4726 * adding enough space to keep up with the work we are
4727 * generating. Since we hold a transaction here we
4728 * can't flush, and we don't want to FLUSH_LIMIT because
4729 * we could have generated too many delayed refs to
4730 * actually allocate, so just bail if we're short and
4731 * let the normal reservation dance happen higher up.
Chris Mason28f75a02015-02-04 06:59:29 -08004732 */
Josef Bacik28bad212018-12-03 10:20:38 -05004733 if (should_throttle) {
4734 ret = btrfs_delayed_refs_rsv_refill(fs_info,
4735 BTRFS_RESERVE_NO_FLUSH);
4736 if (ret) {
4737 ret = -EAGAIN;
4738 break;
4739 }
Chris Mason28f75a02015-02-04 06:59:29 -08004740 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004741 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004742 } else {
4743 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004744 }
Chris Mason39279cc2007-06-12 06:35:45 -04004745 }
Yan, Zheng80825102009-11-12 09:35:36 +00004746out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004747 if (ret >= 0 && pending_del_nr) {
4748 int err;
4749
4750 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004751 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004752 if (err) {
4753 btrfs_abort_transaction(trans, err);
4754 ret = err;
4755 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004756 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004757 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4758 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004759 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004760 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004761 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004762 }
Chris Mason28ed1342014-12-17 09:41:04 -08004763
Chris Mason39279cc2007-06-12 06:35:45 -04004764 btrfs_free_path(path);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004765 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004766}
4767
Chris Masona52d9a82007-08-27 16:49:44 -04004768/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304769 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004770 * @inode - inode that we're zeroing
4771 * @from - the offset to start zeroing
4772 * @len - the length to zero, 0 to zero the entire range respective to the
4773 * offset
4774 * @front - zero up to the offset instead of from the offset on
4775 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304776 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004777 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004778 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304779int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004780 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004781{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004782 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004783 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004784 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4785 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004786 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004787 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004788 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004789 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004790 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304791 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004792 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004793 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004794 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304795 u64 block_start;
4796 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004797
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004798 if (IS_ALIGNED(offset, blocksize) &&
4799 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004800 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304801
Josef Bacik8b62f872017-10-19 14:15:55 -04004802 block_start = round_down(from, blocksize);
4803 block_end = block_start + blocksize - 1;
4804
Qu Wenruo364ecf32017-02-27 15:10:38 +08004805 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004806 block_start, blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004807 if (ret)
4808 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004809
Chris Mason211c17f2008-05-15 09:13:45 -04004810again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004811 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004812 if (!page) {
Qu Wenruobc42bda2017-02-27 15:10:39 +08004813 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08004814 block_start, blocksize, true);
4815 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, true);
Miao Xieac6a2b32012-12-05 10:56:13 +00004816 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004817 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004818 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004819
Chris Masona52d9a82007-08-27 16:49:44 -04004820 if (!PageUptodate(page)) {
4821 ret = btrfs_readpage(NULL, page);
4822 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004823 if (page->mapping != mapping) {
4824 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004825 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004826 goto again;
4827 }
Chris Masona52d9a82007-08-27 16:49:44 -04004828 if (!PageUptodate(page)) {
4829 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004830 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004831 }
4832 }
Chris Mason211c17f2008-05-15 09:13:45 -04004833 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004834
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304835 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004836 set_page_extent_mapped(page);
4837
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304838 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004839 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304840 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004841 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004842 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004843 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004844 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004845 btrfs_put_ordered_extent(ordered);
4846 goto again;
4847 }
4848
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304849 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004850 EXTENT_DIRTY | EXTENT_DELALLOC |
4851 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01004852 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004853
Filipe Mananae3b8a482017-11-04 00:16:59 +00004854 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004855 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004856 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304857 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004858 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004859 goto out_unlock;
4860 }
4861
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304862 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004863 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304864 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004865 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004866 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304867 memset(kaddr + (block_start - page_offset(page)),
4868 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004869 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304870 memset(kaddr + (block_start - page_offset(page)) + offset,
4871 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004872 flush_dcache_page(page);
4873 kunmap(page);
4874 }
Chris Mason247e7432008-07-17 12:53:51 -04004875 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004876 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004877 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004878
Chris Mason89642222008-07-24 09:41:53 -04004879out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004880 if (ret)
Qu Wenruobc42bda2017-02-27 15:10:39 +08004881 btrfs_delalloc_release_space(inode, data_reserved, block_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08004882 blocksize, true);
4883 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, (ret != 0));
Chris Mason39279cc2007-06-12 06:35:45 -04004884 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004885 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004886out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08004887 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004888 return ret;
4889}
4890
Josef Bacik16e75492013-10-22 12:18:51 -04004891static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4892 u64 offset, u64 len)
4893{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004894 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004895 struct btrfs_trans_handle *trans;
4896 int ret;
4897
4898 /*
4899 * Still need to make sure the inode looks like it's been updated so
4900 * that any holes get logged if we fsync.
4901 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004902 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4903 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004904 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4905 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4906 return 0;
4907 }
4908
4909 /*
4910 * 1 - for the one we're dropping
4911 * 1 - for the one we're adding
4912 * 1 - for updating the inode.
4913 */
4914 trans = btrfs_start_transaction(root, 3);
4915 if (IS_ERR(trans))
4916 return PTR_ERR(trans);
4917
4918 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4919 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004920 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004921 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004922 return ret;
4923 }
4924
David Sterbaf85b7372017-01-20 14:54:07 +01004925 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4926 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004927 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004928 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004929 else
4930 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004931 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004932 return ret;
4933}
4934
Josef Bacik695a0d02011-03-04 15:46:53 -05004935/*
4936 * This function puts in dummy file extents for the area we're creating a hole
4937 * for. So if we are truncating this file to a larger size we need to insert
4938 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4939 * the range between oldsize and size
4940 */
Josef Bacika41ad392011-01-31 15:30:16 -05004941int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004942{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004943 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004944 struct btrfs_root *root = BTRFS_I(inode)->root;
4945 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004946 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004947 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004948 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004949 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4950 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004951 u64 last_byte;
4952 u64 cur_offset;
4953 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004954 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004955
Josef Bacika71754f2013-06-17 17:14:39 -04004956 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304957 * If our size started in the middle of a block we need to zero out the
4958 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004959 * expose stale data.
4960 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304961 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004962 if (err)
4963 return err;
4964
Yan Zheng9036c102008-10-30 14:19:41 -04004965 if (size <= hole_start)
4966 return 0;
4967
Yan Zheng9036c102008-10-30 14:19:41 -04004968 while (1) {
4969 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004970
David Sterbaff13db42015-12-03 14:30:40 +01004971 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004972 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02004973 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08004974 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004975 if (!ordered)
4976 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004977 unlock_extent_cached(io_tree, hole_start, block_end - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004978 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004979 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004980 btrfs_put_ordered_extent(ordered);
4981 }
4982
Yan Zheng9036c102008-10-30 14:19:41 -04004983 cur_offset = hole_start;
4984 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02004985 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04004986 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004987 if (IS_ERR(em)) {
4988 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004989 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004990 break;
4991 }
Yan Zheng9036c102008-10-30 14:19:41 -04004992 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004993 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004994 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004995 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004996 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004997
Josef Bacik16e75492013-10-22 12:18:51 -04004998 err = maybe_insert_hole(root, inode, cur_offset,
4999 hole_size);
5000 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005001 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005002 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005003 cur_offset + hole_size - 1, 0);
5004 hole_em = alloc_extent_map();
5005 if (!hole_em) {
5006 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5007 &BTRFS_I(inode)->runtime_flags);
5008 goto next;
5009 }
5010 hole_em->start = cur_offset;
5011 hole_em->len = hole_size;
5012 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005013
Josef Bacik5dc562c2012-08-17 13:14:17 -04005014 hole_em->block_start = EXTENT_MAP_HOLE;
5015 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005016 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005017 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005018 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005019 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005020 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005021
5022 while (1) {
5023 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005024 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005025 write_unlock(&em_tree->lock);
5026 if (err != -EEXIST)
5027 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005028 btrfs_drop_extent_cache(BTRFS_I(inode),
5029 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005030 cur_offset +
5031 hole_size - 1, 0);
5032 }
5033 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005034 }
Josef Bacik16e75492013-10-22 12:18:51 -04005035next:
Yan Zheng9036c102008-10-30 14:19:41 -04005036 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005037 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005038 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005039 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005040 break;
5041 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005042 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005043 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005044 return err;
5045}
5046
Eric Sandeen3972f262013-01-12 02:57:22 +00005047static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005048{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005049 struct btrfs_root *root = BTRFS_I(inode)->root;
5050 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005051 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005052 loff_t newsize = attr->ia_size;
5053 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005054 int ret;
5055
Eric Sandeen3972f262013-01-12 02:57:22 +00005056 /*
5057 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5058 * special case where we need to update the times despite not having
5059 * these flags set. For all other operations the VFS set these flags
5060 * explicitly if it wants a timestamp update.
5061 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005062 if (newsize != oldsize) {
5063 inode_inc_iversion(inode);
5064 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5065 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005066 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005067 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005068
Josef Bacika41ad392011-01-31 15:30:16 -05005069 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005070 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005071 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005072 * This is to ensure the snapshot captures a fully consistent
5073 * state of this file - if the snapshot captures this expanding
5074 * truncation, it must capture all writes that happened before
5075 * this truncation.
5076 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005077 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005078 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005079 if (ret) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005080 btrfs_end_write_no_snapshotting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005081 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005082 }
Yan, Zheng80825102009-11-12 09:35:36 +00005083
Miao Xief4a2f4c2011-12-14 20:12:01 -05005084 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005085 if (IS_ERR(trans)) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005086 btrfs_end_write_no_snapshotting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005087 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005088 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005089
5090 i_size_write(inode, newsize);
5091 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305092 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005093 ret = btrfs_update_inode(trans, root, inode);
David Sterbaea14b57f2017-06-22 02:19:11 +02005094 btrfs_end_write_no_snapshotting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005095 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005096 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005097
Josef Bacika41ad392011-01-31 15:30:16 -05005098 /*
5099 * We're truncating a file that used to have good data down to
5100 * zero. Make sure it gets into the ordered flush list so that
5101 * any new writes get down to disk quickly.
5102 */
5103 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005104 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5105 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005106
Josef Bacika41ad392011-01-31 15:30:16 -05005107 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005108
Andrea Gelmini52042d82018-11-28 12:05:13 +01005109 /* Disable nonlocked read DIO to avoid the endless truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005110 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005111 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005112 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005113
Filipe Manana213e8c52018-02-06 20:40:31 +00005114 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005115 if (ret && inode->i_nlink) {
5116 int err;
5117
5118 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005119 * Truncate failed, so fix up the in-memory size. We
5120 * adjusted disk_i_size down as we removed extents, so
5121 * wait for disk_i_size to be stable and then update the
5122 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005123 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005124 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005125 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005126 return err;
5127 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005128 }
Yan, Zheng80825102009-11-12 09:35:36 +00005129 }
5130
Josef Bacika41ad392011-01-31 15:30:16 -05005131 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005132}
5133
Chris Mason39279cc2007-06-12 06:35:45 -04005134static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5135{
David Howells2b0143b2015-03-17 22:25:59 +00005136 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005137 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005138 int err;
5139
Li Zefanb83cc962010-12-20 16:04:08 +08005140 if (btrfs_root_readonly(root))
5141 return -EROFS;
5142
Jan Kara31051c82016-05-26 16:55:18 +02005143 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005144 if (err)
5145 return err;
5146
Chris Mason5a3f23d2009-03-31 13:27:11 -04005147 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005148 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005149 if (err)
5150 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005151 }
Yan Zheng9036c102008-10-30 14:19:41 -04005152
Christoph Hellwig10257742010-06-04 11:30:02 +02005153 if (attr->ia_valid) {
5154 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005155 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005156 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005157
Josef Bacik22c44fe2011-11-30 10:45:38 -05005158 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005159 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005160 }
5161
Chris Mason39279cc2007-06-12 06:35:45 -04005162 return err;
5163}
Chris Mason61295eb2008-01-14 16:24:38 -05005164
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005165/*
5166 * While truncating the inode pages during eviction, we get the VFS calling
5167 * btrfs_invalidatepage() against each page of the inode. This is slow because
5168 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5169 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5170 * extent_state structures over and over, wasting lots of time.
5171 *
5172 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5173 * those expensive operations on a per page basis and do only the ordered io
5174 * finishing, while we release here the extent_map and extent_state structures,
5175 * without the excessive merging and splitting.
5176 */
5177static void evict_inode_truncate_pages(struct inode *inode)
5178{
5179 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5180 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5181 struct rb_node *node;
5182
5183 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005184 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005185
5186 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08005187 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005188 struct extent_map *em;
5189
Liu Bo07e1ce02018-08-23 03:51:52 +08005190 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005191 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005192 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5193 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005194 remove_extent_mapping(map_tree, em);
5195 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005196 if (need_resched()) {
5197 write_unlock(&map_tree->lock);
5198 cond_resched();
5199 write_lock(&map_tree->lock);
5200 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005201 }
5202 write_unlock(&map_tree->lock);
5203
Filipe Manana6ca07092015-05-26 00:55:42 +01005204 /*
5205 * Keep looping until we have no more ranges in the io tree.
5206 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005207 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5208 * still in progress (unlocked the pages in the bio but did not yet
5209 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005210 * ranges can still be locked and eviction started because before
5211 * submitting those bios, which are executed by a separate task (work
5212 * queue kthread), inode references (inode->i_count) were not taken
5213 * (which would be dropped in the end io callback of each bio).
5214 * Therefore here we effectively end up waiting for those bios and
5215 * anyone else holding locked ranges without having bumped the inode's
5216 * reference count - if we don't do it, when they access the inode's
5217 * io_tree to unlock a range it may be too late, leading to an
5218 * use-after-free issue.
5219 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005220 spin_lock(&io_tree->lock);
5221 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5222 struct extent_state *state;
5223 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005224 u64 start;
5225 u64 end;
Filipe Manana421f0922018-10-12 13:02:48 +01005226 unsigned state_flags;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005227
5228 node = rb_first(&io_tree->state);
5229 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005230 start = state->start;
5231 end = state->end;
Filipe Manana421f0922018-10-12 13:02:48 +01005232 state_flags = state->state;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005233 spin_unlock(&io_tree->lock);
5234
David Sterbaff13db42015-12-03 14:30:40 +01005235 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005236
5237 /*
5238 * If still has DELALLOC flag, the extent didn't reach disk,
5239 * and its reserved space won't be freed by delayed_ref.
5240 * So we need to free its reserved space here.
5241 * (Refer to comment in btrfs_invalidatepage, case 2)
5242 *
5243 * Note, end is the bytenr of last byte, so we need + 1 here.
5244 */
Filipe Manana421f0922018-10-12 13:02:48 +01005245 if (state_flags & EXTENT_DELALLOC)
Qu Wenruobc42bda2017-02-27 15:10:39 +08005246 btrfs_qgroup_free_data(inode, NULL, start, end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005247
Filipe Manana6ca07092015-05-26 00:55:42 +01005248 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005249 EXTENT_LOCKED | EXTENT_DIRTY |
5250 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01005251 EXTENT_DEFRAG, 1, 1, &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005252
Filipe Manana7064dd52014-08-08 02:47:05 +01005253 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005254 spin_lock(&io_tree->lock);
5255 }
5256 spin_unlock(&io_tree->lock);
5257}
5258
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005259static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04005260 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005261{
5262 struct btrfs_fs_info *fs_info = root->fs_info;
5263 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5264 int failures = 0;
5265
5266 for (;;) {
5267 struct btrfs_trans_handle *trans;
5268 int ret;
5269
Josef Bacikad80cf52018-09-28 07:18:19 -04005270 ret = btrfs_block_rsv_refill(root, rsv, rsv->size,
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005271 BTRFS_RESERVE_FLUSH_LIMIT);
5272
5273 if (ret && ++failures > 2) {
5274 btrfs_warn(fs_info,
5275 "could not allocate space for a delete; will truncate on mount");
5276 return ERR_PTR(-ENOSPC);
5277 }
5278
5279 trans = btrfs_join_transaction(root);
5280 if (IS_ERR(trans) || !ret)
5281 return trans;
5282
5283 /*
5284 * Try to steal from the global reserve if there is space for
5285 * it.
5286 */
Josef Bacik644036122018-12-03 10:20:36 -05005287 if (!btrfs_check_space_for_delayed_refs(fs_info) &&
5288 !btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, 0))
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005289 return trans;
5290
5291 /* If not, commit and try again. */
5292 ret = btrfs_commit_transaction(trans);
5293 if (ret)
5294 return ERR_PTR(ret);
5295 }
5296}
5297
Al Virobd555972010-06-07 11:35:40 -04005298void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005299{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005300 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005301 struct btrfs_trans_handle *trans;
5302 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005303 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005304 int ret;
5305
liubo1abe9b82011-03-24 11:18:59 +00005306 trace_btrfs_inode_evict(inode);
5307
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005308 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005309 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005310 return;
5311 }
5312
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005313 evict_inode_truncate_pages(inode);
5314
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005315 if (inode->i_nlink &&
5316 ((btrfs_root_refs(&root->root_item) != 0 &&
5317 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005318 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005319 goto no_delete;
5320
Omar Sandoval27919062018-05-11 13:13:37 -07005321 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005322 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005323
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005324 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005325
Omar Sandoval7b40b692018-05-11 13:13:33 -07005326 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005327 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005328
Yan, Zheng76dda932009-09-21 16:00:26 -04005329 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005330 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5331 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005332 goto no_delete;
5333 }
5334
Nikolay Borisovaa790212017-01-10 20:35:40 +02005335 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005336 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005337 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005338
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005339 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005340 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005341 goto no_delete;
Josef Bacikad80cf52018-09-28 07:18:19 -04005342 rsv->size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005343 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005344
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005345 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005346
Yan, Zheng80825102009-11-12 09:35:36 +00005347 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005348 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005349 if (IS_ERR(trans))
5350 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005351
5352 trans->block_rsv = rsv;
5353
Yan, Zhengd68fc572010-05-16 10:49:58 -04005354 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Omar Sandoval27919062018-05-11 13:13:37 -07005355 trans->block_rsv = &fs_info->trans_block_rsv;
5356 btrfs_end_transaction(trans);
5357 btrfs_btree_balance_dirty(fs_info);
5358 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5359 goto free_rsv;
5360 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005361 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005362 }
5363
Josef Bacik4ef31a42013-08-13 14:10:08 -04005364 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005365 * Errors here aren't a big deal, it just means we leave orphan items in
5366 * the tree. They will be cleaned up on the next mount. If the inode
5367 * number gets reused, cleanup deletes the orphan item without doing
5368 * anything, and unlink reuses the existing orphan item.
5369 *
5370 * If it turns out that we are dropping too many of these, we might want
5371 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005372 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005373 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005374 if (!IS_ERR(trans)) {
5375 trans->block_rsv = rsv;
5376 btrfs_orphan_del(trans, BTRFS_I(inode));
5377 trans->block_rsv = &fs_info->trans_block_rsv;
5378 btrfs_end_transaction(trans);
5379 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005380
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005381 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005382 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005383 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005384
Omar Sandoval27919062018-05-11 13:13:37 -07005385free_rsv:
5386 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005387no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005388 /*
5389 * If we didn't successfully delete, the orphan item will still be in
5390 * the tree and we'll retry on the next mount. Again, we might also want
5391 * to retry these periodically in the future.
5392 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005393 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005394 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005395}
5396
5397/*
5398 * this returns the key found in the dir entry in the location pointer.
Su Yue005d6712018-03-05 17:13:37 +08005399 * If no dir entries were found, returns -ENOENT.
5400 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005401 */
5402static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5403 struct btrfs_key *location)
5404{
5405 const char *name = dentry->d_name.name;
5406 int namelen = dentry->d_name.len;
5407 struct btrfs_dir_item *di;
5408 struct btrfs_path *path;
5409 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005410 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005411
5412 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005413 if (!path)
5414 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005415
David Sterbaf85b7372017-01-20 14:54:07 +01005416 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5417 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005418 if (IS_ERR_OR_NULL(di)) {
5419 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005420 goto out;
5421 }
Chris Masond3977122009-01-05 21:25:51 -05005422
Chris Mason5f39d392007-10-15 16:14:19 -04005423 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005424 if (location->type != BTRFS_INODE_ITEM_KEY &&
5425 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005426 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005427 btrfs_warn(root->fs_info,
5428"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5429 __func__, name, btrfs_ino(BTRFS_I(dir)),
5430 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005431 }
Chris Mason39279cc2007-06-12 06:35:45 -04005432out:
Chris Mason39279cc2007-06-12 06:35:45 -04005433 btrfs_free_path(path);
5434 return ret;
5435}
5436
5437/*
5438 * when we hit a tree root in a directory, the btrfs part of the inode
5439 * needs to be changed to reflect the root directory of the tree root. This
5440 * is kind of like crossing a mount point.
5441 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005442static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005443 struct inode *dir,
5444 struct dentry *dentry,
5445 struct btrfs_key *location,
5446 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005447{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005448 struct btrfs_path *path;
5449 struct btrfs_root *new_root;
5450 struct btrfs_root_ref *ref;
5451 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005452 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005453 int ret;
5454 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005455
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005456 path = btrfs_alloc_path();
5457 if (!path) {
5458 err = -ENOMEM;
5459 goto out;
5460 }
Chris Mason39279cc2007-06-12 06:35:45 -04005461
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005462 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005463 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5464 key.type = BTRFS_ROOT_REF_KEY;
5465 key.offset = location->objectid;
5466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005467 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005468 if (ret) {
5469 if (ret < 0)
5470 err = ret;
5471 goto out;
5472 }
Chris Mason39279cc2007-06-12 06:35:45 -04005473
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005474 leaf = path->nodes[0];
5475 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005476 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005477 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5478 goto out;
5479
5480 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5481 (unsigned long)(ref + 1),
5482 dentry->d_name.len);
5483 if (ret)
5484 goto out;
5485
David Sterbab3b4aa72011-04-21 01:20:15 +02005486 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005487
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005488 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005489 if (IS_ERR(new_root)) {
5490 err = PTR_ERR(new_root);
5491 goto out;
5492 }
5493
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005494 *sub_root = new_root;
5495 location->objectid = btrfs_root_dirid(&new_root->root_item);
5496 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005497 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005498 err = 0;
5499out:
5500 btrfs_free_path(path);
5501 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005502}
5503
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005504static void inode_tree_add(struct inode *inode)
5505{
5506 struct btrfs_root *root = BTRFS_I(inode)->root;
5507 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005508 struct rb_node **p;
5509 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005510 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005511 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005512
Al Viro1d3382cb2010-10-23 15:19:20 -04005513 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005514 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005515 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005516 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005517 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005518 while (*p) {
5519 parent = *p;
5520 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5521
David Sterba37508512018-06-29 10:56:40 +02005522 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005523 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005524 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005525 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005526 else {
5527 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005528 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005529 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005530 RB_CLEAR_NODE(parent);
5531 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005532 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005533 }
5534 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005535 rb_link_node(new, parent, p);
5536 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005537 spin_unlock(&root->inode_lock);
5538}
5539
5540static void inode_tree_del(struct inode *inode)
5541{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005542 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005543 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005544 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005545
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005546 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005547 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005548 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005549 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005550 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005551 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005552 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005553
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005554 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005555 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005556 spin_lock(&root->inode_lock);
5557 empty = RB_EMPTY_ROOT(&root->inode_tree);
5558 spin_unlock(&root->inode_lock);
5559 if (empty)
5560 btrfs_add_dead_root(root);
5561 }
5562}
5563
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005564
Chris Masone02119d2008-09-05 16:13:11 -04005565static int btrfs_init_locked_inode(struct inode *inode, void *p)
5566{
5567 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005568 inode->i_ino = args->location->objectid;
5569 memcpy(&BTRFS_I(inode)->location, args->location,
5570 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005571 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005572 return 0;
5573}
5574
5575static int btrfs_find_actor(struct inode *inode, void *opaque)
5576{
5577 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005578 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005579 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005580}
5581
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005582static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005583 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005584 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005585{
5586 struct inode *inode;
5587 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005588 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005589
Chris Mason90d3e592014-01-09 17:28:00 -08005590 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005591 args.root = root;
5592
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005593 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005594 btrfs_init_locked_inode,
5595 (void *)&args);
5596 return inode;
5597}
5598
Balaji Rao1a54ef82008-07-21 02:01:04 +05305599/* Get an inode object given its location and corresponding root.
5600 * Returns in *is_new if the inode was read from disk
5601 */
Filipe Manana4222ea72018-10-24 10:13:03 +01005602struct inode *btrfs_iget_path(struct super_block *s, struct btrfs_key *location,
5603 struct btrfs_root *root, int *new,
5604 struct btrfs_path *path)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305605{
5606 struct inode *inode;
5607
Chris Mason90d3e592014-01-09 17:28:00 -08005608 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305609 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005610 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305611
5612 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005613 int ret;
5614
Filipe Manana4222ea72018-10-24 10:13:03 +01005615 ret = btrfs_read_locked_inode(inode, path);
Al Viro9bc2cef2018-07-29 23:04:50 +01005616 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005617 inode_tree_add(inode);
5618 unlock_new_inode(inode);
5619 if (new)
5620 *new = 1;
5621 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005622 iget_failed(inode);
5623 /*
5624 * ret > 0 can come from btrfs_search_slot called by
5625 * btrfs_read_locked_inode, this means the inode item
5626 * was not found.
5627 */
5628 if (ret > 0)
5629 ret = -ENOENT;
5630 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005631 }
5632 }
5633
Balaji Rao1a54ef82008-07-21 02:01:04 +05305634 return inode;
5635}
5636
Filipe Manana4222ea72018-10-24 10:13:03 +01005637struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
5638 struct btrfs_root *root, int *new)
5639{
5640 return btrfs_iget_path(s, location, root, new, NULL);
5641}
5642
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005643static struct inode *new_simple_dir(struct super_block *s,
5644 struct btrfs_key *key,
5645 struct btrfs_root *root)
5646{
5647 struct inode *inode = new_inode(s);
5648
5649 if (!inode)
5650 return ERR_PTR(-ENOMEM);
5651
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005652 BTRFS_I(inode)->root = root;
5653 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005654 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005655
5656 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005657 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005658 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005659 inode->i_fop = &simple_dir_operations;
5660 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005661 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305662 inode->i_atime = inode->i_mtime;
5663 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005664 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005665
5666 return inode;
5667}
5668
Chris Mason3de45862008-11-17 21:02:50 -05005669struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005670{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005671 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005672 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005673 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005674 struct btrfs_root *sub_root = root;
5675 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005676 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005677 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005678
5679 if (dentry->d_name.len > BTRFS_NAME_LEN)
5680 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005681
Jeff Layton39e3c952012-11-28 11:30:53 -05005682 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005683 if (ret < 0)
5684 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005685
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005686 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005687 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005688 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005689 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005690
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005691 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005692 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005693 &location, &sub_root);
5694 if (ret < 0) {
5695 if (ret != -ENOENT)
5696 inode = ERR_PTR(ret);
5697 else
5698 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5699 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005700 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005701 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005702 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005703
Julia Lawall34d19ba2011-01-24 19:55:19 +00005704 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005705 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005706 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005707 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005708 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005709 if (ret) {
5710 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005711 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005712 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005713 }
5714
Chris Mason3de45862008-11-17 21:02:50 -05005715 return inode;
5716}
5717
Nick Pigginfe15ce42011-01-07 17:49:23 +11005718static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005719{
5720 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005721 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005722
Li Zefan848cce02012-02-21 17:04:28 +08005723 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005724 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005725
Li Zefan848cce02012-02-21 17:04:28 +08005726 if (inode) {
5727 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005728 if (btrfs_root_refs(&root->root_item) == 0)
5729 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005730
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005731 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005732 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005733 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005734 return 0;
5735}
5736
Chris Mason3de45862008-11-17 21:02:50 -05005737static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005738 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005739{
Al Viro3837d202018-10-10 16:38:27 -04005740 struct inode *inode = btrfs_lookup_dentry(dir, dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005741
Al Viro3837d202018-10-10 16:38:27 -04005742 if (inode == ERR_PTR(-ENOENT))
5743 inode = NULL;
Al Viro41d28bc2014-10-12 22:24:21 -04005744 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005745}
5746
Miao Xie16cdcec2011-04-22 18:12:22 +08005747unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005748 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5749};
5750
Josef Bacik23b5ec72017-07-24 15:14:25 -04005751/*
5752 * All this infrastructure exists because dir_emit can fault, and we are holding
5753 * the tree lock when doing readdir. For now just allocate a buffer and copy
5754 * our information into that, and then dir_emit from the buffer. This is
5755 * similar to what NFS does, only we don't keep the buffer around in pagecache
5756 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5757 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5758 * tree lock.
5759 */
5760static int btrfs_opendir(struct inode *inode, struct file *file)
5761{
5762 struct btrfs_file_private *private;
5763
5764 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5765 if (!private)
5766 return -ENOMEM;
5767 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5768 if (!private->filldir_buf) {
5769 kfree(private);
5770 return -ENOMEM;
5771 }
5772 file->private_data = private;
5773 return 0;
5774}
5775
5776struct dir_entry {
5777 u64 ino;
5778 u64 offset;
5779 unsigned type;
5780 int name_len;
5781};
5782
5783static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5784{
5785 while (entries--) {
5786 struct dir_entry *entry = addr;
5787 char *name = (char *)(entry + 1);
5788
David Sterba92d32172018-04-16 21:10:14 +02005789 ctx->pos = get_unaligned(&entry->offset);
5790 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5791 get_unaligned(&entry->ino),
5792 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04005793 return 1;
David Sterba92d32172018-04-16 21:10:14 +02005794 addr += sizeof(struct dir_entry) +
5795 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005796 ctx->pos++;
5797 }
5798 return 0;
5799}
5800
Al Viro9cdda8d2013-05-22 16:48:09 -04005801static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005802{
Al Viro9cdda8d2013-05-22 16:48:09 -04005803 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005804 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005805 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005806 struct btrfs_dir_item *di;
5807 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005808 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005809 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005810 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005811 struct list_head ins_list;
5812 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005813 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005814 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005815 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005816 char *name_ptr;
5817 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005818 int entries = 0;
5819 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005820 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005821 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005822
Al Viro9cdda8d2013-05-22 16:48:09 -04005823 if (!dir_emit_dots(file, ctx))
5824 return 0;
5825
David Woodhouse49593bf2008-08-17 17:08:36 +01005826 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005827 if (!path)
5828 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005829
Josef Bacik23b5ec72017-07-24 15:14:25 -04005830 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005831 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005832
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005833 INIT_LIST_HEAD(&ins_list);
5834 INIT_LIST_HEAD(&del_list);
5835 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005836
Josef Bacik23b5ec72017-07-24 15:14:25 -04005837again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005838 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005839 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005840 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005841
Chris Mason39279cc2007-06-12 06:35:45 -04005842 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5843 if (ret < 0)
5844 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005845
5846 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04005847 struct dir_entry *entry;
5848
Chris Mason5f39d392007-10-15 16:14:19 -04005849 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005850 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005851 if (slot >= btrfs_header_nritems(leaf)) {
5852 ret = btrfs_next_leaf(root, path);
5853 if (ret < 0)
5854 goto err;
5855 else if (ret > 0)
5856 break;
5857 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005858 }
Chris Mason3de45862008-11-17 21:02:50 -05005859
Chris Mason5f39d392007-10-15 16:14:19 -04005860 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5861
5862 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005863 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005864 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005865 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005866 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005867 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005868 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005869 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04005870 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005871 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005872 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5873 PAGE_SIZE) {
5874 btrfs_release_path(path);
5875 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5876 if (ret)
5877 goto nopos;
5878 addr = private->filldir_buf;
5879 entries = 0;
5880 total_len = 0;
5881 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04005882 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005883
5884 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02005885 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005886 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005887 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5888 name_len);
David Sterba92d32172018-04-16 21:10:14 +02005889 put_unaligned(btrfs_filetype_table[btrfs_dir_type(leaf, di)],
5890 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005891 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02005892 put_unaligned(location.objectid, &entry->ino);
5893 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005894 entries++;
5895 addr += sizeof(struct dir_entry) + name_len;
5896 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08005897next:
5898 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005899 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005900 btrfs_release_path(path);
5901
5902 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5903 if (ret)
5904 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01005905
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005906 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005907 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005908 goto nopos;
5909
Zach Browndb62efb2013-07-11 16:19:42 -07005910 /*
5911 * Stop new entries from being returned after we return the last
5912 * entry.
5913 *
5914 * New directory entries are assigned a strictly increasing
5915 * offset. This means that new entries created during readdir
5916 * are *guaranteed* to be seen in the future by that readdir.
5917 * This has broken buggy programs which operate on names as
5918 * they're returned by readdir. Until we re-use freed offsets
5919 * we have this hack to stop new entries from being returned
5920 * under the assumption that they'll never reach this huge
5921 * offset.
5922 *
5923 * This is being careful not to overflow 32bit loff_t unless the
5924 * last entry requires it because doing so has broken 32bit apps
5925 * in the past.
5926 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005927 if (ctx->pos >= INT_MAX)
5928 ctx->pos = LLONG_MAX;
5929 else
5930 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005931nopos:
5932 ret = 0;
5933err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005934 if (put)
5935 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005936 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005937 return ret;
5938}
5939
Chris Mason39279cc2007-06-12 06:35:45 -04005940/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005941 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005942 * inode changes. But, it is most likely to find the inode in cache.
5943 * FIXME, needs more benchmarking...there are no reasons other than performance
5944 * to keep or drop this code.
5945 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005946static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005947{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005948 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005949 struct btrfs_root *root = BTRFS_I(inode)->root;
5950 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005951 int ret;
5952
Josef Bacik72ac3c02012-05-23 14:13:11 -04005953 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005954 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005955
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005956 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005957 if (IS_ERR(trans))
5958 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005959
5960 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005961 if (ret && ret == -ENOSPC) {
5962 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005963 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04005964 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005965 if (IS_ERR(trans))
5966 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005967
Chris Mason94b60442010-05-26 11:02:00 -04005968 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005969 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005970 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08005971 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005972 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005973
5974 return ret;
5975}
5976
5977/*
5978 * This is a copy of file_update_time. We need this so we can return error on
5979 * ENOSPC for updating the inode in the case of file write and mmap writes.
5980 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07005981static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04005982 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005983{
Alexander Block2bc5565282012-06-15 09:49:33 +02005984 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05005985 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02005986
5987 if (btrfs_root_readonly(root))
5988 return -EROFS;
5989
Josef Bacike41f9412012-03-26 09:46:47 -04005990 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05005991 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04005992 if (flags & S_CTIME)
5993 inode->i_ctime = *now;
5994 if (flags & S_MTIME)
5995 inode->i_mtime = *now;
5996 if (flags & S_ATIME)
5997 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05005998 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005999}
6000
Chris Masond352ac62008-09-29 15:18:18 -04006001/*
6002 * find the highest existing sequence number in a directory
6003 * and then set the in-memory index_cnt variable to reflect
6004 * free sequence numbers
6005 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006006static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006007{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006008 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006009 struct btrfs_key key, found_key;
6010 struct btrfs_path *path;
6011 struct extent_buffer *leaf;
6012 int ret;
6013
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006014 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006015 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006016 key.offset = (u64)-1;
6017
6018 path = btrfs_alloc_path();
6019 if (!path)
6020 return -ENOMEM;
6021
6022 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6023 if (ret < 0)
6024 goto out;
6025 /* FIXME: we should be able to handle this */
6026 if (ret == 0)
6027 goto out;
6028 ret = 0;
6029
6030 /*
6031 * MAGIC NUMBER EXPLANATION:
6032 * since we search a directory based on f_pos we have to start at 2
6033 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6034 * else has to start at 2
6035 */
6036 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006037 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006038 goto out;
6039 }
6040
6041 path->slots[0]--;
6042
6043 leaf = path->nodes[0];
6044 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6045
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006046 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006047 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006048 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006049 goto out;
6050 }
6051
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006052 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006053out:
6054 btrfs_free_path(path);
6055 return ret;
6056}
6057
Chris Masond352ac62008-09-29 15:18:18 -04006058/*
6059 * helper to find a free sequence number in a given directory. This current
6060 * code is very simple, later versions will do smarter things in the btree
6061 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006062int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006063{
6064 int ret = 0;
6065
Nikolay Borisov877574e2017-02-20 13:50:33 +02006066 if (dir->index_cnt == (u64)-1) {
6067 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006068 if (ret) {
6069 ret = btrfs_set_inode_index_count(dir);
6070 if (ret)
6071 return ret;
6072 }
Josef Bacikaec74772008-07-24 12:12:38 -04006073 }
6074
Nikolay Borisov877574e2017-02-20 13:50:33 +02006075 *index = dir->index_cnt;
6076 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006077
6078 return ret;
6079}
6080
Chris Masonb0d5d102014-09-08 13:08:51 -07006081static int btrfs_insert_inode_locked(struct inode *inode)
6082{
6083 struct btrfs_iget_args args;
6084 args.location = &BTRFS_I(inode)->location;
6085 args.root = BTRFS_I(inode)->root;
6086
6087 return insert_inode_locked4(inode,
6088 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6089 btrfs_find_actor, &args);
6090}
6091
Anand Jain19aee8d2017-07-18 17:37:05 +08006092/*
6093 * Inherit flags from the parent inode.
6094 *
6095 * Currently only the compression flags and the cow flags are inherited.
6096 */
6097static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6098{
6099 unsigned int flags;
6100
6101 if (!dir)
6102 return;
6103
6104 flags = BTRFS_I(dir)->flags;
6105
6106 if (flags & BTRFS_INODE_NOCOMPRESS) {
6107 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6108 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6109 } else if (flags & BTRFS_INODE_COMPRESS) {
6110 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6111 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6112 }
6113
6114 if (flags & BTRFS_INODE_NODATACOW) {
6115 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6116 if (S_ISREG(inode->i_mode))
6117 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6118 }
6119
David Sterba7b6a2212018-03-26 18:40:21 +02006120 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08006121}
6122
Chris Mason39279cc2007-06-12 06:35:45 -04006123static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6124 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006125 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006126 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006127 u64 ref_objectid, u64 objectid,
6128 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006129{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006130 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006131 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006132 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006133 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006134 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006135 struct btrfs_inode_ref *ref;
6136 struct btrfs_key key[2];
6137 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006138 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006139 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006140 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006141
Chris Mason5f39d392007-10-15 16:14:19 -04006142 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006143 if (!path)
6144 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006145
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006146 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006147 if (!inode) {
6148 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006149 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006150 }
Chris Mason39279cc2007-06-12 06:35:45 -04006151
Li Zefan581bb052011-04-20 10:06:11 +08006152 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006153 * O_TMPFILE, set link count to 0, so that after this point,
6154 * we fill in an inode item with the correct link count.
6155 */
6156 if (!name)
6157 set_nlink(inode, 0);
6158
6159 /*
Li Zefan581bb052011-04-20 10:06:11 +08006160 * we have to initialize this early, so we can reclaim the inode
6161 * number if we fail afterwards in this function.
6162 */
6163 inode->i_ino = objectid;
6164
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006165 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006166 trace_btrfs_inode_request(dir);
6167
Nikolay Borisov877574e2017-02-20 13:50:33 +02006168 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006169 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006170 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006171 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006172 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006173 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006174 } else if (dir) {
6175 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006176 }
6177 /*
6178 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006179 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006180 * number
6181 */
6182 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006183 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006184 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006185 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006186 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006187
Josef Bacik5dc562c2012-08-17 13:14:17 -04006188 /*
6189 * We could have gotten an inode number from somebody who was fsynced
6190 * and then removed in this same transaction, so let's just set full
6191 * sync since it will be a full sync anyway and this will blow away the
6192 * old info in the log.
6193 */
6194 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6195
Chris Mason9c583092008-01-29 15:15:18 -05006196 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006197 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006198 key[0].offset = 0;
6199
Chris Mason9c583092008-01-29 15:15:18 -05006200 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006201
6202 if (name) {
6203 /*
6204 * Start new inodes with an inode_ref. This is slightly more
6205 * efficient for small numbers of hard links since they will
6206 * be packed into one item. Extended refs will kick in if we
6207 * add more hard links than can fit in the ref item.
6208 */
6209 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006210 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006211 key[1].offset = ref_objectid;
6212
6213 sizes[1] = name_len + sizeof(*ref);
6214 }
Chris Mason9c583092008-01-29 15:15:18 -05006215
Chris Masonb0d5d102014-09-08 13:08:51 -07006216 location = &BTRFS_I(inode)->location;
6217 location->objectid = objectid;
6218 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006219 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006220
6221 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006222 if (ret < 0) {
6223 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006224 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006225 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006226
Chris Masonb9473432009-03-13 11:00:37 -04006227 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006228 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006229 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006230 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006231
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006232 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006233 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306234
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006235 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306236 inode->i_atime = inode->i_mtime;
6237 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006238 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306239
Chris Mason5f39d392007-10-15 16:14:19 -04006240 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6241 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006242 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006243 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006244 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006245
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006246 if (name) {
6247 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6248 struct btrfs_inode_ref);
6249 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6250 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6251 ptr = (unsigned long)(ref + 1);
6252 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6253 }
Chris Mason9c583092008-01-29 15:15:18 -05006254
Chris Mason5f39d392007-10-15 16:14:19 -04006255 btrfs_mark_buffer_dirty(path->nodes[0]);
6256 btrfs_free_path(path);
6257
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006258 btrfs_inherit_iflags(inode, dir);
6259
Al Viro569254b2011-07-24 17:08:40 -04006260 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006261 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006262 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006263 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006264 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6265 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006266 }
6267
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006268 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006269
6270 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006271 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006272
Alexander Block8ea05e32012-07-25 17:35:53 +02006273 btrfs_update_root_times(trans, root);
6274
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006275 ret = btrfs_inode_inherit_props(trans, inode, dir);
6276 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006277 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006278 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006279 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006280
Chris Mason39279cc2007-06-12 06:35:45 -04006281 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006282
6283fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006284 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006285fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006286 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006287 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006288 btrfs_free_path(path);
6289 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006290}
6291
6292static inline u8 btrfs_inode_type(struct inode *inode)
6293{
6294 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6295}
6296
Chris Masond352ac62008-09-29 15:18:18 -04006297/*
6298 * utility function to add 'inode' into 'parent_inode' with
6299 * a give name and a given sequence number.
6300 * if 'add_backref' is true, also insert a backref from the
6301 * inode to the parent directory.
6302 */
Chris Masone02119d2008-09-05 16:13:11 -04006303int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006304 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006305 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006306{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006307 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006308 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006309 struct btrfs_root *root = parent_inode->root;
6310 u64 ino = btrfs_ino(inode);
6311 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006312
Li Zefan33345d012011-04-20 10:31:50 +08006313 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006314 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006315 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006316 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006317 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006318 key.offset = 0;
6319 }
Chris Mason39279cc2007-06-12 06:35:45 -04006320
Li Zefan33345d012011-04-20 10:31:50 +08006321 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006322 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006323 root->root_key.objectid, parent_ino,
6324 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006325 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006326 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6327 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006328 }
6329
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006330 /* Nothing to clean up yet */
6331 if (ret)
6332 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006333
Lu Fengqi684572d2018-08-04 21:10:57 +08006334 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006335 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006336 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006337 goto fail_dir_item;
6338 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006339 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006340 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006341 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006342
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006343 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006344 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006345 inode_inc_iversion(&parent_inode->vfs_inode);
6346 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6347 current_time(&parent_inode->vfs_inode);
6348 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006349 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006350 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006351 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006352
6353fail_dir_item:
6354 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6355 u64 local_index;
6356 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006357 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006358 root->root_key.objectid, parent_ino,
6359 &local_index, name, name_len);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006360 if (err)
6361 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006362 } else if (add_backref) {
6363 u64 local_index;
6364 int err;
6365
6366 err = btrfs_del_inode_ref(trans, root, name, name_len,
6367 ino, parent_ino, &local_index);
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006368 if (err)
6369 btrfs_abort_transaction(trans, err);
Chris Masonfe66a052012-02-20 08:40:56 -05006370 }
Johannes Thumshirn1690dd412018-12-12 15:14:17 +01006371
6372 /* Return the original error code */
Chris Masonfe66a052012-02-20 08:40:56 -05006373 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006374}
6375
6376static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006377 struct btrfs_inode *dir, struct dentry *dentry,
6378 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006379{
Josef Bacika1b075d2010-11-19 20:36:11 +00006380 int err = btrfs_add_link(trans, dir, inode,
6381 dentry->d_name.name, dentry->d_name.len,
6382 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006383 if (err > 0)
6384 err = -EEXIST;
6385 return err;
6386}
6387
Josef Bacik618e21d2007-07-11 10:18:17 -04006388static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006389 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006390{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006391 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006392 struct btrfs_trans_handle *trans;
6393 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006394 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006395 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006396 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006397 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006398
Josef Bacik9ed74f22009-09-11 16:12:44 -04006399 /*
6400 * 2 for inode item and ref
6401 * 2 for dir items
6402 * 1 for xattr if selinux is on
6403 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006404 trans = btrfs_start_transaction(root, 5);
6405 if (IS_ERR(trans))
6406 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006407
Li Zefan581bb052011-04-20 10:06:11 +08006408 err = btrfs_find_free_ino(root, &objectid);
6409 if (err)
6410 goto out_unlock;
6411
Josef Bacikaec74772008-07-24 12:12:38 -04006412 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006413 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6414 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006415 if (IS_ERR(inode)) {
6416 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006417 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006418 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006419 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006420
Casey Schauflerad19db72011-12-15 10:09:07 -05006421 /*
6422 * If the active LSM wants to access the inode during
6423 * d_instantiate it needs these. Smack checks to see
6424 * if the filesystem supports xattrs by looking at the
6425 * ops vector.
6426 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006427 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006428 init_special_inode(inode, inode->i_mode, rdev);
6429
6430 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006431 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006432 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006433
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006434 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6435 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006436 if (err)
6437 goto out_unlock;
6438
6439 btrfs_update_inode(trans, root, inode);
6440 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006441
Josef Bacik618e21d2007-07-11 10:18:17 -04006442out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006443 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006444 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006445 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006446 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006447 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006448 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006449 return err;
6450}
6451
Chris Mason39279cc2007-06-12 06:35:45 -04006452static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006453 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006454{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006455 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006456 struct btrfs_trans_handle *trans;
6457 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006458 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006459 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006460 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006461 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006462
Josef Bacik9ed74f22009-09-11 16:12:44 -04006463 /*
6464 * 2 for inode item and ref
6465 * 2 for dir items
6466 * 1 for xattr if selinux is on
6467 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006468 trans = btrfs_start_transaction(root, 5);
6469 if (IS_ERR(trans))
6470 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006471
Li Zefan581bb052011-04-20 10:06:11 +08006472 err = btrfs_find_free_ino(root, &objectid);
6473 if (err)
6474 goto out_unlock;
6475
Josef Bacikaec74772008-07-24 12:12:38 -04006476 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006477 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6478 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006479 if (IS_ERR(inode)) {
6480 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006481 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006482 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006483 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006484 /*
6485 * If the active LSM wants to access the inode during
6486 * d_instantiate it needs these. Smack checks to see
6487 * if the filesystem supports xattrs by looking at the
6488 * ops vector.
6489 */
6490 inode->i_fop = &btrfs_file_operations;
6491 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006492 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006493
6494 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6495 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006496 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006497
6498 err = btrfs_update_inode(trans, root, inode);
6499 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006500 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006501
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006502 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6503 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006504 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006505 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006506
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006507 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro1e2e5472018-05-04 08:23:01 -04006508 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006509
Chris Mason39279cc2007-06-12 06:35:45 -04006510out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006511 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006512 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006513 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006514 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006515 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006516 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006517 return err;
6518}
6519
6520static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6521 struct dentry *dentry)
6522{
Filipe Manana271dba452016-01-05 16:24:05 +00006523 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006524 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006525 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006526 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006527 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006528 int err;
6529 int drop_inode = 0;
6530
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006531 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006532 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006533 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006534
Mark Fashehf1863732012-08-08 11:32:27 -07006535 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006536 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006537
Nikolay Borisov877574e2017-02-20 13:50:33 +02006538 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006539 if (err)
6540 goto fail;
6541
Yan, Zhenga22285a2010-05-16 10:48:46 -04006542 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006543 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006544 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006545 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006546 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006547 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006548 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006549 if (IS_ERR(trans)) {
6550 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006551 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006552 goto fail;
6553 }
Chris Mason5f39d392007-10-15 16:14:19 -04006554
Miao Xie67de1172013-12-26 13:07:06 +08006555 /* There are several dir indexes for this inode, clear the cache. */
6556 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006557 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006558 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006559 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006560 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006561 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006562
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006563 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6564 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006565
Yan, Zhenga5719522009-09-24 09:17:31 -04006566 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006567 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006568 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006569 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006570 int ret;
6571
Yan, Zhenga5719522009-09-24 09:17:31 -04006572 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006573 if (err)
6574 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006575 if (inode->i_nlink == 1) {
6576 /*
6577 * If new hard link count is 1, it's a file created
6578 * with open(2) O_TMPFILE flag.
6579 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006580 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006581 if (err)
6582 goto fail;
6583 }
Filipe Manana41bd6062018-11-28 14:54:28 +00006584 BTRFS_I(inode)->last_link_trans = trans->transid;
Al Viro08c422c2011-12-23 07:58:13 -05006585 d_instantiate(dentry, inode);
Filipe Mananad4682ba2018-06-11 19:24:28 +01006586 ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent,
6587 true, NULL);
6588 if (ret == BTRFS_NEED_TRANS_COMMIT) {
6589 err = btrfs_commit_transaction(trans);
6590 trans = NULL;
6591 }
Yan, Zhenga5719522009-09-24 09:17:31 -04006592 }
Chris Mason39279cc2007-06-12 06:35:45 -04006593
Chris Mason1832a6d2007-12-21 16:27:21 -05006594fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006595 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006596 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006597 if (drop_inode) {
6598 inode_dec_link_count(inode);
6599 iput(inode);
6600 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006601 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006602 return err;
6603}
6604
Al Viro18bb1db2011-07-26 01:41:39 -04006605static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006606{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006607 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006608 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006609 struct btrfs_trans_handle *trans;
6610 struct btrfs_root *root = BTRFS_I(dir)->root;
6611 int err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006612 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006613 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006614
Josef Bacik9ed74f22009-09-11 16:12:44 -04006615 /*
6616 * 2 items for inode and ref
6617 * 2 items for dir items
6618 * 1 for xattr if selinux is on
6619 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006620 trans = btrfs_start_transaction(root, 5);
6621 if (IS_ERR(trans))
6622 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006623
Li Zefan581bb052011-04-20 10:06:11 +08006624 err = btrfs_find_free_ino(root, &objectid);
6625 if (err)
6626 goto out_fail;
6627
Josef Bacikaec74772008-07-24 12:12:38 -04006628 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006629 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6630 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006631 if (IS_ERR(inode)) {
6632 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006633 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006634 goto out_fail;
6635 }
Chris Mason5f39d392007-10-15 16:14:19 -04006636
Chris Masonb0d5d102014-09-08 13:08:51 -07006637 /* these must be set before we unlock the inode */
6638 inode->i_op = &btrfs_dir_inode_operations;
6639 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006640
Eric Paris2a7dba32011-02-01 11:05:39 -05006641 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006642 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006643 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006644
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006645 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006646 err = btrfs_update_inode(trans, root, inode);
6647 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006648 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006649
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006650 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6651 dentry->d_name.name,
6652 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006653 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006654 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006655
Al Viro1e2e5472018-05-04 08:23:01 -04006656 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006657
6658out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006659 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006660 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006661 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006662 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006663 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006664 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006665 return err;
6666}
6667
Chris Masonc8b97812008-10-29 14:49:59 -04006668static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006669 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006670 size_t pg_offset, u64 extent_offset,
6671 struct btrfs_file_extent_item *item)
6672{
6673 int ret;
6674 struct extent_buffer *leaf = path->nodes[0];
6675 char *tmp;
6676 size_t max_size;
6677 unsigned long inline_size;
6678 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006679 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006680
6681 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006682 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006683 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6684 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006685 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006686 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006687 if (!tmp)
6688 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006689 ptr = btrfs_file_extent_inline_start(item);
6690
6691 read_extent_buffer(leaf, tmp, ptr, inline_size);
6692
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006693 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006694 ret = btrfs_decompress(compress_type, tmp, page,
6695 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006696
6697 /*
6698 * decompression code contains a memset to fill in any space between the end
6699 * of the uncompressed data and the end of max_size in case the decompressed
6700 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6701 * the end of an inline extent and the beginning of the next block, so we
6702 * cover that region here.
6703 */
6704
6705 if (max_size + pg_offset < PAGE_SIZE) {
6706 char *map = kmap(page);
6707 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6708 kunmap(page);
6709 }
Chris Masonc8b97812008-10-29 14:49:59 -04006710 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006711 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006712}
6713
Chris Masond352ac62008-09-29 15:18:18 -04006714/*
6715 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006716 * the ugly parts come from merging extents from the disk with the in-ram
6717 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006718 * where the in-ram extents might be locked pending data=ordered completion.
6719 *
6720 * This also copies inline extents directly into the page.
6721 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006722struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Liu Bode2c6612018-08-25 13:47:59 +08006723 struct page *page,
6724 size_t pg_offset, u64 start, u64 len,
6725 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006726{
David Sterba3ffbd682018-06-29 10:56:42 +02006727 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masona52d9a82007-08-27 16:49:44 -04006728 int ret;
6729 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006730 u64 extent_start = 0;
6731 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006732 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006733 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006734 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006735 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006736 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006737 struct extent_buffer *leaf;
6738 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006739 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006740 struct extent_map_tree *em_tree = &inode->extent_tree;
6741 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006742 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006743
Chris Mason890871b2009-09-02 16:24:52 -04006744 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006745 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006746 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006747 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006748 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006749
Chris Masona52d9a82007-08-27 16:49:44 -04006750 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006751 if (em->start > start || em->start + em->len <= start)
6752 free_extent_map(em);
6753 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006754 free_extent_map(em);
6755 else
6756 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006757 }
David Sterba172ddd62011-04-21 00:48:27 +02006758 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006759 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006760 err = -ENOMEM;
6761 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006762 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006763 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006764 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006765 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006766 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006767 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006768
Liu Bobee6ec82018-08-17 05:05:28 +08006769 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04006770 if (!path) {
Liu Bobee6ec82018-08-17 05:05:28 +08006771 err = -ENOMEM;
6772 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04006773 }
6774
Liu Bobee6ec82018-08-17 05:05:28 +08006775 /* Chances are we'll be called again, so go ahead and do readahead */
6776 path->reada = READA_FORWARD;
6777
Liu Boe49aabd2018-08-25 13:47:09 +08006778 /*
6779 * Unless we're going to uncompress the inline extent, no sleep would
6780 * happen.
6781 */
6782 path->leave_spinning = 1;
6783
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006784 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006785 if (ret < 0) {
6786 err = ret;
6787 goto out;
6788 }
6789
6790 if (ret != 0) {
6791 if (path->slots[0] == 0)
6792 goto not_found;
6793 path->slots[0]--;
6794 }
6795
Chris Mason5f39d392007-10-15 16:14:19 -04006796 leaf = path->nodes[0];
6797 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006798 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006799 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006800 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006801 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006802 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006803 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006804 /*
6805 * If we backup past the first extent we want to move forward
6806 * and see if there is an extent in front of us, otherwise we'll
6807 * say there is a hole for our whole search range which can
6808 * cause problems.
6809 */
6810 extent_end = start;
6811 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006812 }
6813
Chris Mason5f39d392007-10-15 16:14:19 -04006814 found_type = btrfs_file_extent_type(leaf, item);
6815 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006816 if (found_type == BTRFS_FILE_EXTENT_REG ||
6817 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006818 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006819 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08006820
6821 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6822 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006823 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6824 size_t size;
Qu Wenruoe41ca582018-06-06 15:41:49 +08006825
6826 size = btrfs_file_extent_ram_bytes(leaf, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006827 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006828 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08006829
6830 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6831 path->slots[0],
6832 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006833 }
Josef Bacik25a50342013-10-14 12:08:38 -04006834next:
Yan Zheng9036c102008-10-30 14:19:41 -04006835 if (start >= extent_end) {
6836 path->slots[0]++;
6837 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6838 ret = btrfs_next_leaf(root, path);
6839 if (ret < 0) {
6840 err = ret;
6841 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006842 }
Yan Zheng9036c102008-10-30 14:19:41 -04006843 if (ret > 0)
6844 goto not_found;
6845 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006846 }
Yan Zheng9036c102008-10-30 14:19:41 -04006847 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6848 if (found_key.objectid != objectid ||
6849 found_key.type != BTRFS_EXTENT_DATA_KEY)
6850 goto not_found;
6851 if (start + len <= found_key.offset)
6852 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006853 if (start > found_key.offset)
6854 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006855 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006856 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006857 em->len = found_key.offset - start;
6858 goto not_found_em;
6859 }
6860
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006861 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006862 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006863
Yan Zhengd899e052008-10-30 14:25:28 -04006864 if (found_type == BTRFS_FILE_EXTENT_REG ||
6865 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006866 goto insert;
6867 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006868 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006869 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006870 size_t size;
6871 size_t extent_offset;
6872 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006873
Filipe Manana7ffbb592014-06-09 03:48:05 +01006874 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006875 goto out;
Yan689f9342007-10-29 11:41:07 -04006876
Qu Wenruoe41ca582018-06-06 15:41:49 +08006877 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006878 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006879 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6880 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006881 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006882 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006883 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006884 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006885 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08006886
6887 btrfs_set_path_blocking(path);
Edmund Nadolskibf46f522017-11-20 13:24:49 -07006888 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006889 if (btrfs_file_extent_compression(leaf, item) !=
6890 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006891 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006892 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006893 if (ret) {
6894 err = ret;
6895 goto out;
6896 }
Chris Masonc8b97812008-10-29 14:49:59 -04006897 } else {
6898 map = kmap(page);
6899 read_extent_buffer(leaf, map + pg_offset, ptr,
6900 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006901 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006902 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006903 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006904 copy_size);
6905 }
Chris Masonc8b97812008-10-29 14:49:59 -04006906 kunmap(page);
6907 }
Chris Mason179e29e2007-11-01 11:28:41 -04006908 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04006909 }
Chris Masond1310b22008-01-24 16:13:08 -05006910 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006911 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006912 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006913 }
6914not_found:
6915 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006916 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006917 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006918not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006919 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006920insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006921 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006922 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006923 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006924 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6925 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006926 err = -EIO;
6927 goto out;
6928 }
Chris Masond1310b22008-01-24 16:13:08 -05006929
6930 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006931 write_lock(&em_tree->lock);
David Sterbaf46b24c2018-04-03 21:45:57 +02006932 err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006933 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006934out:
Liu Boc6414282018-08-23 07:36:17 +08006935 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00006936
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006937 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006938
Chris Masona52d9a82007-08-27 16:49:44 -04006939 if (err) {
6940 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006941 return ERR_PTR(err);
6942 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006943 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006944 return em;
6945}
6946
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006947struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02006948 u64 start, u64 len)
Chris Masonec29ed52011-02-23 16:23:20 -05006949{
6950 struct extent_map *em;
6951 struct extent_map *hole_em = NULL;
6952 u64 range_start = start;
6953 u64 end;
6954 u64 found;
6955 u64 found_end;
6956 int err = 0;
6957
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02006958 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Chris Masonec29ed52011-02-23 16:23:20 -05006959 if (IS_ERR(em))
6960 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03006961 /*
6962 * If our em maps to:
6963 * - a hole or
6964 * - a pre-alloc extent,
6965 * there might actually be delalloc bytes behind it.
6966 */
6967 if (em->block_start != EXTENT_MAP_HOLE &&
6968 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6969 return em;
6970 else
6971 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05006972
6973 /* check to see if we've wrapped (len == -1 or similar) */
6974 end = start + len;
6975 if (end < start)
6976 end = (u64)-1;
6977 else
6978 end -= 1;
6979
6980 em = NULL;
6981
6982 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006983 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05006984 end, len, EXTENT_DELALLOC, 1);
6985 found_end = range_start + found;
6986 if (found_end < range_start)
6987 found_end = (u64)-1;
6988
6989 /*
6990 * we didn't find anything useful, return
6991 * the original results from get_extent()
6992 */
6993 if (range_start > end || found_end <= start) {
6994 em = hole_em;
6995 hole_em = NULL;
6996 goto out;
6997 }
6998
6999 /* adjust the range_start to make sure it doesn't
7000 * go backwards from the start they passed in
7001 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307002 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007003 found = found_end - range_start;
7004
7005 if (found > 0) {
7006 u64 hole_start = start;
7007 u64 hole_len = len;
7008
David Sterba172ddd62011-04-21 00:48:27 +02007009 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007010 if (!em) {
7011 err = -ENOMEM;
7012 goto out;
7013 }
7014 /*
7015 * when btrfs_get_extent can't find anything it
7016 * returns one huge hole
7017 *
7018 * make sure what it found really fits our range, and
7019 * adjust to make sure it is based on the start from
7020 * the caller
7021 */
7022 if (hole_em) {
7023 u64 calc_end = extent_map_end(hole_em);
7024
7025 if (calc_end <= start || (hole_em->start > end)) {
7026 free_extent_map(hole_em);
7027 hole_em = NULL;
7028 } else {
7029 hole_start = max(hole_em->start, start);
7030 hole_len = calc_end - hole_start;
7031 }
7032 }
7033 em->bdev = NULL;
7034 if (hole_em && range_start > hole_start) {
7035 /* our hole starts before our delalloc, so we
7036 * have to return just the parts of the hole
7037 * that go until the delalloc starts
7038 */
7039 em->len = min(hole_len,
7040 range_start - hole_start);
7041 em->start = hole_start;
7042 em->orig_start = hole_start;
7043 /*
7044 * don't adjust block start at all,
7045 * it is fixed at EXTENT_MAP_HOLE
7046 */
7047 em->block_start = hole_em->block_start;
7048 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007049 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7050 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007051 } else {
7052 em->start = range_start;
7053 em->len = found;
7054 em->orig_start = range_start;
7055 em->block_start = EXTENT_MAP_DELALLOC;
7056 em->block_len = found;
7057 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007058 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007059 return hole_em;
7060 }
7061out:
7062
7063 free_extent_map(hole_em);
7064 if (err) {
7065 free_extent_map(em);
7066 return ERR_PTR(err);
7067 }
7068 return em;
7069}
7070
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007071static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7072 const u64 start,
7073 const u64 len,
7074 const u64 orig_start,
7075 const u64 block_start,
7076 const u64 block_len,
7077 const u64 orig_block_len,
7078 const u64 ram_bytes,
7079 const int type)
7080{
7081 struct extent_map *em = NULL;
7082 int ret;
7083
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007084 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007085 em = create_io_em(inode, start, len, orig_start,
7086 block_start, block_len, orig_block_len,
7087 ram_bytes,
7088 BTRFS_COMPRESS_NONE, /* compress_type */
7089 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007090 if (IS_ERR(em))
7091 goto out;
7092 }
7093 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7094 len, block_len, type);
7095 if (ret) {
7096 if (em) {
7097 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007098 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007099 start + len - 1, 0);
7100 }
7101 em = ERR_PTR(ret);
7102 }
7103 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007104
7105 return em;
7106}
7107
Josef Bacik4b46fce2010-05-23 11:00:55 -04007108static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7109 u64 start, u64 len)
7110{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007111 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007112 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007113 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007114 struct btrfs_key ins;
7115 u64 alloc_hint;
7116 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007117
Josef Bacik4b46fce2010-05-23 11:00:55 -04007118 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007119 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007120 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007121 if (ret)
7122 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007123
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007124 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7125 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007126 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007127 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007128 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007129 btrfs_free_reserved_extent(fs_info, ins.objectid,
7130 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007131
Josef Bacik4b46fce2010-05-23 11:00:55 -04007132 return em;
7133}
7134
Chris Mason46bfbb52010-05-26 11:04:10 -04007135/*
7136 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7137 * block must be cow'd
7138 */
Josef Bacik00361582013-08-14 14:02:47 -04007139noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007140 u64 *orig_start, u64 *orig_block_len,
7141 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007142{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007143 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007144 struct btrfs_path *path;
7145 int ret;
7146 struct extent_buffer *leaf;
7147 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007148 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007149 struct btrfs_file_extent_item *fi;
7150 struct btrfs_key key;
7151 u64 disk_bytenr;
7152 u64 backref_offset;
7153 u64 extent_end;
7154 u64 num_bytes;
7155 int slot;
7156 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007157 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007158
Chris Mason46bfbb52010-05-26 11:04:10 -04007159 path = btrfs_alloc_path();
7160 if (!path)
7161 return -ENOMEM;
7162
David Sterbaf85b7372017-01-20 14:54:07 +01007163 ret = btrfs_lookup_file_extent(NULL, root, path,
7164 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007165 if (ret < 0)
7166 goto out;
7167
7168 slot = path->slots[0];
7169 if (ret == 1) {
7170 if (slot == 0) {
7171 /* can't find the item, must cow */
7172 ret = 0;
7173 goto out;
7174 }
7175 slot--;
7176 }
7177 ret = 0;
7178 leaf = path->nodes[0];
7179 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007180 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007181 key.type != BTRFS_EXTENT_DATA_KEY) {
7182 /* not our file or wrong item type, must cow */
7183 goto out;
7184 }
7185
7186 if (key.offset > offset) {
7187 /* Wrong offset, must cow */
7188 goto out;
7189 }
7190
7191 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7192 found_type = btrfs_file_extent_type(leaf, fi);
7193 if (found_type != BTRFS_FILE_EXTENT_REG &&
7194 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7195 /* not a regular extent, must cow */
7196 goto out;
7197 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007198
7199 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7200 goto out;
7201
Miao Xiee77751a2013-12-27 21:11:50 +08007202 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7203 if (extent_end <= offset)
7204 goto out;
7205
Chris Mason46bfbb52010-05-26 11:04:10 -04007206 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007207 if (disk_bytenr == 0)
7208 goto out;
7209
7210 if (btrfs_file_extent_compression(leaf, fi) ||
7211 btrfs_file_extent_encryption(leaf, fi) ||
7212 btrfs_file_extent_other_encoding(leaf, fi))
7213 goto out;
7214
Ethan Lien78d42952018-05-17 14:58:29 +08007215 /*
7216 * Do the same check as in btrfs_cross_ref_exist but without the
7217 * unnecessary search.
7218 */
7219 if (btrfs_file_extent_generation(leaf, fi) <=
7220 btrfs_root_last_snapshot(&root->root_item))
7221 goto out;
7222
Chris Mason46bfbb52010-05-26 11:04:10 -04007223 backref_offset = btrfs_file_extent_offset(leaf, fi);
7224
Josef Bacik7ee9e442013-06-21 16:37:03 -04007225 if (orig_start) {
7226 *orig_start = key.offset - backref_offset;
7227 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7228 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7229 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007230
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007231 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007232 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007233
7234 num_bytes = min(offset + *len, extent_end) - offset;
7235 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7236 u64 range_end;
7237
Jeff Mahoneyda170662016-06-15 09:22:56 -04007238 range_end = round_up(offset + num_bytes,
7239 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007240 ret = test_range_bit(io_tree, offset, range_end,
7241 EXTENT_DELALLOC, 0, NULL);
7242 if (ret) {
7243 ret = -EAGAIN;
7244 goto out;
7245 }
7246 }
7247
Josef Bacik1bda19e2013-10-18 12:10:36 -04007248 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007249
7250 /*
7251 * look for other files referencing this extent, if we
7252 * find any we must cow
7253 */
Josef Bacik00361582013-08-14 14:02:47 -04007254
Liu Boe4c3b2d2017-01-30 12:25:28 -08007255 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007256 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007257 if (ret) {
7258 ret = 0;
7259 goto out;
7260 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007261
7262 /*
7263 * adjust disk_bytenr and num_bytes to cover just the bytes
7264 * in this extent we are about to write. If there
7265 * are any csums in that range we have to cow in order
7266 * to keep the csums correct
7267 */
7268 disk_bytenr += backref_offset;
7269 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007270 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7271 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007272 /*
7273 * all of the above have passed, it is safe to overwrite this extent
7274 * without cow
7275 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007276 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007277 ret = 1;
7278out:
7279 btrfs_free_path(path);
7280 return ret;
7281}
7282
Josef Bacikeb838e72012-07-31 16:28:48 -04007283static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7284 struct extent_state **cached_state, int writing)
7285{
7286 struct btrfs_ordered_extent *ordered;
7287 int ret = 0;
7288
7289 while (1) {
7290 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007291 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007292 /*
7293 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007294 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007295 * extents in this range.
7296 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007297 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007298 lockend - lockstart + 1);
7299
7300 /*
7301 * We need to make sure there are no buffered pages in this
7302 * range either, we could have raced between the invalidate in
7303 * generic_file_direct_write and locking the extent. The
7304 * invalidate needs to happen so that reads after a write do not
7305 * get stale data.
7306 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007307 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007308 (!writing || !filemap_range_has_page(inode->i_mapping,
7309 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007310 break;
7311
7312 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007313 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007314
7315 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007316 /*
7317 * If we are doing a DIO read and the ordered extent we
7318 * found is for a buffered write, we can not wait for it
7319 * to complete and retry, because if we do so we can
7320 * deadlock with concurrent buffered writes on page
7321 * locks. This happens only if our DIO read covers more
7322 * than one extent map, if at this point has already
7323 * created an ordered extent for a previous extent map
7324 * and locked its range in the inode's io tree, and a
7325 * concurrent write against that previous extent map's
7326 * range and this range started (we unlock the ranges
7327 * in the io tree only when the bios complete and
7328 * buffered writes always lock pages before attempting
7329 * to lock range in the io tree).
7330 */
7331 if (writing ||
7332 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7333 btrfs_start_ordered_extent(inode, ordered, 1);
7334 else
7335 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007336 btrfs_put_ordered_extent(ordered);
7337 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007338 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007339 * We could trigger writeback for this range (and wait
7340 * for it to complete) and then invalidate the pages for
7341 * this range (through invalidate_inode_pages2_range()),
7342 * but that can lead us to a deadlock with a concurrent
7343 * call to readpages() (a buffered read or a defrag call
7344 * triggered a readahead) on a page lock due to an
7345 * ordered dio extent we created before but did not have
7346 * yet a corresponding bio submitted (whence it can not
7347 * complete), which makes readpages() wait for that
7348 * ordered extent to complete while holding a lock on
7349 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007350 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007351 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007352 }
7353
Filipe Mananaade77022016-02-18 14:28:55 +00007354 if (ret)
7355 break;
7356
Josef Bacikeb838e72012-07-31 16:28:48 -04007357 cond_resched();
7358 }
7359
7360 return ret;
7361}
7362
Liu Bo6f9994d2017-01-31 07:50:22 -08007363/* The callers of this must take lock_extent() */
7364static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7365 u64 orig_start, u64 block_start,
7366 u64 block_len, u64 orig_block_len,
7367 u64 ram_bytes, int compress_type,
7368 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007369{
7370 struct extent_map_tree *em_tree;
7371 struct extent_map *em;
7372 struct btrfs_root *root = BTRFS_I(inode)->root;
7373 int ret;
7374
Liu Bo6f9994d2017-01-31 07:50:22 -08007375 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7376 type == BTRFS_ORDERED_COMPRESSED ||
7377 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007378 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007379
Josef Bacik69ffb542012-09-11 15:40:07 -04007380 em_tree = &BTRFS_I(inode)->extent_tree;
7381 em = alloc_extent_map();
7382 if (!em)
7383 return ERR_PTR(-ENOMEM);
7384
7385 em->start = start;
7386 em->orig_start = orig_start;
7387 em->len = len;
7388 em->block_len = block_len;
7389 em->block_start = block_start;
7390 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007391 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007392 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007393 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007394 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007395 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007396 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007397 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007398 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7399 em->compress_type = compress_type;
7400 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007401
7402 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007403 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007404 em->start + em->len - 1, 0);
7405 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007406 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007407 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007408 /*
7409 * The caller has taken lock_extent(), who could race with us
7410 * to add em?
7411 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007412 } while (ret == -EEXIST);
7413
7414 if (ret) {
7415 free_extent_map(em);
7416 return ERR_PTR(ret);
7417 }
7418
Liu Bo6f9994d2017-01-31 07:50:22 -08007419 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007420 return em;
7421}
7422
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007423
7424static int btrfs_get_blocks_direct_read(struct extent_map *em,
7425 struct buffer_head *bh_result,
7426 struct inode *inode,
7427 u64 start, u64 len)
7428{
7429 if (em->block_start == EXTENT_MAP_HOLE ||
7430 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7431 return -ENOENT;
7432
7433 len = min(len, em->len - (start - em->start));
7434
7435 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7436 inode->i_blkbits;
7437 bh_result->b_size = len;
7438 bh_result->b_bdev = em->bdev;
7439 set_buffer_mapped(bh_result);
7440
7441 return 0;
7442}
7443
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007444static int btrfs_get_blocks_direct_write(struct extent_map **map,
7445 struct buffer_head *bh_result,
7446 struct inode *inode,
7447 struct btrfs_dio_data *dio_data,
7448 u64 start, u64 len)
7449{
7450 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7451 struct extent_map *em = *map;
7452 int ret = 0;
7453
7454 /*
7455 * We don't allocate a new extent in the following cases
7456 *
7457 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7458 * existing extent.
7459 * 2) The extent is marked as PREALLOC. We're good to go here and can
7460 * just use the extent.
7461 *
7462 */
7463 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7464 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7465 em->block_start != EXTENT_MAP_HOLE)) {
7466 int type;
7467 u64 block_start, orig_start, orig_block_len, ram_bytes;
7468
7469 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7470 type = BTRFS_ORDERED_PREALLOC;
7471 else
7472 type = BTRFS_ORDERED_NOCOW;
7473 len = min(len, em->len - (start - em->start));
7474 block_start = em->block_start + (start - em->start);
7475
7476 if (can_nocow_extent(inode, start, &len, &orig_start,
7477 &orig_block_len, &ram_bytes) == 1 &&
7478 btrfs_inc_nocow_writers(fs_info, block_start)) {
7479 struct extent_map *em2;
7480
7481 em2 = btrfs_create_dio_extent(inode, start, len,
7482 orig_start, block_start,
7483 len, orig_block_len,
7484 ram_bytes, type);
7485 btrfs_dec_nocow_writers(fs_info, block_start);
7486 if (type == BTRFS_ORDERED_PREALLOC) {
7487 free_extent_map(em);
7488 *map = em = em2;
7489 }
7490
7491 if (em2 && IS_ERR(em2)) {
7492 ret = PTR_ERR(em2);
7493 goto out;
7494 }
7495 /*
7496 * For inode marked NODATACOW or extent marked PREALLOC,
7497 * use the existing or preallocated extent, so does not
7498 * need to adjust btrfs_space_info's bytes_may_use.
7499 */
7500 btrfs_free_reserved_data_space_noquota(inode, start,
7501 len);
7502 goto skip_cow;
7503 }
7504 }
7505
7506 /* this will cow the extent */
7507 len = bh_result->b_size;
7508 free_extent_map(em);
7509 *map = em = btrfs_new_extent_direct(inode, start, len);
7510 if (IS_ERR(em)) {
7511 ret = PTR_ERR(em);
7512 goto out;
7513 }
7514
7515 len = min(len, em->len - (start - em->start));
7516
7517skip_cow:
7518 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7519 inode->i_blkbits;
7520 bh_result->b_size = len;
7521 bh_result->b_bdev = em->bdev;
7522 set_buffer_mapped(bh_result);
7523
7524 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7525 set_buffer_new(bh_result);
7526
7527 /*
7528 * Need to update the i_size under the extent lock so buffered
7529 * readers will get the updated i_size when we unlock.
7530 */
7531 if (!dio_data->overwrite && start + len > i_size_read(inode))
7532 i_size_write(inode, start + len);
7533
7534 WARN_ON(dio_data->reserve < len);
7535 dio_data->reserve -= len;
7536 dio_data->unsubmitted_oe_range_end = start + len;
7537 current->journal_info = dio_data;
7538out:
7539 return ret;
7540}
7541
Josef Bacik4b46fce2010-05-23 11:00:55 -04007542static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7543 struct buffer_head *bh_result, int create)
7544{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007545 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007546 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007547 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307548 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007549 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007550 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007551 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007552 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007553 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007554
Miao Xie172a5042013-02-21 02:48:22 -07007555 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007556 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007557 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007558 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007559
Josef Bacikc3298612012-08-03 16:49:19 -04007560 lockstart = start;
7561 lockend = start + len - 1;
7562
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007563 if (current->journal_info) {
7564 /*
7565 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007566 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007567 * confused.
7568 */
chandan50745b02015-08-28 21:10:13 +05307569 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007570 current->journal_info = NULL;
7571 }
7572
Josef Bacikeb838e72012-07-31 16:28:48 -04007573 /*
7574 * If this errors out it's because we couldn't invalidate pagecache for
7575 * this range and we need to fallback to buffered.
7576 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007577 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7578 create)) {
7579 ret = -ENOTBLK;
7580 goto err;
7581 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007582
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007583 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007584 if (IS_ERR(em)) {
7585 ret = PTR_ERR(em);
7586 goto unlock_err;
7587 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007588
7589 /*
7590 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7591 * io. INLINE is special, and we could probably kludge it in here, but
7592 * it's still buffered so for safety lets just fall back to the generic
7593 * buffered path.
7594 *
7595 * For COMPRESSED we _have_ to read the entire extent in so we can
7596 * decompress it, so there will be buffering required no matter what we
7597 * do, so go ahead and fallback to buffered.
7598 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007599 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007600 * to buffered IO. Don't blame me, this is the price we pay for using
7601 * the generic code.
7602 */
7603 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7604 em->block_start == EXTENT_MAP_INLINE) {
7605 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007606 ret = -ENOTBLK;
7607 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007608 }
7609
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007610 if (create) {
7611 ret = btrfs_get_blocks_direct_write(&em, bh_result, inode,
7612 dio_data, start, len);
7613 if (ret < 0)
7614 goto unlock_err;
7615
7616 /* clear and unlock the entire range */
7617 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7618 unlock_bits, 1, 0, &cached_state);
7619 } else {
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007620 ret = btrfs_get_blocks_direct_read(em, bh_result, inode,
7621 start, len);
7622 /* Can be negative only if we read from a hole */
7623 if (ret < 0) {
7624 ret = 0;
7625 free_extent_map(em);
7626 goto unlock_err;
7627 }
7628 /*
7629 * We need to unlock only the end area that we aren't using.
7630 * The rest is going to be unlocked by the endio routine.
7631 */
7632 lockstart = start + bh_result->b_size;
7633 if (lockstart < lockend) {
7634 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7635 lockend, unlock_bits, 1, 0,
7636 &cached_state);
7637 } else {
7638 free_extent_state(cached_state);
7639 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007640 }
7641
Josef Bacik4b46fce2010-05-23 11:00:55 -04007642 free_extent_map(em);
7643
7644 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007645
7646unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007647 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaae0f1622017-10-31 16:37:52 +01007648 unlock_bits, 1, 0, &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007649err:
chandan50745b02015-08-28 21:10:13 +05307650 if (dio_data)
7651 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007652 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007653}
7654
Omar Sandoval58efbc92017-08-22 23:45:59 -07007655static inline blk_status_t submit_dio_repair_bio(struct inode *inode,
7656 struct bio *bio,
7657 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007658{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007659 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007660 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007661
Mike Christie37226b22016-06-05 14:31:52 -05007662 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007663
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007664 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007665 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007666 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007667
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007668 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Nikolay Borisovea057f62017-12-13 10:25:38 +02007669
Miao Xie8b110e32014-09-12 18:44:03 +08007670 return ret;
7671}
7672
7673static int btrfs_check_dio_repairable(struct inode *inode,
7674 struct bio *failed_bio,
7675 struct io_failure_record *failrec,
7676 int failed_mirror)
7677{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007678 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007679 int num_copies;
7680
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007681 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007682 if (num_copies == 1) {
7683 /*
7684 * we only have a single copy of the data, so don't bother with
7685 * all the retry and error correction code that follows. no
7686 * matter what the error is, it is very likely to persist.
7687 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007688 btrfs_debug(fs_info,
7689 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7690 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007691 return 0;
7692 }
7693
7694 failrec->failed_mirror = failed_mirror;
7695 failrec->this_mirror++;
7696 if (failrec->this_mirror == failed_mirror)
7697 failrec->this_mirror++;
7698
7699 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007700 btrfs_debug(fs_info,
7701 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7702 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007703 return 0;
7704 }
7705
7706 return 1;
7707}
7708
Omar Sandoval58efbc92017-08-22 23:45:59 -07007709static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio,
7710 struct page *page, unsigned int pgoff,
7711 u64 start, u64 end, int failed_mirror,
7712 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007713{
7714 struct io_failure_record *failrec;
Josef Bacik7870d082017-05-05 11:57:15 -04007715 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7716 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007717 struct bio *bio;
7718 int isector;
David Sterbaf1c77c52017-06-06 19:03:49 +02007719 unsigned int read_mode = 0;
Liu Bo17347ce2017-05-15 15:33:27 -07007720 int segs;
Miao Xie8b110e32014-09-12 18:44:03 +08007721 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007722 blk_status_t status;
Ming Leic16a8ac2017-12-18 20:22:12 +08007723 struct bio_vec bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007724
Mike Christie37226b22016-06-05 14:31:52 -05007725 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007726
7727 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7728 if (ret)
Omar Sandoval58efbc92017-08-22 23:45:59 -07007729 return errno_to_blk_status(ret);
Miao Xie8b110e32014-09-12 18:44:03 +08007730
7731 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7732 failed_mirror);
7733 if (!ret) {
Josef Bacik7870d082017-05-05 11:57:15 -04007734 free_io_failure(failure_tree, io_tree, failrec);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007735 return BLK_STS_IOERR;
Miao Xie8b110e32014-09-12 18:44:03 +08007736 }
7737
Liu Bo17347ce2017-05-15 15:33:27 -07007738 segs = bio_segments(failed_bio);
Ming Leic16a8ac2017-12-18 20:22:12 +08007739 bio_get_first_bvec(failed_bio, &bvec);
Liu Bo17347ce2017-05-15 15:33:27 -07007740 if (segs > 1 ||
Ming Leic16a8ac2017-12-18 20:22:12 +08007741 (bvec.bv_len > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007742 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007743
7744 isector = start - btrfs_io_bio(failed_bio)->logical;
7745 isector >>= inode->i_sb->s_blocksize_bits;
7746 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307747 pgoff, isector, repair_endio, repair_arg);
David Sterbaebcc3262018-06-29 10:56:53 +02007748 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie8b110e32014-09-12 18:44:03 +08007749
7750 btrfs_debug(BTRFS_I(inode)->root->fs_info,
David Sterba913e1532017-07-13 15:32:18 +02007751 "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d",
Miao Xie8b110e32014-09-12 18:44:03 +08007752 read_mode, failrec->this_mirror, failrec->in_validation);
7753
Omar Sandoval58efbc92017-08-22 23:45:59 -07007754 status = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
7755 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04007756 free_io_failure(failure_tree, io_tree, failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007757 bio_put(bio);
7758 }
7759
Omar Sandoval58efbc92017-08-22 23:45:59 -07007760 return status;
Miao Xie8b110e32014-09-12 18:44:03 +08007761}
7762
7763struct btrfs_retry_complete {
7764 struct completion done;
7765 struct inode *inode;
7766 u64 start;
7767 int uptodate;
7768};
7769
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007770static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007771{
7772 struct btrfs_retry_complete *done = bio->bi_private;
Josef Bacik7870d082017-05-05 11:57:15 -04007773 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007774 struct bio_vec *bvec;
Josef Bacik7870d082017-05-05 11:57:15 -04007775 struct extent_io_tree *io_tree, *failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007776 int i;
7777
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007778 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007779 goto end;
7780
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307781 ASSERT(bio->bi_vcnt == 1);
Josef Bacik7870d082017-05-05 11:57:15 -04007782 io_tree = &BTRFS_I(inode)->io_tree;
7783 failure_tree = &BTRFS_I(inode)->io_failure_tree;
Ming Lei263663c2017-12-18 20:22:04 +08007784 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307785
Miao Xie8b110e32014-09-12 18:44:03 +08007786 done->uptodate = 1;
David Sterbac09abff2017-07-13 18:10:07 +02007787 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007788 bio_for_each_segment_all(bvec, bio, i)
Josef Bacik7870d082017-05-05 11:57:15 -04007789 clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree,
7790 io_tree, done->start, bvec->bv_page,
7791 btrfs_ino(BTRFS_I(inode)), 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007792end:
7793 complete(&done->done);
7794 bio_put(bio);
7795}
7796
Omar Sandoval58efbc92017-08-22 23:45:59 -07007797static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode,
7798 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007799{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307800 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007801 struct bio_vec bvec;
7802 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007803 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007804 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307805 unsigned int pgoff;
7806 u32 sectorsize;
7807 int nr_sectors;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007808 blk_status_t ret;
7809 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007810
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307811 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007812 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307813
Miao Xiec1dc0892014-09-12 18:43:56 +08007814 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007815 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007816 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007817
Liu Bo17347ce2017-05-15 15:33:27 -07007818 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7819 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7820 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307821
7822next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007823 done.uptodate = 0;
7824 done.start = start;
7825 init_completion(&done.done);
7826
Liu Bo17347ce2017-05-15 15:33:27 -07007827 ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307828 pgoff, start, start + sectorsize - 1,
7829 io_bio->mirror_num,
7830 btrfs_retry_endio_nocsum, &done);
Liu Bo629ebf42017-05-15 17:20:07 -07007831 if (ret) {
7832 err = ret;
7833 goto next;
7834 }
Miao Xie8b110e32014-09-12 18:44:03 +08007835
David Sterba9c17f6c2017-07-19 19:26:45 +02007836 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007837
7838 if (!done.uptodate) {
7839 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307840 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007841 }
7842
Liu Bo629ebf42017-05-15 17:20:07 -07007843next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307844 start += sectorsize;
7845
Liu Bo97bf5a52017-04-07 13:11:10 -07007846 nr_sectors--;
7847 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307848 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007849 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307850 goto next_block_or_try_again;
7851 }
Miao Xie8b110e32014-09-12 18:44:03 +08007852 }
7853
Liu Bo629ebf42017-05-15 17:20:07 -07007854 return err;
Miao Xie8b110e32014-09-12 18:44:03 +08007855}
7856
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007857static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007858{
7859 struct btrfs_retry_complete *done = bio->bi_private;
7860 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04007861 struct extent_io_tree *io_tree, *failure_tree;
7862 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007863 struct bio_vec *bvec;
7864 int uptodate;
7865 int ret;
7866 int i;
7867
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007868 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007869 goto end;
7870
7871 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307872
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307873 ASSERT(bio->bi_vcnt == 1);
Ming Lei263663c2017-12-18 20:22:04 +08007874 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307875
Josef Bacik7870d082017-05-05 11:57:15 -04007876 io_tree = &BTRFS_I(inode)->io_tree;
7877 failure_tree = &BTRFS_I(inode)->io_failure_tree;
7878
David Sterbac09abff2017-07-13 18:10:07 +02007879 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007880 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik7870d082017-05-05 11:57:15 -04007881 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7882 bvec->bv_offset, done->start,
7883 bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007884 if (!ret)
Josef Bacik7870d082017-05-05 11:57:15 -04007885 clean_io_failure(BTRFS_I(inode)->root->fs_info,
7886 failure_tree, io_tree, done->start,
7887 bvec->bv_page,
7888 btrfs_ino(BTRFS_I(inode)),
7889 bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08007890 else
7891 uptodate = 0;
7892 }
7893
7894 done->uptodate = uptodate;
7895end:
7896 complete(&done->done);
7897 bio_put(bio);
7898}
7899
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007900static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
7901 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08007902{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307903 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007904 struct bio_vec bvec;
7905 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007906 struct btrfs_retry_complete done;
7907 u64 start;
7908 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307909 u32 sectorsize;
7910 int nr_sectors;
7911 unsigned int pgoff;
7912 int csum_pos;
Liu Boef7cdac12017-04-13 18:11:48 -07007913 bool uptodate = (err == 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007914 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007915 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08007916
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307917 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007918 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307919
Omar Sandoval58efbc92017-08-22 23:45:59 -07007920 err = BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08007921 start = io_bio->logical;
7922 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007923 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007924
Liu Bo17347ce2017-05-15 15:33:27 -07007925 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7926 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307927
Liu Bo17347ce2017-05-15 15:33:27 -07007928 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307929next_block:
Liu Boef7cdac12017-04-13 18:11:48 -07007930 if (uptodate) {
7931 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
7932 ret = __readpage_endio_check(inode, io_bio, csum_pos,
7933 bvec.bv_page, pgoff, start, sectorsize);
7934 if (likely(!ret))
7935 goto next;
7936 }
Miao Xie8b110e32014-09-12 18:44:03 +08007937try_again:
7938 done.uptodate = 0;
7939 done.start = start;
7940 init_completion(&done.done);
7941
Omar Sandoval58efbc92017-08-22 23:45:59 -07007942 status = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
7943 pgoff, start, start + sectorsize - 1,
7944 io_bio->mirror_num, btrfs_retry_endio,
7945 &done);
7946 if (status) {
7947 err = status;
Miao Xie8b110e32014-09-12 18:44:03 +08007948 goto next;
7949 }
7950
David Sterba9c17f6c2017-07-19 19:26:45 +02007951 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007952
7953 if (!done.uptodate) {
7954 /* We might have another mirror, so try again */
7955 goto try_again;
7956 }
7957next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307958 offset += sectorsize;
7959 start += sectorsize;
7960
7961 ASSERT(nr_sectors);
7962
Liu Bo97bf5a52017-04-07 13:11:10 -07007963 nr_sectors--;
7964 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307965 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007966 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307967 goto next_block;
7968 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08007969 }
Miao Xiec1dc0892014-09-12 18:43:56 +08007970
7971 return err;
7972}
7973
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007974static blk_status_t btrfs_subio_endio_read(struct inode *inode,
7975 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08007976{
7977 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7978
7979 if (skip_csum) {
7980 if (unlikely(err))
7981 return __btrfs_correct_data_nocsum(inode, io_bio);
7982 else
Omar Sandoval58efbc92017-08-22 23:45:59 -07007983 return BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08007984 } else {
7985 return __btrfs_subio_endio_read(inode, io_bio, err);
7986 }
7987}
7988
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007989static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08007990{
7991 struct btrfs_dio_private *dip = bio->bi_private;
7992 struct inode *inode = dip->inode;
7993 struct bio *dio_bio;
7994 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007995 blk_status_t err = bio->bi_status;
Miao Xiec1dc0892014-09-12 18:43:56 +08007996
Liu Bo99c4e3b92017-09-15 15:06:51 -06007997 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
Miao Xie8b110e32014-09-12 18:44:03 +08007998 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08007999
Josef Bacik4b46fce2010-05-23 11:00:55 -04008000 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008001 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008002 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008003
Josef Bacik4b46fce2010-05-23 11:00:55 -04008004 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008005
Liu Bo99c4e3b92017-09-15 15:06:51 -06008006 dio_bio->bi_status = err;
Christoph Hellwig40553512017-06-03 09:37:58 +02008007 dio_end_io(dio_bio);
David Sterbab3a0dd52018-11-22 17:16:49 +01008008 btrfs_io_bio_free_csum(io_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008009 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008010}
8011
Qu Wenruo524272602017-03-08 10:25:52 +08008012static void __endio_write_update_ordered(struct inode *inode,
8013 const u64 offset, const u64 bytes,
8014 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008015{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008016 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008017 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008018 struct btrfs_workqueue *wq;
8019 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008020 u64 ordered_offset = offset;
8021 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09008022 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008023
Qu Wenruo524272602017-03-08 10:25:52 +08008024 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8025 wq = fs_info->endio_freespace_worker;
8026 func = btrfs_freespace_write_helper;
8027 } else {
8028 wq = fs_info->endio_write_workers;
8029 func = btrfs_endio_write_helper;
8030 }
8031
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03008032 while (ordered_offset < offset + bytes) {
8033 last_offset = ordered_offset;
8034 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
8035 &ordered_offset,
8036 ordered_bytes,
8037 uptodate)) {
8038 btrfs_init_work(&ordered->work, func,
8039 finish_ordered_fn,
8040 NULL, NULL);
8041 btrfs_queue_work(wq, &ordered->work);
8042 }
8043 /*
8044 * If btrfs_dec_test_ordered_pending does not find any ordered
8045 * extent in the range, we can exit.
8046 */
8047 if (ordered_offset == last_offset)
8048 return;
8049 /*
8050 * Our bio might span multiple ordered extents. In this case
Andrea Gelmini52042d82018-11-28 12:05:13 +01008051 * we keep going until we have accounted the whole dio.
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03008052 */
8053 if (ordered_offset < offset + bytes) {
8054 ordered_bytes = offset + bytes - ordered_offset;
8055 ordered = NULL;
8056 }
Chris Mason163cf092010-11-28 19:56:33 -05008057 }
Filipe Manana14543772015-11-24 16:23:54 +00008058}
8059
8060static void btrfs_endio_direct_write(struct bio *bio)
8061{
8062 struct btrfs_dio_private *dip = bio->bi_private;
8063 struct bio *dio_bio = dip->dio_bio;
8064
Qu Wenruo524272602017-03-08 10:25:52 +08008065 __endio_write_update_ordered(dip->inode, dip->logical_offset,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008066 dip->bytes, !bio->bi_status);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008067
Josef Bacik4b46fce2010-05-23 11:00:55 -04008068 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008069
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008070 dio_bio->bi_status = bio->bi_status;
Christoph Hellwig40553512017-06-03 09:37:58 +02008071 dio_end_io(dio_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008072 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008073}
8074
David Sterbad0ee3932018-03-08 14:35:48 +01008075static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data,
David Sterbad0779292018-03-08 13:47:33 +01008076 struct bio *bio, u64 offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04008077{
Josef Bacikc6100a42017-05-05 11:57:13 -04008078 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008079 blk_status_t ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008080 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008081 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008082 return 0;
8083}
8084
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008085static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008086{
8087 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008088 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008089
Miao Xie8b110e32014-09-12 18:44:03 +08008090 if (err)
8091 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008092 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008093 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8094 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008095 (unsigned long long)bio->bi_iter.bi_sector,
8096 bio->bi_iter.bi_size, err);
8097
8098 if (dip->subio_endio)
8099 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008100
8101 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008102 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008103 * We want to perceive the errors flag being set before
8104 * decrementing the reference count. We don't need a barrier
8105 * since atomic operations with a return value are fully
8106 * ordered as per atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008107 */
Nikolay Borisovde224b72018-02-14 10:53:36 +02008108 dip->errors = 1;
Miao Xiee65e1532010-11-22 03:04:43 +00008109 }
8110
8111 /* if there are more bios still pending for this dio, just exit */
8112 if (!atomic_dec_and_test(&dip->pending_bios))
8113 goto out;
8114
Chris Mason9be33952013-05-17 18:30:14 -04008115 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008116 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008117 } else {
Anand Jain2dbe0c72017-10-14 08:35:56 +08008118 dip->dio_bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008119 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008120 }
8121out:
8122 bio_put(bio);
8123}
8124
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008125static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008126 struct btrfs_dio_private *dip,
8127 struct bio *bio,
8128 u64 file_offset)
8129{
8130 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8131 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008132 blk_status_t ret;
Miao Xiec1dc0892014-09-12 18:43:56 +08008133
8134 /*
8135 * We load all the csum data we need when we submit
8136 * the first bio to reduce the csum tree search and
8137 * contention.
8138 */
8139 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008140 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008141 file_offset);
8142 if (ret)
8143 return ret;
8144 }
8145
8146 if (bio == dip->orig_bio)
8147 return 0;
8148
8149 file_offset -= dip->logical_offset;
8150 file_offset >>= inode->i_sb->s_blocksize_bits;
8151 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8152
8153 return 0;
8154}
8155
David Sterbad0ee3932018-03-08 14:35:48 +01008156static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8157 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008159 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008160 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008161 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008162 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008163
Liu Bo4c274bc2017-11-01 17:19:27 -06008164 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008165 if (async_submit)
8166 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8167
Josef Bacik5fd02042012-05-02 14:00:54 -04008168 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008169 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008170 if (ret)
8171 goto err;
8172 }
Miao Xiee65e1532010-11-22 03:04:43 +00008173
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008174 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008175 goto map;
8176
8177 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04008178 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
8179 file_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02008180 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00008181 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008182 } else if (write) {
8183 /*
8184 * If we aren't doing async submit, calculate the csum of the
8185 * bio now.
8186 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008187 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008188 if (ret)
8189 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008190 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008191 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008192 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008193 if (ret)
8194 goto err;
8195 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008196map:
Liu Bo9b4a9b22017-08-18 11:54:02 -06008197 ret = btrfs_map_bio(fs_info, bio, 0, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008198err:
Miao Xiee65e1532010-11-22 03:04:43 +00008199 return ret;
8200}
8201
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008202static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip)
Miao Xiee65e1532010-11-22 03:04:43 +00008203{
8204 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008205 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008206 struct bio *bio;
8207 struct bio *orig_bio = dip->orig_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008208 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008209 u64 file_offset = dip->logical_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008210 u64 map_length;
Josef Bacik1ae39932011-04-06 14:41:34 -04008211 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008212 u64 submit_len;
8213 int clone_offset = 0;
8214 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308215 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008216 blk_status_t status;
Miao Xiee65e1532010-11-22 03:04:43 +00008217
Kent Overstreet4f024f32013-10-11 15:44:27 -07008218 map_length = orig_bio->bi_iter.bi_size;
Liu Bo725130b2017-05-16 09:51:39 -07008219 submit_len = map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008220 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8221 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008222 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008223 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008224
Liu Bo725130b2017-05-16 09:51:39 -07008225 if (map_length >= submit_len) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008226 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008227 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008228 goto submit;
8229 }
8230
David Woodhouse53b381b2013-01-29 18:40:14 -05008231 /* async crcs make it difficult to collect full stripe writes. */
Jeff Mahoney1b868262017-05-17 11:38:35 -04008232 if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008233 async_submit = 0;
8234 else
8235 async_submit = 1;
8236
Liu Bo725130b2017-05-16 09:51:39 -07008237 /* bio split */
8238 ASSERT(map_length <= INT_MAX);
Josef Bacik02f57c72011-04-06 14:25:44 -04008239 atomic_inc(&dip->pending_bios);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008240 do {
Liu Bo725130b2017-05-16 09:51:39 -07008241 clone_len = min_t(int, submit_len, map_length);
Josef Bacik02f57c72011-04-06 14:25:44 -04008242
Liu Bo725130b2017-05-16 09:51:39 -07008243 /*
8244 * This will never fail as it's passing GPF_NOFS and
8245 * the allocation is backed by btrfs_bioset.
8246 */
Liu Boe4770942017-05-16 10:57:14 -07008247 bio = btrfs_bio_clone_partial(orig_bio, clone_offset,
Liu Bo725130b2017-05-16 09:51:39 -07008248 clone_len);
8249 bio->bi_private = dip;
8250 bio->bi_end_io = btrfs_end_dio_bio;
8251 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008252
Liu Bo725130b2017-05-16 09:51:39 -07008253 ASSERT(submit_len >= clone_len);
8254 submit_len -= clone_len;
8255 if (submit_len == 0)
8256 break;
Miao Xiee65e1532010-11-22 03:04:43 +00008257
Liu Bo725130b2017-05-16 09:51:39 -07008258 /*
8259 * Increase the count before we submit the bio so we know
8260 * the end IO handler won't happen before we increase the
8261 * count. Otherwise, the dip might get freed before we're
8262 * done setting it up.
8263 */
8264 atomic_inc(&dip->pending_bios);
Miao Xiee65e1532010-11-22 03:04:43 +00008265
David Sterbad0ee3932018-03-08 14:35:48 +01008266 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008267 async_submit);
8268 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008269 bio_put(bio);
8270 atomic_dec(&dip->pending_bios);
8271 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00008272 }
Liu Bo725130b2017-05-16 09:51:39 -07008273
8274 clone_offset += clone_len;
8275 start_sector += clone_len >> 9;
8276 file_offset += clone_len;
8277
8278 map_length = submit_len;
8279 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
8280 start_sector << 9, &map_length, NULL, 0);
8281 if (ret)
8282 goto out_err;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008283 } while (submit_len > 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008284
Josef Bacik02f57c72011-04-06 14:25:44 -04008285submit:
David Sterbad0ee3932018-03-08 14:35:48 +01008286 status = btrfs_submit_dio_bio(bio, inode, file_offset, async_submit);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008287 if (!status)
Miao Xiee65e1532010-11-22 03:04:43 +00008288 return 0;
8289
8290 bio_put(bio);
8291out_err:
8292 dip->errors = 1;
8293 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008294 * Before atomic variable goto zero, we must make sure dip->errors is
8295 * perceived to be set. This ordering is ensured by the fact that an
8296 * atomic operations with a return value are fully ordered as per
8297 * atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008298 */
Miao Xiee65e1532010-11-22 03:04:43 +00008299 if (atomic_dec_and_test(&dip->pending_bios))
8300 bio_io_error(dip->orig_bio);
8301
8302 /* bio_end_io() will handle error, so we needn't return it */
8303 return 0;
8304}
8305
Mike Christie8a4c1e42016-06-05 14:31:50 -05008306static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8307 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008308{
Filipe Manana61de7182015-07-01 12:13:10 +01008309 struct btrfs_dio_private *dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008310 struct bio *bio = NULL;
8311 struct btrfs_io_bio *io_bio;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008312 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008313 int ret = 0;
8314
David Sterba8b6c1d52017-06-02 17:48:13 +02008315 bio = btrfs_bio_clone(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008316
Miao Xiec1dc0892014-09-12 18:43:56 +08008317 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008318 if (!dip) {
8319 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008320 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008321 }
8322
8323 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008324 dip->inode = inode;
8325 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008326 dip->bytes = dio_bio->bi_iter.bi_size;
8327 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Liu Bo3892ac92017-04-17 15:00:28 -07008328 bio->bi_private = dip;
8329 dip->orig_bio = bio;
Chris Mason9be33952013-05-17 18:30:14 -04008330 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008331 atomic_set(&dip->pending_bios, 0);
Liu Bo3892ac92017-04-17 15:00:28 -07008332 io_bio = btrfs_io_bio(bio);
8333 io_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008334
Miao Xiec1dc0892014-09-12 18:43:56 +08008335 if (write) {
Liu Bo3892ac92017-04-17 15:00:28 -07008336 bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008337 } else {
Liu Bo3892ac92017-04-17 15:00:28 -07008338 bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008339 dip->subio_endio = btrfs_subio_endio_read;
8340 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008341
Filipe Mananaf28a4922015-12-08 19:23:20 +00008342 /*
8343 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8344 * even if we fail to submit a bio, because in such case we do the
8345 * corresponding error handling below and it must not be done a second
8346 * time by btrfs_direct_IO().
8347 */
8348 if (write) {
8349 struct btrfs_dio_data *dio_data = current->journal_info;
8350
8351 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8352 dip->bytes;
8353 dio_data->unsubmitted_oe_range_start =
8354 dio_data->unsubmitted_oe_range_end;
8355 }
8356
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008357 ret = btrfs_submit_direct_hook(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00008358 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008359 return;
Chris Mason9be33952013-05-17 18:30:14 -04008360
David Sterbab3a0dd52018-11-22 17:16:49 +01008361 btrfs_io_bio_free_csum(io_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008362
Josef Bacik4b46fce2010-05-23 11:00:55 -04008363free_ordered:
8364 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008365 * If we arrived here it means either we failed to submit the dip
8366 * or we either failed to clone the dio_bio or failed to allocate the
8367 * dip. If we cloned the dio_bio and allocated the dip, we can just
8368 * call bio_endio against our io_bio so that we get proper resource
8369 * cleanup if we fail to submit the dip, otherwise, we must do the
8370 * same as btrfs_endio_direct_[write|read] because we can't call these
8371 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008372 */
Liu Bo3892ac92017-04-17 15:00:28 -07008373 if (bio && dip) {
Guoqing Jiang054ec2f2017-06-02 16:08:50 +08008374 bio_io_error(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008375 /*
Liu Bo3892ac92017-04-17 15:00:28 -07008376 * The end io callbacks free our dip, do the final put on bio
Filipe Manana61de7182015-07-01 12:13:10 +01008377 * and all the cleanup and final put for dio_bio (through
8378 * dio_end_io()).
8379 */
8380 dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008381 bio = NULL;
Filipe Manana61de7182015-07-01 12:13:10 +01008382 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008383 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008384 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008385 file_offset,
8386 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008387 false);
Filipe Manana14543772015-11-24 16:23:54 +00008388 else
Filipe Manana61de7182015-07-01 12:13:10 +01008389 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8390 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008391
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008392 dio_bio->bi_status = BLK_STS_IOERR;
Filipe Manana61de7182015-07-01 12:13:10 +01008393 /*
8394 * Releases and cleans up our dio_bio, no need to bio_put()
8395 * nor bio_endio()/bio_io_error() against dio_bio.
8396 */
Christoph Hellwig40553512017-06-03 09:37:58 +02008397 dio_end_io(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008398 }
Liu Bo3892ac92017-04-17 15:00:28 -07008399 if (bio)
8400 bio_put(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008401 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008402}
8403
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008404static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008405 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008406{
8407 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008408 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008409 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008410 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008411
8412 if (offset & blocksize_mask)
8413 goto out;
8414
Al Viro28060d52014-03-22 05:15:17 -04008415 if (iov_iter_alignment(iter) & blocksize_mask)
8416 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008417
Al Viro28060d52014-03-22 05:15:17 -04008418 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008419 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008420 return 0;
8421 /*
8422 * Check to make sure we don't have duplicate iov_base's in this
8423 * iovec, if so return EINVAL, otherwise we'll get csum errors
8424 * when reading back.
8425 */
8426 for (seg = 0; seg < iter->nr_segs; seg++) {
8427 for (i = seg + 1; i < iter->nr_segs; i++) {
8428 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008429 goto out;
8430 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008431 }
8432 retval = 0;
8433out:
8434 return retval;
8435}
Josef Bacikeb838e72012-07-31 16:28:48 -04008436
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008437static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008438{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008439 struct file *file = iocb->ki_filp;
8440 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008441 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308442 struct btrfs_dio_data dio_data = { 0 };
Qu Wenruo364ecf32017-02-27 15:10:38 +08008443 struct extent_changeset *data_reserved = NULL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008444 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008445 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008446 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008447 bool wakeup = true;
8448 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008449 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008450
Nikolay Borisov8c70c9f2017-08-21 12:43:46 +03008451 if (check_direct_IO(fs_info, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008452 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008453
Jens Axboefe0f07d2015-04-15 17:05:48 -06008454 inode_dio_begin(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008455
Josef Bacik0e267c42013-07-02 10:38:02 -04008456 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008457 * The generic stuff only does filemap_write_and_wait_range, which
8458 * isn't enough if we've written compressed pages to this area, so
8459 * we need to flush the dirty pages again to make absolutely sure
8460 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008461 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008462 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008463 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8464 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008465 filemap_fdatawrite_range(inode->i_mapping, offset,
8466 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008467
Omar Sandoval6f673762015-03-16 04:33:52 -07008468 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008469 /*
8470 * If the write DIO is beyond the EOF, we need update
8471 * the isize, but it is protected by i_mutex. So we can
8472 * not unlock the i_mutex at this case.
8473 */
8474 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008475 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008476 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008477 relock = true;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05008478 } else if (iocb->ki_flags & IOCB_NOWAIT) {
8479 ret = -EAGAIN;
8480 goto out;
Miao Xie38851cc2013-02-08 07:04:11 +00008481 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08008482 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
8483 offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008484 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008485 goto out;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008486
8487 /*
8488 * We need to know how many extents we reserved so that we can
8489 * do the accounting properly if we go over the number we
8490 * originally calculated. Abuse current->journal_info for this.
8491 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008492 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008493 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008494 dio_data.unsubmitted_oe_range_start = (u64)offset;
8495 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308496 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308497 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008498 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8499 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008500 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008501 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8502 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008503 }
8504
Omar Sandoval17f8c842015-03-16 04:33:50 -07008505 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008506 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008507 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008508 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008509 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308510 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008511 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008512 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308513 if (dio_data.reserve)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008514 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008515 offset, dio_data.reserve, true);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008516 /*
8517 * On error we might have left some ordered extents
8518 * without submitting corresponding bios for them, so
8519 * cleanup them up to avoid other tasks getting them
8520 * and waiting for them to complete forever.
8521 */
8522 if (dio_data.unsubmitted_oe_range_start <
8523 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008524 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008525 dio_data.unsubmitted_oe_range_start,
8526 dio_data.unsubmitted_oe_range_end -
8527 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008528 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008529 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008530 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008531 offset, count - (size_t)ret, true);
8532 btrfs_delalloc_release_extents(BTRFS_I(inode), count, false);
Miao Xie09348562013-02-07 10:12:07 +00008533 }
Miao Xie38851cc2013-02-08 07:04:11 +00008534out:
Miao Xie2e60a512013-02-08 07:01:08 +00008535 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008536 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008537 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008538 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008539
Qu Wenruo364ecf32017-02-27 15:10:38 +08008540 extent_changeset_free(data_reserved);
Miao Xie09348562013-02-07 10:12:07 +00008541 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008542}
8543
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008544#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8545
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008546static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8547 __u64 start, __u64 len)
8548{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008549 int ret;
8550
8551 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8552 if (ret)
8553 return ret;
8554
David Sterba2135fb92017-06-23 04:09:57 +02008555 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008556}
8557
Chris Mason9ebefb182007-06-15 13:50:00 -04008558int btrfs_readpage(struct file *file, struct page *page)
8559{
Chris Masond1310b22008-01-24 16:13:08 -05008560 struct extent_io_tree *tree;
8561 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008562 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008563}
Chris Mason1832a6d2007-12-21 16:27:21 -05008564
Chris Mason39279cc2007-06-12 06:35:45 -04008565static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8566{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008567 struct inode *inode = page->mapping->host;
8568 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008569
8570 if (current->flags & PF_MEMALLOC) {
8571 redirty_page_for_writepage(wbc, page);
8572 unlock_page(page);
8573 return 0;
8574 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008575
8576 /*
8577 * If we are under memory pressure we will call this directly from the
8578 * VM, we need to make sure we have the inode referenced for the ordered
8579 * extent. If not just return like we didn't do anything.
8580 */
8581 if (!igrab(inode)) {
8582 redirty_page_for_writepage(wbc, page);
8583 return AOP_WRITEPAGE_ACTIVATE;
8584 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008585 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008586 btrfs_add_delayed_iput(inode);
8587 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008588}
Chris Mason39279cc2007-06-12 06:35:45 -04008589
Eric Sandeen48a3b632013-04-25 20:41:01 +00008590static int btrfs_writepages(struct address_space *mapping,
8591 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008592{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008593 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008594}
8595
Chris Mason3ab2fb52007-11-08 10:59:22 -05008596static int
8597btrfs_readpages(struct file *file, struct address_space *mapping,
8598 struct list_head *pages, unsigned nr_pages)
8599{
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008600 return extent_readpages(mapping, pages, nr_pages);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008601}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008602
Chris Masone6dcd2d2008-07-17 12:53:50 -04008603static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008604{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008605 int ret = try_release_extent_mapping(page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008606 if (ret == 1) {
8607 ClearPagePrivate(page);
8608 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008609 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008610 }
8611 return ret;
8612}
Chris Mason39279cc2007-06-12 06:35:45 -04008613
Chris Masone6dcd2d2008-07-17 12:53:50 -04008614static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8615{
Chris Mason98509cf2008-09-11 15:51:43 -04008616 if (PageWriteback(page) || PageDirty(page))
8617 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008618 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008619}
8620
Lukas Czernerd47992f2013-05-21 23:17:23 -04008621static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8622 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008623{
Josef Bacik5fd02042012-05-02 14:00:54 -04008624 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008625 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008626 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008627 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008628 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008629 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308630 u64 start;
8631 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008632 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008633
Chris Mason8b62b722009-09-02 16:53:46 -04008634 /*
8635 * we have the page locked, so new writeback can't start,
8636 * and the dirty bit won't be cleared while we are here.
8637 *
8638 * Wait for IO on this page so that we can safely clear
8639 * the PagePrivate2 bit and do ordered accounting
8640 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008641 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008642
Josef Bacik5fd02042012-05-02 14:00:54 -04008643 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008644 if (offset) {
8645 btrfs_releasepage(page, GFP_NOFS);
8646 return;
8647 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008648
8649 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008650 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308651again:
8652 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008653 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308654 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008655 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308656 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008657 /*
8658 * IO on this page will never be started, so we need
8659 * to account for any ordered extents now
8660 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008661 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308662 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008663 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008664 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008665 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008666 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008667 /*
8668 * whoever cleared the private bit is responsible
8669 * for the finish_ordered_io
8670 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008671 if (TestClearPagePrivate2(page)) {
8672 struct btrfs_ordered_inode_tree *tree;
8673 u64 new_len;
8674
8675 tree = &BTRFS_I(inode)->ordered_tree;
8676
8677 spin_lock_irq(&tree->lock);
8678 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308679 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008680 if (new_len < ordered->truncated_len)
8681 ordered->truncated_len = new_len;
8682 spin_unlock_irq(&tree->lock);
8683
8684 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308685 start,
8686 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008687 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008688 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008689 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008690 if (!inode_evicting) {
8691 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308692 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008693 &cached_state);
8694 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308695
8696 start = end + 1;
8697 if (start < page_end)
8698 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008699 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008700
Qu Wenruob9d0b382015-09-29 10:35:16 +08008701 /*
8702 * Qgroup reserved space handler
8703 * Page here will be either
8704 * 1) Already written to disk
8705 * In this case, its reserved space is released from data rsv map
8706 * and will be freed by delayed_ref handler finally.
8707 * So even we call qgroup_free_data(), it won't decrease reserved
8708 * space.
8709 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008710 * This means the reserved space should be freed here. However,
8711 * if a truncate invalidates the page (by clearing PageDirty)
8712 * and the page is accounted for while allocating extent
8713 * in btrfs_check_data_free_space() we let delayed_ref to
8714 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008715 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008716 if (PageDirty(page))
Qu Wenruobc42bda2017-02-27 15:10:39 +08008717 btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008718 if (!inode_evicting) {
8719 clear_extent_bit(tree, page_start, page_end,
8720 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008721 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8722 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008723 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008724
8725 __btrfs_releasepage(page, GFP_NOFS);
8726 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008727
Chris Mason4a096752008-07-21 10:29:44 -04008728 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008729 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008730 ClearPagePrivate(page);
8731 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008732 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008733 }
Chris Mason39279cc2007-06-12 06:35:45 -04008734}
8735
Chris Mason9ebefb182007-06-15 13:50:00 -04008736/*
8737 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8738 * called from a page fault handler when a page is first dirtied. Hence we must
8739 * be careful to check for EOF conditions here. We set the page up correctly
8740 * for a written page which means we get ENOSPC checking when writing into
8741 * holes and correct delalloc and unwritten extent mapping on filesystems that
8742 * support these features.
8743 *
8744 * We are not allowed to take the i_mutex here so we have to play games to
8745 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008746 * truncate_setsize() writes the inode size before removing pages, once we have
8747 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008748 * beyond EOF, then the page is guaranteed safe against truncation until we
8749 * unlock the page.
8750 */
Souptick Joardera528a242018-06-06 19:54:44 +05308751vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008752{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008753 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008754 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008755 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008756 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8757 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008758 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008759 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008760 char *kaddr;
8761 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008762 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308763 vm_fault_t ret;
8764 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008765 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308766 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008767 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008768 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308769 u64 end;
8770
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008771 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008772
Jan Karab2b5ef52012-06-12 16:20:45 +02008773 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008774 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008775 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308776 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008777
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308778 /*
8779 * Reserving delalloc space after obtaining the page lock can lead to
8780 * deadlock. For example, if a dirty page is locked by this function
8781 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8782 * dirty page write out, then the btrfs_writepage() function could
8783 * end up waiting indefinitely to get a lock on the page currently
8784 * being processed by btrfs_page_mkwrite() function.
8785 */
Souptick Joardera528a242018-06-06 19:54:44 +05308786 ret2 = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308787 reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308788 if (!ret2) {
8789 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008790 reserved = 1;
8791 }
Souptick Joardera528a242018-06-06 19:54:44 +05308792 if (ret2) {
8793 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008794 if (reserved)
8795 goto out;
8796 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008797 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008798
Nick Piggin56a76f82009-03-31 15:23:23 -07008799 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008800again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008801 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008802 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008803
Chris Mason9ebefb182007-06-15 13:50:00 -04008804 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008805 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008806 /* page got truncated out from underneath us */
8807 goto out_unlock;
8808 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008809 wait_on_page_writeback(page);
8810
David Sterbaff13db42015-12-03 14:30:40 +01008811 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008812 set_page_extent_mapped(page);
8813
Chris Masoneb84ae02008-07-17 13:53:27 -04008814 /*
8815 * we can't set the delalloc bits if there are pending ordered
8816 * extents. Drop our locks and wait for them to finish
8817 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008818 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8819 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008820 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008821 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008822 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008823 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008824 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008825 btrfs_put_ordered_extent(ordered);
8826 goto again;
8827 }
8828
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008829 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008830 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008831 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008832 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308833 end = page_start + reserved_space - 1;
Qu Wenruobc42bda2017-02-27 15:10:39 +08008834 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008835 page_start, PAGE_SIZE - reserved_space,
8836 true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308837 }
8838 }
8839
Josef Bacikfbf19082009-10-01 17:10:23 -04008840 /*
Liu Bo54160342016-12-13 12:15:19 -08008841 * page_mkwrite gets called when the page is firstly dirtied after it's
8842 * faulted in, but write(2) could also dirty a page and set delalloc
8843 * bits, thus in this case for space account reason, we still need to
8844 * clear any delalloc bits within this page range since we have to
8845 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008846 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308847 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008848 EXTENT_DIRTY | EXTENT_DELALLOC |
8849 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01008850 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008851
Souptick Joardera528a242018-06-06 19:54:44 +05308852 ret2 = btrfs_set_extent_delalloc(inode, page_start, end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08008853 &cached_state, 0);
Souptick Joardera528a242018-06-06 19:54:44 +05308854 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008855 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008856 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008857 ret = VM_FAULT_SIGBUS;
8858 goto out_unlock;
8859 }
Souptick Joardera528a242018-06-06 19:54:44 +05308860 ret2 = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008861
8862 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008863 if (page_start + PAGE_SIZE > size)
Johannes Thumshirn70730172018-12-05 15:23:03 +01008864 zero_start = offset_in_page(size);
Chris Mason9ebefb182007-06-15 13:50:00 -04008865 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008866 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008867
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008868 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008869 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008870 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008871 flush_dcache_page(page);
8872 kunmap(page);
8873 }
Chris Mason247e7432008-07-17 12:53:51 -04008874 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008875 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008876 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008877
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008878 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04008879 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008880 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008881
David Sterbae43bbe52017-12-12 21:43:52 +01008882 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04008883
Souptick Joardera528a242018-06-06 19:54:44 +05308884 if (!ret2) {
Qu Wenruo43b18592017-12-12 15:34:32 +08008885 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, true);
Jan Karab2b5ef52012-06-12 16:20:45 +02008886 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008887 extent_changeset_free(data_reserved);
Chris Mason50a9b212009-09-11 12:33:12 -04008888 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008889 }
Chris Mason717beb92018-06-25 10:03:41 -07008890
8891out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008892 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008893out:
Qu Wenruo43b18592017-12-12 15:34:32 +08008894 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, (ret != 0));
Qu Wenruobc42bda2017-02-27 15:10:39 +08008895 btrfs_delalloc_release_space(inode, data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008896 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008897out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008898 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008899 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008900 return ret;
8901}
8902
Filipe Manana213e8c52018-02-06 20:40:31 +00008903static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008904{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008905 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008906 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008907 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008908 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008909 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008910 u64 mask = fs_info->sectorsize - 1;
8911 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008912
Filipe Manana213e8c52018-02-06 20:40:31 +00008913 if (!skip_writeback) {
8914 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8915 (u64)-1);
8916 if (ret)
8917 return ret;
8918 }
Chris Mason39279cc2007-06-12 06:35:45 -04008919
Josef Bacikfcb80c22011-05-03 10:40:22 -04008920 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008921 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8922 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008923 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008924 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008925 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008926 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008927 * be free'd up by the truncate operation, but also have some slack
8928 * space reserved in case it uses space during the truncate (thank you
8929 * very much snapshotting).
8930 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008931 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008932 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008933 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008934 * doesn't end up using space reserved for updating the inode. We also
8935 * need to be able to stop the transaction and start a new one, which
8936 * means we need to be able to update the inode several times, and we
8937 * have no idea of knowing how many times that will be, so we can't just
8938 * reserve 1 item for the entirety of the operation, so that has to be
8939 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008940 *
8941 * So that leaves us with
8942 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008943 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008944 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008945 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008946 * updating the inode.
8947 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008948 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008949 if (!rsv)
8950 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008951 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008952 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008953
Josef Bacik907cbce2011-08-08 13:46:15 -04008954 /*
Josef Bacik07127182011-08-19 10:29:59 -04008955 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04008956 * 1 for updating the inode.
8957 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05008958 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008959 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008960 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008961 goto out;
8962 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05008963
Josef Bacik907cbce2011-08-08 13:46:15 -04008964 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008965 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08008966 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008967 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05008968
Chris Mason5a3f23d2009-03-31 13:27:11 -04008969 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04008970 * So if we truncate and then write and fsync we normally would just
8971 * write the extents that changed, which is a problem if we need to
8972 * first truncate that entire inode. So set this flag so we write out
8973 * all of the extents in the inode to the sync log so we're completely
8974 * safe.
8975 */
8976 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008977 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008978
Yan, Zheng80825102009-11-12 09:35:36 +00008979 while (1) {
8980 ret = btrfs_truncate_inode_items(trans, root, inode,
8981 inode->i_size,
8982 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04008983 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008984 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00008985 break;
Chris Mason39279cc2007-06-12 06:35:45 -04008986
Yan, Zheng80825102009-11-12 09:35:36 +00008987 ret = btrfs_update_inode(trans, root, inode);
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008988 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05008989 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008990
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04008991 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008992 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008993
8994 trans = btrfs_start_transaction(root, 2);
8995 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008996 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04008997 trans = NULL;
8998 break;
8999 }
9000
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009001 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009002 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009003 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009004 BUG_ON(ret); /* shouldn't happen */
9005 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009006 }
9007
Josef Bacikddfae632017-10-19 14:16:02 -04009008 /*
9009 * We can't call btrfs_truncate_block inside a trans handle as we could
9010 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
9011 * we've truncated everything except the last little bit, and can do
9012 * btrfs_truncate_block and then update the disk_i_size.
9013 */
9014 if (ret == NEED_TRUNCATE_BLOCK) {
9015 btrfs_end_transaction(trans);
9016 btrfs_btree_balance_dirty(fs_info);
9017
9018 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
9019 if (ret)
9020 goto out;
9021 trans = btrfs_start_transaction(root, 1);
9022 if (IS_ERR(trans)) {
9023 ret = PTR_ERR(trans);
9024 goto out;
9025 }
9026 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
9027 }
9028
Chris Mason917c16b2011-11-08 14:49:59 -05009029 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009030 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04009031
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009032 trans->block_rsv = &fs_info->trans_block_rsv;
9033 ret2 = btrfs_update_inode(trans, root, inode);
9034 if (ret2 && !ret)
9035 ret = ret2;
9036
9037 ret2 = btrfs_end_transaction(trans);
9038 if (ret2 && !ret)
9039 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009040 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009041 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009042out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009043 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009044
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009045 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009046}
9047
Sven Wegener3b963622008-06-09 21:57:42 -04009048/*
Chris Masond352ac62008-09-29 15:18:18 -04009049 * create a new subvolume directory/inode (helper for the ioctl).
9050 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009051int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009052 struct btrfs_root *new_root,
9053 struct btrfs_root *parent_root,
9054 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009055{
Chris Mason39279cc2007-06-12 06:35:45 -04009056 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009057 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009058 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009059
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009060 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9061 new_dirid, new_dirid,
9062 S_IFDIR | (~current_umask() & S_IRWXUGO),
9063 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009064 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009065 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009066 inode->i_op = &btrfs_dir_inode_operations;
9067 inode->i_fop = &btrfs_dir_file_operations;
9068
Miklos Szeredibfe86842011-10-28 14:13:29 +02009069 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009070 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009071 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009072
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009073 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9074 if (err)
9075 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009076 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009077 new_root->root_key.objectid, err);
9078
Yan, Zheng76dda932009-09-21 16:00:26 -04009079 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009080
Yan, Zheng76dda932009-09-21 16:00:26 -04009081 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009082 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009083}
9084
Chris Mason39279cc2007-06-12 06:35:45 -04009085struct inode *btrfs_alloc_inode(struct super_block *sb)
9086{
Josef Bacik69fe2d72017-10-19 14:15:57 -04009087 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009088 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009089 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009090
David Sterba712e36c2017-10-31 17:08:27 +01009091 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04009092 if (!ei)
9093 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009094
9095 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009096 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009097 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009098 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009099 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009100 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009101 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009102 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009103 ei->disk_i_size = 0;
9104 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009105 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009106 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009107 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009108 ei->last_unlink_trans = 0;
Filipe Manana41bd6062018-11-28 14:54:28 +00009109 ei->last_link_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009110 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009111
Josef Bacik9e0baf62011-07-15 15:16:44 +00009112 spin_lock_init(&ei->lock);
9113 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009114 if (sb->s_magic != BTRFS_TEST_MAGIC)
9115 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9116 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009117 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009118 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009119 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009120
Miao Xie16cdcec2011-04-22 18:12:22 +08009121 ei->delayed_node = NULL;
9122
chandan r9cc97d62012-07-04 12:48:07 +05309123 ei->i_otime.tv_sec = 0;
9124 ei->i_otime.tv_nsec = 0;
9125
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009126 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009127 extent_map_tree_init(&ei->extent_tree);
Josef Bacikc6100a42017-05-05 11:57:13 -04009128 extent_io_tree_init(&ei->io_tree, inode);
9129 extent_io_tree_init(&ei->io_failure_tree, inode);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009130 ei->io_tree.track_uptodate = 1;
9131 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009132 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009133 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009134 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009135 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009136 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009137 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009138 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009139 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009140
9141 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009142}
9143
Josef Bacikaaedb552013-10-11 14:44:09 -04009144#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9145void btrfs_test_destroy_inode(struct inode *inode)
9146{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009147 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009148 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9149}
9150#endif
9151
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009152static void btrfs_i_callback(struct rcu_head *head)
9153{
9154 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009155 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9156}
9157
Chris Mason39279cc2007-06-12 06:35:45 -04009158void btrfs_destroy_inode(struct inode *inode)
9159{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009160 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009161 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009162 struct btrfs_root *root = BTRFS_I(inode)->root;
9163
Al Virob3d9b7a2012-06-09 13:51:19 -04009164 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009165 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04009166 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9167 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009168 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009169 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009170 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009171 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009172 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009173
Chris Mason5a3f23d2009-03-31 13:27:11 -04009174 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009175 * This can happen where we create an inode, but somebody else also
9176 * created the same inode and we need to destroy the one we already
9177 * created.
9178 */
9179 if (!root)
9180 goto free;
9181
Chris Masond3977122009-01-05 21:25:51 -05009182 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009183 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9184 if (!ordered)
9185 break;
9186 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009187 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009188 "found ordered extent %llu %llu on inode cleanup",
9189 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009190 btrfs_remove_ordered_extent(inode, ordered);
9191 btrfs_put_ordered_extent(ordered);
9192 btrfs_put_ordered_extent(ordered);
9193 }
9194 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009195 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009196 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009197 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009198free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009199 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009200}
9201
Al Viro45321ac2010-06-07 13:43:19 -04009202int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009203{
9204 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009205
Naohiro Aota6379ef92013-06-06 09:56:34 +00009206 if (root == NULL)
9207 return 1;
9208
Liu Bofa6ac872013-02-20 14:10:23 +00009209 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009210 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009211 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009212 else
Al Viro45321ac2010-06-07 13:43:19 -04009213 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009214}
9215
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009216static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009217{
9218 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9219
9220 inode_init_once(&ei->vfs_inode);
9221}
9222
David Sterbae67c7182018-02-19 17:24:18 +01009223void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009224{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009225 /*
9226 * Make sure all delayed rcu free inodes are flushed before we
9227 * destroy cache.
9228 */
9229 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009230 kmem_cache_destroy(btrfs_inode_cachep);
9231 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009232 kmem_cache_destroy(btrfs_path_cachep);
9233 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009234}
9235
Liu Bof5c29bd2017-11-02 17:21:50 -06009236int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009237{
David Sterba837e1972012-09-07 03:00:48 -06009238 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009239 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009240 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9241 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009242 if (!btrfs_inode_cachep)
9243 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009244
David Sterba837e1972012-09-07 03:00:48 -06009245 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009246 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009247 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009248 if (!btrfs_trans_handle_cachep)
9249 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009250
David Sterba837e1972012-09-07 03:00:48 -06009251 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009252 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009253 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009254 if (!btrfs_path_cachep)
9255 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009256
David Sterba837e1972012-09-07 03:00:48 -06009257 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009258 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009259 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009260 if (!btrfs_free_space_cachep)
9261 goto fail;
9262
Chris Mason39279cc2007-06-12 06:35:45 -04009263 return 0;
9264fail:
9265 btrfs_destroy_cachep();
9266 return -ENOMEM;
9267}
9268
David Howellsa528d352017-01-31 16:46:22 +00009269static int btrfs_getattr(const struct path *path, struct kstat *stat,
9270 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009271{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009272 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009273 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009274 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009275 u32 bi_flags = BTRFS_I(inode)->flags;
9276
9277 stat->result_mask |= STATX_BTIME;
9278 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9279 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9280 if (bi_flags & BTRFS_INODE_APPEND)
9281 stat->attributes |= STATX_ATTR_APPEND;
9282 if (bi_flags & BTRFS_INODE_COMPRESS)
9283 stat->attributes |= STATX_ATTR_COMPRESSED;
9284 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9285 stat->attributes |= STATX_ATTR_IMMUTABLE;
9286 if (bi_flags & BTRFS_INODE_NODUMP)
9287 stat->attributes |= STATX_ATTR_NODUMP;
9288
9289 stat->attributes_mask |= (STATX_ATTR_APPEND |
9290 STATX_ATTR_COMPRESSED |
9291 STATX_ATTR_IMMUTABLE |
9292 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009293
Chris Mason39279cc2007-06-12 06:35:45 -04009294 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009295 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009296
9297 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009298 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009299 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009300 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009301 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009302 return 0;
9303}
9304
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009305static int btrfs_rename_exchange(struct inode *old_dir,
9306 struct dentry *old_dentry,
9307 struct inode *new_dir,
9308 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009309{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009310 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009311 struct btrfs_trans_handle *trans;
9312 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009313 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009314 struct inode *new_inode = new_dentry->d_inode;
9315 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07009316 struct timespec64 ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009317 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009318 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9319 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009320 u64 old_idx = 0;
9321 u64 new_idx = 0;
9322 u64 root_objectid;
9323 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009324 bool root_log_pinned = false;
9325 bool dest_log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009326 struct btrfs_log_ctx ctx_root;
9327 struct btrfs_log_ctx ctx_dest;
9328 bool sync_log_root = false;
9329 bool sync_log_dest = false;
9330 bool commit_transaction = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009331
9332 /* we only allow rename subvolume link between subvolumes */
9333 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9334 return -EXDEV;
9335
Filipe Mananad4682ba2018-06-11 19:24:28 +01009336 btrfs_init_log_ctx(&ctx_root, old_inode);
9337 btrfs_init_log_ctx(&ctx_dest, new_inode);
9338
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009339 /* close the race window with snapshot create/destroy ioctl */
9340 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009341 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009342 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009343 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009344
9345 /*
9346 * We want to reserve the absolute worst case amount of items. So if
9347 * both inodes are subvols and we need to unlink them then that would
9348 * require 4 item modifications, but if they are both normal inodes it
9349 * would require 5 item modifications, so we'll assume their normal
9350 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9351 * should cover the worst case number of items we'll modify.
9352 */
9353 trans = btrfs_start_transaction(root, 12);
9354 if (IS_ERR(trans)) {
9355 ret = PTR_ERR(trans);
9356 goto out_notrans;
9357 }
9358
9359 /*
9360 * We need to find a free sequence number both in the source and
9361 * in the destination directory for the exchange.
9362 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009363 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009364 if (ret)
9365 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009366 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009367 if (ret)
9368 goto out_fail;
9369
9370 BTRFS_I(old_inode)->dir_index = 0ULL;
9371 BTRFS_I(new_inode)->dir_index = 0ULL;
9372
9373 /* Reference for the source. */
9374 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9375 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009376 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009377 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009378 btrfs_pin_log_trans(root);
9379 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009380 ret = btrfs_insert_inode_ref(trans, dest,
9381 new_dentry->d_name.name,
9382 new_dentry->d_name.len,
9383 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009384 btrfs_ino(BTRFS_I(new_dir)),
9385 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009386 if (ret)
9387 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009388 }
9389
9390 /* And now for the dest. */
9391 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9392 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009393 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009394 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009395 btrfs_pin_log_trans(dest);
9396 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009397 ret = btrfs_insert_inode_ref(trans, root,
9398 old_dentry->d_name.name,
9399 old_dentry->d_name.len,
9400 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009401 btrfs_ino(BTRFS_I(old_dir)),
9402 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009403 if (ret)
9404 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009405 }
9406
9407 /* Update inode version and ctime/mtime. */
9408 inode_inc_iversion(old_dir);
9409 inode_inc_iversion(new_dir);
9410 inode_inc_iversion(old_inode);
9411 inode_inc_iversion(new_inode);
9412 old_dir->i_ctime = old_dir->i_mtime = ctime;
9413 new_dir->i_ctime = new_dir->i_mtime = ctime;
9414 old_inode->i_ctime = ctime;
9415 new_inode->i_ctime = ctime;
9416
9417 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009418 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9419 BTRFS_I(old_inode), 1);
9420 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9421 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009422 }
9423
9424 /* src is a subvolume */
9425 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9426 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009427 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009428 old_dentry->d_name.name,
9429 old_dentry->d_name.len);
9430 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009431 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9432 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009433 old_dentry->d_name.name,
9434 old_dentry->d_name.len);
9435 if (!ret)
9436 ret = btrfs_update_inode(trans, root, old_inode);
9437 }
9438 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009439 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009440 goto out_fail;
9441 }
9442
9443 /* dest is a subvolume */
9444 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9445 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009446 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009447 new_dentry->d_name.name,
9448 new_dentry->d_name.len);
9449 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009450 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9451 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009452 new_dentry->d_name.name,
9453 new_dentry->d_name.len);
9454 if (!ret)
9455 ret = btrfs_update_inode(trans, dest, new_inode);
9456 }
9457 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009458 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009459 goto out_fail;
9460 }
9461
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009462 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009463 new_dentry->d_name.name,
9464 new_dentry->d_name.len, 0, old_idx);
9465 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009466 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009467 goto out_fail;
9468 }
9469
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009470 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009471 old_dentry->d_name.name,
9472 old_dentry->d_name.len, 0, new_idx);
9473 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009474 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009475 goto out_fail;
9476 }
9477
9478 if (old_inode->i_nlink == 1)
9479 BTRFS_I(old_inode)->dir_index = old_idx;
9480 if (new_inode->i_nlink == 1)
9481 BTRFS_I(new_inode)->dir_index = new_idx;
9482
Filipe Manana86e8aa02016-05-05 02:02:27 +01009483 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009484 parent = new_dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009485 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9486 BTRFS_I(old_dir), parent,
9487 false, &ctx_root);
9488 if (ret == BTRFS_NEED_LOG_SYNC)
9489 sync_log_root = true;
9490 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9491 commit_transaction = true;
9492 ret = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009493 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009494 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009495 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009496 if (dest_log_pinned) {
Filipe Mananad4682ba2018-06-11 19:24:28 +01009497 if (!commit_transaction) {
9498 parent = old_dentry->d_parent;
9499 ret = btrfs_log_new_name(trans, BTRFS_I(new_inode),
9500 BTRFS_I(new_dir), parent,
9501 false, &ctx_dest);
9502 if (ret == BTRFS_NEED_LOG_SYNC)
9503 sync_log_dest = true;
9504 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9505 commit_transaction = true;
9506 ret = 0;
9507 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009508 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009509 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009510 }
9511out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009512 /*
9513 * If we have pinned a log and an error happened, we unpin tasks
9514 * trying to sync the log and force them to fallback to a transaction
9515 * commit if the log currently contains any of the inodes involved in
9516 * this rename operation (to ensure we do not persist a log with an
9517 * inconsistent state for any of these inodes or leading to any
9518 * inconsistencies when replayed). If the transaction was aborted, the
9519 * abortion reason is propagated to userspace when attempting to commit
9520 * the transaction. If the log does not contain any of these inodes, we
9521 * allow the tasks to sync it.
9522 */
9523 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009524 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9525 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9526 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009527 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009528 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009529 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009530
9531 if (root_log_pinned) {
9532 btrfs_end_log_trans(root);
9533 root_log_pinned = false;
9534 }
9535 if (dest_log_pinned) {
9536 btrfs_end_log_trans(dest);
9537 dest_log_pinned = false;
9538 }
9539 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009540 if (!ret && sync_log_root && !commit_transaction) {
9541 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root,
9542 &ctx_root);
9543 if (ret)
9544 commit_transaction = true;
9545 }
9546 if (!ret && sync_log_dest && !commit_transaction) {
9547 ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root,
9548 &ctx_dest);
9549 if (ret)
9550 commit_transaction = true;
9551 }
9552 if (commit_transaction) {
9553 ret = btrfs_commit_transaction(trans);
9554 } else {
9555 int ret2;
9556
9557 ret2 = btrfs_end_transaction(trans);
9558 ret = ret ? ret : ret2;
9559 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009560out_notrans:
9561 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009562 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009563 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009564 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009565
9566 return ret;
9567}
9568
9569static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9570 struct btrfs_root *root,
9571 struct inode *dir,
9572 struct dentry *dentry)
9573{
9574 int ret;
9575 struct inode *inode;
9576 u64 objectid;
9577 u64 index;
9578
9579 ret = btrfs_find_free_ino(root, &objectid);
9580 if (ret)
9581 return ret;
9582
9583 inode = btrfs_new_inode(trans, root, dir,
9584 dentry->d_name.name,
9585 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009586 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009587 objectid,
9588 S_IFCHR | WHITEOUT_MODE,
9589 &index);
9590
9591 if (IS_ERR(inode)) {
9592 ret = PTR_ERR(inode);
9593 return ret;
9594 }
9595
9596 inode->i_op = &btrfs_special_inode_operations;
9597 init_special_inode(inode, inode->i_mode,
9598 WHITEOUT_DEV);
9599
9600 ret = btrfs_init_inode_security(trans, inode, dir,
9601 &dentry->d_name);
9602 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009603 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009604
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009605 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9606 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009607 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009608 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009609
9610 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009611out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009612 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009613 if (ret)
9614 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009615 iput(inode);
9616
Filipe Mananac9901612016-05-05 01:41:57 +01009617 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009618}
9619
Chris Mason39279cc2007-06-12 06:35:45 -04009620static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009621 struct inode *new_dir, struct dentry *new_dentry,
9622 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009623{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009624 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009625 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009626 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009627 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9628 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009629 struct inode *new_inode = d_inode(new_dentry);
9630 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009631 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009632 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009633 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009634 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009635 bool log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009636 struct btrfs_log_ctx ctx;
9637 bool sync_log = false;
9638 bool commit_transaction = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009639
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009640 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009641 return -EPERM;
9642
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009643 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009644 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009645 return -EXDEV;
9646
Li Zefan33345d012011-04-20 10:31:50 +08009647 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009648 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009649 return -ENOTEMPTY;
9650
Chris Mason39279cc2007-06-12 06:35:45 -04009651 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009652 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009653 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009654
9655
9656 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009657 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009658 new_dentry->d_name.name,
9659 new_dentry->d_name.len);
9660
9661 if (ret) {
9662 if (ret == -EEXIST) {
9663 /* we shouldn't get
9664 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309665 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009666 return ret;
9667 }
9668 } else {
9669 /* maybe -EOVERFLOW */
9670 return ret;
9671 }
9672 }
9673 ret = 0;
9674
Chris Mason5a3f23d2009-03-31 13:27:11 -04009675 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009676 * we're using rename to replace one file with another. Start IO on it
9677 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009678 */
Chris Mason8d875f92014-08-12 10:47:42 -07009679 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009680 filemap_flush(old_inode->i_mapping);
9681
Yan, Zheng76dda932009-09-21 16:00:26 -04009682 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009683 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009684 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009685 /*
9686 * We want to reserve the absolute worst case amount of items. So if
9687 * both inodes are subvols and we need to unlink them then that would
9688 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009689 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009690 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9691 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009692 * If our rename has the whiteout flag, we need more 5 units for the
9693 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9694 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009695 */
Filipe Manana5062af32016-05-05 10:26:26 +01009696 trans_num_items = 11;
9697 if (flags & RENAME_WHITEOUT)
9698 trans_num_items += 5;
9699 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009700 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009701 ret = PTR_ERR(trans);
9702 goto out_notrans;
9703 }
Chris Mason5f39d392007-10-15 16:14:19 -04009704
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009705 if (dest != root)
9706 btrfs_record_root_in_trans(trans, dest);
9707
Nikolay Borisov877574e2017-02-20 13:50:33 +02009708 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009709 if (ret)
9710 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009711
Miao Xie67de1172013-12-26 13:07:06 +08009712 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009713 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009714 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009715 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009716 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009717 btrfs_pin_log_trans(root);
9718 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009719 ret = btrfs_insert_inode_ref(trans, dest,
9720 new_dentry->d_name.name,
9721 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009722 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009723 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009724 if (ret)
9725 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009726 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009727
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009728 inode_inc_iversion(old_dir);
9729 inode_inc_iversion(new_dir);
9730 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009731 old_dir->i_ctime = old_dir->i_mtime =
9732 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009733 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009734
Chris Mason12fcfd22009-03-24 10:24:20 -04009735 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009736 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9737 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009738
Li Zefan33345d012011-04-20 10:31:50 +08009739 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009740 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009741 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009742 old_dentry->d_name.name,
9743 old_dentry->d_name.len);
9744 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009745 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9746 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009747 old_dentry->d_name.name,
9748 old_dentry->d_name.len);
9749 if (!ret)
9750 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009751 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009752 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009753 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009754 goto out_fail;
9755 }
Chris Mason39279cc2007-06-12 06:35:45 -04009756
9757 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009758 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009759 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009760 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009761 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9762 root_objectid = BTRFS_I(new_inode)->location.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009763 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009764 new_dentry->d_name.name,
9765 new_dentry->d_name.len);
9766 BUG_ON(new_inode->i_nlink == 0);
9767 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009768 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9769 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009770 new_dentry->d_name.name,
9771 new_dentry->d_name.len);
9772 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009773 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009774 ret = btrfs_orphan_add(trans,
9775 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009776 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009777 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009778 goto out_fail;
9779 }
Chris Mason39279cc2007-06-12 06:35:45 -04009780 }
Josef Bacikaec74772008-07-24 12:12:38 -04009781
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009782 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009783 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009784 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009785 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009786 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009787 goto out_fail;
9788 }
Chris Mason39279cc2007-06-12 06:35:45 -04009789
Miao Xie67de1172013-12-26 13:07:06 +08009790 if (old_inode->i_nlink == 1)
9791 BTRFS_I(old_inode)->dir_index = index;
9792
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009793 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009794 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009795
Filipe Mananad4682ba2018-06-11 19:24:28 +01009796 btrfs_init_log_ctx(&ctx, old_inode);
9797 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9798 BTRFS_I(old_dir), parent,
9799 false, &ctx);
9800 if (ret == BTRFS_NEED_LOG_SYNC)
9801 sync_log = true;
9802 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9803 commit_transaction = true;
9804 ret = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009805 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009806 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009807 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009808
9809 if (flags & RENAME_WHITEOUT) {
9810 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9811 old_dentry);
9812
9813 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009814 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009815 goto out_fail;
9816 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009817 }
Chris Mason39279cc2007-06-12 06:35:45 -04009818out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009819 /*
9820 * If we have pinned the log and an error happened, we unpin tasks
9821 * trying to sync the log and force them to fallback to a transaction
9822 * commit if the log currently contains any of the inodes involved in
9823 * this rename operation (to ensure we do not persist a log with an
9824 * inconsistent state for any of these inodes or leading to any
9825 * inconsistencies when replayed). If the transaction was aborted, the
9826 * abortion reason is propagated to userspace when attempting to commit
9827 * the transaction. If the log does not contain any of these inodes, we
9828 * allow the tasks to sync it.
9829 */
9830 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009831 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9832 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9833 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009834 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009835 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009836 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009837
9838 btrfs_end_log_trans(root);
9839 log_pinned = false;
9840 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009841 if (!ret && sync_log) {
9842 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx);
9843 if (ret)
9844 commit_transaction = true;
9845 }
9846 if (commit_transaction) {
9847 ret = btrfs_commit_transaction(trans);
9848 } else {
9849 int ret2;
9850
9851 ret2 = btrfs_end_transaction(trans);
9852 ret = ret ? ret : ret2;
9853 }
Johann Lombardib44c59a2011-03-31 13:23:47 +00009854out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009855 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009856 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009857
Chris Mason39279cc2007-06-12 06:35:45 -04009858 return ret;
9859}
9860
Miklos Szeredi80ace852014-07-23 15:15:32 +02009861static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9862 struct inode *new_dir, struct dentry *new_dentry,
9863 unsigned int flags)
9864{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009865 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009866 return -EINVAL;
9867
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009868 if (flags & RENAME_EXCHANGE)
9869 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9870 new_dentry);
9871
9872 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009873}
9874
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009875struct btrfs_delalloc_work {
9876 struct inode *inode;
9877 struct completion completion;
9878 struct list_head list;
9879 struct btrfs_work work;
9880};
9881
Miao Xie8ccf6f192012-10-25 09:28:04 +00009882static void btrfs_run_delalloc_work(struct btrfs_work *work)
9883{
9884 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009885 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009886
9887 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9888 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009889 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009890 filemap_flush(inode->i_mapping);
9891 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9892 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009893 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009894
Nikolay Borisov076da912018-04-23 10:54:16 +03009895 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009896 complete(&delalloc_work->completion);
9897}
9898
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009899static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009900{
9901 struct btrfs_delalloc_work *work;
9902
David Sterba100d5702015-12-08 14:39:32 +01009903 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009904 if (!work)
9905 return NULL;
9906
9907 init_completion(&work->completion);
9908 INIT_LIST_HEAD(&work->list);
9909 work->inode = inode;
Liu Bo9e0af232014-08-15 23:36:53 +08009910 WARN_ON_ONCE(!inode);
9911 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9912 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009913
9914 return work;
9915}
9916
Chris Masond352ac62008-09-29 15:18:18 -04009917/*
9918 * some fairly slow code that needs optimization. This walks the list
9919 * of all the inodes with pending delalloc and forces them to disk.
9920 */
Ethan Lien3cd24c62018-11-01 14:49:03 +08009921static int start_delalloc_inodes(struct btrfs_root *root, int nr, bool snapshot)
Chris Masonea8c2812008-08-04 23:17:27 -04009922{
Chris Masonea8c2812008-08-04 23:17:27 -04009923 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009924 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009925 struct btrfs_delalloc_work *work, *next;
9926 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009927 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009928 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009929
Miao Xie8ccf6f192012-10-25 09:28:04 +00009930 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009931 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009932
Miao Xie573bfb72014-03-06 13:55:03 +08009933 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009934 spin_lock(&root->delalloc_lock);
9935 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009936 while (!list_empty(&splice)) {
9937 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009938 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009939
Miao Xieeb73c1b2013-05-15 07:48:22 +00009940 list_move_tail(&binode->delalloc_inodes,
9941 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009942 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009943 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009944 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009945 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009946 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009947 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009948
Ethan Lien3cd24c62018-11-01 14:49:03 +08009949 if (snapshot)
9950 set_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
9951 &binode->runtime_flags);
Nikolay Borisov076da912018-04-23 10:54:16 +03009952 work = btrfs_alloc_delalloc_work(inode);
David Sterba5d99a9982014-09-29 19:20:37 +02009953 if (!work) {
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009954 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009955 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009956 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009957 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00009958 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +08009959 btrfs_queue_work(root->fs_info->flush_workers,
9960 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +08009961 ret++;
9962 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009963 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009964 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +00009965 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04009966 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009967 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04009968
Wang Shilonga1ecaab2014-04-02 19:53:32 +08009969out:
Miao Xie1eafa6c2013-01-22 10:49:00 +00009970 list_for_each_entry_safe(work, next, &works, list) {
9971 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +03009972 wait_for_completion(&work->completion);
9973 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009974 }
9975
Nikolay Borisov81f1d392018-04-19 10:46:37 +03009976 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009977 spin_lock(&root->delalloc_lock);
9978 list_splice_tail(&splice, &root->delalloc_inodes);
9979 spin_unlock(&root->delalloc_lock);
9980 }
Miao Xie573bfb72014-03-06 13:55:03 +08009981 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009982 return ret;
9983}
9984
Ethan Lien3cd24c62018-11-01 14:49:03 +08009985int btrfs_start_delalloc_snapshot(struct btrfs_root *root)
Miao Xieeb73c1b2013-05-15 07:48:22 +00009986{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009987 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009988 int ret;
9989
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009990 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +00009991 return -EROFS;
9992
Ethan Lien3cd24c62018-11-01 14:49:03 +08009993 ret = start_delalloc_inodes(root, -1, true);
Miao Xie6c255e62014-03-06 13:55:01 +08009994 if (ret > 0)
9995 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +00009996 return ret;
9997}
9998
Nikolay Borisov82b3e532018-04-23 10:54:13 +03009999int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010000{
10001 struct btrfs_root *root;
10002 struct list_head splice;
10003 int ret;
10004
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010005 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010006 return -EROFS;
10007
10008 INIT_LIST_HEAD(&splice);
10009
Miao Xie573bfb72014-03-06 13:55:03 +080010010 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010011 spin_lock(&fs_info->delalloc_root_lock);
10012 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010013 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010014 root = list_first_entry(&splice, struct btrfs_root,
10015 delalloc_root);
10016 root = btrfs_grab_fs_root(root);
10017 BUG_ON(!root);
10018 list_move_tail(&root->delalloc_root,
10019 &fs_info->delalloc_roots);
10020 spin_unlock(&fs_info->delalloc_root_lock);
10021
Ethan Lien3cd24c62018-11-01 14:49:03 +080010022 ret = start_delalloc_inodes(root, nr, false);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010023 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010024 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010025 goto out;
10026
Miao Xie6c255e62014-03-06 13:55:01 +080010027 if (nr != -1) {
10028 nr -= ret;
10029 WARN_ON(nr < 0);
10030 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010031 spin_lock(&fs_info->delalloc_root_lock);
10032 }
10033 spin_unlock(&fs_info->delalloc_root_lock);
10034
Miao Xie6c255e62014-03-06 13:55:01 +080010035 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010036out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010037 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010038 spin_lock(&fs_info->delalloc_root_lock);
10039 list_splice_tail(&splice, &fs_info->delalloc_roots);
10040 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010041 }
Miao Xie573bfb72014-03-06 13:55:03 +080010042 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010043 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010044}
10045
Chris Mason39279cc2007-06-12 06:35:45 -040010046static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10047 const char *symname)
10048{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010049 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010050 struct btrfs_trans_handle *trans;
10051 struct btrfs_root *root = BTRFS_I(dir)->root;
10052 struct btrfs_path *path;
10053 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010054 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010055 int err;
Chris Mason39279cc2007-06-12 06:35:45 -040010056 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010057 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010058 int name_len;
10059 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010060 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010061 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010062 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010063
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010064 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010065 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010066 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010067
Josef Bacik9ed74f22009-09-11 16:12:44 -040010068 /*
10069 * 2 items for inode item and ref
10070 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010071 * 1 item for updating parent inode item
10072 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010073 * 1 item for xattr if selinux is on
10074 */
Filipe Manana9269d122015-12-31 18:16:29 +000010075 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010076 if (IS_ERR(trans))
10077 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010078
Li Zefan581bb052011-04-20 10:06:11 +080010079 err = btrfs_find_free_ino(root, &objectid);
10080 if (err)
10081 goto out_unlock;
10082
Josef Bacikaec74772008-07-24 12:12:38 -040010083 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010084 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10085 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010086 if (IS_ERR(inode)) {
10087 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -040010088 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010089 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010090 }
Chris Mason39279cc2007-06-12 06:35:45 -040010091
Casey Schauflerad19db72011-12-15 10:09:07 -050010092 /*
10093 * If the active LSM wants to access the inode during
10094 * d_instantiate it needs these. Smack checks to see
10095 * if the filesystem supports xattrs by looking at the
10096 * ops vector.
10097 */
10098 inode->i_fop = &btrfs_file_operations;
10099 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010100 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010101 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10102
10103 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10104 if (err)
Al Viro32955c52018-05-16 12:20:05 -040010105 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -050010106
Chris Mason39279cc2007-06-12 06:35:45 -040010107 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010108 if (!path) {
10109 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -040010110 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010111 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010112 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010113 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010114 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010115 datasize = btrfs_file_extent_calc_inline_size(name_len);
10116 err = btrfs_insert_empty_item(trans, root, path, &key,
10117 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010118 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010119 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -040010120 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -040010121 }
Chris Mason5f39d392007-10-15 16:14:19 -040010122 leaf = path->nodes[0];
10123 ei = btrfs_item_ptr(leaf, path->slots[0],
10124 struct btrfs_file_extent_item);
10125 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10126 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010127 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010128 btrfs_set_file_extent_encryption(leaf, ei, 0);
10129 btrfs_set_file_extent_compression(leaf, ei, 0);
10130 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10131 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10132
Chris Mason39279cc2007-06-12 06:35:45 -040010133 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010134 write_extent_buffer(leaf, symname, ptr, name_len);
10135 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010136 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010137
Chris Mason39279cc2007-06-12 06:35:45 -040010138 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010139 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -070010140 inode->i_mapping->a_ops = &btrfs_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010141 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010142 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010143 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010144 /*
10145 * Last step, add directory indexes for our symlink inode. This is the
10146 * last step to avoid extra cleanup of these indexes if an error happens
10147 * elsewhere above.
10148 */
10149 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010150 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10151 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -040010152 if (err)
10153 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -070010154
Al Viro1e2e5472018-05-04 08:23:01 -040010155 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010156
10157out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010158 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010159 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -040010160 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -040010161 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010162 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010163 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010164 return err;
10165}
Chris Mason16432982008-04-10 10:23:21 -040010166
Josef Bacik0af3d002010-06-21 14:48:16 -040010167static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10168 u64 start, u64 num_bytes, u64 min_size,
10169 loff_t actual_len, u64 *alloc_hint,
10170 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010171{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010172 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010173 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10174 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010175 struct btrfs_root *root = BTRFS_I(inode)->root;
10176 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010177 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010178 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010179 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010180 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010181 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010182 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010183 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010184
Josef Bacik0af3d002010-06-21 14:48:16 -040010185 if (trans)
10186 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010187 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010188 if (own_trans) {
10189 trans = btrfs_start_transaction(root, 3);
10190 if (IS_ERR(trans)) {
10191 ret = PTR_ERR(trans);
10192 break;
10193 }
Yan Zhengd899e052008-10-30 14:25:28 -040010194 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010195
Byongho Leeee221842015-12-15 01:42:10 +090010196 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010197 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010198 /*
10199 * If we are severely fragmented we could end up with really
10200 * small allocations, so if the allocator is returning small
10201 * chunks lets make its job easier by only searching for those
10202 * sized chunks.
10203 */
10204 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010205 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10206 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010207 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010208 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010209 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010210 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010211 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010212 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010213
Josef Bacik0b670dc2015-09-23 17:11:16 -040010214 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010215 ret = insert_reserved_file_extent(trans, inode,
10216 cur_offset, ins.objectid,
10217 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010218 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010219 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010220 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010221 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010222 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010223 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010224 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010225 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010226 break;
10227 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010228
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010229 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010230 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010231
Josef Bacik5dc562c2012-08-17 13:14:17 -040010232 em = alloc_extent_map();
10233 if (!em) {
10234 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10235 &BTRFS_I(inode)->runtime_flags);
10236 goto next;
10237 }
10238
10239 em->start = cur_offset;
10240 em->orig_start = cur_offset;
10241 em->len = ins.offset;
10242 em->block_start = ins.objectid;
10243 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010244 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010245 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010246 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010247 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10248 em->generation = trans->transid;
10249
10250 while (1) {
10251 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010252 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010253 write_unlock(&em_tree->lock);
10254 if (ret != -EEXIST)
10255 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010256 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010257 cur_offset + ins.offset - 1,
10258 0);
10259 }
10260 free_extent_map(em);
10261next:
Yan Zhengd899e052008-10-30 14:25:28 -040010262 num_bytes -= ins.offset;
10263 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010264 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010265
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010266 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010267 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010268 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010269 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010270 (actual_len > inode->i_size) &&
10271 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010272 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010273 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010274 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010275 i_size = cur_offset;
10276 i_size_write(inode, i_size);
10277 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010278 }
10279
Yan Zhengd899e052008-10-30 14:25:28 -040010280 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010281
10282 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010283 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010284 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010285 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010286 break;
10287 }
Yan Zhengd899e052008-10-30 14:25:28 -040010288
Josef Bacik0af3d002010-06-21 14:48:16 -040010289 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010290 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010291 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010292 if (cur_offset < end)
Qu Wenruobc42bda2017-02-27 15:10:39 +080010293 btrfs_free_reserved_data_space(inode, NULL, cur_offset,
Wang Xiaoguang18513092016-07-25 15:51:40 +080010294 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010295 return ret;
10296}
10297
Josef Bacik0af3d002010-06-21 14:48:16 -040010298int btrfs_prealloc_file_range(struct inode *inode, int mode,
10299 u64 start, u64 num_bytes, u64 min_size,
10300 loff_t actual_len, u64 *alloc_hint)
10301{
10302 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10303 min_size, actual_len, alloc_hint,
10304 NULL);
10305}
10306
10307int btrfs_prealloc_file_range_trans(struct inode *inode,
10308 struct btrfs_trans_handle *trans, int mode,
10309 u64 start, u64 num_bytes, u64 min_size,
10310 loff_t actual_len, u64 *alloc_hint)
10311{
10312 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10313 min_size, actual_len, alloc_hint, trans);
10314}
10315
Chris Masone6dcd2d2008-07-17 12:53:50 -040010316static int btrfs_set_page_dirty(struct page *page)
10317{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010318 return __set_page_dirty_nobuffers(page);
10319}
10320
Al Viro10556cb22011-06-20 19:28:19 -040010321static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010322{
Li Zefanb83cc962010-12-20 16:04:08 +080010323 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010324 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010325
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010326 if (mask & MAY_WRITE &&
10327 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10328 if (btrfs_root_readonly(root))
10329 return -EROFS;
10330 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10331 return -EACCES;
10332 }
Al Viro2830ba72011-06-20 19:16:29 -040010333 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010334}
Chris Mason39279cc2007-06-12 06:35:45 -040010335
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010336static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10337{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010338 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010339 struct btrfs_trans_handle *trans;
10340 struct btrfs_root *root = BTRFS_I(dir)->root;
10341 struct inode *inode = NULL;
10342 u64 objectid;
10343 u64 index;
10344 int ret = 0;
10345
10346 /*
10347 * 5 units required for adding orphan entry
10348 */
10349 trans = btrfs_start_transaction(root, 5);
10350 if (IS_ERR(trans))
10351 return PTR_ERR(trans);
10352
10353 ret = btrfs_find_free_ino(root, &objectid);
10354 if (ret)
10355 goto out;
10356
10357 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010358 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010359 if (IS_ERR(inode)) {
10360 ret = PTR_ERR(inode);
10361 inode = NULL;
10362 goto out;
10363 }
10364
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010365 inode->i_fop = &btrfs_file_operations;
10366 inode->i_op = &btrfs_file_inode_operations;
10367
10368 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010369 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10370
Chris Masonb0d5d102014-09-08 13:08:51 -070010371 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10372 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010373 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -070010374
10375 ret = btrfs_update_inode(trans, root, inode);
10376 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010377 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010378 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010379 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010380 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010381
Filipe Manana5762b5c2014-08-01 00:10:32 +010010382 /*
10383 * We set number of links to 0 in btrfs_new_inode(), and here we set
10384 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10385 * through:
10386 *
10387 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10388 */
10389 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010390 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -040010391 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010392 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010393out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010394 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010395 if (ret && inode)
10396 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010397 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010398 return ret;
10399}
10400
David Sterba5cdc84b2018-07-18 20:32:52 +020010401void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -040010402{
David Sterba5cdc84b2018-07-18 20:32:52 +020010403 struct inode *inode = tree->private_data;
Josef Bacikc6100a42017-05-05 11:57:13 -040010404 unsigned long index = start >> PAGE_SHIFT;
10405 unsigned long end_index = end >> PAGE_SHIFT;
10406 struct page *page;
10407
10408 while (index <= end_index) {
10409 page = find_get_page(inode->i_mapping, index);
10410 ASSERT(page); /* Pages should be in the extent_io_tree */
10411 set_page_writeback(page);
10412 put_page(page);
10413 index++;
10414 }
10415}
10416
Omar Sandovaled46ff32016-11-03 10:28:14 -070010417#ifdef CONFIG_SWAP
10418/*
10419 * Add an entry indicating a block group or device which is pinned by a
10420 * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
10421 * negative errno on failure.
10422 */
10423static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr,
10424 bool is_block_group)
10425{
10426 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10427 struct btrfs_swapfile_pin *sp, *entry;
10428 struct rb_node **p;
10429 struct rb_node *parent = NULL;
10430
10431 sp = kmalloc(sizeof(*sp), GFP_NOFS);
10432 if (!sp)
10433 return -ENOMEM;
10434 sp->ptr = ptr;
10435 sp->inode = inode;
10436 sp->is_block_group = is_block_group;
10437
10438 spin_lock(&fs_info->swapfile_pins_lock);
10439 p = &fs_info->swapfile_pins.rb_node;
10440 while (*p) {
10441 parent = *p;
10442 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
10443 if (sp->ptr < entry->ptr ||
10444 (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
10445 p = &(*p)->rb_left;
10446 } else if (sp->ptr > entry->ptr ||
10447 (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
10448 p = &(*p)->rb_right;
10449 } else {
10450 spin_unlock(&fs_info->swapfile_pins_lock);
10451 kfree(sp);
10452 return 1;
10453 }
10454 }
10455 rb_link_node(&sp->node, parent, p);
10456 rb_insert_color(&sp->node, &fs_info->swapfile_pins);
10457 spin_unlock(&fs_info->swapfile_pins_lock);
10458 return 0;
10459}
10460
10461/* Free all of the entries pinned by this swapfile. */
10462static void btrfs_free_swapfile_pins(struct inode *inode)
10463{
10464 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10465 struct btrfs_swapfile_pin *sp;
10466 struct rb_node *node, *next;
10467
10468 spin_lock(&fs_info->swapfile_pins_lock);
10469 node = rb_first(&fs_info->swapfile_pins);
10470 while (node) {
10471 next = rb_next(node);
10472 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
10473 if (sp->inode == inode) {
10474 rb_erase(&sp->node, &fs_info->swapfile_pins);
10475 if (sp->is_block_group)
10476 btrfs_put_block_group(sp->ptr);
10477 kfree(sp);
10478 }
10479 node = next;
10480 }
10481 spin_unlock(&fs_info->swapfile_pins_lock);
10482}
10483
10484struct btrfs_swap_info {
10485 u64 start;
10486 u64 block_start;
10487 u64 block_len;
10488 u64 lowest_ppage;
10489 u64 highest_ppage;
10490 unsigned long nr_pages;
10491 int nr_extents;
10492};
10493
10494static int btrfs_add_swap_extent(struct swap_info_struct *sis,
10495 struct btrfs_swap_info *bsi)
10496{
10497 unsigned long nr_pages;
10498 u64 first_ppage, first_ppage_reported, next_ppage;
10499 int ret;
10500
10501 first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT;
10502 next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len,
10503 PAGE_SIZE) >> PAGE_SHIFT;
10504
10505 if (first_ppage >= next_ppage)
10506 return 0;
10507 nr_pages = next_ppage - first_ppage;
10508
10509 first_ppage_reported = first_ppage;
10510 if (bsi->start == 0)
10511 first_ppage_reported++;
10512 if (bsi->lowest_ppage > first_ppage_reported)
10513 bsi->lowest_ppage = first_ppage_reported;
10514 if (bsi->highest_ppage < (next_ppage - 1))
10515 bsi->highest_ppage = next_ppage - 1;
10516
10517 ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage);
10518 if (ret < 0)
10519 return ret;
10520 bsi->nr_extents += ret;
10521 bsi->nr_pages += nr_pages;
10522 return 0;
10523}
10524
10525static void btrfs_swap_deactivate(struct file *file)
10526{
10527 struct inode *inode = file_inode(file);
10528
10529 btrfs_free_swapfile_pins(inode);
10530 atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles);
10531}
10532
10533static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10534 sector_t *span)
10535{
10536 struct inode *inode = file_inode(file);
10537 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10538 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
10539 struct extent_state *cached_state = NULL;
10540 struct extent_map *em = NULL;
10541 struct btrfs_device *device = NULL;
10542 struct btrfs_swap_info bsi = {
10543 .lowest_ppage = (sector_t)-1ULL,
10544 };
10545 int ret = 0;
10546 u64 isize;
10547 u64 start;
10548
10549 /*
10550 * If the swap file was just created, make sure delalloc is done. If the
10551 * file changes again after this, the user is doing something stupid and
10552 * we don't really care.
10553 */
10554 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
10555 if (ret)
10556 return ret;
10557
10558 /*
10559 * The inode is locked, so these flags won't change after we check them.
10560 */
10561 if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) {
10562 btrfs_warn(fs_info, "swapfile must not be compressed");
10563 return -EINVAL;
10564 }
10565 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) {
10566 btrfs_warn(fs_info, "swapfile must not be copy-on-write");
10567 return -EINVAL;
10568 }
10569 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
10570 btrfs_warn(fs_info, "swapfile must not be checksummed");
10571 return -EINVAL;
10572 }
10573
10574 /*
10575 * Balance or device remove/replace/resize can move stuff around from
10576 * under us. The EXCL_OP flag makes sure they aren't running/won't run
10577 * concurrently while we are mapping the swap extents, and
10578 * fs_info->swapfile_pins prevents them from running while the swap file
10579 * is active and moving the extents. Note that this also prevents a
10580 * concurrent device add which isn't actually necessary, but it's not
10581 * really worth the trouble to allow it.
10582 */
10583 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
10584 btrfs_warn(fs_info,
10585 "cannot activate swapfile while exclusive operation is running");
10586 return -EBUSY;
10587 }
10588 /*
10589 * Snapshots can create extents which require COW even if NODATACOW is
10590 * set. We use this counter to prevent snapshots. We must increment it
10591 * before walking the extents because we don't want a concurrent
10592 * snapshot to run after we've already checked the extents.
10593 */
10594 atomic_inc(&BTRFS_I(inode)->root->nr_swapfiles);
10595
10596 isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize);
10597
10598 lock_extent_bits(io_tree, 0, isize - 1, &cached_state);
10599 start = 0;
10600 while (start < isize) {
10601 u64 logical_block_start, physical_block_start;
10602 struct btrfs_block_group_cache *bg;
10603 u64 len = isize - start;
10604
10605 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
10606 if (IS_ERR(em)) {
10607 ret = PTR_ERR(em);
10608 goto out;
10609 }
10610
10611 if (em->block_start == EXTENT_MAP_HOLE) {
10612 btrfs_warn(fs_info, "swapfile must not have holes");
10613 ret = -EINVAL;
10614 goto out;
10615 }
10616 if (em->block_start == EXTENT_MAP_INLINE) {
10617 /*
10618 * It's unlikely we'll ever actually find ourselves
10619 * here, as a file small enough to fit inline won't be
10620 * big enough to store more than the swap header, but in
10621 * case something changes in the future, let's catch it
10622 * here rather than later.
10623 */
10624 btrfs_warn(fs_info, "swapfile must not be inline");
10625 ret = -EINVAL;
10626 goto out;
10627 }
10628 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
10629 btrfs_warn(fs_info, "swapfile must not be compressed");
10630 ret = -EINVAL;
10631 goto out;
10632 }
10633
10634 logical_block_start = em->block_start + (start - em->start);
10635 len = min(len, em->len - (start - em->start));
10636 free_extent_map(em);
10637 em = NULL;
10638
10639 ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL);
10640 if (ret < 0) {
10641 goto out;
10642 } else if (ret) {
10643 ret = 0;
10644 } else {
10645 btrfs_warn(fs_info,
10646 "swapfile must not be copy-on-write");
10647 ret = -EINVAL;
10648 goto out;
10649 }
10650
10651 em = btrfs_get_chunk_map(fs_info, logical_block_start, len);
10652 if (IS_ERR(em)) {
10653 ret = PTR_ERR(em);
10654 goto out;
10655 }
10656
10657 if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
10658 btrfs_warn(fs_info,
10659 "swapfile must have single data profile");
10660 ret = -EINVAL;
10661 goto out;
10662 }
10663
10664 if (device == NULL) {
10665 device = em->map_lookup->stripes[0].dev;
10666 ret = btrfs_add_swapfile_pin(inode, device, false);
10667 if (ret == 1)
10668 ret = 0;
10669 else if (ret)
10670 goto out;
10671 } else if (device != em->map_lookup->stripes[0].dev) {
10672 btrfs_warn(fs_info, "swapfile must be on one device");
10673 ret = -EINVAL;
10674 goto out;
10675 }
10676
10677 physical_block_start = (em->map_lookup->stripes[0].physical +
10678 (logical_block_start - em->start));
10679 len = min(len, em->len - (logical_block_start - em->start));
10680 free_extent_map(em);
10681 em = NULL;
10682
10683 bg = btrfs_lookup_block_group(fs_info, logical_block_start);
10684 if (!bg) {
10685 btrfs_warn(fs_info,
10686 "could not find block group containing swapfile");
10687 ret = -EINVAL;
10688 goto out;
10689 }
10690
10691 ret = btrfs_add_swapfile_pin(inode, bg, true);
10692 if (ret) {
10693 btrfs_put_block_group(bg);
10694 if (ret == 1)
10695 ret = 0;
10696 else
10697 goto out;
10698 }
10699
10700 if (bsi.block_len &&
10701 bsi.block_start + bsi.block_len == physical_block_start) {
10702 bsi.block_len += len;
10703 } else {
10704 if (bsi.block_len) {
10705 ret = btrfs_add_swap_extent(sis, &bsi);
10706 if (ret)
10707 goto out;
10708 }
10709 bsi.start = start;
10710 bsi.block_start = physical_block_start;
10711 bsi.block_len = len;
10712 }
10713
10714 start += len;
10715 }
10716
10717 if (bsi.block_len)
10718 ret = btrfs_add_swap_extent(sis, &bsi);
10719
10720out:
10721 if (!IS_ERR_OR_NULL(em))
10722 free_extent_map(em);
10723
10724 unlock_extent_cached(io_tree, 0, isize - 1, &cached_state);
10725
10726 if (ret)
10727 btrfs_swap_deactivate(file);
10728
10729 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
10730
10731 if (ret)
10732 return ret;
10733
10734 if (device)
10735 sis->bdev = device->bdev;
10736 *span = bsi.highest_ppage - bsi.lowest_ppage + 1;
10737 sis->max = bsi.nr_pages;
10738 sis->pages = bsi.nr_pages - 1;
10739 sis->highest_bit = bsi.nr_pages - 1;
10740 return bsi.nr_extents;
10741}
10742#else
10743static void btrfs_swap_deactivate(struct file *file)
10744{
10745}
10746
10747static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10748 sector_t *span)
10749{
10750 return -EOPNOTSUPP;
10751}
10752#endif
10753
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010754static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010755 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010756 .lookup = btrfs_lookup,
10757 .create = btrfs_create,
10758 .unlink = btrfs_unlink,
10759 .link = btrfs_link,
10760 .mkdir = btrfs_mkdir,
10761 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010762 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010763 .symlink = btrfs_symlink,
10764 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010765 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010766 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010767 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010768 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010769 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010770 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010771 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010772};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010773static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010774 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010775 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010776 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010777};
Yan, Zheng76dda932009-09-21 16:00:26 -040010778
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010779static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010780 .llseek = generic_file_llseek,
10781 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010782 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010783 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010784 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010785#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010786 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010787#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010788 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010789 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010790};
10791
David Sterba20e55062015-11-19 11:42:28 +010010792static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010793 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010794 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010795 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
10796};
10797
Chris Mason35054392009-01-21 13:11:13 -050010798/*
10799 * btrfs doesn't support the bmap operation because swapfiles
10800 * use bmap to make a mapping of extents in the file. They assume
10801 * these extents won't change over the life of the file and they
10802 * use the bmap result to do IO directly to the drive.
10803 *
10804 * the btrfs bmap call would return logical addresses that aren't
10805 * suitable for IO and they also will change frequently as COW
10806 * operations happen. So, swapfile + btrfs == corruption.
10807 *
10808 * For now we're avoiding this by dropping bmap.
10809 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010810static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010811 .readpage = btrfs_readpage,
10812 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010813 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010814 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010815 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010816 .invalidatepage = btrfs_invalidatepage,
10817 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010818 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010819 .error_remove_page = generic_error_remove_page,
Omar Sandovaled46ff32016-11-03 10:28:14 -070010820 .swap_activate = btrfs_swap_activate,
10821 .swap_deactivate = btrfs_swap_deactivate,
Chris Mason39279cc2007-06-12 06:35:45 -040010822};
10823
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010824static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010825 .getattr = btrfs_getattr,
10826 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010827 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010828 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010829 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010830 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010831 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010832 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010833};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010834static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010835 .getattr = btrfs_getattr,
10836 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010837 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010838 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010839 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010840 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010841 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010842};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010843static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010844 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010845 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010846 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010847 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010848 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010849 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010850};
Yan, Zheng76dda932009-09-21 16:00:26 -040010851
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010852const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010853 .d_delete = btrfs_dentry_delete,
10854};