blob: 2d8aacf072c00bc6248fe7f3a229d85b3cc028c6 [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
107 * from the fill_dellaloc() callback.
108 *
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 Borisov5eaad972018-11-01 14:09:46 +02001589int btrfs_run_delalloc_range(void *private_data, struct page *locked_page,
1590 u64 start, u64 end, int *page_started, unsigned long *nr_written,
1591 struct writeback_control *wbc)
Chris Masonbe20aa92007-12-17 20:14:01 -05001592{
Josef Bacikc6100a42017-05-05 11:57:13 -04001593 struct inode *inode = private_data;
Chris Masonbe20aa92007-12-17 20:14:01 -05001594 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001595 int force_cow = need_force_cow(inode, start, end);
Liu Bof82b7352017-10-23 23:18:16 -06001596 unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Masona2135012008-06-25 16:01:30 -04001597
Wang Shilong47059d92014-07-03 18:22:07 +08001598 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001599 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001600 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001601 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001602 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001603 page_started, 0, nr_written);
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001604 } else if (!inode_need_compress(inode, start, end)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001605 ret = cow_file_range(inode, locked_page, start, end, end,
1606 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001607 } else {
1608 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1609 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001610 ret = cow_file_range_async(inode, locked_page, start, end,
Liu Bof82b7352017-10-23 23:18:16 -06001611 page_started, nr_written,
1612 write_flags);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001613 }
Qu Wenruo524272602017-03-08 10:25:52 +08001614 if (ret)
Nikolay Borisovd1051d62018-11-21 17:10:52 +02001615 btrfs_cleanup_ordered_extents(inode, locked_page, start,
1616 end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001617 return ret;
1618}
1619
Nikolay Borisovabbb55f2018-11-01 14:09:53 +02001620void btrfs_split_delalloc_extent(struct inode *inode,
1621 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001622{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001623 u64 size;
1624
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001625 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001626 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001627 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001628
Josef Bacikdcab6a32015-02-11 15:08:59 -05001629 size = orig->end - orig->start + 1;
1630 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001631 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001632 u64 new_size;
1633
1634 /*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001635 * See the explanation in btrfs_merge_delalloc_extent, the same
Josef Bacikba117212015-03-13 15:01:24 -04001636 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001637 */
1638 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001639 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001640 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001641 num_extents += count_max_extents(new_size);
1642 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001643 return;
1644 }
1645
Josef Bacik9e0baf62011-07-15 15:16:44 +00001646 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001647 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001648 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001649}
1650
1651/*
Nikolay Borisov5c848192018-11-01 14:09:52 +02001652 * Handle merged delayed allocation extents so we can keep track of new extents
1653 * that are just merged onto old extents, such as when we are doing sequential
1654 * writes, so we can properly account for the metadata space we'll need.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001655 */
Nikolay Borisov5c848192018-11-01 14:09:52 +02001656void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
1657 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001658{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001659 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001660 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001661
Josef Bacik9ed74f22009-09-11 16:12:44 -04001662 /* not delalloc, ignore it */
1663 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001664 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001665
Josef Bacik8461a3d2015-03-13 15:12:08 -04001666 if (new->start > other->start)
1667 new_size = new->end - other->start + 1;
1668 else
1669 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001670
1671 /* we're not bigger than the max, unreserve the space and go */
1672 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1673 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001674 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001675 spin_unlock(&BTRFS_I(inode)->lock);
1676 return;
1677 }
1678
1679 /*
Josef Bacikba117212015-03-13 15:01:24 -04001680 * We have to add up either side to figure out how many extents were
1681 * accounted for before we merged into one big extent. If the number of
1682 * extents we accounted for is <= the amount we need for the new range
1683 * then we can return, otherwise drop. Think of it like this
1684 *
1685 * [ 4k][MAX_SIZE]
1686 *
1687 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1688 * need 2 outstanding extents, on one side we have 1 and the other side
1689 * we have 1 so they are == and we can return. But in this case
1690 *
1691 * [MAX_SIZE+4k][MAX_SIZE+4k]
1692 *
1693 * Each range on their own accounts for 2 extents, but merged together
1694 * they are only 3 extents worth of accounting, so we need to drop in
1695 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001696 */
Josef Bacikba117212015-03-13 15:01:24 -04001697 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001698 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001699 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001700 num_extents += count_max_extents(old_size);
1701 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001702 return;
1703
Josef Bacik9e0baf62011-07-15 15:16:44 +00001704 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04001705 btrfs_mod_outstanding_extents(BTRFS_I(inode), -1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001706 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001707}
1708
Miao Xieeb73c1b2013-05-15 07:48:22 +00001709static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1710 struct inode *inode)
1711{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001712 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1713
Miao Xieeb73c1b2013-05-15 07:48:22 +00001714 spin_lock(&root->delalloc_lock);
1715 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1716 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1717 &root->delalloc_inodes);
1718 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1719 &BTRFS_I(inode)->runtime_flags);
1720 root->nr_delalloc_inodes++;
1721 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001723 BUG_ON(!list_empty(&root->delalloc_root));
1724 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001725 &fs_info->delalloc_roots);
1726 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001727 }
1728 }
1729 spin_unlock(&root->delalloc_lock);
1730}
1731
Nikolay Borisov2b877332018-04-27 12:21:51 +03001732
1733void __btrfs_del_delalloc_inode(struct btrfs_root *root,
1734 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001735{
David Sterba3ffbd682018-06-29 10:56:42 +02001736 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001737
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001738 if (!list_empty(&inode->delalloc_inodes)) {
1739 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001740 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001741 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001742 root->nr_delalloc_inodes--;
1743 if (!root->nr_delalloc_inodes) {
Nikolay Borisov7c8a0d32018-04-27 12:21:52 +03001744 ASSERT(list_empty(&root->delalloc_inodes));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001745 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001746 BUG_ON(list_empty(&root->delalloc_root));
1747 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001748 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001749 }
1750 }
Nikolay Borisov2b877332018-04-27 12:21:51 +03001751}
1752
1753static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1754 struct btrfs_inode *inode)
1755{
1756 spin_lock(&root->delalloc_lock);
1757 __btrfs_del_delalloc_inode(root, inode);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001758 spin_unlock(&root->delalloc_lock);
1759}
1760
Chris Masond352ac62008-09-29 15:18:18 -04001761/*
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001762 * Properly track delayed allocation bytes in the inode and to maintain the
1763 * list of inodes that have pending delalloc work to be done.
Chris Masond352ac62008-09-29 15:18:18 -04001764 */
Nikolay Borisove06a1fc2018-11-01 14:09:50 +02001765void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
1766 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001767{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001768 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1769
Wang Shilong47059d92014-07-03 18:22:07 +08001770 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1771 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001772 /*
1773 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001774 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001775 * bit, which is only set or cleared with irqs on
1776 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001777 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001778 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001779 u64 len = state->end + 1 - state->start;
Josef Bacik8b62f872017-10-19 14:15:55 -04001780 u32 num_extents = count_max_extents(len);
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001781 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001782
Josef Bacik8b62f872017-10-19 14:15:55 -04001783 spin_lock(&BTRFS_I(inode)->lock);
1784 btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents);
1785 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001786
Josef Bacik6a3891c2015-03-16 17:38:52 -04001787 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001788 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001789 return;
1790
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001791 percpu_counter_add_batch(&fs_info->delalloc_bytes, len,
1792 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001793 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001794 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001795 if (*bits & EXTENT_DEFRAG)
1796 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001797 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001798 &BTRFS_I(inode)->runtime_flags))
1799 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001800 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001801 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001802
1803 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1804 (*bits & EXTENT_DELALLOC_NEW)) {
1805 spin_lock(&BTRFS_I(inode)->lock);
1806 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1807 state->start;
1808 spin_unlock(&BTRFS_I(inode)->lock);
1809 }
Chris Mason291d6732008-01-29 15:55:23 -05001810}
1811
Chris Masond352ac62008-09-29 15:18:18 -04001812/*
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001813 * Once a range is no longer delalloc this function ensures that proper
1814 * accounting happens.
Chris Masond352ac62008-09-29 15:18:18 -04001815 */
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001816void btrfs_clear_delalloc_extent(struct inode *vfs_inode,
1817 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001818{
Nikolay Borisova36bb5f2018-11-01 14:09:51 +02001819 struct btrfs_inode *inode = BTRFS_I(vfs_inode);
1820 struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001821 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001822 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001823
Filipe Manana4a4b9642017-07-27 19:52:55 +01001824 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) {
1825 spin_lock(&inode->lock);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001826 inode->defrag_bytes -= len;
Filipe Manana4a4b9642017-07-27 19:52:55 +01001827 spin_unlock(&inode->lock);
1828 }
Wang Shilong47059d92014-07-03 18:22:07 +08001829
Chris Mason75eff682008-12-15 15:54:40 -05001830 /*
1831 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001832 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001833 * bit, which is only set or cleared with irqs on
1834 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001835 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001836 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001837 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001838
Josef Bacik8b62f872017-10-19 14:15:55 -04001839 spin_lock(&inode->lock);
1840 btrfs_mod_outstanding_extents(inode, -num_extents);
1841 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001842
Josef Bacikb6d08f02013-09-27 14:57:43 -04001843 /*
1844 * We don't reserve metadata space for space cache inodes so we
1845 * don't need to call dellalloc_release_metadata if there is an
1846 * error.
1847 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001848 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001849 root != fs_info->tree_root)
Qu Wenruo43b18592017-12-12 15:34:32 +08001850 btrfs_delalloc_release_metadata(inode, len, false);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001851
Josef Bacik6a3891c2015-03-16 17:38:52 -04001852 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001853 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001854 return;
1855
Filipe Mananaa315e682017-03-06 23:04:20 +00001856 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1857 do_list && !(state->state & EXTENT_NORESERVE) &&
1858 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001859 btrfs_free_reserved_data_space_noquota(
1860 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001861 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001862
Nikolay Borisov104b4e52017-06-20 21:01:20 +03001863 percpu_counter_add_batch(&fs_info->delalloc_bytes, -len,
1864 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001865 spin_lock(&inode->lock);
1866 inode->delalloc_bytes -= len;
1867 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001868 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001869 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001870 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001871 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001872 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001873
1874 if ((state->state & EXTENT_DELALLOC_NEW) &&
1875 (*bits & EXTENT_DELALLOC_NEW)) {
1876 spin_lock(&inode->lock);
1877 ASSERT(inode->new_delalloc_bytes >= len);
1878 inode->new_delalloc_bytes -= len;
1879 spin_unlock(&inode->lock);
1880 }
Chris Mason291d6732008-01-29 15:55:23 -05001881}
1882
Chris Masond352ac62008-09-29 15:18:18 -04001883/*
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001884 * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit
1885 * in a chunk's stripe. This function ensures that bios do not span a
1886 * stripe/chunk
Liu Bo6f034ec2016-06-22 18:31:49 -07001887 *
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001888 * @page - The page we are about to add to the bio
1889 * @size - size we want to add to the bio
1890 * @bio - bio we want to ensure is smaller than a stripe
1891 * @bio_flags - flags of the bio
1892 *
1893 * return 1 if page cannot be added to the bio
1894 * return 0 if page can be added to the bio
Liu Bo6f034ec2016-06-22 18:31:49 -07001895 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001896 */
Nikolay Borisovda12fe52018-11-27 20:57:58 +02001897int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
1898 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001899{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001900 struct inode *inode = page->mapping->host;
1901 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001902 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001903 u64 length = 0;
1904 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001905 int ret;
1906
Chris Mason771ed682008-11-06 22:02:51 -05001907 if (bio_flags & EXTENT_BIO_COMPRESSED)
1908 return 0;
1909
Kent Overstreet4f024f32013-10-11 15:44:27 -07001910 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001911 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001912 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1913 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001914 if (ret < 0)
1915 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001916 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001917 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001918 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001919}
1920
Chris Masond352ac62008-09-29 15:18:18 -04001921/*
1922 * in order to insert checksums into the metadata in large chunks,
1923 * we wait until bio submission time. All the pages in the bio are
1924 * checksummed and sums are attached onto the ordered extent record.
1925 *
1926 * At IO completion time the cums attached on the ordered extent record
1927 * are inserted into the btree
1928 */
David Sterbad0ee3932018-03-08 14:35:48 +01001929static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001930 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001931{
Josef Bacikc6100a42017-05-05 11:57:13 -04001932 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001933 blk_status_t ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001934
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001935 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001936 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001937 return 0;
1938}
Chris Masone0156402008-04-16 11:15:20 -04001939
Chris Mason4a69a412008-11-06 22:03:00 -05001940/*
Chris Masoncad321a2008-12-17 14:51:42 -05001941 * extent_io.c submission hook. This does the right thing for csum calculation
Liu Bo4c274bc2017-11-01 17:19:27 -06001942 * on write, or reading the csums from the tree before a read.
1943 *
1944 * Rules about async/sync submit,
1945 * a) read: sync submit
1946 *
1947 * b) write without checksum: sync submit
1948 *
1949 * c) write with checksum:
1950 * c-1) if bio is issued by fsync: sync submit
1951 * (sync_writers != 0)
1952 *
1953 * c-2) if root is reloc root: sync submit
1954 * (only in case of buffered IO)
1955 *
1956 * c-3) otherwise: async submit
Chris Masond352ac62008-09-29 15:18:18 -04001957 */
Linus Torvalds8c27cb32017-07-05 16:41:23 -07001958static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio,
Josef Bacikc6100a42017-05-05 11:57:13 -04001959 int mirror_num, unsigned long bio_flags,
1960 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001961{
Josef Bacikc6100a42017-05-05 11:57:13 -04001962 struct inode *inode = private_data;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001963 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001964 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301965 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001966 blk_status_t ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001967 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001968 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001969
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001970 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001971
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001972 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301973 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001974
Mike Christie37226b22016-06-05 14:31:52 -05001975 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001976 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001977 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001978 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001979
Chris Masond20f7042008-12-08 16:58:54 -05001980 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001981 ret = btrfs_submit_compressed_read(inode, bio,
1982 mirror_num,
1983 bio_flags);
1984 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001985 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001986 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001987 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001988 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001989 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001990 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001991 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001992 /* csum items have already been cloned */
1993 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1994 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001995 /* we're doing a write, do the async checksumming */
Josef Bacikc6100a42017-05-05 11:57:13 -04001996 ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags,
1997 bio_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02001998 btrfs_submit_bio_start);
Stefan Behrens61891922012-11-05 18:51:52 +01001999 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05002000 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002001 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05002002 if (ret)
2003 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04002004 }
2005
Chris Mason0b86a832008-03-24 15:01:56 -04002006mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002007 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01002008
2009out:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002010 if (ret) {
2011 bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002012 bio_endio(bio);
2013 }
Stefan Behrens61891922012-11-05 18:51:52 +01002014 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05002015}
Chris Mason6885f302008-02-20 16:11:05 -05002016
Chris Masond352ac62008-09-29 15:18:18 -04002017/*
2018 * given a list of ordered sums record them in the inode. This happens
2019 * at IO completion time based on sums calculated at bio submission time.
2020 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002021static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002022 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002023{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002024 struct btrfs_ordered_sum *sum;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002025 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002026
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002027 list_for_each_entry(sum, list, list) {
David Sterba7c2871a2017-11-08 01:07:43 +01002028 trans->adding_csums = true;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002029 ret = btrfs_csum_file_blocks(trans,
Chris Masond20f7042008-12-08 16:58:54 -05002030 BTRFS_I(inode)->root->fs_info->csum_root, sum);
David Sterba7c2871a2017-11-08 01:07:43 +01002031 trans->adding_csums = false;
Nikolay Borisovac01f262018-01-08 10:59:43 +02002032 if (ret)
2033 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002034 }
2035 return 0;
2036}
2037
Josef Bacik2ac55d42010-02-03 19:33:23 +00002038int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002039 unsigned int extra_bits,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002040 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002041{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002042 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002043 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Filipe Mananae3b8a482017-11-04 00:16:59 +00002044 extra_bits, cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002045}
2046
Chris Masond352ac62008-09-29 15:18:18 -04002047/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002048struct btrfs_writepage_fixup {
2049 struct page *page;
2050 struct btrfs_work work;
2051};
2052
Christoph Hellwigb2950862008-12-02 09:54:17 -05002053static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002054{
2055 struct btrfs_writepage_fixup *fixup;
2056 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002057 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08002058 struct extent_changeset *data_reserved = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002059 struct page *page;
2060 struct inode *inode;
2061 u64 page_start;
2062 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002063 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002064
2065 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2066 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002067again:
Chris Mason247e7432008-07-17 12:53:51 -04002068 lock_page(page);
2069 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2070 ClearPageChecked(page);
2071 goto out_page;
2072 }
2073
2074 inode = page->mapping->host;
2075 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002077
David Sterbaff13db42015-12-03 14:30:40 +01002078 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002079 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002080
2081 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002082 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002083 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002084
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002085 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002086 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002087 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002088 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
David Sterbae43bbe52017-12-12 21:43:52 +01002089 page_end, &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002090 unlock_page(page);
2091 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002092 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002093 goto again;
2094 }
Chris Mason247e7432008-07-17 12:53:51 -04002095
Qu Wenruo364ecf32017-02-27 15:10:38 +08002096 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002097 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002098 if (ret) {
2099 mapping_set_error(page->mapping, ret);
2100 end_extent_writepage(page, ret, page_start, page_end);
2101 ClearPageChecked(page);
2102 goto out;
2103 }
2104
Nikolay Borisovf3038ee2017-12-05 09:29:19 +02002105 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
2106 &cached_state, 0);
2107 if (ret) {
2108 mapping_set_error(page->mapping, ret);
2109 end_extent_writepage(page, ret, page_start, page_end);
2110 ClearPageChecked(page);
2111 goto out;
2112 }
2113
Chris Mason247e7432008-07-17 12:53:51 -04002114 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002115 set_page_dirty(page);
Qu Wenruo43b18592017-12-12 15:34:32 +08002116 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false);
Chris Mason247e7432008-07-17 12:53:51 -04002117out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002118 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002119 &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04002120out_page:
2121 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002122 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002123 kfree(fixup);
Qu Wenruo364ecf32017-02-27 15:10:38 +08002124 extent_changeset_free(data_reserved);
Chris Mason247e7432008-07-17 12:53:51 -04002125}
2126
2127/*
2128 * There are a few paths in the higher layers of the kernel that directly
2129 * set the page dirty bit without asking the filesystem if it is a
2130 * good idea. This causes problems because we want to make sure COW
2131 * properly happens and the data=ordered rules are followed.
2132 *
Chris Masonc8b97812008-10-29 14:49:59 -04002133 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002134 * hasn't been properly setup for IO. We kick off an async process
2135 * to fix it up. The async helper will wait for ordered extents, set
2136 * the delalloc bit and make it safe to write the page.
2137 */
Nikolay Borisovd75855b2018-11-01 14:09:47 +02002138int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002139{
2140 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002141 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002142 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002143
Chris Mason8b62b722009-09-02 16:53:46 -04002144 /* this page is properly in the ordered list */
2145 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002146 return 0;
2147
2148 if (PageChecked(page))
2149 return -EAGAIN;
2150
2151 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2152 if (!fixup)
2153 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002154
Chris Mason247e7432008-07-17 12:53:51 -04002155 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002156 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002157 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2158 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002159 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002160 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002161 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002162}
2163
Yan Zhengd899e052008-10-30 14:25:28 -04002164static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2165 struct inode *inode, u64 file_pos,
2166 u64 disk_bytenr, u64 disk_num_bytes,
2167 u64 num_bytes, u64 ram_bytes,
2168 u8 compression, u8 encryption,
2169 u16 other_encoding, int extent_type)
2170{
2171 struct btrfs_root *root = BTRFS_I(inode)->root;
2172 struct btrfs_file_extent_item *fi;
2173 struct btrfs_path *path;
2174 struct extent_buffer *leaf;
2175 struct btrfs_key ins;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002176 u64 qg_released;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002177 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002178 int ret;
2179
2180 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002181 if (!path)
2182 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002183
Chris Masona1ed8352009-09-11 12:27:37 -04002184 /*
2185 * we may be replacing one extent in the tree with another.
2186 * The new extent is pinned in the extent map, and we don't want
2187 * to drop it from the cache until it is completely in the btree.
2188 *
2189 * So, tell btrfs_drop_extents to leave this extent in the cache.
2190 * the caller is expected to unpin it and allow it to be merged
2191 * with the others.
2192 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002193 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2194 file_pos + num_bytes, NULL, 0,
2195 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002196 if (ret)
2197 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002198
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002199 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002200 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002201 ins.offset = file_pos;
2202 ins.type = BTRFS_EXTENT_DATA_KEY;
2203
2204 path->leave_spinning = 1;
2205 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2206 sizeof(*fi));
2207 if (ret)
2208 goto out;
2209 }
Yan Zhengd899e052008-10-30 14:25:28 -04002210 leaf = path->nodes[0];
2211 fi = btrfs_item_ptr(leaf, path->slots[0],
2212 struct btrfs_file_extent_item);
2213 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2214 btrfs_set_file_extent_type(leaf, fi, extent_type);
2215 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2216 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2217 btrfs_set_file_extent_offset(leaf, fi, 0);
2218 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2219 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2220 btrfs_set_file_extent_compression(leaf, fi, compression);
2221 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2222 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002223
Yan Zhengd899e052008-10-30 14:25:28 -04002224 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002225 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002226
2227 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002228
2229 ins.objectid = disk_bytenr;
2230 ins.offset = disk_num_bytes;
2231 ins.type = BTRFS_EXTENT_ITEM_KEY;
Qu Wenruoa12b8772017-02-27 15:10:37 +08002232
Qu Wenruo297d7502015-09-08 17:08:37 +08002233 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002234 * Release the reserved range from inode dirty range map, as it is
2235 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002236 */
Qu Wenruoa12b8772017-02-27 15:10:37 +08002237 ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
2238 if (ret < 0)
2239 goto out;
2240 qg_released = ret;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002241 ret = btrfs_alloc_reserved_file_extent(trans, root,
2242 btrfs_ino(BTRFS_I(inode)),
2243 file_pos, qg_released, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002244out:
Yan Zhengd899e052008-10-30 14:25:28 -04002245 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002246
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002248}
2249
Liu Bo38c227d2013-01-29 03:18:40 +00002250/* snapshot-aware defrag */
2251struct sa_defrag_extent_backref {
2252 struct rb_node node;
2253 struct old_sa_defrag_extent *old;
2254 u64 root_id;
2255 u64 inum;
2256 u64 file_pos;
2257 u64 extent_offset;
2258 u64 num_bytes;
2259 u64 generation;
2260};
2261
2262struct old_sa_defrag_extent {
2263 struct list_head list;
2264 struct new_sa_defrag_extent *new;
2265
2266 u64 extent_offset;
2267 u64 bytenr;
2268 u64 offset;
2269 u64 len;
2270 int count;
2271};
2272
2273struct new_sa_defrag_extent {
2274 struct rb_root root;
2275 struct list_head head;
2276 struct btrfs_path *path;
2277 struct inode *inode;
2278 u64 file_pos;
2279 u64 len;
2280 u64 bytenr;
2281 u64 disk_len;
2282 u8 compress_type;
2283};
2284
2285static int backref_comp(struct sa_defrag_extent_backref *b1,
2286 struct sa_defrag_extent_backref *b2)
2287{
2288 if (b1->root_id < b2->root_id)
2289 return -1;
2290 else if (b1->root_id > b2->root_id)
2291 return 1;
2292
2293 if (b1->inum < b2->inum)
2294 return -1;
2295 else if (b1->inum > b2->inum)
2296 return 1;
2297
2298 if (b1->file_pos < b2->file_pos)
2299 return -1;
2300 else if (b1->file_pos > b2->file_pos)
2301 return 1;
2302
2303 /*
2304 * [------------------------------] ===> (a range of space)
2305 * |<--->| |<---->| =============> (fs/file tree A)
2306 * |<---------------------------->| ===> (fs/file tree B)
2307 *
2308 * A range of space can refer to two file extents in one tree while
2309 * refer to only one file extent in another tree.
2310 *
2311 * So we may process a disk offset more than one time(two extents in A)
2312 * and locate at the same extent(one extent in B), then insert two same
2313 * backrefs(both refer to the extent in B).
2314 */
2315 return 0;
2316}
2317
2318static void backref_insert(struct rb_root *root,
2319 struct sa_defrag_extent_backref *backref)
2320{
2321 struct rb_node **p = &root->rb_node;
2322 struct rb_node *parent = NULL;
2323 struct sa_defrag_extent_backref *entry;
2324 int ret;
2325
2326 while (*p) {
2327 parent = *p;
2328 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2329
2330 ret = backref_comp(backref, entry);
2331 if (ret < 0)
2332 p = &(*p)->rb_left;
2333 else
2334 p = &(*p)->rb_right;
2335 }
2336
2337 rb_link_node(&backref->node, parent, p);
2338 rb_insert_color(&backref->node, root);
2339}
2340
2341/*
2342 * Note the backref might has changed, and in this case we just return 0.
2343 */
2344static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2345 void *ctx)
2346{
2347 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002348 struct old_sa_defrag_extent *old = ctx;
2349 struct new_sa_defrag_extent *new = old->new;
2350 struct btrfs_path *path = new->path;
2351 struct btrfs_key key;
2352 struct btrfs_root *root;
2353 struct sa_defrag_extent_backref *backref;
2354 struct extent_buffer *leaf;
2355 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002356 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002357 int slot;
2358 int ret;
2359 u64 extent_offset;
2360 u64 num_bytes;
2361
2362 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002363 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002364 return 0;
2365
2366 key.objectid = root_id;
2367 key.type = BTRFS_ROOT_ITEM_KEY;
2368 key.offset = (u64)-1;
2369
Liu Bo38c227d2013-01-29 03:18:40 +00002370 root = btrfs_read_fs_root_no_name(fs_info, &key);
2371 if (IS_ERR(root)) {
2372 if (PTR_ERR(root) == -ENOENT)
2373 return 0;
2374 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002375 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002376 inum, offset, root_id);
2377 return PTR_ERR(root);
2378 }
2379
2380 key.objectid = inum;
2381 key.type = BTRFS_EXTENT_DATA_KEY;
2382 if (offset > (u64)-1 << 32)
2383 key.offset = 0;
2384 else
2385 key.offset = offset;
2386
2387 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302388 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002389 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002390 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002391
2392 while (1) {
2393 cond_resched();
2394
2395 leaf = path->nodes[0];
2396 slot = path->slots[0];
2397
2398 if (slot >= btrfs_header_nritems(leaf)) {
2399 ret = btrfs_next_leaf(root, path);
2400 if (ret < 0) {
2401 goto out;
2402 } else if (ret > 0) {
2403 ret = 0;
2404 goto out;
2405 }
2406 continue;
2407 }
2408
2409 path->slots[0]++;
2410
2411 btrfs_item_key_to_cpu(leaf, &key, slot);
2412
2413 if (key.objectid > inum)
2414 goto out;
2415
2416 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2417 continue;
2418
2419 extent = btrfs_item_ptr(leaf, slot,
2420 struct btrfs_file_extent_item);
2421
2422 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2423 continue;
2424
Liu Boe68afa42013-07-01 22:13:26 +08002425 /*
2426 * 'offset' refers to the exact key.offset,
2427 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2428 * (key.offset - extent_offset).
2429 */
2430 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002431 continue;
2432
Liu Boe68afa42013-07-01 22:13:26 +08002433 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002434 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002435
Liu Bo38c227d2013-01-29 03:18:40 +00002436 if (extent_offset >= old->extent_offset + old->offset +
2437 old->len || extent_offset + num_bytes <=
2438 old->extent_offset + old->offset)
2439 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002440 break;
2441 }
2442
2443 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2444 if (!backref) {
2445 ret = -ENOENT;
2446 goto out;
2447 }
2448
2449 backref->root_id = root_id;
2450 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002451 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002452 backref->num_bytes = num_bytes;
2453 backref->extent_offset = extent_offset;
2454 backref->generation = btrfs_file_extent_generation(leaf, extent);
2455 backref->old = old;
2456 backref_insert(&new->root, backref);
2457 old->count++;
2458out:
2459 btrfs_release_path(path);
2460 WARN_ON(ret);
2461 return ret;
2462}
2463
2464static noinline bool record_extent_backrefs(struct btrfs_path *path,
2465 struct new_sa_defrag_extent *new)
2466{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002467 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002468 struct old_sa_defrag_extent *old, *tmp;
2469 int ret;
2470
2471 new->path = path;
2472
2473 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002474 ret = iterate_inodes_from_logical(old->bytenr +
2475 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002476 path, record_one_backref,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002477 old, false);
Josef Bacik4724b102013-11-05 11:11:40 -05002478 if (ret < 0 && ret != -ENOENT)
2479 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002480
2481 /* no backref to be processed for this extent */
2482 if (!old->count) {
2483 list_del(&old->list);
2484 kfree(old);
2485 }
2486 }
2487
2488 if (list_empty(&new->head))
2489 return false;
2490
2491 return true;
2492}
2493
2494static int relink_is_mergable(struct extent_buffer *leaf,
2495 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002496 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002497{
Liu Bo116e0022013-08-02 16:30:40 +08002498 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002499 return 0;
2500
2501 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2502 return 0;
2503
Liu Bo116e0022013-08-02 16:30:40 +08002504 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2505 return 0;
2506
2507 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002508 btrfs_file_extent_other_encoding(leaf, fi))
2509 return 0;
2510
2511 return 1;
2512}
2513
2514/*
2515 * Note the backref might has changed, and in this case we just return 0.
2516 */
2517static noinline int relink_extent_backref(struct btrfs_path *path,
2518 struct sa_defrag_extent_backref *prev,
2519 struct sa_defrag_extent_backref *backref)
2520{
2521 struct btrfs_file_extent_item *extent;
2522 struct btrfs_file_extent_item *item;
2523 struct btrfs_ordered_extent *ordered;
2524 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002525 struct btrfs_root *root;
2526 struct btrfs_key key;
2527 struct extent_buffer *leaf;
2528 struct old_sa_defrag_extent *old = backref->old;
2529 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002530 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002531 struct inode *inode;
2532 struct extent_state *cached = NULL;
2533 int ret = 0;
2534 u64 start;
2535 u64 len;
2536 u64 lock_start;
2537 u64 lock_end;
2538 bool merge = false;
2539 int index;
2540
2541 if (prev && prev->root_id == backref->root_id &&
2542 prev->inum == backref->inum &&
2543 prev->file_pos + prev->num_bytes == backref->file_pos)
2544 merge = true;
2545
2546 /* step 1: get root */
2547 key.objectid = backref->root_id;
2548 key.type = BTRFS_ROOT_ITEM_KEY;
2549 key.offset = (u64)-1;
2550
Liu Bo38c227d2013-01-29 03:18:40 +00002551 index = srcu_read_lock(&fs_info->subvol_srcu);
2552
2553 root = btrfs_read_fs_root_no_name(fs_info, &key);
2554 if (IS_ERR(root)) {
2555 srcu_read_unlock(&fs_info->subvol_srcu, index);
2556 if (PTR_ERR(root) == -ENOENT)
2557 return 0;
2558 return PTR_ERR(root);
2559 }
Liu Bo38c227d2013-01-29 03:18:40 +00002560
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002561 if (btrfs_root_readonly(root)) {
2562 srcu_read_unlock(&fs_info->subvol_srcu, index);
2563 return 0;
2564 }
2565
Liu Bo38c227d2013-01-29 03:18:40 +00002566 /* step 2: get inode */
2567 key.objectid = backref->inum;
2568 key.type = BTRFS_INODE_ITEM_KEY;
2569 key.offset = 0;
2570
2571 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2572 if (IS_ERR(inode)) {
2573 srcu_read_unlock(&fs_info->subvol_srcu, index);
2574 return 0;
2575 }
2576
2577 srcu_read_unlock(&fs_info->subvol_srcu, index);
2578
2579 /* step 3: relink backref */
2580 lock_start = backref->file_pos;
2581 lock_end = backref->file_pos + backref->num_bytes - 1;
2582 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002583 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002584
2585 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2586 if (ordered) {
2587 btrfs_put_ordered_extent(ordered);
2588 goto out_unlock;
2589 }
2590
2591 trans = btrfs_join_transaction(root);
2592 if (IS_ERR(trans)) {
2593 ret = PTR_ERR(trans);
2594 goto out_unlock;
2595 }
2596
2597 key.objectid = backref->inum;
2598 key.type = BTRFS_EXTENT_DATA_KEY;
2599 key.offset = backref->file_pos;
2600
2601 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2602 if (ret < 0) {
2603 goto out_free_path;
2604 } else if (ret > 0) {
2605 ret = 0;
2606 goto out_free_path;
2607 }
2608
2609 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2610 struct btrfs_file_extent_item);
2611
2612 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2613 backref->generation)
2614 goto out_free_path;
2615
2616 btrfs_release_path(path);
2617
2618 start = backref->file_pos;
2619 if (backref->extent_offset < old->extent_offset + old->offset)
2620 start += old->extent_offset + old->offset -
2621 backref->extent_offset;
2622
2623 len = min(backref->extent_offset + backref->num_bytes,
2624 old->extent_offset + old->offset + old->len);
2625 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2626
2627 ret = btrfs_drop_extents(trans, root, inode, start,
2628 start + len, 1);
2629 if (ret)
2630 goto out_free_path;
2631again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002632 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002633 key.type = BTRFS_EXTENT_DATA_KEY;
2634 key.offset = start;
2635
Liu Boa09a0a72013-03-11 09:20:58 +00002636 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002637 if (merge) {
2638 struct btrfs_file_extent_item *fi;
2639 u64 extent_len;
2640 struct btrfs_key found_key;
2641
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002642 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002643 if (ret < 0)
2644 goto out_free_path;
2645
2646 path->slots[0]--;
2647 leaf = path->nodes[0];
2648 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2649
2650 fi = btrfs_item_ptr(leaf, path->slots[0],
2651 struct btrfs_file_extent_item);
2652 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2653
Liu Bo116e0022013-08-02 16:30:40 +08002654 if (extent_len + found_key.offset == start &&
2655 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002656 btrfs_set_file_extent_num_bytes(leaf, fi,
2657 extent_len + len);
2658 btrfs_mark_buffer_dirty(leaf);
2659 inode_add_bytes(inode, len);
2660
2661 ret = 1;
2662 goto out_free_path;
2663 } else {
2664 merge = false;
2665 btrfs_release_path(path);
2666 goto again;
2667 }
2668 }
2669
2670 ret = btrfs_insert_empty_item(trans, root, path, &key,
2671 sizeof(*extent));
2672 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002673 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002674 goto out_free_path;
2675 }
2676
2677 leaf = path->nodes[0];
2678 item = btrfs_item_ptr(leaf, path->slots[0],
2679 struct btrfs_file_extent_item);
2680 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2681 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2682 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2683 btrfs_set_file_extent_num_bytes(leaf, item, len);
2684 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2685 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2686 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2687 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2688 btrfs_set_file_extent_encryption(leaf, item, 0);
2689 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2690
2691 btrfs_mark_buffer_dirty(leaf);
2692 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002693 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002694
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002695 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002696 new->disk_len, 0,
2697 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002698 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002699 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002700 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002701 goto out_free_path;
2702 }
2703
2704 ret = 1;
2705out_free_path:
2706 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002707 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002708 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002709out_unlock:
2710 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbae43bbe52017-12-12 21:43:52 +01002711 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002712 iput(inode);
2713 return ret;
2714}
2715
Liu Bo6f519562013-10-29 10:45:05 +08002716static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2717{
2718 struct old_sa_defrag_extent *old, *tmp;
2719
2720 if (!new)
2721 return;
2722
2723 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002724 kfree(old);
2725 }
2726 kfree(new);
2727}
2728
Liu Bo38c227d2013-01-29 03:18:40 +00002729static void relink_file_extents(struct new_sa_defrag_extent *new)
2730{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002731 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002732 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002733 struct sa_defrag_extent_backref *backref;
2734 struct sa_defrag_extent_backref *prev = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002735 struct rb_node *node;
2736 int ret;
2737
Liu Bo38c227d2013-01-29 03:18:40 +00002738 path = btrfs_alloc_path();
2739 if (!path)
2740 return;
2741
2742 if (!record_extent_backrefs(path, new)) {
2743 btrfs_free_path(path);
2744 goto out;
2745 }
2746 btrfs_release_path(path);
2747
2748 while (1) {
2749 node = rb_first(&new->root);
2750 if (!node)
2751 break;
2752 rb_erase(node, &new->root);
2753
2754 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2755
2756 ret = relink_extent_backref(path, prev, backref);
2757 WARN_ON(ret < 0);
2758
2759 kfree(prev);
2760
2761 if (ret == 1)
2762 prev = backref;
2763 else
2764 prev = NULL;
2765 cond_resched();
2766 }
2767 kfree(prev);
2768
2769 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002770out:
Liu Bo6f519562013-10-29 10:45:05 +08002771 free_sa_defrag_extent(new);
2772
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002773 atomic_dec(&fs_info->defrag_running);
2774 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002775}
2776
2777static struct new_sa_defrag_extent *
2778record_old_file_extents(struct inode *inode,
2779 struct btrfs_ordered_extent *ordered)
2780{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002781 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002782 struct btrfs_root *root = BTRFS_I(inode)->root;
2783 struct btrfs_path *path;
2784 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002785 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002786 struct new_sa_defrag_extent *new;
2787 int ret;
2788
2789 new = kmalloc(sizeof(*new), GFP_NOFS);
2790 if (!new)
2791 return NULL;
2792
2793 new->inode = inode;
2794 new->file_pos = ordered->file_offset;
2795 new->len = ordered->len;
2796 new->bytenr = ordered->start;
2797 new->disk_len = ordered->disk_len;
2798 new->compress_type = ordered->compress_type;
2799 new->root = RB_ROOT;
2800 INIT_LIST_HEAD(&new->head);
2801
2802 path = btrfs_alloc_path();
2803 if (!path)
2804 goto out_kfree;
2805
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002806 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002807 key.type = BTRFS_EXTENT_DATA_KEY;
2808 key.offset = new->file_pos;
2809
2810 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2811 if (ret < 0)
2812 goto out_free_path;
2813 if (ret > 0 && path->slots[0] > 0)
2814 path->slots[0]--;
2815
2816 /* find out all the old extents for the file range */
2817 while (1) {
2818 struct btrfs_file_extent_item *extent;
2819 struct extent_buffer *l;
2820 int slot;
2821 u64 num_bytes;
2822 u64 offset;
2823 u64 end;
2824 u64 disk_bytenr;
2825 u64 extent_offset;
2826
2827 l = path->nodes[0];
2828 slot = path->slots[0];
2829
2830 if (slot >= btrfs_header_nritems(l)) {
2831 ret = btrfs_next_leaf(root, path);
2832 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002833 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002834 else if (ret > 0)
2835 break;
2836 continue;
2837 }
2838
2839 btrfs_item_key_to_cpu(l, &key, slot);
2840
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002841 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002842 break;
2843 if (key.type != BTRFS_EXTENT_DATA_KEY)
2844 break;
2845 if (key.offset >= new->file_pos + new->len)
2846 break;
2847
2848 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2849
2850 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2851 if (key.offset + num_bytes < new->file_pos)
2852 goto next;
2853
2854 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2855 if (!disk_bytenr)
2856 goto next;
2857
2858 extent_offset = btrfs_file_extent_offset(l, extent);
2859
2860 old = kmalloc(sizeof(*old), GFP_NOFS);
2861 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002862 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002863
2864 offset = max(new->file_pos, key.offset);
2865 end = min(new->file_pos + new->len, key.offset + num_bytes);
2866
2867 old->bytenr = disk_bytenr;
2868 old->extent_offset = extent_offset;
2869 old->offset = offset - key.offset;
2870 old->len = end - offset;
2871 old->new = new;
2872 old->count = 0;
2873 list_add_tail(&old->list, &new->head);
2874next:
2875 path->slots[0]++;
2876 cond_resched();
2877 }
2878
2879 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002880 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002881
2882 return new;
2883
Liu Bo38c227d2013-01-29 03:18:40 +00002884out_free_path:
2885 btrfs_free_path(path);
2886out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002887 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002888 return NULL;
2889}
2890
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002891static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002892 u64 start, u64 len)
2893{
2894 struct btrfs_block_group_cache *cache;
2895
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002896 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002897 ASSERT(cache);
2898
2899 spin_lock(&cache->lock);
2900 cache->delalloc_bytes -= len;
2901 spin_unlock(&cache->lock);
2902
2903 btrfs_put_block_group(cache);
2904}
2905
Chris Masond352ac62008-09-29 15:18:18 -04002906/* as ordered data IO finishes, this gets called so we can finish
2907 * an ordered extent if the range of bytes in the file it covers are
2908 * fully written.
2909 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002910static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002911{
Josef Bacik5fd02042012-05-02 14:00:54 -04002912 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002913 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002914 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002915 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002916 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002917 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002918 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002919 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002920 int ret = 0;
2921 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002922 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002923 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002924 bool range_locked = false;
2925 bool clear_new_delalloc_bytes = false;
Josef Bacik49940bd2018-10-11 15:54:21 -04002926 bool clear_reserved_extent = true;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002927
2928 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2929 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2930 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2931 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002932
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002933 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002934
Josef Bacik5fd02042012-05-02 14:00:54 -04002935 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2936 ret = -EIO;
2937 goto out;
2938 }
2939
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002940 btrfs_free_io_failure_record(BTRFS_I(inode),
2941 ordered_extent->file_offset,
2942 ordered_extent->file_offset +
2943 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002944
Josef Bacik77cef2e2013-08-29 13:57:21 -04002945 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2946 truncated = true;
2947 logical_len = ordered_extent->truncated_len;
2948 /* Truncated the entire extent, don't bother adding */
2949 if (!logical_len)
2950 goto out;
2951 }
2952
Yan, Zhengc2167752009-11-12 09:34:21 +00002953 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002954 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002955
2956 /*
2957 * For mwrite(mmap + memset to write) case, we still reserve
2958 * space for NOCOW range.
2959 * As NOCOW won't cause a new delayed ref, just free the space
2960 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08002961 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
Qu Wenruo94ed9382015-09-08 17:25:56 +08002962 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002963 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2964 if (nolock)
2965 trans = btrfs_join_transaction_nolock(root);
2966 else
2967 trans = btrfs_join_transaction(root);
2968 if (IS_ERR(trans)) {
2969 ret = PTR_ERR(trans);
2970 trans = NULL;
2971 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002972 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04002973 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002974 ret = btrfs_update_inode_fallback(trans, root, inode);
2975 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002976 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002977 goto out;
2978 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002979
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002980 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002981 lock_extent_bits(io_tree, ordered_extent->file_offset,
2982 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002983 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002984
Liu Bo38c227d2013-01-29 03:18:40 +00002985 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2986 ordered_extent->file_offset + ordered_extent->len - 1,
Liu Bo452e62b2017-05-26 17:44:23 -06002987 EXTENT_DEFRAG, 0, cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00002988 if (ret) {
2989 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002990 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002991 /* the inode is shared */
2992 new = record_old_file_extents(inode, ordered_extent);
2993
2994 clear_extent_bit(io_tree, ordered_extent->file_offset,
2995 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01002996 EXTENT_DEFRAG, 0, 0, &cached_state);
Liu Bo38c227d2013-01-29 03:18:40 +00002997 }
2998
Josef Bacik0cb59c92010-07-02 12:14:14 -04002999 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003000 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003001 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003002 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003003 if (IS_ERR(trans)) {
3004 ret = PTR_ERR(trans);
3005 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003006 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003007 }
Chris Masona79b7d42014-05-22 16:18:52 -07003008
Josef Bacik69fe2d72017-10-19 14:15:57 -04003009 trans->block_rsv = &BTRFS_I(inode)->block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00003010
Chris Masonc8b97812008-10-29 14:49:59 -04003011 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08003012 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04003013 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08003014 BUG_ON(compress_type);
Justin Maggardb430b772017-10-30 15:29:10 -07003015 btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset,
3016 ordered_extent->len);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02003017 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04003018 ordered_extent->file_offset,
3019 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04003020 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003021 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003022 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04003023 ret = insert_reserved_file_extent(trans, inode,
3024 ordered_extent->file_offset,
3025 ordered_extent->start,
3026 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04003027 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08003028 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04003029 BTRFS_FILE_EXTENT_REG);
Josef Bacik49940bd2018-10-11 15:54:21 -04003030 if (!ret) {
3031 clear_reserved_extent = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003032 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08003033 ordered_extent->start,
3034 ordered_extent->disk_len);
Josef Bacik49940bd2018-10-11 15:54:21 -04003035 }
Yan Zhengd899e052008-10-30 14:25:28 -04003036 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003037 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3038 ordered_extent->file_offset, ordered_extent->len,
3039 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003040 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003041 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003042 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003043 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003044
Nikolay Borisovac01f262018-01-08 10:59:43 +02003045 ret = add_pending_csums(trans, inode, &ordered_extent->list);
3046 if (ret) {
3047 btrfs_abort_transaction(trans, ret);
3048 goto out;
3049 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003050
Josef Bacik6c760c02012-11-09 10:53:21 -05003051 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3052 ret = btrfs_update_inode_fallback(trans, root, inode);
3053 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003054 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003055 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003056 }
3057 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003058out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003059 if (range_locked || clear_new_delalloc_bytes) {
3060 unsigned int clear_bits = 0;
3061
3062 if (range_locked)
3063 clear_bits |= EXTENT_LOCKED;
3064 if (clear_new_delalloc_bytes)
3065 clear_bits |= EXTENT_DELALLOC_NEW;
3066 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3067 ordered_extent->file_offset,
3068 ordered_extent->file_offset +
3069 ordered_extent->len - 1,
3070 clear_bits,
3071 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
David Sterbaae0f1622017-10-31 16:37:52 +01003072 0, &cached_state);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003073 }
3074
Miao Xiea698d0752012-09-20 01:51:59 -06003075 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003076 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003077
Josef Bacik77cef2e2013-08-29 13:57:21 -04003078 if (ret || truncated) {
3079 u64 start, end;
3080
3081 if (truncated)
3082 start = ordered_extent->file_offset + logical_len;
3083 else
3084 start = ordered_extent->file_offset;
3085 end = ordered_extent->file_offset + ordered_extent->len - 1;
David Sterbaf08dc362017-10-31 17:02:39 +01003086 clear_extent_uptodate(io_tree, start, end, NULL);
Josef Bacik77cef2e2013-08-29 13:57:21 -04003087
3088 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003089 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003090
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003091 /*
3092 * If the ordered extent had an IOERR or something else went
3093 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003094 * back to the allocator. We only free the extent in the
3095 * truncated case if we didn't write out the extent at all.
Josef Bacik49940bd2018-10-11 15:54:21 -04003096 *
3097 * If we made it past insert_reserved_file_extent before we
3098 * errored out then we don't need to do this as the accounting
3099 * has already been done.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003100 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003101 if ((ret || !logical_len) &&
Josef Bacik49940bd2018-10-11 15:54:21 -04003102 clear_reserved_extent &&
Josef Bacik77cef2e2013-08-29 13:57:21 -04003103 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003104 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003105 btrfs_free_reserved_extent(fs_info,
3106 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003107 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003108 }
3109
3110
Josef Bacik5fd02042012-05-02 14:00:54 -04003111 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003112 * This needs to be done to make sure anybody waiting knows we are done
3113 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003114 */
3115 btrfs_remove_ordered_extent(inode, ordered_extent);
3116
Liu Bo38c227d2013-01-29 03:18:40 +00003117 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003118 if (new) {
3119 if (ret) {
3120 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003121 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003122 } else {
3123 relink_file_extents(new);
3124 }
3125 }
Liu Bo38c227d2013-01-29 03:18:40 +00003126
Chris Masone6dcd2d2008-07-17 12:53:50 -04003127 /* once for us */
3128 btrfs_put_ordered_extent(ordered_extent);
3129 /* once for the tree */
3130 btrfs_put_ordered_extent(ordered_extent);
3131
Ethan Liene73e81b2018-05-28 13:48:20 +08003132 /* Try to release some metadata so we don't get an OOM but don't wait */
3133 btrfs_btree_balance_dirty_nodelay(fs_info);
3134
Josef Bacik5fd02042012-05-02 14:00:54 -04003135 return ret;
3136}
3137
3138static void finish_ordered_fn(struct btrfs_work *work)
3139{
3140 struct btrfs_ordered_extent *ordered_extent;
3141 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3142 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003143}
3144
Nikolay Borisovc6297322018-11-08 10:18:08 +02003145void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start,
3146 u64 end, int uptodate)
Chris Mason211f90e2008-07-18 11:56:15 -04003147{
Josef Bacik5fd02042012-05-02 14:00:54 -04003148 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003149 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003150 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003151 struct btrfs_workqueue *wq;
3152 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003153
liubo1abe9b82011-03-24 11:18:59 +00003154 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3155
Chris Mason8b62b722009-09-02 16:53:46 -04003156 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003157 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3158 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003159 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003160
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003161 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003162 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003163 func = btrfs_freespace_write_helper;
3164 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003165 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003166 func = btrfs_endio_write_helper;
3167 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003168
Liu Bo9e0af232014-08-15 23:36:53 +08003169 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3170 NULL);
3171 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003172}
3173
Miao Xiedc380ae2014-09-12 18:43:55 +08003174static int __readpage_endio_check(struct inode *inode,
3175 struct btrfs_io_bio *io_bio,
3176 int icsum, struct page *page,
3177 int pgoff, u64 start, size_t len)
3178{
3179 char *kaddr;
3180 u32 csum_expected;
3181 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003182
3183 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3184
3185 kaddr = kmap_atomic(page);
3186 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003187 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003188 if (csum != csum_expected)
3189 goto zeroit;
3190
3191 kunmap_atomic(kaddr);
3192 return 0;
3193zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003194 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003195 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003196 memset(kaddr + pgoff, 1, len);
3197 flush_dcache_page(page);
3198 kunmap_atomic(kaddr);
Miao Xiedc380ae2014-09-12 18:43:55 +08003199 return -EIO;
3200}
3201
Chris Masond352ac62008-09-29 15:18:18 -04003202/*
Chris Masond352ac62008-09-29 15:18:18 -04003203 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003204 * if there's a match, we allow the bio to finish. If not, the code in
3205 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003206 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003207static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3208 u64 phy_offset, struct page *page,
3209 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003210{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003211 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003212 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003213 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003214 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003215
Chris Masond20f7042008-12-08 16:58:54 -05003216 if (PageChecked(page)) {
3217 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003218 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003219 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003220
3221 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003222 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003223
Yan Zheng17d217f2008-12-12 10:03:38 -05003224 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003225 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003226 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003227 return 0;
3228 }
3229
Miao Xiefacc8a222013-07-25 19:22:34 +08003230 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003231 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3232 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003233}
Chris Masonb888db22007-08-27 16:49:44 -04003234
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003235/*
3236 * btrfs_add_delayed_iput - perform a delayed iput on @inode
3237 *
3238 * @inode: The inode we want to perform iput on
3239 *
3240 * This function uses the generic vfs_inode::i_count to track whether we should
3241 * just decrement it (in case it's > 1) or if this is the last iput then link
3242 * the inode to the delayed iput machinery. Delayed iputs are processed at
3243 * transaction commit time/superblock commit/cleaner kthread.
3244 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003245void btrfs_add_delayed_iput(struct inode *inode)
3246{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003248 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003249
3250 if (atomic_add_unless(&inode->i_count, -1, 1))
3251 return;
3252
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003253 spin_lock(&fs_info->delayed_iput_lock);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003254 ASSERT(list_empty(&binode->delayed_iput));
3255 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003256 spin_unlock(&fs_info->delayed_iput_lock);
3257}
3258
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003259void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003260{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003261
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003262 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003263 while (!list_empty(&fs_info->delayed_iputs)) {
3264 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003265
David Sterba8089fe62015-11-19 14:15:51 +01003266 inode = list_first_entry(&fs_info->delayed_iputs,
3267 struct btrfs_inode, delayed_iput);
Nikolay Borisovc1c3fac2018-01-16 09:31:58 +02003268 list_del_init(&inode->delayed_iput);
David Sterba8089fe62015-11-19 14:15:51 +01003269 spin_unlock(&fs_info->delayed_iput_lock);
3270 iput(&inode->vfs_inode);
3271 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003272 }
David Sterba8089fe62015-11-19 14:15:51 +01003273 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003274}
3275
Yan, Zhengd68fc572010-05-16 10:49:58 -04003276/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003277 * This creates an orphan entry for the given inode in case something goes wrong
3278 * in the middle of an unlink.
Josef Bacik7b128762008-07-24 12:17:14 -04003279 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003280int btrfs_orphan_add(struct btrfs_trans_handle *trans,
Omar Sandoval27919062018-05-11 13:13:37 -07003281 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003282{
Yan, Zhengd68fc572010-05-16 10:49:58 -04003283 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003284
Omar Sandoval27919062018-05-11 13:13:37 -07003285 ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode));
3286 if (ret && ret != -EEXIST) {
3287 btrfs_abort_transaction(trans, ret);
3288 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003289 }
3290
Yan, Zhengd68fc572010-05-16 10:49:58 -04003291 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003292}
3293
3294/*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003295 * We have done the delete so we can go ahead and remove the orphan item for
3296 * this particular inode.
Josef Bacik7b128762008-07-24 12:17:14 -04003297 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003298static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003299 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003300{
Omar Sandoval27919062018-05-11 13:13:37 -07003301 return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003302}
3303
3304/*
3305 * this cleans up any orphans that may be left on the list from the last use
3306 * of this root.
3307 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003308int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003309{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003310 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003311 struct btrfs_path *path;
3312 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003313 struct btrfs_key key, found_key;
3314 struct btrfs_trans_handle *trans;
3315 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003316 u64 last_objectid = 0;
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003317 int ret = 0, nr_unlink = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003318
Yan, Zhengd68fc572010-05-16 10:49:58 -04003319 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003320 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003321
3322 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003323 if (!path) {
3324 ret = -ENOMEM;
3325 goto out;
3326 }
David Sterbae4058b52015-11-27 16:31:35 +01003327 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003328
3329 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003330 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003331 key.offset = (u64)-1;
3332
Josef Bacik7b128762008-07-24 12:17:14 -04003333 while (1) {
3334 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003335 if (ret < 0)
3336 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003337
3338 /*
3339 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003340 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003341 * find the key and see if we have stuff that matches
3342 */
3343 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003344 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003345 if (path->slots[0] == 0)
3346 break;
3347 path->slots[0]--;
3348 }
3349
3350 /* pull out the item */
3351 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003352 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3353
3354 /* make sure the item matches what we want */
3355 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3356 break;
David Sterba962a2982014-06-04 18:41:45 +02003357 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003358 break;
3359
3360 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003361 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003362
3363 /*
3364 * this is where we are basically btrfs_lookup, without the
3365 * crossing root thing. we store the inode number in the
3366 * offset of the orphan item.
3367 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003368
3369 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003370 btrfs_err(fs_info,
3371 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003372 ret = -EINVAL;
3373 goto out;
3374 }
3375
3376 last_objectid = found_key.offset;
3377
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003378 found_key.objectid = found_key.offset;
3379 found_key.type = BTRFS_INODE_ITEM_KEY;
3380 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003381 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303382 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003383 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003384 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003385
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003386 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003387 struct btrfs_root *dead_root;
3388 struct btrfs_fs_info *fs_info = root->fs_info;
3389 int is_dead_root = 0;
3390
3391 /*
3392 * this is an orphan in the tree root. Currently these
3393 * could come from 2 sources:
3394 * a) a snapshot deletion in progress
3395 * b) a free space cache inode
3396 * We need to distinguish those two, as the snapshot
3397 * orphan must not get deleted.
3398 * find_dead_roots already ran before us, so if this
3399 * is a snapshot deletion, we should find the root
3400 * in the dead_roots list
3401 */
3402 spin_lock(&fs_info->trans_lock);
3403 list_for_each_entry(dead_root, &fs_info->dead_roots,
3404 root_list) {
3405 if (dead_root->root_key.objectid ==
3406 found_key.objectid) {
3407 is_dead_root = 1;
3408 break;
3409 }
3410 }
3411 spin_unlock(&fs_info->trans_lock);
3412 if (is_dead_root) {
3413 /* prevent this orphan from being found again */
3414 key.offset = found_key.objectid - 1;
3415 continue;
3416 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003417
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003418 }
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003419
Josef Bacika8c9e572011-09-21 16:55:59 -04003420 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003421 * If we have an inode with links, there are a couple of
3422 * possibilities. Old kernels (before v3.12) used to create an
3423 * orphan item for truncate indicating that there were possibly
3424 * extent items past i_size that needed to be deleted. In v3.12,
3425 * truncate was changed to update i_size in sync with the extent
3426 * items, but the (useless) orphan item was still created. Since
3427 * v4.18, we don't create the orphan item for truncate at all.
3428 *
3429 * So, this item could mean that we need to do a truncate, but
3430 * only if this filesystem was last used on a pre-v3.12 kernel
3431 * and was not cleanly unmounted. The odds of that are quite
3432 * slim, and it's a pain to do the truncate now, so just delete
3433 * the orphan item.
3434 *
3435 * It's also possible that this orphan item was supposed to be
3436 * deleted but wasn't. The inode number may have been reused,
3437 * but either way, we can delete the orphan item.
Josef Bacika8c9e572011-09-21 16:55:59 -04003438 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003439 if (ret == -ENOENT || inode->i_nlink) {
3440 if (!ret)
3441 iput(inode);
Josef Bacika8c9e572011-09-21 16:55:59 -04003442 trans = btrfs_start_transaction(root, 1);
3443 if (IS_ERR(trans)) {
3444 ret = PTR_ERR(trans);
3445 goto out;
3446 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003447 btrfs_debug(fs_info, "auto deleting %Lu",
3448 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003449 ret = btrfs_del_orphan_item(trans, root,
3450 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003451 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003452 if (ret)
3453 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003454 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003455 }
Josef Bacik7b128762008-07-24 12:17:14 -04003456
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07003457 nr_unlink++;
Josef Bacik7b128762008-07-24 12:17:14 -04003458
3459 /* this will do delete_inode and everything for us */
3460 iput(inode);
3461 }
Miao Xie3254c872011-11-10 20:45:05 -05003462 /* release the path since we're done with it */
3463 btrfs_release_path(path);
3464
Yan, Zhengd68fc572010-05-16 10:49:58 -04003465 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3466
Omar Sandovala575cee2018-05-11 13:13:38 -07003467 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003468 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003469 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003470 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003471 }
Josef Bacik7b128762008-07-24 12:17:14 -04003472
3473 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003474 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003475
3476out:
3477 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003478 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003479 btrfs_free_path(path);
3480 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003481}
3482
Chris Masond352ac62008-09-29 15:18:18 -04003483/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003484 * very simple check to peek ahead in the leaf looking for xattrs. If we
3485 * don't find any xattrs, we know there can't be any acls.
3486 *
3487 * slot is the slot the inode is in, objectid is the objectid of the inode
3488 */
3489static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003490 int slot, u64 objectid,
3491 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003492{
3493 u32 nritems = btrfs_header_nritems(leaf);
3494 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003495 static u64 xattr_access = 0;
3496 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003497 int scanned = 0;
3498
Josef Bacikf23b5a52013-06-19 10:16:26 -04003499 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003500 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3501 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3502 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3503 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003504 }
3505
Chris Mason46a53cc2009-04-27 11:47:50 -04003506 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003507 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003508 while (slot < nritems) {
3509 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3510
3511 /* we found a different objectid, there must not be acls */
3512 if (found_key.objectid != objectid)
3513 return 0;
3514
3515 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003516 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003517 if (*first_xattr_slot == -1)
3518 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003519 if (found_key.offset == xattr_access ||
3520 found_key.offset == xattr_default)
3521 return 1;
3522 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003523
3524 /*
3525 * we found a key greater than an xattr key, there can't
3526 * be any acls later on
3527 */
3528 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3529 return 0;
3530
3531 slot++;
3532 scanned++;
3533
3534 /*
3535 * it goes inode, inode backrefs, xattrs, extents,
3536 * so if there are a ton of hard links to an inode there can
3537 * be a lot of backrefs. Don't waste time searching too hard,
3538 * this is just an optimization
3539 */
3540 if (scanned >= 8)
3541 break;
3542 }
3543 /* we hit the end of the leaf before we found an xattr or
3544 * something larger than an xattr. We have to assume the inode
3545 * has acls
3546 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003547 if (*first_xattr_slot == -1)
3548 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003549 return 1;
3550}
3551
3552/*
Chris Masond352ac62008-09-29 15:18:18 -04003553 * read an inode from the btree into the in-memory inode
3554 */
Filipe Manana4222ea72018-10-24 10:13:03 +01003555static int btrfs_read_locked_inode(struct inode *inode,
3556 struct btrfs_path *in_path)
Chris Mason39279cc2007-06-12 06:35:45 -04003557{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003558 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Filipe Manana4222ea72018-10-24 10:13:03 +01003559 struct btrfs_path *path = in_path;
Chris Mason5f39d392007-10-15 16:14:19 -04003560 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003561 struct btrfs_inode_item *inode_item;
3562 struct btrfs_root *root = BTRFS_I(inode)->root;
3563 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003564 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003565 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003566 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003567 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003568 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003569 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003570
3571 ret = btrfs_fill_inode(inode, &rdev);
3572 if (!ret)
3573 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003574
Filipe Manana4222ea72018-10-24 10:13:03 +01003575 if (!path) {
3576 path = btrfs_alloc_path();
3577 if (!path)
3578 return -ENOMEM;
3579 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003580
Chris Mason39279cc2007-06-12 06:35:45 -04003581 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003582
Chris Mason39279cc2007-06-12 06:35:45 -04003583 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003584 if (ret) {
Filipe Manana4222ea72018-10-24 10:13:03 +01003585 if (path != in_path)
3586 btrfs_free_path(path);
Al Virof5b3a412018-07-29 23:04:51 +01003587 return ret;
Filipe Manana67710892016-06-06 11:51:25 +01003588 }
Chris Mason39279cc2007-06-12 06:35:45 -04003589
Chris Mason5f39d392007-10-15 16:14:19 -04003590 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003591
3592 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003593 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003594
Chris Mason5f39d392007-10-15 16:14:19 -04003595 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3596 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003597 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003598 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003599 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3600 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003601 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003602
David Sterbaa937b972014-12-12 17:39:12 +01003603 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3604 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003605
David Sterbaa937b972014-12-12 17:39:12 +01003606 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3607 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003608
David Sterbaa937b972014-12-12 17:39:12 +01003609 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3610 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003611
chandan r9cc97d62012-07-04 12:48:07 +05303612 BTRFS_I(inode)->i_otime.tv_sec =
3613 btrfs_timespec_sec(leaf, &inode_item->otime);
3614 BTRFS_I(inode)->i_otime.tv_nsec =
3615 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003616
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003617 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003618 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003619 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3620
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003621 inode_set_iversion_queried(inode,
3622 btrfs_inode_sequence(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003623 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003624 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003625 rdev = btrfs_inode_rdev(leaf, inode_item);
3626
Josef Bacikaec74772008-07-24 12:12:38 -04003627 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003628 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003629
3630cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003631 /*
3632 * If we were modified in the current generation and evicted from memory
3633 * and then re-read we need to do a full sync since we don't have any
3634 * idea about which extents were modified before we were evicted from
3635 * cache.
3636 *
3637 * This is required for both inode re-read from disk and delayed inode
3638 * in delayed_nodes_tree.
3639 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003640 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003641 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3642 &BTRFS_I(inode)->runtime_flags);
3643
Filipe Mananabde6c242015-07-24 00:00:19 +01003644 /*
3645 * We don't persist the id of the transaction where an unlink operation
3646 * against the inode was last made. So here we assume the inode might
3647 * have been evicted, and therefore the exact value of last_unlink_trans
3648 * lost, and set it to last_trans to avoid metadata inconsistencies
3649 * between the inode and its parent if the inode is fsync'ed and the log
3650 * replayed. For example, in the scenario:
3651 *
3652 * touch mydir/foo
3653 * ln mydir/foo mydir/bar
3654 * sync
3655 * unlink mydir/bar
3656 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3657 * xfs_io -c fsync mydir/foo
3658 * <power failure>
3659 * mount fs, triggers fsync log replay
3660 *
3661 * We must make sure that when we fsync our inode foo we also log its
3662 * parent inode, otherwise after log replay the parent still has the
3663 * dentry with the "bar" name but our inode foo has a link count of 1
3664 * and doesn't have an inode ref with the name "bar" anymore.
3665 *
3666 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003667 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003668 * transaction commits on fsync if our inode is a directory, or if our
3669 * inode is not a directory, logging its parent unnecessarily.
3670 */
3671 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
Filipe Manana41bd6062018-11-28 14:54:28 +00003672 /*
3673 * Similar reasoning for last_link_trans, needs to be set otherwise
3674 * for a case like the following:
3675 *
3676 * mkdir A
3677 * touch foo
3678 * ln foo A/bar
3679 * echo 2 > /proc/sys/vm/drop_caches
3680 * fsync foo
3681 * <power failure>
3682 *
3683 * Would result in link bar and directory A not existing after the power
3684 * failure.
3685 */
3686 BTRFS_I(inode)->last_link_trans = BTRFS_I(inode)->last_trans;
Filipe Mananabde6c242015-07-24 00:00:19 +01003687
Miao Xie67de1172013-12-26 13:07:06 +08003688 path->slots[0]++;
3689 if (inode->i_nlink != 1 ||
3690 path->slots[0] >= btrfs_header_nritems(leaf))
3691 goto cache_acl;
3692
3693 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003694 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003695 goto cache_acl;
3696
3697 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3698 if (location.type == BTRFS_INODE_REF_KEY) {
3699 struct btrfs_inode_ref *ref;
3700
3701 ref = (struct btrfs_inode_ref *)ptr;
3702 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3703 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3704 struct btrfs_inode_extref *extref;
3705
3706 extref = (struct btrfs_inode_extref *)ptr;
3707 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3708 extref);
3709 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003710cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003711 /*
3712 * try to precache a NULL acl entry for files that don't have
3713 * any xattrs or acls
3714 */
Li Zefan33345d012011-04-20 10:31:50 +08003715 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003716 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003717 if (first_xattr_slot != -1) {
3718 path->slots[0] = first_xattr_slot;
3719 ret = btrfs_load_inode_props(inode, path);
3720 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003721 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003722 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003723 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003724 root->root_key.objectid, ret);
3725 }
Filipe Manana4222ea72018-10-24 10:13:03 +01003726 if (path != in_path)
3727 btrfs_free_path(path);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003728
Al Viro72c04902009-06-24 16:58:48 -04003729 if (!maybe_acls)
3730 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003731
Chris Mason39279cc2007-06-12 06:35:45 -04003732 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003733 case S_IFREG:
3734 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003735 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003736 inode->i_fop = &btrfs_file_operations;
3737 inode->i_op = &btrfs_file_inode_operations;
3738 break;
3739 case S_IFDIR:
3740 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003741 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003742 break;
3743 case S_IFLNK:
3744 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003745 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -07003746 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason39279cc2007-06-12 06:35:45 -04003747 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003748 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003749 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003750 init_special_inode(inode, inode->i_mode, rdev);
3751 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003752 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003753
David Sterba7b6a2212018-03-26 18:40:21 +02003754 btrfs_sync_inode_flags_to_i_flags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003755 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003756}
3757
Chris Masond352ac62008-09-29 15:18:18 -04003758/*
3759 * given a leaf and an inode, copy the inode fields into the leaf
3760 */
Chris Masone02119d2008-09-05 16:13:11 -04003761static void fill_inode_item(struct btrfs_trans_handle *trans,
3762 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003763 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003764 struct inode *inode)
3765{
Liu Bo51fab692012-12-27 09:01:21 +00003766 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003767
Liu Bo51fab692012-12-27 09:01:21 +00003768 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003769
Liu Bo51fab692012-12-27 09:01:21 +00003770 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3771 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3772 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3773 &token);
3774 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3775 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003776
David Sterbaa937b972014-12-12 17:39:12 +01003777 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003778 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003779 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003780 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003781
David Sterbaa937b972014-12-12 17:39:12 +01003782 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003783 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003784 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003785 inode->i_mtime.tv_nsec, &token);
3786
David Sterbaa937b972014-12-12 17:39:12 +01003787 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003788 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003789 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003790 inode->i_ctime.tv_nsec, &token);
3791
chandan r9cc97d62012-07-04 12:48:07 +05303792 btrfs_set_token_timespec_sec(leaf, &item->otime,
3793 BTRFS_I(inode)->i_otime.tv_sec, &token);
3794 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3795 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3796
Liu Bo51fab692012-12-27 09:01:21 +00003797 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3798 &token);
3799 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3800 &token);
Jeff Laytonc7f88c42017-12-11 06:35:12 -05003801 btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode),
3802 &token);
Liu Bo51fab692012-12-27 09:01:21 +00003803 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3804 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3805 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3806 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003807}
3808
Chris Masond352ac62008-09-29 15:18:18 -04003809/*
3810 * copy everything in the in-memory inode into the btree.
3811 */
Chris Mason21151332011-11-10 20:39:08 -05003812static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003813 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003814{
3815 struct btrfs_inode_item *inode_item;
3816 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003817 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003818 int ret;
3819
3820 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003821 if (!path)
3822 return -ENOMEM;
3823
Chris Masonb9473432009-03-13 11:00:37 -04003824 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003825 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3826 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003827 if (ret) {
3828 if (ret > 0)
3829 ret = -ENOENT;
3830 goto failed;
3831 }
3832
Chris Mason5f39d392007-10-15 16:14:19 -04003833 leaf = path->nodes[0];
3834 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003835 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003836
Chris Masone02119d2008-09-05 16:13:11 -04003837 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003838 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003839 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003840 ret = 0;
3841failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003842 btrfs_free_path(path);
3843 return ret;
3844}
3845
Chris Masond352ac62008-09-29 15:18:18 -04003846/*
Chris Mason21151332011-11-10 20:39:08 -05003847 * copy everything in the in-memory inode into the btree.
3848 */
3849noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3850 struct btrfs_root *root, struct inode *inode)
3851{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003852 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003853 int ret;
3854
3855 /*
3856 * If the inode is a free space inode, we can deadlock during commit
3857 * if we put it into the delayed code.
3858 *
3859 * The data relocation inode should also be directly updated
3860 * without delay
3861 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003862 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003863 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003864 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003865 btrfs_update_root_times(trans, root);
3866
Chris Mason21151332011-11-10 20:39:08 -05003867 ret = btrfs_delayed_update_inode(trans, root, inode);
3868 if (!ret)
3869 btrfs_set_inode_last_trans(trans, inode);
3870 return ret;
3871 }
3872
3873 return btrfs_update_inode_item(trans, root, inode);
3874}
3875
Josef Bacikbe6aef62012-10-22 15:43:12 -04003876noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3877 struct btrfs_root *root,
3878 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003879{
3880 int ret;
3881
3882 ret = btrfs_update_inode(trans, root, inode);
3883 if (ret == -ENOSPC)
3884 return btrfs_update_inode_item(trans, root, inode);
3885 return ret;
3886}
3887
3888/*
Chris Masond352ac62008-09-29 15:18:18 -04003889 * unlink helper that gets used here in inode.c and in the tree logging
3890 * recovery code. It remove a link in a directory with a given name, and
3891 * also drops the back refs in the inode to the directory
3892 */
Al Viro92986792011-03-04 17:14:37 +00003893static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3894 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003895 struct btrfs_inode *dir,
3896 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003897 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003898{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003899 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003900 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003902 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003903 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003904 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003905 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003906 u64 ino = btrfs_ino(inode);
3907 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003908
3909 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003910 if (!path) {
3911 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003912 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003913 }
3914
Chris Masonb9473432009-03-13 11:00:37 -04003915 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003916 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003917 name, name_len, -1);
Liu Bo3cf50682018-09-12 06:06:26 +08003918 if (IS_ERR_OR_NULL(di)) {
3919 ret = di ? PTR_ERR(di) : -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003920 goto err;
3921 }
Chris Mason5f39d392007-10-15 16:14:19 -04003922 leaf = path->nodes[0];
3923 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003924 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003925 if (ret)
3926 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003927 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003928
Miao Xie67de1172013-12-26 13:07:06 +08003929 /*
3930 * If we don't have dir index, we have to get it by looking up
3931 * the inode ref, since we get the inode ref, remove it directly,
3932 * it is unnecessary to do delayed deletion.
3933 *
3934 * But if we have dir index, needn't search inode ref to get it.
3935 * Since the inode ref is close to the inode item, it is better
3936 * that we delay to delete it, and just do this deletion when
3937 * we update the inode item.
3938 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003939 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08003940 ret = btrfs_delayed_delete_inode_ref(inode);
3941 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003942 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003943 goto skip_backref;
3944 }
3945 }
3946
Li Zefan33345d012011-04-20 10:31:50 +08003947 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3948 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003949 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003950 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003951 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003952 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003953 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003954 goto err;
3955 }
Miao Xie67de1172013-12-26 13:07:06 +08003956skip_backref:
Lu Fengqi9add2942018-08-01 11:32:26 +08003957 ret = btrfs_delete_delayed_dir_index(trans, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003958 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003959 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003960 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003961 }
Chris Mason39279cc2007-06-12 06:35:45 -04003962
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003963 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3964 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003965 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003966 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003967 goto err;
3968 }
Chris Masone02119d2008-09-05 16:13:11 -04003969
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003970 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3971 index);
Chris Mason6418c962010-10-30 07:34:24 -04003972 if (ret == -ENOENT)
3973 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003974 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003975 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003976err:
3977 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003978 if (ret)
3979 goto out;
3980
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003981 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003982 inode_inc_iversion(&inode->vfs_inode);
3983 inode_inc_iversion(&dir->vfs_inode);
3984 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3985 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3986 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003987out:
Chris Mason39279cc2007-06-12 06:35:45 -04003988 return ret;
3989}
3990
Al Viro92986792011-03-04 17:14:37 +00003991int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3992 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003993 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003994 const char *name, int name_len)
3995{
3996 int ret;
3997 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3998 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003999 drop_nlink(&inode->vfs_inode);
4000 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00004001 }
4002 return ret;
4003}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004004
4005/*
4006 * helper to start transaction for unlink and rmdir.
4007 *
Josef Bacikd52be812013-05-29 14:54:47 -04004008 * unlink and rmdir are special in btrfs, they do not always free space, so
4009 * if we cannot make our reservations the normal way try and see if there is
4010 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4011 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004012 */
Josef Bacikd52be812013-05-29 14:54:47 -04004013static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004014{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004015 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004016
Josef Bacike70bea52011-10-11 14:18:24 -04004017 /*
4018 * 1 for the possible orphan item
4019 * 1 for the dir item
4020 * 1 for the dir index
4021 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004022 * 1 for the inode
4023 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004024 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004025}
4026
Chris Mason39279cc2007-06-12 06:35:45 -04004027static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4028{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004029 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004030 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004031 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004032 int ret;
4033
Josef Bacikd52be812013-05-29 14:54:47 -04004034 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004035 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004036 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004037
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004038 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4039 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004040
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004041 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4042 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4043 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004044 if (ret)
4045 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004046
Yan, Zhenga22285a2010-05-16 10:48:46 -04004047 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004048 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004049 if (ret)
4050 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004051 }
Josef Bacik7b128762008-07-24 12:17:14 -04004052
Tsutomu Itohb5324022011-07-19 07:27:20 +00004053out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004054 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004055 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004056 return ret;
4057}
4058
Misono Tomohirof60a2362018-04-18 11:34:52 +09004059static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
Lu Fengqi401b3b12018-08-01 11:32:30 +08004060 struct inode *dir, u64 objectid,
4061 const char *name, int name_len)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004062{
Lu Fengqi401b3b12018-08-01 11:32:30 +08004063 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004064 struct btrfs_path *path;
4065 struct extent_buffer *leaf;
4066 struct btrfs_dir_item *di;
4067 struct btrfs_key key;
4068 u64 index;
4069 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004070 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004071
4072 path = btrfs_alloc_path();
4073 if (!path)
4074 return -ENOMEM;
4075
Li Zefan33345d012011-04-20 10:31:50 +08004076 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004077 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004078 if (IS_ERR_OR_NULL(di)) {
Liu Bo3cf50682018-09-12 06:06:26 +08004079 ret = di ? PTR_ERR(di) : -ENOENT;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004080 goto out;
4081 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004082
4083 leaf = path->nodes[0];
4084 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4085 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4086 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004087 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004088 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004089 goto out;
4090 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004091 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004092
Lu Fengqi3ee1c552018-08-01 11:32:28 +08004093 ret = btrfs_del_root_ref(trans, objectid, root->root_key.objectid,
4094 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004095 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004096 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004097 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004098 goto out;
4099 }
Li Zefan33345d012011-04-20 10:31:50 +08004100 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004101 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004102 if (IS_ERR_OR_NULL(di)) {
4103 if (!di)
4104 ret = -ENOENT;
4105 else
4106 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004107 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004108 goto out;
4109 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004110
4111 leaf = path->nodes[0];
4112 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004113 index = key.offset;
4114 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004115 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004116
Lu Fengqi9add2942018-08-01 11:32:26 +08004117 ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004118 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004119 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004120 goto out;
4121 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004122
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004123 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004124 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004125 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004126 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004127 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004128 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004129out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004130 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004131 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004132}
4133
Misono Tomohiroec42f162018-04-18 11:34:13 +09004134/*
4135 * Helper to check if the subvolume references other subvolumes or if it's
4136 * default.
4137 */
Misono Tomohirof60a2362018-04-18 11:34:52 +09004138static noinline int may_destroy_subvol(struct btrfs_root *root)
Misono Tomohiroec42f162018-04-18 11:34:13 +09004139{
4140 struct btrfs_fs_info *fs_info = root->fs_info;
4141 struct btrfs_path *path;
4142 struct btrfs_dir_item *di;
4143 struct btrfs_key key;
4144 u64 dir_id;
4145 int ret;
4146
4147 path = btrfs_alloc_path();
4148 if (!path)
4149 return -ENOMEM;
4150
4151 /* Make sure this root isn't set as the default subvol */
4152 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4153 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
4154 dir_id, "default", 7, 0);
4155 if (di && !IS_ERR(di)) {
4156 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
4157 if (key.objectid == root->root_key.objectid) {
4158 ret = -EPERM;
4159 btrfs_err(fs_info,
4160 "deleting default subvolume %llu is not allowed",
4161 key.objectid);
4162 goto out;
4163 }
4164 btrfs_release_path(path);
4165 }
4166
4167 key.objectid = root->root_key.objectid;
4168 key.type = BTRFS_ROOT_REF_KEY;
4169 key.offset = (u64)-1;
4170
4171 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
4172 if (ret < 0)
4173 goto out;
4174 BUG_ON(ret == 0);
4175
4176 ret = 0;
4177 if (path->slots[0] > 0) {
4178 path->slots[0]--;
4179 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4180 if (key.objectid == root->root_key.objectid &&
4181 key.type == BTRFS_ROOT_REF_KEY)
4182 ret = -ENOTEMPTY;
4183 }
4184out:
4185 btrfs_free_path(path);
4186 return ret;
4187}
4188
Nikolay Borisov20a68002018-04-27 14:36:24 +03004189/* Delete all dentries for inodes belonging to the root */
4190static void btrfs_prune_dentries(struct btrfs_root *root)
4191{
4192 struct btrfs_fs_info *fs_info = root->fs_info;
4193 struct rb_node *node;
4194 struct rb_node *prev;
4195 struct btrfs_inode *entry;
4196 struct inode *inode;
4197 u64 objectid = 0;
4198
4199 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
4200 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4201
4202 spin_lock(&root->inode_lock);
4203again:
4204 node = root->inode_tree.rb_node;
4205 prev = NULL;
4206 while (node) {
4207 prev = node;
4208 entry = rb_entry(node, struct btrfs_inode, rb_node);
4209
David Sterba37508512018-06-29 10:56:40 +02004210 if (objectid < btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004211 node = node->rb_left;
David Sterba37508512018-06-29 10:56:40 +02004212 else if (objectid > btrfs_ino(entry))
Nikolay Borisov20a68002018-04-27 14:36:24 +03004213 node = node->rb_right;
4214 else
4215 break;
4216 }
4217 if (!node) {
4218 while (prev) {
4219 entry = rb_entry(prev, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004220 if (objectid <= btrfs_ino(entry)) {
Nikolay Borisov20a68002018-04-27 14:36:24 +03004221 node = prev;
4222 break;
4223 }
4224 prev = rb_next(prev);
4225 }
4226 }
4227 while (node) {
4228 entry = rb_entry(node, struct btrfs_inode, rb_node);
David Sterba37508512018-06-29 10:56:40 +02004229 objectid = btrfs_ino(entry) + 1;
Nikolay Borisov20a68002018-04-27 14:36:24 +03004230 inode = igrab(&entry->vfs_inode);
4231 if (inode) {
4232 spin_unlock(&root->inode_lock);
4233 if (atomic_read(&inode->i_count) > 1)
4234 d_prune_aliases(inode);
4235 /*
4236 * btrfs_drop_inode will have it removed from the inode
4237 * cache when its usage count hits zero.
4238 */
4239 iput(inode);
4240 cond_resched();
4241 spin_lock(&root->inode_lock);
4242 goto again;
4243 }
4244
4245 if (cond_resched_lock(&root->inode_lock))
4246 goto again;
4247
4248 node = rb_next(node);
4249 }
4250 spin_unlock(&root->inode_lock);
4251}
4252
Misono Tomohirof60a2362018-04-18 11:34:52 +09004253int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry)
4254{
4255 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
4256 struct btrfs_root *root = BTRFS_I(dir)->root;
4257 struct inode *inode = d_inode(dentry);
4258 struct btrfs_root *dest = BTRFS_I(inode)->root;
4259 struct btrfs_trans_handle *trans;
4260 struct btrfs_block_rsv block_rsv;
4261 u64 root_flags;
Misono Tomohirof60a2362018-04-18 11:34:52 +09004262 int ret;
4263 int err;
4264
4265 /*
4266 * Don't allow to delete a subvolume with send in progress. This is
4267 * inside the inode lock so the error handling that has to drop the bit
4268 * again is not run concurrently.
4269 */
4270 spin_lock(&dest->root_item_lock);
Lu Fengqia7176f72018-08-04 21:10:53 +08004271 if (dest->send_in_progress) {
Misono Tomohirof60a2362018-04-18 11:34:52 +09004272 spin_unlock(&dest->root_item_lock);
4273 btrfs_warn(fs_info,
4274 "attempt to delete subvolume %llu during send",
4275 dest->root_key.objectid);
4276 return -EPERM;
4277 }
Lu Fengqia7176f72018-08-04 21:10:53 +08004278 root_flags = btrfs_root_flags(&dest->root_item);
4279 btrfs_set_root_flags(&dest->root_item,
4280 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
4281 spin_unlock(&dest->root_item_lock);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004282
4283 down_write(&fs_info->subvol_sem);
4284
4285 err = may_destroy_subvol(dest);
4286 if (err)
4287 goto out_up_write;
4288
4289 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
4290 /*
4291 * One for dir inode,
4292 * two for dir entries,
4293 * two for root ref/backref.
4294 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +08004295 err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004296 if (err)
4297 goto out_up_write;
4298
4299 trans = btrfs_start_transaction(root, 0);
4300 if (IS_ERR(trans)) {
4301 err = PTR_ERR(trans);
4302 goto out_release;
4303 }
4304 trans->block_rsv = &block_rsv;
4305 trans->bytes_reserved = block_rsv.size;
4306
4307 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
4308
Lu Fengqi401b3b12018-08-01 11:32:30 +08004309 ret = btrfs_unlink_subvol(trans, dir, dest->root_key.objectid,
4310 dentry->d_name.name, dentry->d_name.len);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004311 if (ret) {
4312 err = ret;
4313 btrfs_abort_transaction(trans, ret);
4314 goto out_end_trans;
4315 }
4316
4317 btrfs_record_root_in_trans(trans, dest);
4318
4319 memset(&dest->root_item.drop_progress, 0,
4320 sizeof(dest->root_item.drop_progress));
4321 dest->root_item.drop_level = 0;
4322 btrfs_set_root_refs(&dest->root_item, 0);
4323
4324 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
4325 ret = btrfs_insert_orphan_item(trans,
4326 fs_info->tree_root,
4327 dest->root_key.objectid);
4328 if (ret) {
4329 btrfs_abort_transaction(trans, ret);
4330 err = ret;
4331 goto out_end_trans;
4332 }
4333 }
4334
Lu Fengqid1957792018-05-29 15:01:54 +08004335 ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004336 BTRFS_UUID_KEY_SUBVOL,
4337 dest->root_key.objectid);
4338 if (ret && ret != -ENOENT) {
4339 btrfs_abort_transaction(trans, ret);
4340 err = ret;
4341 goto out_end_trans;
4342 }
4343 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004344 ret = btrfs_uuid_tree_remove(trans,
Misono Tomohirof60a2362018-04-18 11:34:52 +09004345 dest->root_item.received_uuid,
4346 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4347 dest->root_key.objectid);
4348 if (ret && ret != -ENOENT) {
4349 btrfs_abort_transaction(trans, ret);
4350 err = ret;
4351 goto out_end_trans;
4352 }
4353 }
4354
4355out_end_trans:
4356 trans->block_rsv = NULL;
4357 trans->bytes_reserved = 0;
4358 ret = btrfs_end_transaction(trans);
4359 if (ret && !err)
4360 err = ret;
4361 inode->i_flags |= S_DEAD;
4362out_release:
4363 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
4364out_up_write:
4365 up_write(&fs_info->subvol_sem);
4366 if (err) {
4367 spin_lock(&dest->root_item_lock);
4368 root_flags = btrfs_root_flags(&dest->root_item);
4369 btrfs_set_root_flags(&dest->root_item,
4370 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
4371 spin_unlock(&dest->root_item_lock);
4372 } else {
4373 d_invalidate(dentry);
Nikolay Borisov20a68002018-04-27 14:36:24 +03004374 btrfs_prune_dentries(dest);
Misono Tomohirof60a2362018-04-18 11:34:52 +09004375 ASSERT(dest->send_in_progress == 0);
4376
4377 /* the last ref */
4378 if (dest->ino_cache_inode) {
4379 iput(dest->ino_cache_inode);
4380 dest->ino_cache_inode = NULL;
4381 }
4382 }
4383
4384 return err;
4385}
4386
Chris Mason39279cc2007-06-12 06:35:45 -04004387static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4388{
David Howells2b0143b2015-03-17 22:25:59 +00004389 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004390 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004391 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004392 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004393 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004394
David Sterbab3ae2442012-09-13 16:04:34 -06004395 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004396 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004397 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
Misono Tomohiroa79a4642018-04-18 11:35:31 +09004398 return btrfs_delete_subvolume(dir, dentry);
Yan134d4512007-10-25 15:49:25 -04004399
Josef Bacikd52be812013-05-29 14:54:47 -04004400 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004401 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004402 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004403
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004404 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Lu Fengqi401b3b12018-08-01 11:32:30 +08004405 err = btrfs_unlink_subvol(trans, dir,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004406 BTRFS_I(inode)->location.objectid,
4407 dentry->d_name.name,
4408 dentry->d_name.len);
4409 goto out;
4410 }
4411
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004412 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004413 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004414 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004415
Filipe Manana44f714d2016-06-06 16:11:13 +01004416 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4417
Chris Mason39279cc2007-06-12 06:35:45 -04004418 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004419 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4420 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4421 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004422 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004423 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004424 /*
4425 * Propagate the last_unlink_trans value of the deleted dir to
4426 * its parent directory. This is to prevent an unrecoverable
4427 * log tree in the case we do something like this:
4428 * 1) create dir foo
4429 * 2) create snapshot under dir foo
4430 * 3) delete the snapshot
4431 * 4) rmdir foo
4432 * 5) mkdir foo
4433 * 6) fsync foo or some file inside foo
4434 */
4435 if (last_unlink_trans >= trans->transid)
4436 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4437 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004438out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004439 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004440 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004441
Chris Mason39279cc2007-06-12 06:35:45 -04004442 return err;
4443}
4444
Chris Mason28f75a02015-02-04 06:59:29 -08004445static int truncate_space_check(struct btrfs_trans_handle *trans,
4446 struct btrfs_root *root,
4447 u64 bytes_deleted)
4448{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004449 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004450 int ret;
4451
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004452 /*
4453 * This is only used to apply pressure to the enospc system, we don't
4454 * intend to use this reservation at all.
4455 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004456 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004457 bytes_deleted *= fs_info->nodesize;
4458 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004459 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004460 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004461 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004462 trans->transid,
4463 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004464 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004465 }
Chris Mason28f75a02015-02-04 06:59:29 -08004466 return ret;
4467
4468}
4469
Josef Bacikddfae632017-10-19 14:16:02 -04004470/*
4471 * Return this if we need to call truncate_block for the last bit of the
4472 * truncate.
4473 */
4474#define NEED_TRUNCATE_BLOCK 1
Filipe Manana0305cd52015-10-16 12:34:25 +01004475
Chris Mason323ac952008-10-01 19:05:46 -04004476/*
Chris Mason39279cc2007-06-12 06:35:45 -04004477 * this can truncate away extent items, csum items and directory items.
4478 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004479 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004480 *
4481 * csum items that cross the new i_size are truncated to the new size
4482 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004483 *
4484 * min_type is the minimum key type to truncate down to. If set to 0, this
4485 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004486 */
Yan, Zheng80825102009-11-12 09:35:36 +00004487int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4488 struct btrfs_root *root,
4489 struct inode *inode,
4490 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004491{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004492 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004493 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004494 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004495 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004496 struct btrfs_key key;
4497 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004498 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004499 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004500 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004501 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004502 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004503 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004504 int found_extent;
4505 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004506 int pending_del_nr = 0;
4507 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004508 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004509 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004510 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004511 u64 bytes_deleted = 0;
Thomas Meyer897ca812017-10-07 16:02:21 +02004512 bool be_nice = false;
4513 bool should_throttle = false;
4514 bool should_end = false;
Yan, Zheng80825102009-11-12 09:35:36 +00004515
4516 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004517
Chris Mason28ed1342014-12-17 09:41:04 -08004518 /*
4519 * for non-free space inodes and ref cows, we want to back off from
4520 * time to time
4521 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004522 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004523 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Thomas Meyer897ca812017-10-07 16:02:21 +02004524 be_nice = true;
Chris Mason28ed1342014-12-17 09:41:04 -08004525
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004526 path = btrfs_alloc_path();
4527 if (!path)
4528 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004529 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004530
Josef Bacik5dc562c2012-08-17 13:14:17 -04004531 /*
4532 * We want to drop from the next block forward in case this new size is
4533 * not block aligned since we will be keeping the last block of the
4534 * extent just the way it is.
4535 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004536 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004537 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004538 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004539 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004540 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004541
Miao Xie16cdcec2011-04-22 18:12:22 +08004542 /*
4543 * This function is also used to drop the items in the log tree before
4544 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4545 * it is used to drop the loged items. So we shouldn't kill the delayed
4546 * items.
4547 */
4548 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004549 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004550
Li Zefan33345d012011-04-20 10:31:50 +08004551 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004552 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004553 key.type = (u8)-1;
4554
Chris Mason85e21ba2008-01-29 15:11:36 -05004555search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004556 /*
4557 * with a 16K leaf size and 128MB extents, you can actually queue
4558 * up a huge file in a single leaf. Most of the time that
4559 * bytes_deleted is > 0, it will be huge by the time we get here
4560 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004561 if (be_nice && bytes_deleted > SZ_32M &&
4562 btrfs_should_end_transaction(trans)) {
4563 ret = -EAGAIN;
Yan, Zheng80825102009-11-12 09:35:36 +00004564 goto out;
4565 }
Chris Masond3977122009-01-05 21:25:51 -05004566
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004567 path->leave_spinning = 1;
4568 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4569 if (ret < 0)
4570 goto out;
4571
Chris Mason85e21ba2008-01-29 15:11:36 -05004572 if (ret > 0) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004573 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004574 /* there are no items in the tree for us to truncate, we're
4575 * done
4576 */
Yan, Zheng80825102009-11-12 09:35:36 +00004577 if (path->slots[0] == 0)
4578 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004579 path->slots[0]--;
4580 }
4581
Chris Masond3977122009-01-05 21:25:51 -05004582 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004583 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004584 leaf = path->nodes[0];
4585 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004586 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004587
Li Zefan33345d012011-04-20 10:31:50 +08004588 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004589 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004590
Chris Mason85e21ba2008-01-29 15:11:36 -05004591 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004592 break;
4593
Chris Mason5f39d392007-10-15 16:14:19 -04004594 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004595 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004596 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004597 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004598 extent_type = btrfs_file_extent_type(leaf, fi);
4599 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004600 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004601 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004602
4603 trace_btrfs_truncate_show_fi_regular(
4604 BTRFS_I(inode), leaf, fi,
4605 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004606 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Qu Wenruoe41ca582018-06-06 15:41:49 +08004607 item_end += btrfs_file_extent_ram_bytes(leaf,
4608 fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004609
4610 trace_btrfs_truncate_show_fi_inline(
4611 BTRFS_I(inode), leaf, fi, path->slots[0],
4612 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004613 }
Yan008630c2007-11-07 13:31:09 -05004614 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004615 }
Yan, Zheng80825102009-11-12 09:35:36 +00004616 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004617 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004618 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004619 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004620 break;
4621 if (found_key.offset >= new_size)
4622 del_item = 1;
4623 else
4624 del_item = 0;
4625 }
Chris Mason39279cc2007-06-12 06:35:45 -04004626 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004627 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004628 if (found_type != BTRFS_EXTENT_DATA_KEY)
4629 goto delete;
4630
4631 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004632 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004633 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004634 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004635 u64 orig_num_bytes =
4636 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004637 extent_num_bytes = ALIGN(new_size -
4638 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004639 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004640 btrfs_set_file_extent_num_bytes(leaf, fi,
4641 extent_num_bytes);
4642 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004643 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004644 if (test_bit(BTRFS_ROOT_REF_COWS,
4645 &root->state) &&
4646 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004647 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004648 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004649 } else {
Chris Masondb945352007-10-15 16:15:53 -04004650 extent_num_bytes =
4651 btrfs_file_extent_disk_num_bytes(leaf,
4652 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004653 extent_offset = found_key.offset -
4654 btrfs_file_extent_offset(leaf, fi);
4655
Chris Mason39279cc2007-06-12 06:35:45 -04004656 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004657 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004658 if (extent_start != 0) {
4659 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004660 if (test_bit(BTRFS_ROOT_REF_COWS,
4661 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004662 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004663 }
4664 }
Chris Mason90692182008-02-08 13:49:28 -05004665 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004666 /*
4667 * we can't truncate inline items that have had
4668 * special encodings
4669 */
4670 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004671 btrfs_file_extent_encryption(leaf, fi) == 0 &&
Josef Bacikddfae632017-10-19 14:16:02 -04004672 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
4673 btrfs_file_extent_compression(leaf, fi) == 0) {
4674 u32 size = (u32)(new_size - found_key.offset);
Chris Mason514ac8a2014-01-03 21:07:00 -08004675
Josef Bacikddfae632017-10-19 14:16:02 -04004676 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4677 size = btrfs_file_extent_calc_inline_size(size);
4678 btrfs_truncate_item(root->fs_info, path, size, 1);
4679 } else if (!del_item) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004680 /*
Josef Bacikddfae632017-10-19 14:16:02 -04004681 * We have to bail so the last_size is set to
4682 * just before this extent.
Chris Mason514ac8a2014-01-03 21:07:00 -08004683 */
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004684 ret = NEED_TRUNCATE_BLOCK;
Josef Bacikddfae632017-10-19 14:16:02 -04004685 break;
Chris Mason90692182008-02-08 13:49:28 -05004686 }
Josef Bacikddfae632017-10-19 14:16:02 -04004687
4688 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4689 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004690 }
Chris Mason179e29e2007-11-01 11:28:41 -04004691delete:
Josef Bacikddfae632017-10-19 14:16:02 -04004692 if (del_item)
4693 last_size = found_key.offset;
4694 else
4695 last_size = new_size;
Chris Mason39279cc2007-06-12 06:35:45 -04004696 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004697 if (!pending_del_nr) {
4698 /* no pending yet, add ourselves */
4699 pending_del_slot = path->slots[0];
4700 pending_del_nr = 1;
4701 } else if (pending_del_nr &&
4702 path->slots[0] + 1 == pending_del_slot) {
4703 /* hop on the pending chunk */
4704 pending_del_nr++;
4705 pending_del_slot = path->slots[0];
4706 } else {
Chris Masond3977122009-01-05 21:25:51 -05004707 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004708 }
Chris Mason39279cc2007-06-12 06:35:45 -04004709 } else {
4710 break;
4711 }
Thomas Meyer897ca812017-10-07 16:02:21 +02004712 should_throttle = false;
Chris Mason28f75a02015-02-04 06:59:29 -08004713
Miao Xie27cdeb72014-04-02 19:51:05 +08004714 if (found_extent &&
4715 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004716 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004717 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004718 bytes_deleted += extent_num_bytes;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04004719 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004720 extent_num_bytes, 0,
4721 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004722 ino, extent_offset);
Omar Sandoval05522102018-05-11 13:13:31 -07004723 if (ret) {
4724 btrfs_abort_transaction(trans, ret);
4725 break;
4726 }
Lu Fengqi7c861622018-10-11 13:40:36 +08004727 if (btrfs_should_throttle_delayed_refs(trans))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004728 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004729 trans->delayed_ref_updates * 2,
4730 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004731 if (be_nice) {
4732 if (truncate_space_check(trans, root,
4733 extent_num_bytes)) {
Thomas Meyer897ca812017-10-07 16:02:21 +02004734 should_end = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004735 }
Lu Fengqi7c861622018-10-11 13:40:36 +08004736 if (btrfs_should_throttle_delayed_refs(trans))
Thomas Meyer897ca812017-10-07 16:02:21 +02004737 should_throttle = true;
Chris Mason28f75a02015-02-04 06:59:29 -08004738 }
Chris Mason39279cc2007-06-12 06:35:45 -04004739 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004740
Yan, Zheng80825102009-11-12 09:35:36 +00004741 if (found_type == BTRFS_INODE_ITEM_KEY)
4742 break;
4743
4744 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004745 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004746 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004747 if (pending_del_nr) {
4748 ret = btrfs_del_items(trans, root, path,
4749 pending_del_slot,
4750 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004751 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004752 btrfs_abort_transaction(trans, ret);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004753 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004754 }
Yan, Zheng80825102009-11-12 09:35:36 +00004755 pending_del_nr = 0;
4756 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004757 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004758 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004759 unsigned long updates = trans->delayed_ref_updates;
4760 if (updates) {
4761 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004762 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004763 updates * 2);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004764 if (ret)
4765 break;
Josef Bacik12621332015-02-03 07:50:16 -08004766 }
4767 }
Chris Mason28f75a02015-02-04 06:59:29 -08004768 /*
4769 * if we failed to refill our space rsv, bail out
4770 * and let the transaction restart
4771 */
4772 if (should_end) {
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004773 ret = -EAGAIN;
4774 break;
Chris Mason28f75a02015-02-04 06:59:29 -08004775 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004776 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004777 } else {
4778 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004779 }
Chris Mason39279cc2007-06-12 06:35:45 -04004780 }
Yan, Zheng80825102009-11-12 09:35:36 +00004781out:
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004782 if (ret >= 0 && pending_del_nr) {
4783 int err;
4784
4785 err = btrfs_del_items(trans, root, path, pending_del_slot,
Chris Mason85e21ba2008-01-29 15:11:36 -05004786 pending_del_nr);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004787 if (err) {
4788 btrfs_abort_transaction(trans, err);
4789 ret = err;
4790 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004791 }
Filipe Manana76b42ab2017-02-14 16:56:01 +00004792 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4793 ASSERT(last_size >= new_size);
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004794 if (!ret && last_size > new_size)
Filipe Manana76b42ab2017-02-14 16:56:01 +00004795 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004796 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004797 }
Chris Mason28ed1342014-12-17 09:41:04 -08004798
Chris Mason39279cc2007-06-12 06:35:45 -04004799 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004800
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004801 if (be_nice && bytes_deleted > SZ_32M && (ret >= 0 || ret == -EAGAIN)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004802 unsigned long updates = trans->delayed_ref_updates;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004803 int err;
4804
Chris Mason28ed1342014-12-17 09:41:04 -08004805 if (updates) {
4806 trans->delayed_ref_updates = 0;
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004807 err = btrfs_run_delayed_refs(trans, updates * 2);
4808 if (err)
4809 ret = err;
Chris Mason28ed1342014-12-17 09:41:04 -08004810 }
4811 }
Omar Sandovalfd86a3a2018-05-11 13:13:30 -07004812 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004813}
4814
Chris Masona52d9a82007-08-27 16:49:44 -04004815/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304816 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004817 * @inode - inode that we're zeroing
4818 * @from - the offset to start zeroing
4819 * @len - the length to zero, 0 to zero the entire range respective to the
4820 * offset
4821 * @front - zero up to the offset instead of from the offset on
4822 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304823 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004824 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004825 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304826int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004827 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004828{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004829 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004830 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004831 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4832 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004833 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08004834 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004835 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004836 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004837 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304838 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004839 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004840 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004841 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304842 u64 block_start;
4843 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004844
Nikolay Borisovb03ebd92018-01-18 14:47:06 +02004845 if (IS_ALIGNED(offset, blocksize) &&
4846 (!len || IS_ALIGNED(len, blocksize)))
Chris Masona52d9a82007-08-27 16:49:44 -04004847 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304848
Josef Bacik8b62f872017-10-19 14:15:55 -04004849 block_start = round_down(from, blocksize);
4850 block_end = block_start + blocksize - 1;
4851
Qu Wenruo364ecf32017-02-27 15:10:38 +08004852 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Josef Bacik8b62f872017-10-19 14:15:55 -04004853 block_start, blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004854 if (ret)
4855 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004856
Chris Mason211c17f2008-05-15 09:13:45 -04004857again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004858 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004859 if (!page) {
Qu Wenruobc42bda2017-02-27 15:10:39 +08004860 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08004861 block_start, blocksize, true);
4862 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, true);
Miao Xieac6a2b32012-12-05 10:56:13 +00004863 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004864 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004865 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004866
Chris Masona52d9a82007-08-27 16:49:44 -04004867 if (!PageUptodate(page)) {
4868 ret = btrfs_readpage(NULL, page);
4869 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004870 if (page->mapping != mapping) {
4871 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004872 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004873 goto again;
4874 }
Chris Masona52d9a82007-08-27 16:49:44 -04004875 if (!PageUptodate(page)) {
4876 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004877 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004878 }
4879 }
Chris Mason211c17f2008-05-15 09:13:45 -04004880 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004881
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304882 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004883 set_page_extent_mapped(page);
4884
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304885 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004886 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304887 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004888 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004889 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004890 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004891 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004892 btrfs_put_ordered_extent(ordered);
4893 goto again;
4894 }
4895
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304896 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004897 EXTENT_DIRTY | EXTENT_DELALLOC |
4898 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01004899 0, 0, &cached_state);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004900
Filipe Mananae3b8a482017-11-04 00:16:59 +00004901 ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004902 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004903 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304904 unlock_extent_cached(io_tree, block_start, block_end,
David Sterbae43bbe52017-12-12 21:43:52 +01004905 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004906 goto out_unlock;
4907 }
4908
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304909 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004910 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304911 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004912 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004913 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304914 memset(kaddr + (block_start - page_offset(page)),
4915 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004916 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304917 memset(kaddr + (block_start - page_offset(page)) + offset,
4918 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004919 flush_dcache_page(page);
4920 kunmap(page);
4921 }
Chris Mason247e7432008-07-17 12:53:51 -04004922 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004923 set_page_dirty(page);
David Sterbae43bbe52017-12-12 21:43:52 +01004924 unlock_extent_cached(io_tree, block_start, block_end, &cached_state);
Chris Mason39279cc2007-06-12 06:35:45 -04004925
Chris Mason89642222008-07-24 09:41:53 -04004926out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004927 if (ret)
Qu Wenruobc42bda2017-02-27 15:10:39 +08004928 btrfs_delalloc_release_space(inode, data_reserved, block_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08004929 blocksize, true);
4930 btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, (ret != 0));
Chris Mason39279cc2007-06-12 06:35:45 -04004931 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004932 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004933out:
Qu Wenruo364ecf32017-02-27 15:10:38 +08004934 extent_changeset_free(data_reserved);
Chris Mason39279cc2007-06-12 06:35:45 -04004935 return ret;
4936}
4937
Josef Bacik16e75492013-10-22 12:18:51 -04004938static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4939 u64 offset, u64 len)
4940{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004941 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004942 struct btrfs_trans_handle *trans;
4943 int ret;
4944
4945 /*
4946 * Still need to make sure the inode looks like it's been updated so
4947 * that any holes get logged if we fsync.
4948 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004949 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4950 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004951 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4952 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4953 return 0;
4954 }
4955
4956 /*
4957 * 1 - for the one we're dropping
4958 * 1 - for the one we're adding
4959 * 1 - for updating the inode.
4960 */
4961 trans = btrfs_start_transaction(root, 3);
4962 if (IS_ERR(trans))
4963 return PTR_ERR(trans);
4964
4965 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4966 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004967 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004968 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004969 return ret;
4970 }
4971
David Sterbaf85b7372017-01-20 14:54:07 +01004972 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4973 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004974 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004975 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004976 else
4977 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004978 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004979 return ret;
4980}
4981
Josef Bacik695a0d02011-03-04 15:46:53 -05004982/*
4983 * This function puts in dummy file extents for the area we're creating a hole
4984 * for. So if we are truncating this file to a larger size we need to insert
4985 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4986 * the range between oldsize and size
4987 */
Josef Bacika41ad392011-01-31 15:30:16 -05004988int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004989{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004990 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004991 struct btrfs_root *root = BTRFS_I(inode)->root;
4992 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004993 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004994 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004995 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004996 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4997 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004998 u64 last_byte;
4999 u64 cur_offset;
5000 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005001 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04005002
Josef Bacika71754f2013-06-17 17:14:39 -04005003 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305004 * If our size started in the middle of a block we need to zero out the
5005 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04005006 * expose stale data.
5007 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05305008 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04005009 if (err)
5010 return err;
5011
Yan Zheng9036c102008-10-30 14:19:41 -04005012 if (size <= hole_start)
5013 return 0;
5014
Yan Zheng9036c102008-10-30 14:19:41 -04005015 while (1) {
5016 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08005017
David Sterbaff13db42015-12-03 14:30:40 +01005018 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005019 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02005020 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08005021 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04005022 if (!ordered)
5023 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005024 unlock_extent_cached(io_tree, hole_start, block_end - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01005025 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08005026 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04005027 btrfs_put_ordered_extent(ordered);
5028 }
5029
Yan Zheng9036c102008-10-30 14:19:41 -04005030 cur_offset = hole_start;
5031 while (1) {
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02005032 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04005033 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005034 if (IS_ERR(em)) {
5035 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00005036 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005037 break;
5038 }
Yan Zheng9036c102008-10-30 14:19:41 -04005039 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005040 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00005041 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04005042 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04005043 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005044
Josef Bacik16e75492013-10-22 12:18:51 -04005045 err = maybe_insert_hole(root, inode, cur_offset,
5046 hole_size);
5047 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05005048 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005049 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005050 cur_offset + hole_size - 1, 0);
5051 hole_em = alloc_extent_map();
5052 if (!hole_em) {
5053 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
5054 &BTRFS_I(inode)->runtime_flags);
5055 goto next;
5056 }
5057 hole_em->start = cur_offset;
5058 hole_em->len = hole_size;
5059 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00005060
Josef Bacik5dc562c2012-08-17 13:14:17 -04005061 hole_em->block_start = EXTENT_MAP_HOLE;
5062 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05005063 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04005064 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005065 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005066 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005067 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04005068
5069 while (1) {
5070 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005071 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005072 write_unlock(&em_tree->lock);
5073 if (err != -EEXIST)
5074 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005075 btrfs_drop_extent_cache(BTRFS_I(inode),
5076 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005077 cur_offset +
5078 hole_size - 1, 0);
5079 }
5080 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005081 }
Josef Bacik16e75492013-10-22 12:18:51 -04005082next:
Yan Zheng9036c102008-10-30 14:19:41 -04005083 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005084 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005085 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005086 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005087 break;
5088 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005089 free_extent_map(em);
David Sterbae43bbe52017-12-12 21:43:52 +01005090 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04005091 return err;
5092}
5093
Eric Sandeen3972f262013-01-12 02:57:22 +00005094static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005095{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005096 struct btrfs_root *root = BTRFS_I(inode)->root;
5097 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005098 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005099 loff_t newsize = attr->ia_size;
5100 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005101 int ret;
5102
Eric Sandeen3972f262013-01-12 02:57:22 +00005103 /*
5104 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5105 * special case where we need to update the times despite not having
5106 * these flags set. For all other operations the VFS set these flags
5107 * explicitly if it wants a timestamp update.
5108 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005109 if (newsize != oldsize) {
5110 inode_inc_iversion(inode);
5111 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5112 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005113 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005114 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005115
Josef Bacika41ad392011-01-31 15:30:16 -05005116 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005117 /*
David Sterbaea14b57f2017-06-22 02:19:11 +02005118 * Don't do an expanding truncate while snapshotting is ongoing.
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005119 * This is to ensure the snapshot captures a fully consistent
5120 * state of this file - if the snapshot captures this expanding
5121 * truncation, it must capture all writes that happened before
5122 * this truncation.
5123 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005124 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005125 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005126 if (ret) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005127 btrfs_end_write_no_snapshotting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005128 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005129 }
Yan, Zheng80825102009-11-12 09:35:36 +00005130
Miao Xief4a2f4c2011-12-14 20:12:01 -05005131 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005132 if (IS_ERR(trans)) {
David Sterbaea14b57f2017-06-22 02:19:11 +02005133 btrfs_end_write_no_snapshotting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005134 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005135 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005136
5137 i_size_write(inode, newsize);
5138 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305139 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005140 ret = btrfs_update_inode(trans, root, inode);
David Sterbaea14b57f2017-06-22 02:19:11 +02005141 btrfs_end_write_no_snapshotting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005142 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005143 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005144
Josef Bacika41ad392011-01-31 15:30:16 -05005145 /*
5146 * We're truncating a file that used to have good data down to
5147 * zero. Make sure it gets into the ordered flush list so that
5148 * any new writes get down to disk quickly.
5149 */
5150 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005151 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5152 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005153
Josef Bacika41ad392011-01-31 15:30:16 -05005154 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005155
5156 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005157 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005158 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005159 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005160
Filipe Manana213e8c52018-02-06 20:40:31 +00005161 ret = btrfs_truncate(inode, newsize == oldsize);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005162 if (ret && inode->i_nlink) {
5163 int err;
5164
5165 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005166 * Truncate failed, so fix up the in-memory size. We
5167 * adjusted disk_i_size down as we removed extents, so
5168 * wait for disk_i_size to be stable and then update the
5169 * in-memory size to match.
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005170 */
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005171 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005172 if (err)
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07005173 return err;
5174 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005175 }
Yan, Zheng80825102009-11-12 09:35:36 +00005176 }
5177
Josef Bacika41ad392011-01-31 15:30:16 -05005178 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005179}
5180
Chris Mason39279cc2007-06-12 06:35:45 -04005181static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5182{
David Howells2b0143b2015-03-17 22:25:59 +00005183 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005184 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005185 int err;
5186
Li Zefanb83cc962010-12-20 16:04:08 +08005187 if (btrfs_root_readonly(root))
5188 return -EROFS;
5189
Jan Kara31051c82016-05-26 16:55:18 +02005190 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005191 if (err)
5192 return err;
5193
Chris Mason5a3f23d2009-03-31 13:27:11 -04005194 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005195 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005196 if (err)
5197 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005198 }
Yan Zheng9036c102008-10-30 14:19:41 -04005199
Christoph Hellwig10257742010-06-04 11:30:02 +02005200 if (attr->ia_valid) {
5201 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005202 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005203 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005204
Josef Bacik22c44fe2011-11-30 10:45:38 -05005205 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005206 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005207 }
5208
Chris Mason39279cc2007-06-12 06:35:45 -04005209 return err;
5210}
Chris Mason61295eb2008-01-14 16:24:38 -05005211
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005212/*
5213 * While truncating the inode pages during eviction, we get the VFS calling
5214 * btrfs_invalidatepage() against each page of the inode. This is slow because
5215 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5216 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5217 * extent_state structures over and over, wasting lots of time.
5218 *
5219 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5220 * those expensive operations on a per page basis and do only the ordered io
5221 * finishing, while we release here the extent_map and extent_state structures,
5222 * without the excessive merging and splitting.
5223 */
5224static void evict_inode_truncate_pages(struct inode *inode)
5225{
5226 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5227 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5228 struct rb_node *node;
5229
5230 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005231 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005232
5233 write_lock(&map_tree->lock);
Liu Bo07e1ce02018-08-23 03:51:52 +08005234 while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) {
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005235 struct extent_map *em;
5236
Liu Bo07e1ce02018-08-23 03:51:52 +08005237 node = rb_first_cached(&map_tree->map);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005238 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005239 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5240 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005241 remove_extent_mapping(map_tree, em);
5242 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005243 if (need_resched()) {
5244 write_unlock(&map_tree->lock);
5245 cond_resched();
5246 write_lock(&map_tree->lock);
5247 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005248 }
5249 write_unlock(&map_tree->lock);
5250
Filipe Manana6ca07092015-05-26 00:55:42 +01005251 /*
5252 * Keep looping until we have no more ranges in the io tree.
5253 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005254 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5255 * still in progress (unlocked the pages in the bio but did not yet
5256 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005257 * ranges can still be locked and eviction started because before
5258 * submitting those bios, which are executed by a separate task (work
5259 * queue kthread), inode references (inode->i_count) were not taken
5260 * (which would be dropped in the end io callback of each bio).
5261 * Therefore here we effectively end up waiting for those bios and
5262 * anyone else holding locked ranges without having bumped the inode's
5263 * reference count - if we don't do it, when they access the inode's
5264 * io_tree to unlock a range it may be too late, leading to an
5265 * use-after-free issue.
5266 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005267 spin_lock(&io_tree->lock);
5268 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5269 struct extent_state *state;
5270 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005271 u64 start;
5272 u64 end;
Filipe Manana421f0922018-10-12 13:02:48 +01005273 unsigned state_flags;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005274
5275 node = rb_first(&io_tree->state);
5276 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005277 start = state->start;
5278 end = state->end;
Filipe Manana421f0922018-10-12 13:02:48 +01005279 state_flags = state->state;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005280 spin_unlock(&io_tree->lock);
5281
David Sterbaff13db42015-12-03 14:30:40 +01005282 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005283
5284 /*
5285 * If still has DELALLOC flag, the extent didn't reach disk,
5286 * and its reserved space won't be freed by delayed_ref.
5287 * So we need to free its reserved space here.
5288 * (Refer to comment in btrfs_invalidatepage, case 2)
5289 *
5290 * Note, end is the bytenr of last byte, so we need + 1 here.
5291 */
Filipe Manana421f0922018-10-12 13:02:48 +01005292 if (state_flags & EXTENT_DELALLOC)
Qu Wenruobc42bda2017-02-27 15:10:39 +08005293 btrfs_qgroup_free_data(inode, NULL, start, end - start + 1);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005294
Filipe Manana6ca07092015-05-26 00:55:42 +01005295 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005296 EXTENT_LOCKED | EXTENT_DIRTY |
5297 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01005298 EXTENT_DEFRAG, 1, 1, &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005299
Filipe Manana7064dd52014-08-08 02:47:05 +01005300 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005301 spin_lock(&io_tree->lock);
5302 }
5303 spin_unlock(&io_tree->lock);
5304}
5305
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005306static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root,
Josef Bacikad80cf52018-09-28 07:18:19 -04005307 struct btrfs_block_rsv *rsv)
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005308{
5309 struct btrfs_fs_info *fs_info = root->fs_info;
5310 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5311 int failures = 0;
5312
5313 for (;;) {
5314 struct btrfs_trans_handle *trans;
5315 int ret;
5316
Josef Bacikad80cf52018-09-28 07:18:19 -04005317 ret = btrfs_block_rsv_refill(root, rsv, rsv->size,
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005318 BTRFS_RESERVE_FLUSH_LIMIT);
5319
5320 if (ret && ++failures > 2) {
5321 btrfs_warn(fs_info,
5322 "could not allocate space for a delete; will truncate on mount");
5323 return ERR_PTR(-ENOSPC);
5324 }
5325
5326 trans = btrfs_join_transaction(root);
5327 if (IS_ERR(trans) || !ret)
5328 return trans;
5329
5330 /*
5331 * Try to steal from the global reserve if there is space for
5332 * it.
5333 */
Lu Fengqiaf9b8a02018-10-11 13:40:35 +08005334 if (!btrfs_check_space_for_delayed_refs(trans) &&
Josef Bacikad80cf52018-09-28 07:18:19 -04005335 !btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, false))
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005336 return trans;
5337
5338 /* If not, commit and try again. */
5339 ret = btrfs_commit_transaction(trans);
5340 if (ret)
5341 return ERR_PTR(ret);
5342 }
5343}
5344
Al Virobd555972010-06-07 11:35:40 -04005345void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005346{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005347 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005348 struct btrfs_trans_handle *trans;
5349 struct btrfs_root *root = BTRFS_I(inode)->root;
Omar Sandoval4b9d7b52018-05-11 13:13:36 -07005350 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04005351 int ret;
5352
liubo1abe9b82011-03-24 11:18:59 +00005353 trace_btrfs_inode_evict(inode);
5354
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005355 if (!root) {
Liu Boe8f1bc12018-01-25 11:02:53 -07005356 clear_inode(inode);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005357 return;
5358 }
5359
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005360 evict_inode_truncate_pages(inode);
5361
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005362 if (inode->i_nlink &&
5363 ((btrfs_root_refs(&root->root_item) != 0 &&
5364 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005365 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005366 goto no_delete;
5367
Omar Sandoval27919062018-05-11 13:13:37 -07005368 if (is_bad_inode(inode))
Chris Mason39279cc2007-06-12 06:35:45 -04005369 goto no_delete;
Chris Mason5f39d392007-10-15 16:14:19 -04005370
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005371 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005372
Omar Sandoval7b40b692018-05-11 13:13:33 -07005373 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags))
Yan, Zhengc71bf092009-11-12 09:34:40 +00005374 goto no_delete;
Yan, Zhengc71bf092009-11-12 09:34:40 +00005375
Yan, Zheng76dda932009-09-21 16:00:26 -04005376 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005377 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5378 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005379 goto no_delete;
5380 }
5381
Nikolay Borisovaa790212017-01-10 20:35:40 +02005382 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Omar Sandoval27919062018-05-11 13:13:37 -07005383 if (ret)
Miao Xie0e8c36a2012-12-19 06:59:51 +00005384 goto no_delete;
Miao Xie0e8c36a2012-12-19 06:59:51 +00005385
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005386 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Omar Sandoval27919062018-05-11 13:13:37 -07005387 if (!rsv)
Josef Bacik4289a662011-08-05 13:22:24 -04005388 goto no_delete;
Josef Bacikad80cf52018-09-28 07:18:19 -04005389 rsv->size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Josef Bacikca7e70f2012-08-27 17:48:15 -04005390 rsv->failfast = 1;
Josef Bacik4289a662011-08-05 13:22:24 -04005391
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005392 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005393
Yan, Zheng80825102009-11-12 09:35:36 +00005394 while (1) {
Josef Bacikad80cf52018-09-28 07:18:19 -04005395 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005396 if (IS_ERR(trans))
5397 goto free_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005398
5399 trans->block_rsv = rsv;
5400
Yan, Zhengd68fc572010-05-16 10:49:58 -04005401 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Omar Sandoval27919062018-05-11 13:13:37 -07005402 trans->block_rsv = &fs_info->trans_block_rsv;
5403 btrfs_end_transaction(trans);
5404 btrfs_btree_balance_dirty(fs_info);
5405 if (ret && ret != -ENOSPC && ret != -EAGAIN)
5406 goto free_rsv;
5407 else if (!ret)
Yan, Zheng80825102009-11-12 09:35:36 +00005408 break;
Josef Bacik7b128762008-07-24 12:17:14 -04005409 }
5410
Josef Bacik4ef31a42013-08-13 14:10:08 -04005411 /*
Omar Sandoval27919062018-05-11 13:13:37 -07005412 * Errors here aren't a big deal, it just means we leave orphan items in
5413 * the tree. They will be cleaned up on the next mount. If the inode
5414 * number gets reused, cleanup deletes the orphan item without doing
5415 * anything, and unlink reuses the existing orphan item.
5416 *
5417 * If it turns out that we are dropping too many of these, we might want
5418 * to add a mechanism for retrying these after a commit.
Josef Bacik4ef31a42013-08-13 14:10:08 -04005419 */
Josef Bacikad80cf52018-09-28 07:18:19 -04005420 trans = evict_refill_and_join(root, rsv);
Omar Sandoval27919062018-05-11 13:13:37 -07005421 if (!IS_ERR(trans)) {
5422 trans->block_rsv = rsv;
5423 btrfs_orphan_del(trans, BTRFS_I(inode));
5424 trans->block_rsv = &fs_info->trans_block_rsv;
5425 btrfs_end_transaction(trans);
5426 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005427
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005428 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005429 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005430 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005431
Omar Sandoval27919062018-05-11 13:13:37 -07005432free_rsv:
5433 btrfs_free_block_rsv(fs_info, rsv);
Chris Mason39279cc2007-06-12 06:35:45 -04005434no_delete:
Omar Sandoval27919062018-05-11 13:13:37 -07005435 /*
5436 * If we didn't successfully delete, the orphan item will still be in
5437 * the tree and we'll retry on the next mount. Again, we might also want
5438 * to retry these periodically in the future.
5439 */
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005440 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005441 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005442}
5443
5444/*
5445 * this returns the key found in the dir entry in the location pointer.
Su Yue005d6712018-03-05 17:13:37 +08005446 * If no dir entries were found, returns -ENOENT.
5447 * If found a corrupted location in dir entry, returns -EUCLEAN.
Chris Mason39279cc2007-06-12 06:35:45 -04005448 */
5449static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5450 struct btrfs_key *location)
5451{
5452 const char *name = dentry->d_name.name;
5453 int namelen = dentry->d_name.len;
5454 struct btrfs_dir_item *di;
5455 struct btrfs_path *path;
5456 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005457 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005458
5459 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005460 if (!path)
5461 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005462
David Sterbaf85b7372017-01-20 14:54:07 +01005463 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5464 name, namelen, 0);
Liu Bo3cf50682018-09-12 06:06:26 +08005465 if (IS_ERR_OR_NULL(di)) {
5466 ret = di ? PTR_ERR(di) : -ENOENT;
Su Yue005d6712018-03-05 17:13:37 +08005467 goto out;
5468 }
Chris Masond3977122009-01-05 21:25:51 -05005469
Chris Mason5f39d392007-10-15 16:14:19 -04005470 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Liu Bo56a0e702017-10-30 11:14:38 -06005471 if (location->type != BTRFS_INODE_ITEM_KEY &&
5472 location->type != BTRFS_ROOT_ITEM_KEY) {
Su Yue005d6712018-03-05 17:13:37 +08005473 ret = -EUCLEAN;
Liu Bo56a0e702017-10-30 11:14:38 -06005474 btrfs_warn(root->fs_info,
5475"%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))",
5476 __func__, name, btrfs_ino(BTRFS_I(dir)),
5477 location->objectid, location->type, location->offset);
Liu Bo56a0e702017-10-30 11:14:38 -06005478 }
Chris Mason39279cc2007-06-12 06:35:45 -04005479out:
Chris Mason39279cc2007-06-12 06:35:45 -04005480 btrfs_free_path(path);
5481 return ret;
5482}
5483
5484/*
5485 * when we hit a tree root in a directory, the btrfs part of the inode
5486 * needs to be changed to reflect the root directory of the tree root. This
5487 * is kind of like crossing a mount point.
5488 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005489static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005490 struct inode *dir,
5491 struct dentry *dentry,
5492 struct btrfs_key *location,
5493 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005494{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005495 struct btrfs_path *path;
5496 struct btrfs_root *new_root;
5497 struct btrfs_root_ref *ref;
5498 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005499 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005500 int ret;
5501 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005502
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005503 path = btrfs_alloc_path();
5504 if (!path) {
5505 err = -ENOMEM;
5506 goto out;
5507 }
Chris Mason39279cc2007-06-12 06:35:45 -04005508
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005509 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005510 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5511 key.type = BTRFS_ROOT_REF_KEY;
5512 key.offset = location->objectid;
5513
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005514 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005515 if (ret) {
5516 if (ret < 0)
5517 err = ret;
5518 goto out;
5519 }
Chris Mason39279cc2007-06-12 06:35:45 -04005520
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005521 leaf = path->nodes[0];
5522 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005523 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005524 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5525 goto out;
5526
5527 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5528 (unsigned long)(ref + 1),
5529 dentry->d_name.len);
5530 if (ret)
5531 goto out;
5532
David Sterbab3b4aa72011-04-21 01:20:15 +02005533 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005534
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005535 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005536 if (IS_ERR(new_root)) {
5537 err = PTR_ERR(new_root);
5538 goto out;
5539 }
5540
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005541 *sub_root = new_root;
5542 location->objectid = btrfs_root_dirid(&new_root->root_item);
5543 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005544 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005545 err = 0;
5546out:
5547 btrfs_free_path(path);
5548 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005549}
5550
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005551static void inode_tree_add(struct inode *inode)
5552{
5553 struct btrfs_root *root = BTRFS_I(inode)->root;
5554 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005555 struct rb_node **p;
5556 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005557 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005558 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005559
Al Viro1d3382cb2010-10-23 15:19:20 -04005560 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005561 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005562 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005563 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005564 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005565 while (*p) {
5566 parent = *p;
5567 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5568
David Sterba37508512018-06-29 10:56:40 +02005569 if (ino < btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005570 p = &parent->rb_left;
David Sterba37508512018-06-29 10:56:40 +02005571 else if (ino > btrfs_ino(entry))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005572 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005573 else {
5574 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005575 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005576 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005577 RB_CLEAR_NODE(parent);
5578 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005579 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005580 }
5581 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005582 rb_link_node(new, parent, p);
5583 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005584 spin_unlock(&root->inode_lock);
5585}
5586
5587static void inode_tree_del(struct inode *inode)
5588{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005589 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005590 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005591 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005592
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005593 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005594 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005595 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005596 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005597 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005598 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005599 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005600
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005601 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005602 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005603 spin_lock(&root->inode_lock);
5604 empty = RB_EMPTY_ROOT(&root->inode_tree);
5605 spin_unlock(&root->inode_lock);
5606 if (empty)
5607 btrfs_add_dead_root(root);
5608 }
5609}
5610
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005611
Chris Masone02119d2008-09-05 16:13:11 -04005612static int btrfs_init_locked_inode(struct inode *inode, void *p)
5613{
5614 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005615 inode->i_ino = args->location->objectid;
5616 memcpy(&BTRFS_I(inode)->location, args->location,
5617 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005618 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005619 return 0;
5620}
5621
5622static int btrfs_find_actor(struct inode *inode, void *opaque)
5623{
5624 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005625 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005626 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005627}
5628
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005629static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005630 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005631 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005632{
5633 struct inode *inode;
5634 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005635 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005636
Chris Mason90d3e592014-01-09 17:28:00 -08005637 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005638 args.root = root;
5639
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005640 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005641 btrfs_init_locked_inode,
5642 (void *)&args);
5643 return inode;
5644}
5645
Balaji Rao1a54ef82008-07-21 02:01:04 +05305646/* Get an inode object given its location and corresponding root.
5647 * Returns in *is_new if the inode was read from disk
5648 */
Filipe Manana4222ea72018-10-24 10:13:03 +01005649struct inode *btrfs_iget_path(struct super_block *s, struct btrfs_key *location,
5650 struct btrfs_root *root, int *new,
5651 struct btrfs_path *path)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305652{
5653 struct inode *inode;
5654
Chris Mason90d3e592014-01-09 17:28:00 -08005655 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305656 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005657 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305658
5659 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005660 int ret;
5661
Filipe Manana4222ea72018-10-24 10:13:03 +01005662 ret = btrfs_read_locked_inode(inode, path);
Al Viro9bc2cef2018-07-29 23:04:50 +01005663 if (!ret) {
Mark Fasheh1748f842011-07-12 11:25:31 -07005664 inode_tree_add(inode);
5665 unlock_new_inode(inode);
5666 if (new)
5667 *new = 1;
5668 } else {
Al Virof5b3a412018-07-29 23:04:51 +01005669 iget_failed(inode);
5670 /*
5671 * ret > 0 can come from btrfs_search_slot called by
5672 * btrfs_read_locked_inode, this means the inode item
5673 * was not found.
5674 */
5675 if (ret > 0)
5676 ret = -ENOENT;
5677 inode = ERR_PTR(ret);
Mark Fasheh1748f842011-07-12 11:25:31 -07005678 }
5679 }
5680
Balaji Rao1a54ef82008-07-21 02:01:04 +05305681 return inode;
5682}
5683
Filipe Manana4222ea72018-10-24 10:13:03 +01005684struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
5685 struct btrfs_root *root, int *new)
5686{
5687 return btrfs_iget_path(s, location, root, new, NULL);
5688}
5689
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005690static struct inode *new_simple_dir(struct super_block *s,
5691 struct btrfs_key *key,
5692 struct btrfs_root *root)
5693{
5694 struct inode *inode = new_inode(s);
5695
5696 if (!inode)
5697 return ERR_PTR(-ENOMEM);
5698
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005699 BTRFS_I(inode)->root = root;
5700 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005701 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005702
5703 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005704 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005705 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005706 inode->i_fop = &simple_dir_operations;
5707 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005708 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305709 inode->i_atime = inode->i_mtime;
5710 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02005711 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005712
5713 return inode;
5714}
5715
Chris Mason3de45862008-11-17 21:02:50 -05005716struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005717{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005718 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005719 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005720 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005721 struct btrfs_root *sub_root = root;
5722 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005723 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005724 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005725
5726 if (dentry->d_name.len > BTRFS_NAME_LEN)
5727 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005728
Jeff Layton39e3c952012-11-28 11:30:53 -05005729 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005730 if (ret < 0)
5731 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005732
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005733 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005734 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005735 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005736 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005737
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005738 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005739 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005740 &location, &sub_root);
5741 if (ret < 0) {
5742 if (ret != -ENOENT)
5743 inode = ERR_PTR(ret);
5744 else
5745 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5746 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005747 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005748 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005749 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005750
Julia Lawall34d19ba2011-01-24 19:55:19 +00005751 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005752 down_read(&fs_info->cleanup_work_sem);
David Howellsbc98a422017-07-17 08:45:34 +01005753 if (!sb_rdonly(inode->i_sb))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005754 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005755 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005756 if (ret) {
5757 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005758 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005759 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005760 }
5761
Chris Mason3de45862008-11-17 21:02:50 -05005762 return inode;
5763}
5764
Nick Pigginfe15ce42011-01-07 17:49:23 +11005765static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005766{
5767 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005768 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005769
Li Zefan848cce02012-02-21 17:04:28 +08005770 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005771 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005772
Li Zefan848cce02012-02-21 17:04:28 +08005773 if (inode) {
5774 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005775 if (btrfs_root_refs(&root->root_item) == 0)
5776 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005777
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005778 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005779 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005780 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005781 return 0;
5782}
5783
Chris Mason3de45862008-11-17 21:02:50 -05005784static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005785 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005786{
Al Viro3837d202018-10-10 16:38:27 -04005787 struct inode *inode = btrfs_lookup_dentry(dir, dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005788
Al Viro3837d202018-10-10 16:38:27 -04005789 if (inode == ERR_PTR(-ENOENT))
5790 inode = NULL;
Al Viro41d28bc2014-10-12 22:24:21 -04005791 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005792}
5793
Miao Xie16cdcec2011-04-22 18:12:22 +08005794unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005795 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5796};
5797
Josef Bacik23b5ec72017-07-24 15:14:25 -04005798/*
5799 * All this infrastructure exists because dir_emit can fault, and we are holding
5800 * the tree lock when doing readdir. For now just allocate a buffer and copy
5801 * our information into that, and then dir_emit from the buffer. This is
5802 * similar to what NFS does, only we don't keep the buffer around in pagecache
5803 * because I'm afraid I'll mess that up. Long term we need to make filldir do
5804 * copy_to_user_inatomic so we don't have to worry about page faulting under the
5805 * tree lock.
5806 */
5807static int btrfs_opendir(struct inode *inode, struct file *file)
5808{
5809 struct btrfs_file_private *private;
5810
5811 private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL);
5812 if (!private)
5813 return -ENOMEM;
5814 private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
5815 if (!private->filldir_buf) {
5816 kfree(private);
5817 return -ENOMEM;
5818 }
5819 file->private_data = private;
5820 return 0;
5821}
5822
5823struct dir_entry {
5824 u64 ino;
5825 u64 offset;
5826 unsigned type;
5827 int name_len;
5828};
5829
5830static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx)
5831{
5832 while (entries--) {
5833 struct dir_entry *entry = addr;
5834 char *name = (char *)(entry + 1);
5835
David Sterba92d32172018-04-16 21:10:14 +02005836 ctx->pos = get_unaligned(&entry->offset);
5837 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5838 get_unaligned(&entry->ino),
5839 get_unaligned(&entry->type)))
Josef Bacik23b5ec72017-07-24 15:14:25 -04005840 return 1;
David Sterba92d32172018-04-16 21:10:14 +02005841 addr += sizeof(struct dir_entry) +
5842 get_unaligned(&entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005843 ctx->pos++;
5844 }
5845 return 0;
5846}
5847
Al Viro9cdda8d2013-05-22 16:48:09 -04005848static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005849{
Al Viro9cdda8d2013-05-22 16:48:09 -04005850 struct inode *inode = file_inode(file);
Chris Mason39279cc2007-06-12 06:35:45 -04005851 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005852 struct btrfs_file_private *private = file->private_data;
Chris Mason39279cc2007-06-12 06:35:45 -04005853 struct btrfs_dir_item *di;
5854 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005855 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005856 struct btrfs_path *path;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005857 void *addr;
Miao Xie16cdcec2011-04-22 18:12:22 +08005858 struct list_head ins_list;
5859 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005860 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005861 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005862 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04005863 char *name_ptr;
5864 int name_len;
Josef Bacik23b5ec72017-07-24 15:14:25 -04005865 int entries = 0;
5866 int total_len = 0;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005867 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005868 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005869
Al Viro9cdda8d2013-05-22 16:48:09 -04005870 if (!dir_emit_dots(file, ctx))
5871 return 0;
5872
David Woodhouse49593bf2008-08-17 17:08:36 +01005873 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005874 if (!path)
5875 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005876
Josef Bacik23b5ec72017-07-24 15:14:25 -04005877 addr = private->filldir_buf;
David Sterbae4058b52015-11-27 16:31:35 +01005878 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005879
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005880 INIT_LIST_HEAD(&ins_list);
5881 INIT_LIST_HEAD(&del_list);
5882 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005883
Josef Bacik23b5ec72017-07-24 15:14:25 -04005884again:
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005885 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005886 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005887 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005888
Chris Mason39279cc2007-06-12 06:35:45 -04005889 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5890 if (ret < 0)
5891 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005892
5893 while (1) {
Josef Bacik23b5ec72017-07-24 15:14:25 -04005894 struct dir_entry *entry;
5895
Chris Mason5f39d392007-10-15 16:14:19 -04005896 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005897 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005898 if (slot >= btrfs_header_nritems(leaf)) {
5899 ret = btrfs_next_leaf(root, path);
5900 if (ret < 0)
5901 goto err;
5902 else if (ret > 0)
5903 break;
5904 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005905 }
Chris Mason3de45862008-11-17 21:02:50 -05005906
Chris Mason5f39d392007-10-15 16:14:19 -04005907 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5908
5909 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005910 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005911 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005912 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005913 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005914 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005915 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005916 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04005917 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005918 name_len = btrfs_dir_name_len(leaf, di);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005919 if ((total_len + sizeof(struct dir_entry) + name_len) >=
5920 PAGE_SIZE) {
5921 btrfs_release_path(path);
5922 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5923 if (ret)
5924 goto nopos;
5925 addr = private->filldir_buf;
5926 entries = 0;
5927 total_len = 0;
5928 goto again;
Chris Mason39279cc2007-06-12 06:35:45 -04005929 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005930
5931 entry = addr;
David Sterba92d32172018-04-16 21:10:14 +02005932 put_unaligned(name_len, &entry->name_len);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005933 name_ptr = (char *)(entry + 1);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005934 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5935 name_len);
David Sterba92d32172018-04-16 21:10:14 +02005936 put_unaligned(btrfs_filetype_table[btrfs_dir_type(leaf, di)],
5937 &entry->type);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005938 btrfs_dir_item_key_to_cpu(leaf, di, &location);
David Sterba92d32172018-04-16 21:10:14 +02005939 put_unaligned(location.objectid, &entry->ino);
5940 put_unaligned(found_key.offset, &entry->offset);
Josef Bacik23b5ec72017-07-24 15:14:25 -04005941 entries++;
5942 addr += sizeof(struct dir_entry) + name_len;
5943 total_len += sizeof(struct dir_entry) + name_len;
Li Zefanb9e03af2011-03-23 10:43:58 +08005944next:
5945 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005946 }
Josef Bacik23b5ec72017-07-24 15:14:25 -04005947 btrfs_release_path(path);
5948
5949 ret = btrfs_filldir(private->filldir_buf, entries, ctx);
5950 if (ret)
5951 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01005952
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005953 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005954 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005955 goto nopos;
5956
Zach Browndb62efb2013-07-11 16:19:42 -07005957 /*
5958 * Stop new entries from being returned after we return the last
5959 * entry.
5960 *
5961 * New directory entries are assigned a strictly increasing
5962 * offset. This means that new entries created during readdir
5963 * are *guaranteed* to be seen in the future by that readdir.
5964 * This has broken buggy programs which operate on names as
5965 * they're returned by readdir. Until we re-use freed offsets
5966 * we have this hack to stop new entries from being returned
5967 * under the assumption that they'll never reach this huge
5968 * offset.
5969 *
5970 * This is being careful not to overflow 32bit loff_t unless the
5971 * last entry requires it because doing so has broken 32bit apps
5972 * in the past.
5973 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005974 if (ctx->pos >= INT_MAX)
5975 ctx->pos = LLONG_MAX;
5976 else
5977 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005978nopos:
5979 ret = 0;
5980err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005981 if (put)
5982 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005983 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005984 return ret;
5985}
5986
Chris Mason39279cc2007-06-12 06:35:45 -04005987/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005988 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005989 * inode changes. But, it is most likely to find the inode in cache.
5990 * FIXME, needs more benchmarking...there are no reasons other than performance
5991 * to keep or drop this code.
5992 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005993static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005994{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005995 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005996 struct btrfs_root *root = BTRFS_I(inode)->root;
5997 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005998 int ret;
5999
Josef Bacik72ac3c02012-05-23 14:13:11 -04006000 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05006001 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006002
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006003 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006004 if (IS_ERR(trans))
6005 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006006
6007 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006008 if (ret && ret == -ENOSPC) {
6009 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006010 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006011 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006012 if (IS_ERR(trans))
6013 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006014
Chris Mason94b60442010-05-26 11:02:00 -04006015 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006016 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006017 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006018 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006019 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006020
6021 return ret;
6022}
6023
6024/*
6025 * This is a copy of file_update_time. We need this so we can return error on
6026 * ENOSPC for updating the inode in the case of file write and mmap writes.
6027 */
Deepa Dinamani95582b02018-05-08 19:36:02 -07006028static int btrfs_update_time(struct inode *inode, struct timespec64 *now,
Josef Bacike41f9412012-03-26 09:46:47 -04006029 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006030{
Alexander Block2bc5565282012-06-15 09:49:33 +02006031 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006032 bool dirty = flags & ~S_VERSION;
Alexander Block2bc5565282012-06-15 09:49:33 +02006033
6034 if (btrfs_root_readonly(root))
6035 return -EROFS;
6036
Josef Bacike41f9412012-03-26 09:46:47 -04006037 if (flags & S_VERSION)
Jeff Layton3a8c7232017-12-11 06:35:24 -05006038 dirty |= inode_maybe_inc_iversion(inode, dirty);
Josef Bacike41f9412012-03-26 09:46:47 -04006039 if (flags & S_CTIME)
6040 inode->i_ctime = *now;
6041 if (flags & S_MTIME)
6042 inode->i_mtime = *now;
6043 if (flags & S_ATIME)
6044 inode->i_atime = *now;
Jeff Layton3a8c7232017-12-11 06:35:24 -05006045 return dirty ? btrfs_dirty_inode(inode) : 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006046}
6047
Chris Masond352ac62008-09-29 15:18:18 -04006048/*
6049 * find the highest existing sequence number in a directory
6050 * and then set the in-memory index_cnt variable to reflect
6051 * free sequence numbers
6052 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006053static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006054{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006055 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006056 struct btrfs_key key, found_key;
6057 struct btrfs_path *path;
6058 struct extent_buffer *leaf;
6059 int ret;
6060
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006061 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006062 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006063 key.offset = (u64)-1;
6064
6065 path = btrfs_alloc_path();
6066 if (!path)
6067 return -ENOMEM;
6068
6069 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6070 if (ret < 0)
6071 goto out;
6072 /* FIXME: we should be able to handle this */
6073 if (ret == 0)
6074 goto out;
6075 ret = 0;
6076
6077 /*
6078 * MAGIC NUMBER EXPLANATION:
6079 * since we search a directory based on f_pos we have to start at 2
6080 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6081 * else has to start at 2
6082 */
6083 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006084 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006085 goto out;
6086 }
6087
6088 path->slots[0]--;
6089
6090 leaf = path->nodes[0];
6091 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6092
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006093 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006094 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006095 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006096 goto out;
6097 }
6098
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006099 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006100out:
6101 btrfs_free_path(path);
6102 return ret;
6103}
6104
Chris Masond352ac62008-09-29 15:18:18 -04006105/*
6106 * helper to find a free sequence number in a given directory. This current
6107 * code is very simple, later versions will do smarter things in the btree
6108 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006109int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006110{
6111 int ret = 0;
6112
Nikolay Borisov877574e2017-02-20 13:50:33 +02006113 if (dir->index_cnt == (u64)-1) {
6114 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006115 if (ret) {
6116 ret = btrfs_set_inode_index_count(dir);
6117 if (ret)
6118 return ret;
6119 }
Josef Bacikaec74772008-07-24 12:12:38 -04006120 }
6121
Nikolay Borisov877574e2017-02-20 13:50:33 +02006122 *index = dir->index_cnt;
6123 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006124
6125 return ret;
6126}
6127
Chris Masonb0d5d102014-09-08 13:08:51 -07006128static int btrfs_insert_inode_locked(struct inode *inode)
6129{
6130 struct btrfs_iget_args args;
6131 args.location = &BTRFS_I(inode)->location;
6132 args.root = BTRFS_I(inode)->root;
6133
6134 return insert_inode_locked4(inode,
6135 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6136 btrfs_find_actor, &args);
6137}
6138
Anand Jain19aee8d2017-07-18 17:37:05 +08006139/*
6140 * Inherit flags from the parent inode.
6141 *
6142 * Currently only the compression flags and the cow flags are inherited.
6143 */
6144static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
6145{
6146 unsigned int flags;
6147
6148 if (!dir)
6149 return;
6150
6151 flags = BTRFS_I(dir)->flags;
6152
6153 if (flags & BTRFS_INODE_NOCOMPRESS) {
6154 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
6155 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
6156 } else if (flags & BTRFS_INODE_COMPRESS) {
6157 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
6158 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
6159 }
6160
6161 if (flags & BTRFS_INODE_NODATACOW) {
6162 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
6163 if (S_ISREG(inode->i_mode))
6164 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
6165 }
6166
David Sterba7b6a2212018-03-26 18:40:21 +02006167 btrfs_sync_inode_flags_to_i_flags(inode);
Anand Jain19aee8d2017-07-18 17:37:05 +08006168}
6169
Chris Mason39279cc2007-06-12 06:35:45 -04006170static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6171 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006172 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006173 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006174 u64 ref_objectid, u64 objectid,
6175 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006176{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006177 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006178 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006179 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006180 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006181 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006182 struct btrfs_inode_ref *ref;
6183 struct btrfs_key key[2];
6184 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006185 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006186 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006187 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006188
Chris Mason5f39d392007-10-15 16:14:19 -04006189 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006190 if (!path)
6191 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006192
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006193 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006194 if (!inode) {
6195 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006196 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006197 }
Chris Mason39279cc2007-06-12 06:35:45 -04006198
Li Zefan581bb052011-04-20 10:06:11 +08006199 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006200 * O_TMPFILE, set link count to 0, so that after this point,
6201 * we fill in an inode item with the correct link count.
6202 */
6203 if (!name)
6204 set_nlink(inode, 0);
6205
6206 /*
Li Zefan581bb052011-04-20 10:06:11 +08006207 * we have to initialize this early, so we can reclaim the inode
6208 * number if we fail afterwards in this function.
6209 */
6210 inode->i_ino = objectid;
6211
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006212 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006213 trace_btrfs_inode_request(dir);
6214
Nikolay Borisov877574e2017-02-20 13:50:33 +02006215 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006216 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006217 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006218 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006219 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006220 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006221 } else if (dir) {
6222 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006223 }
6224 /*
6225 * index_cnt is ignored for everything but a dir,
Su Yuedf6703e2018-01-12 11:08:02 +08006226 * btrfs_set_inode_index_count has an explanation for the magic
Josef Bacikaec74772008-07-24 12:12:38 -04006227 * number
6228 */
6229 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006230 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006231 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006232 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006233 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006234
Josef Bacik5dc562c2012-08-17 13:14:17 -04006235 /*
6236 * We could have gotten an inode number from somebody who was fsynced
6237 * and then removed in this same transaction, so let's just set full
6238 * sync since it will be a full sync anyway and this will blow away the
6239 * old info in the log.
6240 */
6241 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6242
Chris Mason9c583092008-01-29 15:15:18 -05006243 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006244 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006245 key[0].offset = 0;
6246
Chris Mason9c583092008-01-29 15:15:18 -05006247 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006248
6249 if (name) {
6250 /*
6251 * Start new inodes with an inode_ref. This is slightly more
6252 * efficient for small numbers of hard links since they will
6253 * be packed into one item. Extended refs will kick in if we
6254 * add more hard links than can fit in the ref item.
6255 */
6256 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006257 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006258 key[1].offset = ref_objectid;
6259
6260 sizes[1] = name_len + sizeof(*ref);
6261 }
Chris Mason9c583092008-01-29 15:15:18 -05006262
Chris Masonb0d5d102014-09-08 13:08:51 -07006263 location = &BTRFS_I(inode)->location;
6264 location->objectid = objectid;
6265 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006266 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006267
6268 ret = btrfs_insert_inode_locked(inode);
Al Viro32955c52018-05-16 12:20:05 -04006269 if (ret < 0) {
6270 iput(inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006271 goto fail;
Al Viro32955c52018-05-16 12:20:05 -04006272 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006273
Chris Masonb9473432009-03-13 11:00:37 -04006274 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006275 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006276 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006277 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006278
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006279 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006280 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306281
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006282 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306283 inode->i_atime = inode->i_mtime;
6284 inode->i_ctime = inode->i_mtime;
Arnd Bergmannd3c6be6f2018-06-21 18:04:06 +02006285 BTRFS_I(inode)->i_otime = inode->i_mtime;
chandan r9cc97d62012-07-04 12:48:07 +05306286
Chris Mason5f39d392007-10-15 16:14:19 -04006287 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6288 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006289 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006290 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006291 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006292
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006293 if (name) {
6294 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6295 struct btrfs_inode_ref);
6296 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6297 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6298 ptr = (unsigned long)(ref + 1);
6299 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6300 }
Chris Mason9c583092008-01-29 15:15:18 -05006301
Chris Mason5f39d392007-10-15 16:14:19 -04006302 btrfs_mark_buffer_dirty(path->nodes[0]);
6303 btrfs_free_path(path);
6304
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006305 btrfs_inherit_iflags(inode, dir);
6306
Al Viro569254b2011-07-24 17:08:40 -04006307 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006308 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006309 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006310 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006311 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6312 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006313 }
6314
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006315 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006316
6317 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006318 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006319
Alexander Block8ea05e32012-07-25 17:35:53 +02006320 btrfs_update_root_times(trans, root);
6321
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006322 ret = btrfs_inode_inherit_props(trans, inode, dir);
6323 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006324 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006325 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006326 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006327
Chris Mason39279cc2007-06-12 06:35:45 -04006328 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006329
6330fail_unlock:
Al Viro32955c52018-05-16 12:20:05 -04006331 discard_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006332fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006333 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006334 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006335 btrfs_free_path(path);
6336 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006337}
6338
6339static inline u8 btrfs_inode_type(struct inode *inode)
6340{
6341 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6342}
6343
Chris Masond352ac62008-09-29 15:18:18 -04006344/*
6345 * utility function to add 'inode' into 'parent_inode' with
6346 * a give name and a given sequence number.
6347 * if 'add_backref' is true, also insert a backref from the
6348 * inode to the parent directory.
6349 */
Chris Masone02119d2008-09-05 16:13:11 -04006350int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006351 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006352 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006353{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006354 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006355 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006356 struct btrfs_root *root = parent_inode->root;
6357 u64 ino = btrfs_ino(inode);
6358 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006359
Li Zefan33345d012011-04-20 10:31:50 +08006360 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006361 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006362 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006363 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006364 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006365 key.offset = 0;
6366 }
Chris Mason39279cc2007-06-12 06:35:45 -04006367
Li Zefan33345d012011-04-20 10:31:50 +08006368 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Lu Fengqi6025c192018-08-01 11:32:29 +08006369 ret = btrfs_add_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006370 root->root_key.objectid, parent_ino,
6371 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006372 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006373 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6374 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006375 }
6376
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006377 /* Nothing to clean up yet */
6378 if (ret)
6379 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006380
Lu Fengqi684572d2018-08-04 21:10:57 +08006381 ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006382 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006383 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006384 goto fail_dir_item;
6385 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006386 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006387 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006388 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006389
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006390 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006391 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006392 inode_inc_iversion(&parent_inode->vfs_inode);
6393 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6394 current_time(&parent_inode->vfs_inode);
6395 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006396 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006397 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006398 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006399
6400fail_dir_item:
6401 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6402 u64 local_index;
6403 int err;
Lu Fengqi3ee1c552018-08-01 11:32:28 +08006404 err = btrfs_del_root_ref(trans, key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006405 root->root_key.objectid, parent_ino,
6406 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006407
6408 } else if (add_backref) {
6409 u64 local_index;
6410 int err;
6411
6412 err = btrfs_del_inode_ref(trans, root, name, name_len,
6413 ino, parent_ino, &local_index);
6414 }
6415 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006416}
6417
6418static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006419 struct btrfs_inode *dir, struct dentry *dentry,
6420 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006421{
Josef Bacika1b075d2010-11-19 20:36:11 +00006422 int err = btrfs_add_link(trans, dir, inode,
6423 dentry->d_name.name, dentry->d_name.len,
6424 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006425 if (err > 0)
6426 err = -EEXIST;
6427 return err;
6428}
6429
Josef Bacik618e21d2007-07-11 10:18:17 -04006430static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006431 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006432{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006433 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006434 struct btrfs_trans_handle *trans;
6435 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006436 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006437 int err;
Josef Bacik618e21d2007-07-11 10:18:17 -04006438 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006439 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006440
Josef Bacik9ed74f22009-09-11 16:12:44 -04006441 /*
6442 * 2 for inode item and ref
6443 * 2 for dir items
6444 * 1 for xattr if selinux is on
6445 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006446 trans = btrfs_start_transaction(root, 5);
6447 if (IS_ERR(trans))
6448 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006449
Li Zefan581bb052011-04-20 10:06:11 +08006450 err = btrfs_find_free_ino(root, &objectid);
6451 if (err)
6452 goto out_unlock;
6453
Josef Bacikaec74772008-07-24 12:12:38 -04006454 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006455 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6456 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006457 if (IS_ERR(inode)) {
6458 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006459 inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006460 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006461 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006462
Casey Schauflerad19db72011-12-15 10:09:07 -05006463 /*
6464 * If the active LSM wants to access the inode during
6465 * d_instantiate it needs these. Smack checks to see
6466 * if the filesystem supports xattrs by looking at the
6467 * ops vector.
6468 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006469 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006470 init_special_inode(inode, inode->i_mode, rdev);
6471
6472 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006473 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006474 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006475
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006476 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6477 0, index);
Al Viro32955c52018-05-16 12:20:05 -04006478 if (err)
6479 goto out_unlock;
6480
6481 btrfs_update_inode(trans, root, inode);
6482 d_instantiate_new(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006483
Josef Bacik618e21d2007-07-11 10:18:17 -04006484out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006485 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006486 btrfs_btree_balance_dirty(fs_info);
Al Viro32955c52018-05-16 12:20:05 -04006487 if (err && inode) {
Josef Bacik618e21d2007-07-11 10:18:17 -04006488 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006489 discard_new_inode(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006490 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006491 return err;
6492}
6493
Chris Mason39279cc2007-06-12 06:35:45 -04006494static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006495 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006496{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006497 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006498 struct btrfs_trans_handle *trans;
6499 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006500 struct inode *inode = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006501 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006502 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006503 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006504
Josef Bacik9ed74f22009-09-11 16:12:44 -04006505 /*
6506 * 2 for inode item and ref
6507 * 2 for dir items
6508 * 1 for xattr if selinux is on
6509 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006510 trans = btrfs_start_transaction(root, 5);
6511 if (IS_ERR(trans))
6512 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006513
Li Zefan581bb052011-04-20 10:06:11 +08006514 err = btrfs_find_free_ino(root, &objectid);
6515 if (err)
6516 goto out_unlock;
6517
Josef Bacikaec74772008-07-24 12:12:38 -04006518 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006519 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6520 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006521 if (IS_ERR(inode)) {
6522 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006523 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006524 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006525 }
Casey Schauflerad19db72011-12-15 10:09:07 -05006526 /*
6527 * If the active LSM wants to access the inode during
6528 * d_instantiate it needs these. Smack checks to see
6529 * if the filesystem supports xattrs by looking at the
6530 * ops vector.
6531 */
6532 inode->i_fop = &btrfs_file_operations;
6533 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006534 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006535
6536 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6537 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006538 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -07006539
6540 err = btrfs_update_inode(trans, root, inode);
6541 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006542 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -05006543
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006544 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6545 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006546 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006547 goto out_unlock;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006548
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006549 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro1e2e5472018-05-04 08:23:01 -04006550 d_instantiate_new(dentry, inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006551
Chris Mason39279cc2007-06-12 06:35:45 -04006552out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006553 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006554 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -04006555 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006556 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006557 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006558 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006559 return err;
6560}
6561
6562static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6563 struct dentry *dentry)
6564{
Filipe Manana271dba452016-01-05 16:24:05 +00006565 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006566 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006567 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006568 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006569 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006570 int err;
6571 int drop_inode = 0;
6572
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006573 /* do not allow sys_link's with other subvols of the same device */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09006574 if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006575 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006576
Mark Fashehf1863732012-08-08 11:32:27 -07006577 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006578 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006579
Nikolay Borisov877574e2017-02-20 13:50:33 +02006580 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006581 if (err)
6582 goto fail;
6583
Yan, Zhenga22285a2010-05-16 10:48:46 -04006584 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006585 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006586 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006587 * 1 item for parent inode
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006588 * 1 item for orphan item deletion if O_TMPFILE
Yan, Zhenga22285a2010-05-16 10:48:46 -04006589 */
Omar Sandoval399b0bb2018-05-11 13:13:40 -07006590 trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006591 if (IS_ERR(trans)) {
6592 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006593 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006594 goto fail;
6595 }
Chris Mason5f39d392007-10-15 16:14:19 -04006596
Miao Xie67de1172013-12-26 13:07:06 +08006597 /* There are several dir indexes for this inode, clear the cache. */
6598 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006599 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006600 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006601 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006602 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006603 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006604
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006605 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6606 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006607
Yan, Zhenga5719522009-09-24 09:17:31 -04006608 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006609 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006610 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006611 struct dentry *parent = dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01006612 int ret;
6613
Yan, Zhenga5719522009-09-24 09:17:31 -04006614 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006615 if (err)
6616 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006617 if (inode->i_nlink == 1) {
6618 /*
6619 * If new hard link count is 1, it's a file created
6620 * with open(2) O_TMPFILE flag.
6621 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006622 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006623 if (err)
6624 goto fail;
6625 }
Filipe Manana41bd6062018-11-28 14:54:28 +00006626 BTRFS_I(inode)->last_link_trans = trans->transid;
Al Viro08c422c2011-12-23 07:58:13 -05006627 d_instantiate(dentry, inode);
Filipe Mananad4682ba2018-06-11 19:24:28 +01006628 ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent,
6629 true, NULL);
6630 if (ret == BTRFS_NEED_TRANS_COMMIT) {
6631 err = btrfs_commit_transaction(trans);
6632 trans = NULL;
6633 }
Yan, Zhenga5719522009-09-24 09:17:31 -04006634 }
Chris Mason39279cc2007-06-12 06:35:45 -04006635
Chris Mason1832a6d2007-12-21 16:27:21 -05006636fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006637 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006638 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006639 if (drop_inode) {
6640 inode_dec_link_count(inode);
6641 iput(inode);
6642 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006643 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006644 return err;
6645}
6646
Al Viro18bb1db2011-07-26 01:41:39 -04006647static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006648{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006649 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006650 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006651 struct btrfs_trans_handle *trans;
6652 struct btrfs_root *root = BTRFS_I(dir)->root;
6653 int err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006654 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006655 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006656
Josef Bacik9ed74f22009-09-11 16:12:44 -04006657 /*
6658 * 2 items for inode and ref
6659 * 2 items for dir items
6660 * 1 for xattr if selinux is on
6661 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006662 trans = btrfs_start_transaction(root, 5);
6663 if (IS_ERR(trans))
6664 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006665
Li Zefan581bb052011-04-20 10:06:11 +08006666 err = btrfs_find_free_ino(root, &objectid);
6667 if (err)
6668 goto out_fail;
6669
Josef Bacikaec74772008-07-24 12:12:38 -04006670 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006671 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6672 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006673 if (IS_ERR(inode)) {
6674 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -04006675 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006676 goto out_fail;
6677 }
Chris Mason5f39d392007-10-15 16:14:19 -04006678
Chris Masonb0d5d102014-09-08 13:08:51 -07006679 /* these must be set before we unlock the inode */
6680 inode->i_op = &btrfs_dir_inode_operations;
6681 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006682
Eric Paris2a7dba32011-02-01 11:05:39 -05006683 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006684 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006685 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006686
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006687 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006688 err = btrfs_update_inode(trans, root, inode);
6689 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006690 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006691
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006692 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6693 dentry->d_name.name,
6694 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006695 if (err)
Al Viro32955c52018-05-16 12:20:05 -04006696 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04006697
Al Viro1e2e5472018-05-04 08:23:01 -04006698 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006699
6700out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006701 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -04006702 if (err && inode) {
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006703 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -04006704 discard_new_inode(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006705 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006706 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006707 return err;
6708}
6709
Chris Masonc8b97812008-10-29 14:49:59 -04006710static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006711 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006712 size_t pg_offset, u64 extent_offset,
6713 struct btrfs_file_extent_item *item)
6714{
6715 int ret;
6716 struct extent_buffer *leaf = path->nodes[0];
6717 char *tmp;
6718 size_t max_size;
6719 unsigned long inline_size;
6720 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006721 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006722
6723 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006724 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006725 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6726 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006727 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006728 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006729 if (!tmp)
6730 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006731 ptr = btrfs_file_extent_inline_start(item);
6732
6733 read_extent_buffer(leaf, tmp, ptr, inline_size);
6734
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006735 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006736 ret = btrfs_decompress(compress_type, tmp, page,
6737 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006738
6739 /*
6740 * decompression code contains a memset to fill in any space between the end
6741 * of the uncompressed data and the end of max_size in case the decompressed
6742 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6743 * the end of an inline extent and the beginning of the next block, so we
6744 * cover that region here.
6745 */
6746
6747 if (max_size + pg_offset < PAGE_SIZE) {
6748 char *map = kmap(page);
6749 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6750 kunmap(page);
6751 }
Chris Masonc8b97812008-10-29 14:49:59 -04006752 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006753 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006754}
6755
Chris Masond352ac62008-09-29 15:18:18 -04006756/*
6757 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006758 * the ugly parts come from merging extents from the disk with the in-ram
6759 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006760 * where the in-ram extents might be locked pending data=ordered completion.
6761 *
6762 * This also copies inline extents directly into the page.
6763 */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006764struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
Liu Bode2c6612018-08-25 13:47:59 +08006765 struct page *page,
6766 size_t pg_offset, u64 start, u64 len,
6767 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006768{
David Sterba3ffbd682018-06-29 10:56:42 +02006769 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Chris Masona52d9a82007-08-27 16:49:44 -04006770 int ret;
6771 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006772 u64 extent_start = 0;
6773 u64 extent_end = 0;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006774 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006775 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006776 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006777 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006778 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006779 struct extent_buffer *leaf;
6780 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006781 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006782 struct extent_map_tree *em_tree = &inode->extent_tree;
6783 struct extent_io_tree *io_tree = &inode->io_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006784 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006785
Chris Mason890871b2009-09-02 16:24:52 -04006786 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006787 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006788 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006789 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006790 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006791
Chris Masona52d9a82007-08-27 16:49:44 -04006792 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006793 if (em->start > start || em->start + em->len <= start)
6794 free_extent_map(em);
6795 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006796 free_extent_map(em);
6797 else
6798 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006799 }
David Sterba172ddd62011-04-21 00:48:27 +02006800 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006801 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006802 err = -ENOMEM;
6803 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006804 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006805 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006806 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006807 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006808 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006809 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006810
Liu Bobee6ec82018-08-17 05:05:28 +08006811 path = btrfs_alloc_path();
Chris Masonf4219502008-07-22 11:18:09 -04006812 if (!path) {
Liu Bobee6ec82018-08-17 05:05:28 +08006813 err = -ENOMEM;
6814 goto out;
Chris Masonf4219502008-07-22 11:18:09 -04006815 }
6816
Liu Bobee6ec82018-08-17 05:05:28 +08006817 /* Chances are we'll be called again, so go ahead and do readahead */
6818 path->reada = READA_FORWARD;
6819
Liu Boe49aabd2018-08-25 13:47:09 +08006820 /*
6821 * Unless we're going to uncompress the inline extent, no sleep would
6822 * happen.
6823 */
6824 path->leave_spinning = 1;
6825
Nikolay Borisov5c9a7022017-12-01 11:19:40 +02006826 ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0);
Chris Masona52d9a82007-08-27 16:49:44 -04006827 if (ret < 0) {
6828 err = ret;
6829 goto out;
6830 }
6831
6832 if (ret != 0) {
6833 if (path->slots[0] == 0)
6834 goto not_found;
6835 path->slots[0]--;
6836 }
6837
Chris Mason5f39d392007-10-15 16:14:19 -04006838 leaf = path->nodes[0];
6839 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006840 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006841 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006842 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006843 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006844 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006845 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006846 /*
6847 * If we backup past the first extent we want to move forward
6848 * and see if there is an extent in front of us, otherwise we'll
6849 * say there is a hole for our whole search range which can
6850 * cause problems.
6851 */
6852 extent_end = start;
6853 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006854 }
6855
Chris Mason5f39d392007-10-15 16:14:19 -04006856 found_type = btrfs_file_extent_type(leaf, item);
6857 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006858 if (found_type == BTRFS_FILE_EXTENT_REG ||
6859 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006860 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006861 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08006862
6863 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6864 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006865 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6866 size_t size;
Qu Wenruoe41ca582018-06-06 15:41:49 +08006867
6868 size = btrfs_file_extent_ram_bytes(leaf, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006869 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006870 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08006871
6872 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6873 path->slots[0],
6874 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006875 }
Josef Bacik25a50342013-10-14 12:08:38 -04006876next:
Yan Zheng9036c102008-10-30 14:19:41 -04006877 if (start >= extent_end) {
6878 path->slots[0]++;
6879 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6880 ret = btrfs_next_leaf(root, path);
6881 if (ret < 0) {
6882 err = ret;
6883 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006884 }
Yan Zheng9036c102008-10-30 14:19:41 -04006885 if (ret > 0)
6886 goto not_found;
6887 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006888 }
Yan Zheng9036c102008-10-30 14:19:41 -04006889 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6890 if (found_key.objectid != objectid ||
6891 found_key.type != BTRFS_EXTENT_DATA_KEY)
6892 goto not_found;
6893 if (start + len <= found_key.offset)
6894 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006895 if (start > found_key.offset)
6896 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006897 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006898 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006899 em->len = found_key.offset - start;
6900 goto not_found_em;
6901 }
6902
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006903 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006904 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006905
Yan Zhengd899e052008-10-30 14:25:28 -04006906 if (found_type == BTRFS_FILE_EXTENT_REG ||
6907 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006908 goto insert;
6909 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006910 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006911 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006912 size_t size;
6913 size_t extent_offset;
6914 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006915
Filipe Manana7ffbb592014-06-09 03:48:05 +01006916 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006917 goto out;
Yan689f9342007-10-29 11:41:07 -04006918
Qu Wenruoe41ca582018-06-06 15:41:49 +08006919 size = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006920 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006921 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6922 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006923 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006924 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006925 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006926 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006927 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Liu Boe49aabd2018-08-25 13:47:09 +08006928
6929 btrfs_set_path_blocking(path);
Edmund Nadolskibf46f522017-11-20 13:24:49 -07006930 if (!PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006931 if (btrfs_file_extent_compression(leaf, item) !=
6932 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006933 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006934 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006935 if (ret) {
6936 err = ret;
6937 goto out;
6938 }
Chris Masonc8b97812008-10-29 14:49:59 -04006939 } else {
6940 map = kmap(page);
6941 read_extent_buffer(leaf, map + pg_offset, ptr,
6942 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006943 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006944 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006945 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006946 copy_size);
6947 }
Chris Masonc8b97812008-10-29 14:49:59 -04006948 kunmap(page);
6949 }
Chris Mason179e29e2007-11-01 11:28:41 -04006950 flush_dcache_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04006951 }
Chris Masond1310b22008-01-24 16:13:08 -05006952 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006953 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006954 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006955 }
6956not_found:
6957 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006958 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006959 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006960not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006961 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006962insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006963 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006964 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006965 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006966 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6967 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006968 err = -EIO;
6969 goto out;
6970 }
Chris Masond1310b22008-01-24 16:13:08 -05006971
6972 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006973 write_lock(&em_tree->lock);
David Sterbaf46b24c2018-04-03 21:45:57 +02006974 err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
Chris Mason890871b2009-09-02 16:24:52 -04006975 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006976out:
Liu Boc6414282018-08-23 07:36:17 +08006977 btrfs_free_path(path);
liubo1abe9b82011-03-24 11:18:59 +00006978
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006979 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006980
Chris Masona52d9a82007-08-27 16:49:44 -04006981 if (err) {
6982 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006983 return ERR_PTR(err);
6984 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006985 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006986 return em;
6987}
6988
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02006989struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
6990 struct page *page,
6991 size_t pg_offset, u64 start, u64 len,
6992 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05006993{
6994 struct extent_map *em;
6995 struct extent_map *hole_em = NULL;
6996 u64 range_start = start;
6997 u64 end;
6998 u64 found;
6999 u64 found_end;
7000 int err = 0;
7001
7002 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7003 if (IS_ERR(em))
7004 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03007005 /*
7006 * If our em maps to:
7007 * - a hole or
7008 * - a pre-alloc extent,
7009 * there might actually be delalloc bytes behind it.
7010 */
7011 if (em->block_start != EXTENT_MAP_HOLE &&
7012 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7013 return em;
7014 else
7015 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007016
7017 /* check to see if we've wrapped (len == -1 or similar) */
7018 end = start + len;
7019 if (end < start)
7020 end = (u64)-1;
7021 else
7022 end -= 1;
7023
7024 em = NULL;
7025
7026 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007027 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007028 end, len, EXTENT_DELALLOC, 1);
7029 found_end = range_start + found;
7030 if (found_end < range_start)
7031 found_end = (u64)-1;
7032
7033 /*
7034 * we didn't find anything useful, return
7035 * the original results from get_extent()
7036 */
7037 if (range_start > end || found_end <= start) {
7038 em = hole_em;
7039 hole_em = NULL;
7040 goto out;
7041 }
7042
7043 /* adjust the range_start to make sure it doesn't
7044 * go backwards from the start they passed in
7045 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307046 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007047 found = found_end - range_start;
7048
7049 if (found > 0) {
7050 u64 hole_start = start;
7051 u64 hole_len = len;
7052
David Sterba172ddd62011-04-21 00:48:27 +02007053 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007054 if (!em) {
7055 err = -ENOMEM;
7056 goto out;
7057 }
7058 /*
7059 * when btrfs_get_extent can't find anything it
7060 * returns one huge hole
7061 *
7062 * make sure what it found really fits our range, and
7063 * adjust to make sure it is based on the start from
7064 * the caller
7065 */
7066 if (hole_em) {
7067 u64 calc_end = extent_map_end(hole_em);
7068
7069 if (calc_end <= start || (hole_em->start > end)) {
7070 free_extent_map(hole_em);
7071 hole_em = NULL;
7072 } else {
7073 hole_start = max(hole_em->start, start);
7074 hole_len = calc_end - hole_start;
7075 }
7076 }
7077 em->bdev = NULL;
7078 if (hole_em && range_start > hole_start) {
7079 /* our hole starts before our delalloc, so we
7080 * have to return just the parts of the hole
7081 * that go until the delalloc starts
7082 */
7083 em->len = min(hole_len,
7084 range_start - hole_start);
7085 em->start = hole_start;
7086 em->orig_start = hole_start;
7087 /*
7088 * don't adjust block start at all,
7089 * it is fixed at EXTENT_MAP_HOLE
7090 */
7091 em->block_start = hole_em->block_start;
7092 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007093 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7094 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007095 } else {
7096 em->start = range_start;
7097 em->len = found;
7098 em->orig_start = range_start;
7099 em->block_start = EXTENT_MAP_DELALLOC;
7100 em->block_len = found;
7101 }
Nikolay Borisovbf8d32b2017-12-01 11:19:43 +02007102 } else {
Chris Masonec29ed52011-02-23 16:23:20 -05007103 return hole_em;
7104 }
7105out:
7106
7107 free_extent_map(hole_em);
7108 if (err) {
7109 free_extent_map(em);
7110 return ERR_PTR(err);
7111 }
7112 return em;
7113}
7114
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007115static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7116 const u64 start,
7117 const u64 len,
7118 const u64 orig_start,
7119 const u64 block_start,
7120 const u64 block_len,
7121 const u64 orig_block_len,
7122 const u64 ram_bytes,
7123 const int type)
7124{
7125 struct extent_map *em = NULL;
7126 int ret;
7127
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007128 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007129 em = create_io_em(inode, start, len, orig_start,
7130 block_start, block_len, orig_block_len,
7131 ram_bytes,
7132 BTRFS_COMPRESS_NONE, /* compress_type */
7133 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007134 if (IS_ERR(em))
7135 goto out;
7136 }
7137 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7138 len, block_len, type);
7139 if (ret) {
7140 if (em) {
7141 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007142 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007143 start + len - 1, 0);
7144 }
7145 em = ERR_PTR(ret);
7146 }
7147 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007148
7149 return em;
7150}
7151
Josef Bacik4b46fce2010-05-23 11:00:55 -04007152static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7153 u64 start, u64 len)
7154{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007155 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007156 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007157 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007158 struct btrfs_key ins;
7159 u64 alloc_hint;
7160 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007161
Josef Bacik4b46fce2010-05-23 11:00:55 -04007162 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007163 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007164 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007165 if (ret)
7166 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007167
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007168 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7169 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007170 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007171 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007172 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007173 btrfs_free_reserved_extent(fs_info, ins.objectid,
7174 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007175
Josef Bacik4b46fce2010-05-23 11:00:55 -04007176 return em;
7177}
7178
Chris Mason46bfbb52010-05-26 11:04:10 -04007179/*
7180 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7181 * block must be cow'd
7182 */
Josef Bacik00361582013-08-14 14:02:47 -04007183noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007184 u64 *orig_start, u64 *orig_block_len,
7185 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007186{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007187 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007188 struct btrfs_path *path;
7189 int ret;
7190 struct extent_buffer *leaf;
7191 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007192 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007193 struct btrfs_file_extent_item *fi;
7194 struct btrfs_key key;
7195 u64 disk_bytenr;
7196 u64 backref_offset;
7197 u64 extent_end;
7198 u64 num_bytes;
7199 int slot;
7200 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007201 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007202
Chris Mason46bfbb52010-05-26 11:04:10 -04007203 path = btrfs_alloc_path();
7204 if (!path)
7205 return -ENOMEM;
7206
David Sterbaf85b7372017-01-20 14:54:07 +01007207 ret = btrfs_lookup_file_extent(NULL, root, path,
7208 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007209 if (ret < 0)
7210 goto out;
7211
7212 slot = path->slots[0];
7213 if (ret == 1) {
7214 if (slot == 0) {
7215 /* can't find the item, must cow */
7216 ret = 0;
7217 goto out;
7218 }
7219 slot--;
7220 }
7221 ret = 0;
7222 leaf = path->nodes[0];
7223 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007224 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007225 key.type != BTRFS_EXTENT_DATA_KEY) {
7226 /* not our file or wrong item type, must cow */
7227 goto out;
7228 }
7229
7230 if (key.offset > offset) {
7231 /* Wrong offset, must cow */
7232 goto out;
7233 }
7234
7235 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7236 found_type = btrfs_file_extent_type(leaf, fi);
7237 if (found_type != BTRFS_FILE_EXTENT_REG &&
7238 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7239 /* not a regular extent, must cow */
7240 goto out;
7241 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007242
7243 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7244 goto out;
7245
Miao Xiee77751a2013-12-27 21:11:50 +08007246 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7247 if (extent_end <= offset)
7248 goto out;
7249
Chris Mason46bfbb52010-05-26 11:04:10 -04007250 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007251 if (disk_bytenr == 0)
7252 goto out;
7253
7254 if (btrfs_file_extent_compression(leaf, fi) ||
7255 btrfs_file_extent_encryption(leaf, fi) ||
7256 btrfs_file_extent_other_encoding(leaf, fi))
7257 goto out;
7258
Ethan Lien78d42952018-05-17 14:58:29 +08007259 /*
7260 * Do the same check as in btrfs_cross_ref_exist but without the
7261 * unnecessary search.
7262 */
7263 if (btrfs_file_extent_generation(leaf, fi) <=
7264 btrfs_root_last_snapshot(&root->root_item))
7265 goto out;
7266
Chris Mason46bfbb52010-05-26 11:04:10 -04007267 backref_offset = btrfs_file_extent_offset(leaf, fi);
7268
Josef Bacik7ee9e442013-06-21 16:37:03 -04007269 if (orig_start) {
7270 *orig_start = key.offset - backref_offset;
7271 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7272 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7273 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007274
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007275 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007276 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007277
7278 num_bytes = min(offset + *len, extent_end) - offset;
7279 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7280 u64 range_end;
7281
Jeff Mahoneyda170662016-06-15 09:22:56 -04007282 range_end = round_up(offset + num_bytes,
7283 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007284 ret = test_range_bit(io_tree, offset, range_end,
7285 EXTENT_DELALLOC, 0, NULL);
7286 if (ret) {
7287 ret = -EAGAIN;
7288 goto out;
7289 }
7290 }
7291
Josef Bacik1bda19e2013-10-18 12:10:36 -04007292 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007293
7294 /*
7295 * look for other files referencing this extent, if we
7296 * find any we must cow
7297 */
Josef Bacik00361582013-08-14 14:02:47 -04007298
Liu Boe4c3b2d2017-01-30 12:25:28 -08007299 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007300 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007301 if (ret) {
7302 ret = 0;
7303 goto out;
7304 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007305
7306 /*
7307 * adjust disk_bytenr and num_bytes to cover just the bytes
7308 * in this extent we are about to write. If there
7309 * are any csums in that range we have to cow in order
7310 * to keep the csums correct
7311 */
7312 disk_bytenr += backref_offset;
7313 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007314 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7315 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007316 /*
7317 * all of the above have passed, it is safe to overwrite this extent
7318 * without cow
7319 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007320 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007321 ret = 1;
7322out:
7323 btrfs_free_path(path);
7324 return ret;
7325}
7326
Josef Bacikeb838e72012-07-31 16:28:48 -04007327static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7328 struct extent_state **cached_state, int writing)
7329{
7330 struct btrfs_ordered_extent *ordered;
7331 int ret = 0;
7332
7333 while (1) {
7334 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007335 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007336 /*
7337 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007338 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007339 * extents in this range.
7340 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007341 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007342 lockend - lockstart + 1);
7343
7344 /*
7345 * We need to make sure there are no buffered pages in this
7346 * range either, we could have raced between the invalidate in
7347 * generic_file_direct_write and locking the extent. The
7348 * invalidate needs to happen so that reads after a write do not
7349 * get stale data.
7350 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007351 if (!ordered &&
David Sterba051c98e2018-03-07 15:33:22 +01007352 (!writing || !filemap_range_has_page(inode->i_mapping,
7353 lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007354 break;
7355
7356 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbae43bbe52017-12-12 21:43:52 +01007357 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007358
7359 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007360 /*
7361 * If we are doing a DIO read and the ordered extent we
7362 * found is for a buffered write, we can not wait for it
7363 * to complete and retry, because if we do so we can
7364 * deadlock with concurrent buffered writes on page
7365 * locks. This happens only if our DIO read covers more
7366 * than one extent map, if at this point has already
7367 * created an ordered extent for a previous extent map
7368 * and locked its range in the inode's io tree, and a
7369 * concurrent write against that previous extent map's
7370 * range and this range started (we unlock the ranges
7371 * in the io tree only when the bios complete and
7372 * buffered writes always lock pages before attempting
7373 * to lock range in the io tree).
7374 */
7375 if (writing ||
7376 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7377 btrfs_start_ordered_extent(inode, ordered, 1);
7378 else
7379 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007380 btrfs_put_ordered_extent(ordered);
7381 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007382 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007383 * We could trigger writeback for this range (and wait
7384 * for it to complete) and then invalidate the pages for
7385 * this range (through invalidate_inode_pages2_range()),
7386 * but that can lead us to a deadlock with a concurrent
7387 * call to readpages() (a buffered read or a defrag call
7388 * triggered a readahead) on a page lock due to an
7389 * ordered dio extent we created before but did not have
7390 * yet a corresponding bio submitted (whence it can not
7391 * complete), which makes readpages() wait for that
7392 * ordered extent to complete while holding a lock on
7393 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007394 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007395 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007396 }
7397
Filipe Mananaade77022016-02-18 14:28:55 +00007398 if (ret)
7399 break;
7400
Josef Bacikeb838e72012-07-31 16:28:48 -04007401 cond_resched();
7402 }
7403
7404 return ret;
7405}
7406
Liu Bo6f9994d2017-01-31 07:50:22 -08007407/* The callers of this must take lock_extent() */
7408static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7409 u64 orig_start, u64 block_start,
7410 u64 block_len, u64 orig_block_len,
7411 u64 ram_bytes, int compress_type,
7412 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007413{
7414 struct extent_map_tree *em_tree;
7415 struct extent_map *em;
7416 struct btrfs_root *root = BTRFS_I(inode)->root;
7417 int ret;
7418
Liu Bo6f9994d2017-01-31 07:50:22 -08007419 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7420 type == BTRFS_ORDERED_COMPRESSED ||
7421 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007422 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007423
Josef Bacik69ffb542012-09-11 15:40:07 -04007424 em_tree = &BTRFS_I(inode)->extent_tree;
7425 em = alloc_extent_map();
7426 if (!em)
7427 return ERR_PTR(-ENOMEM);
7428
7429 em->start = start;
7430 em->orig_start = orig_start;
7431 em->len = len;
7432 em->block_len = block_len;
7433 em->block_start = block_start;
7434 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007435 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007436 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007437 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007438 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007439 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007440 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007441 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007442 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7443 em->compress_type = compress_type;
7444 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007445
7446 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007447 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007448 em->start + em->len - 1, 0);
7449 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007450 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007451 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007452 /*
7453 * The caller has taken lock_extent(), who could race with us
7454 * to add em?
7455 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007456 } while (ret == -EEXIST);
7457
7458 if (ret) {
7459 free_extent_map(em);
7460 return ERR_PTR(ret);
7461 }
7462
Liu Bo6f9994d2017-01-31 07:50:22 -08007463 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007464 return em;
7465}
7466
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007467
7468static int btrfs_get_blocks_direct_read(struct extent_map *em,
7469 struct buffer_head *bh_result,
7470 struct inode *inode,
7471 u64 start, u64 len)
7472{
7473 if (em->block_start == EXTENT_MAP_HOLE ||
7474 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7475 return -ENOENT;
7476
7477 len = min(len, em->len - (start - em->start));
7478
7479 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7480 inode->i_blkbits;
7481 bh_result->b_size = len;
7482 bh_result->b_bdev = em->bdev;
7483 set_buffer_mapped(bh_result);
7484
7485 return 0;
7486}
7487
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007488static int btrfs_get_blocks_direct_write(struct extent_map **map,
7489 struct buffer_head *bh_result,
7490 struct inode *inode,
7491 struct btrfs_dio_data *dio_data,
7492 u64 start, u64 len)
7493{
7494 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7495 struct extent_map *em = *map;
7496 int ret = 0;
7497
7498 /*
7499 * We don't allocate a new extent in the following cases
7500 *
7501 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7502 * existing extent.
7503 * 2) The extent is marked as PREALLOC. We're good to go here and can
7504 * just use the extent.
7505 *
7506 */
7507 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7508 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7509 em->block_start != EXTENT_MAP_HOLE)) {
7510 int type;
7511 u64 block_start, orig_start, orig_block_len, ram_bytes;
7512
7513 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7514 type = BTRFS_ORDERED_PREALLOC;
7515 else
7516 type = BTRFS_ORDERED_NOCOW;
7517 len = min(len, em->len - (start - em->start));
7518 block_start = em->block_start + (start - em->start);
7519
7520 if (can_nocow_extent(inode, start, &len, &orig_start,
7521 &orig_block_len, &ram_bytes) == 1 &&
7522 btrfs_inc_nocow_writers(fs_info, block_start)) {
7523 struct extent_map *em2;
7524
7525 em2 = btrfs_create_dio_extent(inode, start, len,
7526 orig_start, block_start,
7527 len, orig_block_len,
7528 ram_bytes, type);
7529 btrfs_dec_nocow_writers(fs_info, block_start);
7530 if (type == BTRFS_ORDERED_PREALLOC) {
7531 free_extent_map(em);
7532 *map = em = em2;
7533 }
7534
7535 if (em2 && IS_ERR(em2)) {
7536 ret = PTR_ERR(em2);
7537 goto out;
7538 }
7539 /*
7540 * For inode marked NODATACOW or extent marked PREALLOC,
7541 * use the existing or preallocated extent, so does not
7542 * need to adjust btrfs_space_info's bytes_may_use.
7543 */
7544 btrfs_free_reserved_data_space_noquota(inode, start,
7545 len);
7546 goto skip_cow;
7547 }
7548 }
7549
7550 /* this will cow the extent */
7551 len = bh_result->b_size;
7552 free_extent_map(em);
7553 *map = em = btrfs_new_extent_direct(inode, start, len);
7554 if (IS_ERR(em)) {
7555 ret = PTR_ERR(em);
7556 goto out;
7557 }
7558
7559 len = min(len, em->len - (start - em->start));
7560
7561skip_cow:
7562 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7563 inode->i_blkbits;
7564 bh_result->b_size = len;
7565 bh_result->b_bdev = em->bdev;
7566 set_buffer_mapped(bh_result);
7567
7568 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7569 set_buffer_new(bh_result);
7570
7571 /*
7572 * Need to update the i_size under the extent lock so buffered
7573 * readers will get the updated i_size when we unlock.
7574 */
7575 if (!dio_data->overwrite && start + len > i_size_read(inode))
7576 i_size_write(inode, start + len);
7577
7578 WARN_ON(dio_data->reserve < len);
7579 dio_data->reserve -= len;
7580 dio_data->unsubmitted_oe_range_end = start + len;
7581 current->journal_info = dio_data;
7582out:
7583 return ret;
7584}
7585
Josef Bacik4b46fce2010-05-23 11:00:55 -04007586static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7587 struct buffer_head *bh_result, int create)
7588{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007589 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007590 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007591 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307592 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007593 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007594 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007595 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007596 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007597 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007598
Miao Xie172a5042013-02-21 02:48:22 -07007599 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007600 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007601 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007602 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007603
Josef Bacikc3298612012-08-03 16:49:19 -04007604 lockstart = start;
7605 lockend = start + len - 1;
7606
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007607 if (current->journal_info) {
7608 /*
7609 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007610 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007611 * confused.
7612 */
chandan50745b02015-08-28 21:10:13 +05307613 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007614 current->journal_info = NULL;
7615 }
7616
Josef Bacikeb838e72012-07-31 16:28:48 -04007617 /*
7618 * If this errors out it's because we couldn't invalidate pagecache for
7619 * this range and we need to fallback to buffered.
7620 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007621 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7622 create)) {
7623 ret = -ENOTBLK;
7624 goto err;
7625 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007626
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02007627 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007628 if (IS_ERR(em)) {
7629 ret = PTR_ERR(em);
7630 goto unlock_err;
7631 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007632
7633 /*
7634 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7635 * io. INLINE is special, and we could probably kludge it in here, but
7636 * it's still buffered so for safety lets just fall back to the generic
7637 * buffered path.
7638 *
7639 * For COMPRESSED we _have_ to read the entire extent in so we can
7640 * decompress it, so there will be buffering required no matter what we
7641 * do, so go ahead and fallback to buffered.
7642 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007643 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007644 * to buffered IO. Don't blame me, this is the price we pay for using
7645 * the generic code.
7646 */
7647 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7648 em->block_start == EXTENT_MAP_INLINE) {
7649 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007650 ret = -ENOTBLK;
7651 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007652 }
7653
Nikolay Borisovc5794e52018-05-02 15:19:33 +03007654 if (create) {
7655 ret = btrfs_get_blocks_direct_write(&em, bh_result, inode,
7656 dio_data, start, len);
7657 if (ret < 0)
7658 goto unlock_err;
7659
7660 /* clear and unlock the entire range */
7661 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7662 unlock_bits, 1, 0, &cached_state);
7663 } else {
Nikolay Borisov1c8d0172018-05-02 15:19:32 +03007664 ret = btrfs_get_blocks_direct_read(em, bh_result, inode,
7665 start, len);
7666 /* Can be negative only if we read from a hole */
7667 if (ret < 0) {
7668 ret = 0;
7669 free_extent_map(em);
7670 goto unlock_err;
7671 }
7672 /*
7673 * We need to unlock only the end area that we aren't using.
7674 * The rest is going to be unlocked by the endio routine.
7675 */
7676 lockstart = start + bh_result->b_size;
7677 if (lockstart < lockend) {
7678 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7679 lockend, unlock_bits, 1, 0,
7680 &cached_state);
7681 } else {
7682 free_extent_state(cached_state);
7683 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007684 }
7685
Josef Bacik4b46fce2010-05-23 11:00:55 -04007686 free_extent_map(em);
7687
7688 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007689
7690unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007691 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaae0f1622017-10-31 16:37:52 +01007692 unlock_bits, 1, 0, &cached_state);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007693err:
chandan50745b02015-08-28 21:10:13 +05307694 if (dio_data)
7695 current->journal_info = dio_data;
Josef Bacikeb838e72012-07-31 16:28:48 -04007696 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007697}
7698
Omar Sandoval58efbc92017-08-22 23:45:59 -07007699static inline blk_status_t submit_dio_repair_bio(struct inode *inode,
7700 struct bio *bio,
7701 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007702{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007703 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007704 blk_status_t ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007705
Mike Christie37226b22016-06-05 14:31:52 -05007706 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007707
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007708 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007709 if (ret)
Nikolay Borisovea057f62017-12-13 10:25:38 +02007710 return ret;
Miao Xie8b110e32014-09-12 18:44:03 +08007711
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007712 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Nikolay Borisovea057f62017-12-13 10:25:38 +02007713
Miao Xie8b110e32014-09-12 18:44:03 +08007714 return ret;
7715}
7716
7717static int btrfs_check_dio_repairable(struct inode *inode,
7718 struct bio *failed_bio,
7719 struct io_failure_record *failrec,
7720 int failed_mirror)
7721{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007722 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007723 int num_copies;
7724
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007725 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007726 if (num_copies == 1) {
7727 /*
7728 * we only have a single copy of the data, so don't bother with
7729 * all the retry and error correction code that follows. no
7730 * matter what the error is, it is very likely to persist.
7731 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007732 btrfs_debug(fs_info,
7733 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7734 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007735 return 0;
7736 }
7737
7738 failrec->failed_mirror = failed_mirror;
7739 failrec->this_mirror++;
7740 if (failrec->this_mirror == failed_mirror)
7741 failrec->this_mirror++;
7742
7743 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007744 btrfs_debug(fs_info,
7745 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7746 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007747 return 0;
7748 }
7749
7750 return 1;
7751}
7752
Omar Sandoval58efbc92017-08-22 23:45:59 -07007753static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio,
7754 struct page *page, unsigned int pgoff,
7755 u64 start, u64 end, int failed_mirror,
7756 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007757{
7758 struct io_failure_record *failrec;
Josef Bacik7870d082017-05-05 11:57:15 -04007759 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7760 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007761 struct bio *bio;
7762 int isector;
David Sterbaf1c77c52017-06-06 19:03:49 +02007763 unsigned int read_mode = 0;
Liu Bo17347ce2017-05-15 15:33:27 -07007764 int segs;
Miao Xie8b110e32014-09-12 18:44:03 +08007765 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007766 blk_status_t status;
Ming Leic16a8ac2017-12-18 20:22:12 +08007767 struct bio_vec bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007768
Mike Christie37226b22016-06-05 14:31:52 -05007769 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007770
7771 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7772 if (ret)
Omar Sandoval58efbc92017-08-22 23:45:59 -07007773 return errno_to_blk_status(ret);
Miao Xie8b110e32014-09-12 18:44:03 +08007774
7775 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7776 failed_mirror);
7777 if (!ret) {
Josef Bacik7870d082017-05-05 11:57:15 -04007778 free_io_failure(failure_tree, io_tree, failrec);
Omar Sandoval58efbc92017-08-22 23:45:59 -07007779 return BLK_STS_IOERR;
Miao Xie8b110e32014-09-12 18:44:03 +08007780 }
7781
Liu Bo17347ce2017-05-15 15:33:27 -07007782 segs = bio_segments(failed_bio);
Ming Leic16a8ac2017-12-18 20:22:12 +08007783 bio_get_first_bvec(failed_bio, &bvec);
Liu Bo17347ce2017-05-15 15:33:27 -07007784 if (segs > 1 ||
Ming Leic16a8ac2017-12-18 20:22:12 +08007785 (bvec.bv_len > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007786 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007787
7788 isector = start - btrfs_io_bio(failed_bio)->logical;
7789 isector >>= inode->i_sb->s_blocksize_bits;
7790 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307791 pgoff, isector, repair_endio, repair_arg);
David Sterbaebcc3262018-06-29 10:56:53 +02007792 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie8b110e32014-09-12 18:44:03 +08007793
7794 btrfs_debug(BTRFS_I(inode)->root->fs_info,
David Sterba913e1532017-07-13 15:32:18 +02007795 "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d",
Miao Xie8b110e32014-09-12 18:44:03 +08007796 read_mode, failrec->this_mirror, failrec->in_validation);
7797
Omar Sandoval58efbc92017-08-22 23:45:59 -07007798 status = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
7799 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04007800 free_io_failure(failure_tree, io_tree, failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007801 bio_put(bio);
7802 }
7803
Omar Sandoval58efbc92017-08-22 23:45:59 -07007804 return status;
Miao Xie8b110e32014-09-12 18:44:03 +08007805}
7806
7807struct btrfs_retry_complete {
7808 struct completion done;
7809 struct inode *inode;
7810 u64 start;
7811 int uptodate;
7812};
7813
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007814static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007815{
7816 struct btrfs_retry_complete *done = bio->bi_private;
Josef Bacik7870d082017-05-05 11:57:15 -04007817 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007818 struct bio_vec *bvec;
Josef Bacik7870d082017-05-05 11:57:15 -04007819 struct extent_io_tree *io_tree, *failure_tree;
Miao Xie8b110e32014-09-12 18:44:03 +08007820 int i;
7821
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007822 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007823 goto end;
7824
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307825 ASSERT(bio->bi_vcnt == 1);
Josef Bacik7870d082017-05-05 11:57:15 -04007826 io_tree = &BTRFS_I(inode)->io_tree;
7827 failure_tree = &BTRFS_I(inode)->io_failure_tree;
Ming Lei263663c2017-12-18 20:22:04 +08007828 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307829
Miao Xie8b110e32014-09-12 18:44:03 +08007830 done->uptodate = 1;
David Sterbac09abff2017-07-13 18:10:07 +02007831 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007832 bio_for_each_segment_all(bvec, bio, i)
Josef Bacik7870d082017-05-05 11:57:15 -04007833 clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree,
7834 io_tree, done->start, bvec->bv_page,
7835 btrfs_ino(BTRFS_I(inode)), 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007836end:
7837 complete(&done->done);
7838 bio_put(bio);
7839}
7840
Omar Sandoval58efbc92017-08-22 23:45:59 -07007841static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode,
7842 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007843{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307844 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007845 struct bio_vec bvec;
7846 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007847 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007848 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307849 unsigned int pgoff;
7850 u32 sectorsize;
7851 int nr_sectors;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007852 blk_status_t ret;
7853 blk_status_t err = BLK_STS_OK;
Miao Xiedc380ae2014-09-12 18:43:55 +08007854
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307855 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007856 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307857
Miao Xiec1dc0892014-09-12 18:43:56 +08007858 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007859 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007860 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007861
Liu Bo17347ce2017-05-15 15:33:27 -07007862 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7863 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
7864 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307865
7866next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007867 done.uptodate = 0;
7868 done.start = start;
7869 init_completion(&done.done);
7870
Liu Bo17347ce2017-05-15 15:33:27 -07007871 ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307872 pgoff, start, start + sectorsize - 1,
7873 io_bio->mirror_num,
7874 btrfs_retry_endio_nocsum, &done);
Liu Bo629ebf42017-05-15 17:20:07 -07007875 if (ret) {
7876 err = ret;
7877 goto next;
7878 }
Miao Xie8b110e32014-09-12 18:44:03 +08007879
David Sterba9c17f6c2017-07-19 19:26:45 +02007880 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007881
7882 if (!done.uptodate) {
7883 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307884 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007885 }
7886
Liu Bo629ebf42017-05-15 17:20:07 -07007887next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307888 start += sectorsize;
7889
Liu Bo97bf5a52017-04-07 13:11:10 -07007890 nr_sectors--;
7891 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307892 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07007893 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307894 goto next_block_or_try_again;
7895 }
Miao Xie8b110e32014-09-12 18:44:03 +08007896 }
7897
Liu Bo629ebf42017-05-15 17:20:07 -07007898 return err;
Miao Xie8b110e32014-09-12 18:44:03 +08007899}
7900
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007901static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007902{
7903 struct btrfs_retry_complete *done = bio->bi_private;
7904 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04007905 struct extent_io_tree *io_tree, *failure_tree;
7906 struct inode *inode = done->inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007907 struct bio_vec *bvec;
7908 int uptodate;
7909 int ret;
7910 int i;
7911
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007912 if (bio->bi_status)
Miao Xie8b110e32014-09-12 18:44:03 +08007913 goto end;
7914
7915 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307916
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307917 ASSERT(bio->bi_vcnt == 1);
Ming Lei263663c2017-12-18 20:22:04 +08007918 ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307919
Josef Bacik7870d082017-05-05 11:57:15 -04007920 io_tree = &BTRFS_I(inode)->io_tree;
7921 failure_tree = &BTRFS_I(inode)->io_failure_tree;
7922
David Sterbac09abff2017-07-13 18:10:07 +02007923 ASSERT(!bio_flagged(bio, BIO_CLONED));
Miao Xie8b110e32014-09-12 18:44:03 +08007924 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik7870d082017-05-05 11:57:15 -04007925 ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page,
7926 bvec->bv_offset, done->start,
7927 bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08007928 if (!ret)
Josef Bacik7870d082017-05-05 11:57:15 -04007929 clean_io_failure(BTRFS_I(inode)->root->fs_info,
7930 failure_tree, io_tree, done->start,
7931 bvec->bv_page,
7932 btrfs_ino(BTRFS_I(inode)),
7933 bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08007934 else
7935 uptodate = 0;
7936 }
7937
7938 done->uptodate = uptodate;
7939end:
7940 complete(&done->done);
7941 bio_put(bio);
7942}
7943
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02007944static blk_status_t __btrfs_subio_endio_read(struct inode *inode,
7945 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08007946{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307947 struct btrfs_fs_info *fs_info;
Liu Bo17347ce2017-05-15 15:33:27 -07007948 struct bio_vec bvec;
7949 struct bvec_iter iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007950 struct btrfs_retry_complete done;
7951 u64 start;
7952 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307953 u32 sectorsize;
7954 int nr_sectors;
7955 unsigned int pgoff;
7956 int csum_pos;
Liu Boef7cdac12017-04-13 18:11:48 -07007957 bool uptodate = (err == 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007958 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07007959 blk_status_t status;
Miao Xie8b110e32014-09-12 18:44:03 +08007960
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307961 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007962 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307963
Omar Sandoval58efbc92017-08-22 23:45:59 -07007964 err = BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08007965 start = io_bio->logical;
7966 done.inode = inode;
Liu Bo17347ce2017-05-15 15:33:27 -07007967 io_bio->bio.bi_iter = io_bio->iter;
Miao Xie8b110e32014-09-12 18:44:03 +08007968
Liu Bo17347ce2017-05-15 15:33:27 -07007969 bio_for_each_segment(bvec, &io_bio->bio, iter) {
7970 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307971
Liu Bo17347ce2017-05-15 15:33:27 -07007972 pgoff = bvec.bv_offset;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307973next_block:
Liu Boef7cdac12017-04-13 18:11:48 -07007974 if (uptodate) {
7975 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
7976 ret = __readpage_endio_check(inode, io_bio, csum_pos,
7977 bvec.bv_page, pgoff, start, sectorsize);
7978 if (likely(!ret))
7979 goto next;
7980 }
Miao Xie8b110e32014-09-12 18:44:03 +08007981try_again:
7982 done.uptodate = 0;
7983 done.start = start;
7984 init_completion(&done.done);
7985
Omar Sandoval58efbc92017-08-22 23:45:59 -07007986 status = dio_read_error(inode, &io_bio->bio, bvec.bv_page,
7987 pgoff, start, start + sectorsize - 1,
7988 io_bio->mirror_num, btrfs_retry_endio,
7989 &done);
7990 if (status) {
7991 err = status;
Miao Xie8b110e32014-09-12 18:44:03 +08007992 goto next;
7993 }
7994
David Sterba9c17f6c2017-07-19 19:26:45 +02007995 wait_for_completion_io(&done.done);
Miao Xie8b110e32014-09-12 18:44:03 +08007996
7997 if (!done.uptodate) {
7998 /* We might have another mirror, so try again */
7999 goto try_again;
8000 }
8001next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308002 offset += sectorsize;
8003 start += sectorsize;
8004
8005 ASSERT(nr_sectors);
8006
Liu Bo97bf5a52017-04-07 13:11:10 -07008007 nr_sectors--;
8008 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308009 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07008010 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308011 goto next_block;
8012 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008013 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008014
8015 return err;
8016}
8017
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008018static blk_status_t btrfs_subio_endio_read(struct inode *inode,
8019 struct btrfs_io_bio *io_bio, blk_status_t err)
Miao Xie8b110e32014-09-12 18:44:03 +08008020{
8021 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8022
8023 if (skip_csum) {
8024 if (unlikely(err))
8025 return __btrfs_correct_data_nocsum(inode, io_bio);
8026 else
Omar Sandoval58efbc92017-08-22 23:45:59 -07008027 return BLK_STS_OK;
Miao Xie8b110e32014-09-12 18:44:03 +08008028 } else {
8029 return __btrfs_subio_endio_read(inode, io_bio, err);
8030 }
8031}
8032
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008033static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008034{
8035 struct btrfs_dio_private *dip = bio->bi_private;
8036 struct inode *inode = dip->inode;
8037 struct bio *dio_bio;
8038 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008039 blk_status_t err = bio->bi_status;
Miao Xiec1dc0892014-09-12 18:43:56 +08008040
Liu Bo99c4e3b92017-09-15 15:06:51 -06008041 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
Miao Xie8b110e32014-09-12 18:44:03 +08008042 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008043
Josef Bacik4b46fce2010-05-23 11:00:55 -04008044 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008045 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008046 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008047
Josef Bacik4b46fce2010-05-23 11:00:55 -04008048 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008049
Liu Bo99c4e3b92017-09-15 15:06:51 -06008050 dio_bio->bi_status = err;
Christoph Hellwig40553512017-06-03 09:37:58 +02008051 dio_end_io(dio_bio);
David Sterbab3a0dd52018-11-22 17:16:49 +01008052 btrfs_io_bio_free_csum(io_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008053 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008054}
8055
Qu Wenruo524272602017-03-08 10:25:52 +08008056static void __endio_write_update_ordered(struct inode *inode,
8057 const u64 offset, const u64 bytes,
8058 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008059{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008060 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008061 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008062 struct btrfs_workqueue *wq;
8063 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008064 u64 ordered_offset = offset;
8065 u64 ordered_bytes = bytes;
Naohiro Aota67c003f2017-09-01 17:59:07 +09008066 u64 last_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008067
Qu Wenruo524272602017-03-08 10:25:52 +08008068 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8069 wq = fs_info->endio_freespace_worker;
8070 func = btrfs_freespace_write_helper;
8071 } else {
8072 wq = fs_info->endio_write_workers;
8073 func = btrfs_endio_write_helper;
8074 }
8075
Nikolay Borisovb25f0d02018-04-11 11:21:17 +03008076 while (ordered_offset < offset + bytes) {
8077 last_offset = ordered_offset;
8078 if (btrfs_dec_test_first_ordered_pending(inode, &ordered,
8079 &ordered_offset,
8080 ordered_bytes,
8081 uptodate)) {
8082 btrfs_init_work(&ordered->work, func,
8083 finish_ordered_fn,
8084 NULL, NULL);
8085 btrfs_queue_work(wq, &ordered->work);
8086 }
8087 /*
8088 * If btrfs_dec_test_ordered_pending does not find any ordered
8089 * extent in the range, we can exit.
8090 */
8091 if (ordered_offset == last_offset)
8092 return;
8093 /*
8094 * Our bio might span multiple ordered extents. In this case
8095 * we keep goin until we have accounted the whole dio.
8096 */
8097 if (ordered_offset < offset + bytes) {
8098 ordered_bytes = offset + bytes - ordered_offset;
8099 ordered = NULL;
8100 }
Chris Mason163cf092010-11-28 19:56:33 -05008101 }
Filipe Manana14543772015-11-24 16:23:54 +00008102}
8103
8104static void btrfs_endio_direct_write(struct bio *bio)
8105{
8106 struct btrfs_dio_private *dip = bio->bi_private;
8107 struct bio *dio_bio = dip->dio_bio;
8108
Qu Wenruo524272602017-03-08 10:25:52 +08008109 __endio_write_update_ordered(dip->inode, dip->logical_offset,
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008110 dip->bytes, !bio->bi_status);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008111
Josef Bacik4b46fce2010-05-23 11:00:55 -04008112 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008113
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008114 dio_bio->bi_status = bio->bi_status;
Christoph Hellwig40553512017-06-03 09:37:58 +02008115 dio_end_io(dio_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008116 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008117}
8118
David Sterbad0ee3932018-03-08 14:35:48 +01008119static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data,
David Sterbad0779292018-03-08 13:47:33 +01008120 struct bio *bio, u64 offset)
Chris Masoneaf25d92010-05-25 09:48:28 -04008121{
Josef Bacikc6100a42017-05-05 11:57:13 -04008122 struct inode *inode = private_data;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008123 blk_status_t ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008124 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008125 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008126 return 0;
8127}
8128
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008129static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008130{
8131 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008132 blk_status_t err = bio->bi_status;
Miao Xiee65e1532010-11-22 03:04:43 +00008133
Miao Xie8b110e32014-09-12 18:44:03 +08008134 if (err)
8135 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008136 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008137 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8138 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008139 (unsigned long long)bio->bi_iter.bi_sector,
8140 bio->bi_iter.bi_size, err);
8141
8142 if (dip->subio_endio)
8143 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008144
8145 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008146 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008147 * We want to perceive the errors flag being set before
8148 * decrementing the reference count. We don't need a barrier
8149 * since atomic operations with a return value are fully
8150 * ordered as per atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008151 */
Nikolay Borisovde224b72018-02-14 10:53:36 +02008152 dip->errors = 1;
Miao Xiee65e1532010-11-22 03:04:43 +00008153 }
8154
8155 /* if there are more bios still pending for this dio, just exit */
8156 if (!atomic_dec_and_test(&dip->pending_bios))
8157 goto out;
8158
Chris Mason9be33952013-05-17 18:30:14 -04008159 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008160 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008161 } else {
Anand Jain2dbe0c72017-10-14 08:35:56 +08008162 dip->dio_bio->bi_status = BLK_STS_OK;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008163 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008164 }
8165out:
8166 bio_put(bio);
8167}
8168
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008169static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008170 struct btrfs_dio_private *dip,
8171 struct bio *bio,
8172 u64 file_offset)
8173{
8174 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8175 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008176 blk_status_t ret;
Miao Xiec1dc0892014-09-12 18:43:56 +08008177
8178 /*
8179 * We load all the csum data we need when we submit
8180 * the first bio to reduce the csum tree search and
8181 * contention.
8182 */
8183 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008184 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008185 file_offset);
8186 if (ret)
8187 return ret;
8188 }
8189
8190 if (bio == dip->orig_bio)
8191 return 0;
8192
8193 file_offset -= dip->logical_offset;
8194 file_offset >>= inode->i_sb->s_blocksize_bits;
8195 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8196
8197 return 0;
8198}
8199
David Sterbad0ee3932018-03-08 14:35:48 +01008200static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio,
8201 struct inode *inode, u64 file_offset, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008202{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008203 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008204 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008205 bool write = bio_op(bio) == REQ_OP_WRITE;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008206 blk_status_t ret;
Miao Xiee65e1532010-11-22 03:04:43 +00008207
Liu Bo4c274bc2017-11-01 17:19:27 -06008208 /* Check btrfs_submit_bio_hook() for rules about async submit. */
Josef Bacikb812ce22012-11-16 13:56:32 -05008209 if (async_submit)
8210 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8211
Josef Bacik5fd02042012-05-02 14:00:54 -04008212 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008213 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008214 if (ret)
8215 goto err;
8216 }
Miao Xiee65e1532010-11-22 03:04:43 +00008217
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008218 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Josef Bacik1ae39932011-04-06 14:41:34 -04008219 goto map;
8220
8221 if (write && async_submit) {
Josef Bacikc6100a42017-05-05 11:57:13 -04008222 ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0,
8223 file_offset, inode,
David Sterbae288c082018-07-18 17:36:24 +02008224 btrfs_submit_bio_start_direct_io);
Miao Xiee65e1532010-11-22 03:04:43 +00008225 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008226 } else if (write) {
8227 /*
8228 * If we aren't doing async submit, calculate the csum of the
8229 * bio now.
8230 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008231 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008232 if (ret)
8233 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008234 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008235 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008236 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008237 if (ret)
8238 goto err;
8239 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008240map:
Liu Bo9b4a9b22017-08-18 11:54:02 -06008241 ret = btrfs_map_bio(fs_info, bio, 0, 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008242err:
Miao Xiee65e1532010-11-22 03:04:43 +00008243 return ret;
8244}
8245
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008246static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip)
Miao Xiee65e1532010-11-22 03:04:43 +00008247{
8248 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008249 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008250 struct bio *bio;
8251 struct bio *orig_bio = dip->orig_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008252 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008253 u64 file_offset = dip->logical_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008254 u64 map_length;
Josef Bacik1ae39932011-04-06 14:41:34 -04008255 int async_submit = 0;
Liu Bo725130b2017-05-16 09:51:39 -07008256 u64 submit_len;
8257 int clone_offset = 0;
8258 int clone_len;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308259 int ret;
Omar Sandoval58efbc92017-08-22 23:45:59 -07008260 blk_status_t status;
Miao Xiee65e1532010-11-22 03:04:43 +00008261
Kent Overstreet4f024f32013-10-11 15:44:27 -07008262 map_length = orig_bio->bi_iter.bi_size;
Liu Bo725130b2017-05-16 09:51:39 -07008263 submit_len = map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008264 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8265 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008266 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008267 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008268
Liu Bo725130b2017-05-16 09:51:39 -07008269 if (map_length >= submit_len) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008270 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008271 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008272 goto submit;
8273 }
8274
David Woodhouse53b381b2013-01-29 18:40:14 -05008275 /* async crcs make it difficult to collect full stripe writes. */
Jeff Mahoney1b868262017-05-17 11:38:35 -04008276 if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008277 async_submit = 0;
8278 else
8279 async_submit = 1;
8280
Liu Bo725130b2017-05-16 09:51:39 -07008281 /* bio split */
8282 ASSERT(map_length <= INT_MAX);
Josef Bacik02f57c72011-04-06 14:25:44 -04008283 atomic_inc(&dip->pending_bios);
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008284 do {
Liu Bo725130b2017-05-16 09:51:39 -07008285 clone_len = min_t(int, submit_len, map_length);
Josef Bacik02f57c72011-04-06 14:25:44 -04008286
Liu Bo725130b2017-05-16 09:51:39 -07008287 /*
8288 * This will never fail as it's passing GPF_NOFS and
8289 * the allocation is backed by btrfs_bioset.
8290 */
Liu Boe4770942017-05-16 10:57:14 -07008291 bio = btrfs_bio_clone_partial(orig_bio, clone_offset,
Liu Bo725130b2017-05-16 09:51:39 -07008292 clone_len);
8293 bio->bi_private = dip;
8294 bio->bi_end_io = btrfs_end_dio_bio;
8295 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008296
Liu Bo725130b2017-05-16 09:51:39 -07008297 ASSERT(submit_len >= clone_len);
8298 submit_len -= clone_len;
8299 if (submit_len == 0)
8300 break;
Miao Xiee65e1532010-11-22 03:04:43 +00008301
Liu Bo725130b2017-05-16 09:51:39 -07008302 /*
8303 * Increase the count before we submit the bio so we know
8304 * the end IO handler won't happen before we increase the
8305 * count. Otherwise, the dip might get freed before we're
8306 * done setting it up.
8307 */
8308 atomic_inc(&dip->pending_bios);
Miao Xiee65e1532010-11-22 03:04:43 +00008309
David Sterbad0ee3932018-03-08 14:35:48 +01008310 status = btrfs_submit_dio_bio(bio, inode, file_offset,
Omar Sandoval58efbc92017-08-22 23:45:59 -07008311 async_submit);
8312 if (status) {
Liu Bo725130b2017-05-16 09:51:39 -07008313 bio_put(bio);
8314 atomic_dec(&dip->pending_bios);
8315 goto out_err;
Miao Xiee65e1532010-11-22 03:04:43 +00008316 }
Liu Bo725130b2017-05-16 09:51:39 -07008317
8318 clone_offset += clone_len;
8319 start_sector += clone_len >> 9;
8320 file_offset += clone_len;
8321
8322 map_length = submit_len;
8323 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
8324 start_sector << 9, &map_length, NULL, 0);
8325 if (ret)
8326 goto out_err;
Arnd Bergmann3c91ee62017-05-18 15:33:29 +02008327 } while (submit_len > 0);
Miao Xiee65e1532010-11-22 03:04:43 +00008328
Josef Bacik02f57c72011-04-06 14:25:44 -04008329submit:
David Sterbad0ee3932018-03-08 14:35:48 +01008330 status = btrfs_submit_dio_bio(bio, inode, file_offset, async_submit);
Omar Sandoval58efbc92017-08-22 23:45:59 -07008331 if (!status)
Miao Xiee65e1532010-11-22 03:04:43 +00008332 return 0;
8333
8334 bio_put(bio);
8335out_err:
8336 dip->errors = 1;
8337 /*
Nikolay Borisovde224b72018-02-14 10:53:36 +02008338 * Before atomic variable goto zero, we must make sure dip->errors is
8339 * perceived to be set. This ordering is ensured by the fact that an
8340 * atomic operations with a return value are fully ordered as per
8341 * atomic_t.txt
Miao Xiee65e1532010-11-22 03:04:43 +00008342 */
Miao Xiee65e1532010-11-22 03:04:43 +00008343 if (atomic_dec_and_test(&dip->pending_bios))
8344 bio_io_error(dip->orig_bio);
8345
8346 /* bio_end_io() will handle error, so we needn't return it */
8347 return 0;
8348}
8349
Mike Christie8a4c1e42016-06-05 14:31:50 -05008350static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8351 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008352{
Filipe Manana61de7182015-07-01 12:13:10 +01008353 struct btrfs_dio_private *dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008354 struct bio *bio = NULL;
8355 struct btrfs_io_bio *io_bio;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008356 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008357 int ret = 0;
8358
David Sterba8b6c1d52017-06-02 17:48:13 +02008359 bio = btrfs_bio_clone(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008360
Miao Xiec1dc0892014-09-12 18:43:56 +08008361 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008362 if (!dip) {
8363 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008364 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008365 }
8366
8367 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008368 dip->inode = inode;
8369 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008370 dip->bytes = dio_bio->bi_iter.bi_size;
8371 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Liu Bo3892ac92017-04-17 15:00:28 -07008372 bio->bi_private = dip;
8373 dip->orig_bio = bio;
Chris Mason9be33952013-05-17 18:30:14 -04008374 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008375 atomic_set(&dip->pending_bios, 0);
Liu Bo3892ac92017-04-17 15:00:28 -07008376 io_bio = btrfs_io_bio(bio);
8377 io_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008378
Miao Xiec1dc0892014-09-12 18:43:56 +08008379 if (write) {
Liu Bo3892ac92017-04-17 15:00:28 -07008380 bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008381 } else {
Liu Bo3892ac92017-04-17 15:00:28 -07008382 bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008383 dip->subio_endio = btrfs_subio_endio_read;
8384 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008385
Filipe Mananaf28a4922015-12-08 19:23:20 +00008386 /*
8387 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8388 * even if we fail to submit a bio, because in such case we do the
8389 * corresponding error handling below and it must not be done a second
8390 * time by btrfs_direct_IO().
8391 */
8392 if (write) {
8393 struct btrfs_dio_data *dio_data = current->journal_info;
8394
8395 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8396 dip->bytes;
8397 dio_data->unsubmitted_oe_range_start =
8398 dio_data->unsubmitted_oe_range_end;
8399 }
8400
Nikolay Borisove6961ca2017-08-03 15:44:58 +03008401 ret = btrfs_submit_direct_hook(dip);
Miao Xiee65e1532010-11-22 03:04:43 +00008402 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008403 return;
Chris Mason9be33952013-05-17 18:30:14 -04008404
David Sterbab3a0dd52018-11-22 17:16:49 +01008405 btrfs_io_bio_free_csum(io_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008406
Josef Bacik4b46fce2010-05-23 11:00:55 -04008407free_ordered:
8408 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008409 * If we arrived here it means either we failed to submit the dip
8410 * or we either failed to clone the dio_bio or failed to allocate the
8411 * dip. If we cloned the dio_bio and allocated the dip, we can just
8412 * call bio_endio against our io_bio so that we get proper resource
8413 * cleanup if we fail to submit the dip, otherwise, we must do the
8414 * same as btrfs_endio_direct_[write|read] because we can't call these
8415 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008416 */
Liu Bo3892ac92017-04-17 15:00:28 -07008417 if (bio && dip) {
Guoqing Jiang054ec2f2017-06-02 16:08:50 +08008418 bio_io_error(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008419 /*
Liu Bo3892ac92017-04-17 15:00:28 -07008420 * The end io callbacks free our dip, do the final put on bio
Filipe Manana61de7182015-07-01 12:13:10 +01008421 * and all the cleanup and final put for dio_bio (through
8422 * dio_end_io()).
8423 */
8424 dip = NULL;
Liu Bo3892ac92017-04-17 15:00:28 -07008425 bio = NULL;
Filipe Manana61de7182015-07-01 12:13:10 +01008426 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008427 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008428 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008429 file_offset,
8430 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008431 false);
Filipe Manana14543772015-11-24 16:23:54 +00008432 else
Filipe Manana61de7182015-07-01 12:13:10 +01008433 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8434 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008435
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02008436 dio_bio->bi_status = BLK_STS_IOERR;
Filipe Manana61de7182015-07-01 12:13:10 +01008437 /*
8438 * Releases and cleans up our dio_bio, no need to bio_put()
8439 * nor bio_endio()/bio_io_error() against dio_bio.
8440 */
Christoph Hellwig40553512017-06-03 09:37:58 +02008441 dio_end_io(dio_bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008442 }
Liu Bo3892ac92017-04-17 15:00:28 -07008443 if (bio)
8444 bio_put(bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008445 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008446}
8447
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008448static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008449 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008450{
8451 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008452 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008453 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008454 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008455
8456 if (offset & blocksize_mask)
8457 goto out;
8458
Al Viro28060d52014-03-22 05:15:17 -04008459 if (iov_iter_alignment(iter) & blocksize_mask)
8460 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008461
Al Viro28060d52014-03-22 05:15:17 -04008462 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008463 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008464 return 0;
8465 /*
8466 * Check to make sure we don't have duplicate iov_base's in this
8467 * iovec, if so return EINVAL, otherwise we'll get csum errors
8468 * when reading back.
8469 */
8470 for (seg = 0; seg < iter->nr_segs; seg++) {
8471 for (i = seg + 1; i < iter->nr_segs; i++) {
8472 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008473 goto out;
8474 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008475 }
8476 retval = 0;
8477out:
8478 return retval;
8479}
Josef Bacikeb838e72012-07-31 16:28:48 -04008480
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008481static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008482{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008483 struct file *file = iocb->ki_filp;
8484 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008485 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308486 struct btrfs_dio_data dio_data = { 0 };
Qu Wenruo364ecf32017-02-27 15:10:38 +08008487 struct extent_changeset *data_reserved = NULL;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008488 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008489 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008490 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008491 bool wakeup = true;
8492 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008493 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008494
Nikolay Borisov8c70c9f2017-08-21 12:43:46 +03008495 if (check_direct_IO(fs_info, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008496 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008497
Jens Axboefe0f07d2015-04-15 17:05:48 -06008498 inode_dio_begin(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008499
Josef Bacik0e267c42013-07-02 10:38:02 -04008500 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008501 * The generic stuff only does filemap_write_and_wait_range, which
8502 * isn't enough if we've written compressed pages to this area, so
8503 * we need to flush the dirty pages again to make absolutely sure
8504 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008505 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008506 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008507 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8508 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008509 filemap_fdatawrite_range(inode->i_mapping, offset,
8510 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008511
Omar Sandoval6f673762015-03-16 04:33:52 -07008512 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008513 /*
8514 * If the write DIO is beyond the EOF, we need update
8515 * the isize, but it is protected by i_mutex. So we can
8516 * not unlock the i_mutex at this case.
8517 */
8518 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008519 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008520 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008521 relock = true;
Goldwyn Rodriguesedf064e2017-06-20 07:05:49 -05008522 } else if (iocb->ki_flags & IOCB_NOWAIT) {
8523 ret = -EAGAIN;
8524 goto out;
Miao Xie38851cc2013-02-08 07:04:11 +00008525 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08008526 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
8527 offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008528 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008529 goto out;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008530
8531 /*
8532 * We need to know how many extents we reserved so that we can
8533 * do the accounting properly if we go over the number we
8534 * originally calculated. Abuse current->journal_info for this.
8535 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008536 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008537 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008538 dio_data.unsubmitted_oe_range_start = (u64)offset;
8539 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308540 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308541 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008542 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8543 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008544 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008545 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8546 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008547 }
8548
Omar Sandoval17f8c842015-03-16 04:33:50 -07008549 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008550 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008551 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008552 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008553 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308554 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008555 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008556 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308557 if (dio_data.reserve)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008558 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008559 offset, dio_data.reserve, true);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008560 /*
8561 * On error we might have left some ordered extents
8562 * without submitting corresponding bios for them, so
8563 * cleanup them up to avoid other tasks getting them
8564 * and waiting for them to complete forever.
8565 */
8566 if (dio_data.unsubmitted_oe_range_start <
8567 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008568 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008569 dio_data.unsubmitted_oe_range_start,
8570 dio_data.unsubmitted_oe_range_end -
8571 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008572 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008573 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruobc42bda2017-02-27 15:10:39 +08008574 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008575 offset, count - (size_t)ret, true);
8576 btrfs_delalloc_release_extents(BTRFS_I(inode), count, false);
Miao Xie09348562013-02-07 10:12:07 +00008577 }
Miao Xie38851cc2013-02-08 07:04:11 +00008578out:
Miao Xie2e60a512013-02-08 07:01:08 +00008579 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008580 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008581 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008582 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008583
Qu Wenruo364ecf32017-02-27 15:10:38 +08008584 extent_changeset_free(data_reserved);
Miao Xie09348562013-02-07 10:12:07 +00008585 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008586}
8587
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008588#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8589
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008590static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8591 __u64 start, __u64 len)
8592{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008593 int ret;
8594
8595 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8596 if (ret)
8597 return ret;
8598
David Sterba2135fb92017-06-23 04:09:57 +02008599 return extent_fiemap(inode, fieinfo, start, len);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008600}
8601
Chris Mason9ebefb182007-06-15 13:50:00 -04008602int btrfs_readpage(struct file *file, struct page *page)
8603{
Chris Masond1310b22008-01-24 16:13:08 -05008604 struct extent_io_tree *tree;
8605 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008606 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008607}
Chris Mason1832a6d2007-12-21 16:27:21 -05008608
Chris Mason39279cc2007-06-12 06:35:45 -04008609static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8610{
Josef Bacikbe7bd732015-10-22 15:05:09 -04008611 struct inode *inode = page->mapping->host;
8612 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008613
8614 if (current->flags & PF_MEMALLOC) {
8615 redirty_page_for_writepage(wbc, page);
8616 unlock_page(page);
8617 return 0;
8618 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008619
8620 /*
8621 * If we are under memory pressure we will call this directly from the
8622 * VM, we need to make sure we have the inode referenced for the ordered
8623 * extent. If not just return like we didn't do anything.
8624 */
8625 if (!igrab(inode)) {
8626 redirty_page_for_writepage(wbc, page);
8627 return AOP_WRITEPAGE_ACTIVATE;
8628 }
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02008629 ret = extent_write_full_page(page, wbc);
Josef Bacikbe7bd732015-10-22 15:05:09 -04008630 btrfs_add_delayed_iput(inode);
8631 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008632}
Chris Mason39279cc2007-06-12 06:35:45 -04008633
Eric Sandeen48a3b632013-04-25 20:41:01 +00008634static int btrfs_writepages(struct address_space *mapping,
8635 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008636{
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03008637 return extent_writepages(mapping, wbc);
Chris Masonb293f02e2007-11-01 19:45:34 -04008638}
8639
Chris Mason3ab2fb52007-11-08 10:59:22 -05008640static int
8641btrfs_readpages(struct file *file, struct address_space *mapping,
8642 struct list_head *pages, unsigned nr_pages)
8643{
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008644 return extent_readpages(mapping, pages, nr_pages);
Chris Mason3ab2fb52007-11-08 10:59:22 -05008645}
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03008646
Chris Masone6dcd2d2008-07-17 12:53:50 -04008647static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008648{
Nikolay Borisov477a30b2018-04-19 10:46:34 +03008649 int ret = try_release_extent_mapping(page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008650 if (ret == 1) {
8651 ClearPagePrivate(page);
8652 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008653 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008654 }
8655 return ret;
8656}
Chris Mason39279cc2007-06-12 06:35:45 -04008657
Chris Masone6dcd2d2008-07-17 12:53:50 -04008658static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8659{
Chris Mason98509cf2008-09-11 15:51:43 -04008660 if (PageWriteback(page) || PageDirty(page))
8661 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008662 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008663}
8664
Lukas Czernerd47992f2013-05-21 23:17:23 -04008665static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8666 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008667{
Josef Bacik5fd02042012-05-02 14:00:54 -04008668 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008669 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008670 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008671 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008672 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008673 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308674 u64 start;
8675 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008676 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008677
Chris Mason8b62b722009-09-02 16:53:46 -04008678 /*
8679 * we have the page locked, so new writeback can't start,
8680 * and the dirty bit won't be cleared while we are here.
8681 *
8682 * Wait for IO on this page so that we can safely clear
8683 * the PagePrivate2 bit and do ordered accounting
8684 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008685 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008686
Josef Bacik5fd02042012-05-02 14:00:54 -04008687 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008688 if (offset) {
8689 btrfs_releasepage(page, GFP_NOFS);
8690 return;
8691 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008692
8693 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008694 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308695again:
8696 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008697 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308698 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008699 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308700 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008701 /*
8702 * IO on this page will never be started, so we need
8703 * to account for any ordered extents now
8704 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008705 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308706 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008707 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008708 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008709 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
David Sterbaae0f1622017-10-31 16:37:52 +01008710 EXTENT_DEFRAG, 1, 0, &cached_state);
Chris Mason8b62b722009-09-02 16:53:46 -04008711 /*
8712 * whoever cleared the private bit is responsible
8713 * for the finish_ordered_io
8714 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008715 if (TestClearPagePrivate2(page)) {
8716 struct btrfs_ordered_inode_tree *tree;
8717 u64 new_len;
8718
8719 tree = &BTRFS_I(inode)->ordered_tree;
8720
8721 spin_lock_irq(&tree->lock);
8722 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308723 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008724 if (new_len < ordered->truncated_len)
8725 ordered->truncated_len = new_len;
8726 spin_unlock_irq(&tree->lock);
8727
8728 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308729 start,
8730 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008731 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008732 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008733 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008734 if (!inode_evicting) {
8735 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308736 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008737 &cached_state);
8738 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308739
8740 start = end + 1;
8741 if (start < page_end)
8742 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008743 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008744
Qu Wenruob9d0b382015-09-29 10:35:16 +08008745 /*
8746 * Qgroup reserved space handler
8747 * Page here will be either
8748 * 1) Already written to disk
8749 * In this case, its reserved space is released from data rsv map
8750 * and will be freed by delayed_ref handler finally.
8751 * So even we call qgroup_free_data(), it won't decrease reserved
8752 * space.
8753 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008754 * This means the reserved space should be freed here. However,
8755 * if a truncate invalidates the page (by clearing PageDirty)
8756 * and the page is accounted for while allocating extent
8757 * in btrfs_check_data_free_space() we let delayed_ref to
8758 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008759 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008760 if (PageDirty(page))
Qu Wenruobc42bda2017-02-27 15:10:39 +08008761 btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008762 if (!inode_evicting) {
8763 clear_extent_bit(tree, page_start, page_end,
8764 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008765 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
8766 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
David Sterbaae0f1622017-10-31 16:37:52 +01008767 &cached_state);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008768
8769 __btrfs_releasepage(page, GFP_NOFS);
8770 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008771
Chris Mason4a096752008-07-21 10:29:44 -04008772 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008773 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008774 ClearPagePrivate(page);
8775 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008776 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008777 }
Chris Mason39279cc2007-06-12 06:35:45 -04008778}
8779
Chris Mason9ebefb182007-06-15 13:50:00 -04008780/*
8781 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8782 * called from a page fault handler when a page is first dirtied. Hence we must
8783 * be careful to check for EOF conditions here. We set the page up correctly
8784 * for a written page which means we get ENOSPC checking when writing into
8785 * holes and correct delalloc and unwritten extent mapping on filesystems that
8786 * support these features.
8787 *
8788 * We are not allowed to take the i_mutex here so we have to play games to
8789 * protect against truncate races as the page could now be beyond EOF. Because
Omar Sandovald1342aa2018-05-11 13:13:29 -07008790 * truncate_setsize() writes the inode size before removing pages, once we have
8791 * the page lock we can determine safely if the page is beyond EOF. If it is not
Chris Mason9ebefb182007-06-15 13:50:00 -04008792 * beyond EOF, then the page is guaranteed safe against truncation until we
8793 * unlock the page.
8794 */
Souptick Joardera528a242018-06-06 19:54:44 +05308795vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008796{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008797 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08008798 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008799 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008800 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8801 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008802 struct extent_state *cached_state = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08008803 struct extent_changeset *data_reserved = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008804 char *kaddr;
8805 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008806 loff_t size;
Souptick Joardera528a242018-06-06 19:54:44 +05308807 vm_fault_t ret;
8808 int ret2;
Chris Mason9998eb72012-01-25 13:47:40 -05008809 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308810 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008811 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008812 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308813 u64 end;
8814
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008815 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008816
Jan Karab2b5ef52012-06-12 16:20:45 +02008817 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008818 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008819 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308820 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008821
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308822 /*
8823 * Reserving delalloc space after obtaining the page lock can lead to
8824 * deadlock. For example, if a dirty page is locked by this function
8825 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8826 * dirty page write out, then the btrfs_writepage() function could
8827 * end up waiting indefinitely to get a lock on the page currently
8828 * being processed by btrfs_page_mkwrite() function.
8829 */
Souptick Joardera528a242018-06-06 19:54:44 +05308830 ret2 = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308831 reserved_space);
Souptick Joardera528a242018-06-06 19:54:44 +05308832 if (!ret2) {
8833 ret2 = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008834 reserved = 1;
8835 }
Souptick Joardera528a242018-06-06 19:54:44 +05308836 if (ret2) {
8837 ret = vmf_error(ret2);
Chris Mason9998eb72012-01-25 13:47:40 -05008838 if (reserved)
8839 goto out;
8840 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008841 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008842
Nick Piggin56a76f82009-03-31 15:23:23 -07008843 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008844again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008845 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008846 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008847
Chris Mason9ebefb182007-06-15 13:50:00 -04008848 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008849 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008850 /* page got truncated out from underneath us */
8851 goto out_unlock;
8852 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008853 wait_on_page_writeback(page);
8854
David Sterbaff13db42015-12-03 14:30:40 +01008855 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008856 set_page_extent_mapped(page);
8857
Chris Masoneb84ae02008-07-17 13:53:27 -04008858 /*
8859 * we can't set the delalloc bits if there are pending ordered
8860 * extents. Drop our locks and wait for them to finish
8861 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008862 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8863 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008864 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008865 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008866 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008867 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008868 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008869 btrfs_put_ordered_extent(ordered);
8870 goto again;
8871 }
8872
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008873 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008874 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008875 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008876 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308877 end = page_start + reserved_space - 1;
Qu Wenruobc42bda2017-02-27 15:10:39 +08008878 btrfs_delalloc_release_space(inode, data_reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08008879 page_start, PAGE_SIZE - reserved_space,
8880 true);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308881 }
8882 }
8883
Josef Bacikfbf19082009-10-01 17:10:23 -04008884 /*
Liu Bo54160342016-12-13 12:15:19 -08008885 * page_mkwrite gets called when the page is firstly dirtied after it's
8886 * faulted in, but write(2) could also dirty a page and set delalloc
8887 * bits, thus in this case for space account reason, we still need to
8888 * clear any delalloc bits within this page range since we have to
8889 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008890 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308891 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06008892 EXTENT_DIRTY | EXTENT_DELALLOC |
8893 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
David Sterbaae0f1622017-10-31 16:37:52 +01008894 0, 0, &cached_state);
Josef Bacikfbf19082009-10-01 17:10:23 -04008895
Souptick Joardera528a242018-06-06 19:54:44 +05308896 ret2 = btrfs_set_extent_delalloc(inode, page_start, end, 0,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08008897 &cached_state, 0);
Souptick Joardera528a242018-06-06 19:54:44 +05308898 if (ret2) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008899 unlock_extent_cached(io_tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01008900 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008901 ret = VM_FAULT_SIGBUS;
8902 goto out_unlock;
8903 }
Souptick Joardera528a242018-06-06 19:54:44 +05308904 ret2 = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04008905
8906 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008907 if (page_start + PAGE_SIZE > size)
Johannes Thumshirn70730172018-12-05 15:23:03 +01008908 zero_start = offset_in_page(size);
Chris Mason9ebefb182007-06-15 13:50:00 -04008909 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008910 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008911
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008912 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008913 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008914 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008915 flush_dcache_page(page);
8916 kunmap(page);
8917 }
Chris Mason247e7432008-07-17 12:53:51 -04008918 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008919 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04008920 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008921
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008922 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04008923 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06008924 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04008925
David Sterbae43bbe52017-12-12 21:43:52 +01008926 unlock_extent_cached(io_tree, page_start, page_end, &cached_state);
Chris Mason9ebefb182007-06-15 13:50:00 -04008927
Souptick Joardera528a242018-06-06 19:54:44 +05308928 if (!ret2) {
Qu Wenruo43b18592017-12-12 15:34:32 +08008929 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, true);
Jan Karab2b5ef52012-06-12 16:20:45 +02008930 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008931 extent_changeset_free(data_reserved);
Chris Mason50a9b212009-09-11 12:33:12 -04008932 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02008933 }
Chris Mason717beb92018-06-25 10:03:41 -07008934
8935out_unlock:
Chris Mason9ebefb182007-06-15 13:50:00 -04008936 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05008937out:
Qu Wenruo43b18592017-12-12 15:34:32 +08008938 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, (ret != 0));
Qu Wenruobc42bda2017-02-27 15:10:39 +08008939 btrfs_delalloc_release_space(inode, data_reserved, page_start,
Qu Wenruo43b18592017-12-12 15:34:32 +08008940 reserved_space, (ret != 0));
Chris Mason9998eb72012-01-25 13:47:40 -05008941out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02008942 sb_end_pagefault(inode->i_sb);
Qu Wenruo364ecf32017-02-27 15:10:38 +08008943 extent_changeset_free(data_reserved);
Chris Mason9ebefb182007-06-15 13:50:00 -04008944 return ret;
8945}
8946
Filipe Manana213e8c52018-02-06 20:40:31 +00008947static int btrfs_truncate(struct inode *inode, bool skip_writeback)
Chris Mason39279cc2007-06-12 06:35:45 -04008948{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008949 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04008950 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04008951 struct btrfs_block_rsv *rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07008952 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008953 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008954 u64 mask = fs_info->sectorsize - 1;
8955 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04008956
Filipe Manana213e8c52018-02-06 20:40:31 +00008957 if (!skip_writeback) {
8958 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
8959 (u64)-1);
8960 if (ret)
8961 return ret;
8962 }
Chris Mason39279cc2007-06-12 06:35:45 -04008963
Josef Bacikfcb80c22011-05-03 10:40:22 -04008964 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008965 * Yes ladies and gentlemen, this is indeed ugly. We have a couple of
8966 * things going on here:
Josef Bacikfcb80c22011-05-03 10:40:22 -04008967 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008968 * 1) We need to reserve space to update our inode.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008969 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008970 * 2) We need to have something to cache all the space that is going to
Josef Bacikfcb80c22011-05-03 10:40:22 -04008971 * be free'd up by the truncate operation, but also have some slack
8972 * space reserved in case it uses space during the truncate (thank you
8973 * very much snapshotting).
8974 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008975 * And we need these to be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04008976 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04008977 * we will use, so we need the truncate reservation to be separate so it
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008978 * doesn't end up using space reserved for updating the inode. We also
8979 * need to be able to stop the transaction and start a new one, which
8980 * means we need to be able to update the inode several times, and we
8981 * have no idea of knowing how many times that will be, so we can't just
8982 * reserve 1 item for the entirety of the operation, so that has to be
8983 * done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04008984 *
8985 * So that leaves us with
8986 *
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008987 * 1) rsv - for the truncate reservation, which we will steal from the
Josef Bacikfcb80c22011-05-03 10:40:22 -04008988 * transaction reservation.
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -07008989 * 2) fs_info->trans_block_rsv - this will have 1 items worth left for
Josef Bacikfcb80c22011-05-03 10:40:22 -04008990 * updating the inode.
8991 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008992 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04008993 if (!rsv)
8994 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04008995 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04008996 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05008997
Josef Bacik907cbce2011-08-08 13:46:15 -04008998 /*
Josef Bacik07127182011-08-19 10:29:59 -04008999 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009000 * 1 for updating the inode.
9001 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009002 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009003 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009004 ret = PTR_ERR(trans);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009005 goto out;
9006 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009007
Josef Bacik907cbce2011-08-08 13:46:15 -04009008 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009009 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009010 min_size, false);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009011 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009012
Chris Mason5a3f23d2009-03-31 13:27:11 -04009013 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009014 * So if we truncate and then write and fsync we normally would just
9015 * write the extents that changed, which is a problem if we need to
9016 * first truncate that entire inode. So set this flag so we write out
9017 * all of the extents in the inode to the sync log so we're completely
9018 * safe.
9019 */
9020 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009021 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009022
Yan, Zheng80825102009-11-12 09:35:36 +00009023 while (1) {
9024 ret = btrfs_truncate_inode_items(trans, root, inode,
9025 inode->i_size,
9026 BTRFS_EXTENT_DATA_KEY);
Josef Bacikddfae632017-10-19 14:16:02 -04009027 trans->block_rsv = &fs_info->trans_block_rsv;
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009028 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00009029 break;
Chris Mason39279cc2007-06-12 06:35:45 -04009030
Yan, Zheng80825102009-11-12 09:35:36 +00009031 ret = btrfs_update_inode(trans, root, inode);
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009032 if (ret)
Josef Bacik3893e332011-01-31 16:03:11 -05009033 break;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009034
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009035 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009036 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009037
9038 trans = btrfs_start_transaction(root, 2);
9039 if (IS_ERR(trans)) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009040 ret = PTR_ERR(trans);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009041 trans = NULL;
9042 break;
9043 }
9044
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009045 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009046 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08009047 rsv, min_size, false);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009048 BUG_ON(ret); /* shouldn't happen */
9049 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009050 }
9051
Josef Bacikddfae632017-10-19 14:16:02 -04009052 /*
9053 * We can't call btrfs_truncate_block inside a trans handle as we could
9054 * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know
9055 * we've truncated everything except the last little bit, and can do
9056 * btrfs_truncate_block and then update the disk_i_size.
9057 */
9058 if (ret == NEED_TRUNCATE_BLOCK) {
9059 btrfs_end_transaction(trans);
9060 btrfs_btree_balance_dirty(fs_info);
9061
9062 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
9063 if (ret)
9064 goto out;
9065 trans = btrfs_start_transaction(root, 1);
9066 if (IS_ERR(trans)) {
9067 ret = PTR_ERR(trans);
9068 goto out;
9069 }
9070 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
9071 }
9072
Chris Mason917c16b2011-11-08 14:49:59 -05009073 if (trans) {
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009074 int ret2;
Josef Bacik7b128762008-07-24 12:17:14 -04009075
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009076 trans->block_rsv = &fs_info->trans_block_rsv;
9077 ret2 = btrfs_update_inode(trans, root, inode);
9078 if (ret2 && !ret)
9079 ret = ret2;
9080
9081 ret2 = btrfs_end_transaction(trans);
9082 if (ret2 && !ret)
9083 ret = ret2;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009084 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009085 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009086out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009087 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009088
Omar Sandovalad7e1a72018-05-22 09:59:50 -07009089 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009090}
9091
Sven Wegener3b963622008-06-09 21:57:42 -04009092/*
Chris Masond352ac62008-09-29 15:18:18 -04009093 * create a new subvolume directory/inode (helper for the ioctl).
9094 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009095int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009096 struct btrfs_root *new_root,
9097 struct btrfs_root *parent_root,
9098 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009099{
Chris Mason39279cc2007-06-12 06:35:45 -04009100 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009101 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009102 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009103
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009104 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9105 new_dirid, new_dirid,
9106 S_IFDIR | (~current_umask() & S_IRWXUGO),
9107 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009108 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009109 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009110 inode->i_op = &btrfs_dir_inode_operations;
9111 inode->i_fop = &btrfs_dir_file_operations;
9112
Miklos Szeredibfe86842011-10-28 14:13:29 +02009113 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009114 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009115 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009116
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009117 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9118 if (err)
9119 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009120 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009121 new_root->root_key.objectid, err);
9122
Yan, Zheng76dda932009-09-21 16:00:26 -04009123 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009124
Yan, Zheng76dda932009-09-21 16:00:26 -04009125 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009126 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009127}
9128
Chris Mason39279cc2007-06-12 06:35:45 -04009129struct inode *btrfs_alloc_inode(struct super_block *sb)
9130{
Josef Bacik69fe2d72017-10-19 14:15:57 -04009131 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009132 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009133 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009134
David Sterba712e36c2017-10-31 17:08:27 +01009135 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04009136 if (!ei)
9137 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009138
9139 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009140 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009141 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009142 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009143 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009144 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009145 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009146 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009147 ei->disk_i_size = 0;
9148 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009149 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009150 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009151 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009152 ei->last_unlink_trans = 0;
Filipe Manana41bd6062018-11-28 14:54:28 +00009153 ei->last_link_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009154 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009155
Josef Bacik9e0baf62011-07-15 15:16:44 +00009156 spin_lock_init(&ei->lock);
9157 ei->outstanding_extents = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04009158 if (sb->s_magic != BTRFS_TEST_MAGIC)
9159 btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv,
9160 BTRFS_BLOCK_RSV_DELALLOC);
Josef Bacik72ac3c02012-05-23 14:13:11 -04009161 ei->runtime_flags = 0;
David Sterbab52aa8c2017-07-17 19:17:20 +02009162 ei->prop_compress = BTRFS_COMPRESS_NONE;
David Sterbaeec63c62017-07-17 19:41:31 +02009163 ei->defrag_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009164
Miao Xie16cdcec2011-04-22 18:12:22 +08009165 ei->delayed_node = NULL;
9166
chandan r9cc97d62012-07-04 12:48:07 +05309167 ei->i_otime.tv_sec = 0;
9168 ei->i_otime.tv_nsec = 0;
9169
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009170 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009171 extent_map_tree_init(&ei->extent_tree);
Josef Bacikc6100a42017-05-05 11:57:13 -04009172 extent_io_tree_init(&ei->io_tree, inode);
9173 extent_io_tree_init(&ei->io_failure_tree, inode);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009174 ei->io_tree.track_uptodate = 1;
9175 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009176 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009177 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009178 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009179 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009180 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009181 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009182 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009183 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009184
9185 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009186}
9187
Josef Bacikaaedb552013-10-11 14:44:09 -04009188#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9189void btrfs_test_destroy_inode(struct inode *inode)
9190{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009191 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009192 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9193}
9194#endif
9195
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009196static void btrfs_i_callback(struct rcu_head *head)
9197{
9198 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009199 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9200}
9201
Chris Mason39279cc2007-06-12 06:35:45 -04009202void btrfs_destroy_inode(struct inode *inode)
9203{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009204 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009205 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009206 struct btrfs_root *root = BTRFS_I(inode)->root;
9207
Al Virob3d9b7a2012-06-09 13:51:19 -04009208 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009209 WARN_ON(inode->i_data.nrpages);
Josef Bacik69fe2d72017-10-19 14:15:57 -04009210 WARN_ON(BTRFS_I(inode)->block_rsv.reserved);
9211 WARN_ON(BTRFS_I(inode)->block_rsv.size);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009212 WARN_ON(BTRFS_I(inode)->outstanding_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009213 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009214 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009215 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009216 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009217
Chris Mason5a3f23d2009-03-31 13:27:11 -04009218 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009219 * This can happen where we create an inode, but somebody else also
9220 * created the same inode and we need to destroy the one we already
9221 * created.
9222 */
9223 if (!root)
9224 goto free;
9225
Chris Masond3977122009-01-05 21:25:51 -05009226 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009227 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9228 if (!ordered)
9229 break;
9230 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009231 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009232 "found ordered extent %llu %llu on inode cleanup",
9233 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009234 btrfs_remove_ordered_extent(inode, ordered);
9235 btrfs_put_ordered_extent(ordered);
9236 btrfs_put_ordered_extent(ordered);
9237 }
9238 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009239 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009240 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009241 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009242free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009243 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009244}
9245
Al Viro45321ac2010-06-07 13:43:19 -04009246int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009247{
9248 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009249
Naohiro Aota6379ef92013-06-06 09:56:34 +00009250 if (root == NULL)
9251 return 1;
9252
Liu Bofa6ac872013-02-20 14:10:23 +00009253 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009254 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009255 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009256 else
Al Viro45321ac2010-06-07 13:43:19 -04009257 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009258}
9259
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009260static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009261{
9262 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9263
9264 inode_init_once(&ei->vfs_inode);
9265}
9266
David Sterbae67c7182018-02-19 17:24:18 +01009267void __cold btrfs_destroy_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009268{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009269 /*
9270 * Make sure all delayed rcu free inodes are flushed before we
9271 * destroy cache.
9272 */
9273 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009274 kmem_cache_destroy(btrfs_inode_cachep);
9275 kmem_cache_destroy(btrfs_trans_handle_cachep);
Kinglong Mee5598e902016-01-29 21:36:35 +08009276 kmem_cache_destroy(btrfs_path_cachep);
9277 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009278}
9279
Liu Bof5c29bd2017-11-02 17:21:50 -06009280int __init btrfs_init_cachep(void)
Chris Mason39279cc2007-06-12 06:35:45 -04009281{
David Sterba837e1972012-09-07 03:00:48 -06009282 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009283 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009284 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9285 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009286 if (!btrfs_inode_cachep)
9287 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009288
David Sterba837e1972012-09-07 03:00:48 -06009289 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009290 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009291 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009292 if (!btrfs_trans_handle_cachep)
9293 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009294
David Sterba837e1972012-09-07 03:00:48 -06009295 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009296 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009297 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009298 if (!btrfs_path_cachep)
9299 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009300
David Sterba837e1972012-09-07 03:00:48 -06009301 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009302 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009303 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009304 if (!btrfs_free_space_cachep)
9305 goto fail;
9306
Chris Mason39279cc2007-06-12 06:35:45 -04009307 return 0;
9308fail:
9309 btrfs_destroy_cachep();
9310 return -ENOMEM;
9311}
9312
David Howellsa528d352017-01-31 16:46:22 +00009313static int btrfs_getattr(const struct path *path, struct kstat *stat,
9314 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009315{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009316 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009317 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009318 u32 blocksize = inode->i_sb->s_blocksize;
Yonghong Song04a87e32017-05-12 15:07:43 -07009319 u32 bi_flags = BTRFS_I(inode)->flags;
9320
9321 stat->result_mask |= STATX_BTIME;
9322 stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec;
9323 stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec;
9324 if (bi_flags & BTRFS_INODE_APPEND)
9325 stat->attributes |= STATX_ATTR_APPEND;
9326 if (bi_flags & BTRFS_INODE_COMPRESS)
9327 stat->attributes |= STATX_ATTR_COMPRESSED;
9328 if (bi_flags & BTRFS_INODE_IMMUTABLE)
9329 stat->attributes |= STATX_ATTR_IMMUTABLE;
9330 if (bi_flags & BTRFS_INODE_NODUMP)
9331 stat->attributes |= STATX_ATTR_NODUMP;
9332
9333 stat->attributes_mask |= (STATX_ATTR_APPEND |
9334 STATX_ATTR_COMPRESSED |
9335 STATX_ATTR_IMMUTABLE |
9336 STATX_ATTR_NODUMP);
David Sterbafadc0d82011-11-20 07:33:38 -05009337
Chris Mason39279cc2007-06-12 06:35:45 -04009338 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009339 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009340
9341 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009342 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009343 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009344 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009345 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009346 return 0;
9347}
9348
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009349static int btrfs_rename_exchange(struct inode *old_dir,
9350 struct dentry *old_dentry,
9351 struct inode *new_dir,
9352 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009353{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009354 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009355 struct btrfs_trans_handle *trans;
9356 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009357 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009358 struct inode *new_inode = new_dentry->d_inode;
9359 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamani95582b02018-05-08 19:36:02 -07009360 struct timespec64 ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009361 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009362 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9363 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009364 u64 old_idx = 0;
9365 u64 new_idx = 0;
9366 u64 root_objectid;
9367 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009368 bool root_log_pinned = false;
9369 bool dest_log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009370 struct btrfs_log_ctx ctx_root;
9371 struct btrfs_log_ctx ctx_dest;
9372 bool sync_log_root = false;
9373 bool sync_log_dest = false;
9374 bool commit_transaction = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009375
9376 /* we only allow rename subvolume link between subvolumes */
9377 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9378 return -EXDEV;
9379
Filipe Mananad4682ba2018-06-11 19:24:28 +01009380 btrfs_init_log_ctx(&ctx_root, old_inode);
9381 btrfs_init_log_ctx(&ctx_dest, new_inode);
9382
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009383 /* close the race window with snapshot create/destroy ioctl */
9384 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009385 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009386 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009387 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009388
9389 /*
9390 * We want to reserve the absolute worst case amount of items. So if
9391 * both inodes are subvols and we need to unlink them then that would
9392 * require 4 item modifications, but if they are both normal inodes it
9393 * would require 5 item modifications, so we'll assume their normal
9394 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9395 * should cover the worst case number of items we'll modify.
9396 */
9397 trans = btrfs_start_transaction(root, 12);
9398 if (IS_ERR(trans)) {
9399 ret = PTR_ERR(trans);
9400 goto out_notrans;
9401 }
9402
9403 /*
9404 * We need to find a free sequence number both in the source and
9405 * in the destination directory for the exchange.
9406 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009407 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009408 if (ret)
9409 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009410 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009411 if (ret)
9412 goto out_fail;
9413
9414 BTRFS_I(old_inode)->dir_index = 0ULL;
9415 BTRFS_I(new_inode)->dir_index = 0ULL;
9416
9417 /* Reference for the source. */
9418 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9419 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009420 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009421 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009422 btrfs_pin_log_trans(root);
9423 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009424 ret = btrfs_insert_inode_ref(trans, dest,
9425 new_dentry->d_name.name,
9426 new_dentry->d_name.len,
9427 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009428 btrfs_ino(BTRFS_I(new_dir)),
9429 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009430 if (ret)
9431 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009432 }
9433
9434 /* And now for the dest. */
9435 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9436 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009437 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009438 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009439 btrfs_pin_log_trans(dest);
9440 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009441 ret = btrfs_insert_inode_ref(trans, root,
9442 old_dentry->d_name.name,
9443 old_dentry->d_name.len,
9444 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009445 btrfs_ino(BTRFS_I(old_dir)),
9446 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009447 if (ret)
9448 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009449 }
9450
9451 /* Update inode version and ctime/mtime. */
9452 inode_inc_iversion(old_dir);
9453 inode_inc_iversion(new_dir);
9454 inode_inc_iversion(old_inode);
9455 inode_inc_iversion(new_inode);
9456 old_dir->i_ctime = old_dir->i_mtime = ctime;
9457 new_dir->i_ctime = new_dir->i_mtime = ctime;
9458 old_inode->i_ctime = ctime;
9459 new_inode->i_ctime = ctime;
9460
9461 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009462 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9463 BTRFS_I(old_inode), 1);
9464 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9465 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009466 }
9467
9468 /* src is a subvolume */
9469 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9470 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009471 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009472 old_dentry->d_name.name,
9473 old_dentry->d_name.len);
9474 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009475 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9476 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009477 old_dentry->d_name.name,
9478 old_dentry->d_name.len);
9479 if (!ret)
9480 ret = btrfs_update_inode(trans, root, old_inode);
9481 }
9482 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009483 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009484 goto out_fail;
9485 }
9486
9487 /* dest is a subvolume */
9488 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9489 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009490 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009491 new_dentry->d_name.name,
9492 new_dentry->d_name.len);
9493 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009494 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9495 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009496 new_dentry->d_name.name,
9497 new_dentry->d_name.len);
9498 if (!ret)
9499 ret = btrfs_update_inode(trans, dest, new_inode);
9500 }
9501 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009502 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009503 goto out_fail;
9504 }
9505
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009506 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009507 new_dentry->d_name.name,
9508 new_dentry->d_name.len, 0, old_idx);
9509 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009510 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009511 goto out_fail;
9512 }
9513
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009514 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009515 old_dentry->d_name.name,
9516 old_dentry->d_name.len, 0, new_idx);
9517 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009518 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009519 goto out_fail;
9520 }
9521
9522 if (old_inode->i_nlink == 1)
9523 BTRFS_I(old_inode)->dir_index = old_idx;
9524 if (new_inode->i_nlink == 1)
9525 BTRFS_I(new_inode)->dir_index = new_idx;
9526
Filipe Manana86e8aa02016-05-05 02:02:27 +01009527 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009528 parent = new_dentry->d_parent;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009529 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9530 BTRFS_I(old_dir), parent,
9531 false, &ctx_root);
9532 if (ret == BTRFS_NEED_LOG_SYNC)
9533 sync_log_root = true;
9534 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9535 commit_transaction = true;
9536 ret = 0;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009537 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009538 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009539 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009540 if (dest_log_pinned) {
Filipe Mananad4682ba2018-06-11 19:24:28 +01009541 if (!commit_transaction) {
9542 parent = old_dentry->d_parent;
9543 ret = btrfs_log_new_name(trans, BTRFS_I(new_inode),
9544 BTRFS_I(new_dir), parent,
9545 false, &ctx_dest);
9546 if (ret == BTRFS_NEED_LOG_SYNC)
9547 sync_log_dest = true;
9548 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9549 commit_transaction = true;
9550 ret = 0;
9551 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009552 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009553 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009554 }
9555out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009556 /*
9557 * If we have pinned a log and an error happened, we unpin tasks
9558 * trying to sync the log and force them to fallback to a transaction
9559 * commit if the log currently contains any of the inodes involved in
9560 * this rename operation (to ensure we do not persist a log with an
9561 * inconsistent state for any of these inodes or leading to any
9562 * inconsistencies when replayed). If the transaction was aborted, the
9563 * abortion reason is propagated to userspace when attempting to commit
9564 * the transaction. If the log does not contain any of these inodes, we
9565 * allow the tasks to sync it.
9566 */
9567 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009568 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9569 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9570 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009571 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009572 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009573 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009574
9575 if (root_log_pinned) {
9576 btrfs_end_log_trans(root);
9577 root_log_pinned = false;
9578 }
9579 if (dest_log_pinned) {
9580 btrfs_end_log_trans(dest);
9581 dest_log_pinned = false;
9582 }
9583 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009584 if (!ret && sync_log_root && !commit_transaction) {
9585 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root,
9586 &ctx_root);
9587 if (ret)
9588 commit_transaction = true;
9589 }
9590 if (!ret && sync_log_dest && !commit_transaction) {
9591 ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root,
9592 &ctx_dest);
9593 if (ret)
9594 commit_transaction = true;
9595 }
9596 if (commit_transaction) {
9597 ret = btrfs_commit_transaction(trans);
9598 } else {
9599 int ret2;
9600
9601 ret2 = btrfs_end_transaction(trans);
9602 ret = ret ? ret : ret2;
9603 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009604out_notrans:
9605 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009606 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009607 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009608 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009609
9610 return ret;
9611}
9612
9613static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9614 struct btrfs_root *root,
9615 struct inode *dir,
9616 struct dentry *dentry)
9617{
9618 int ret;
9619 struct inode *inode;
9620 u64 objectid;
9621 u64 index;
9622
9623 ret = btrfs_find_free_ino(root, &objectid);
9624 if (ret)
9625 return ret;
9626
9627 inode = btrfs_new_inode(trans, root, dir,
9628 dentry->d_name.name,
9629 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009630 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009631 objectid,
9632 S_IFCHR | WHITEOUT_MODE,
9633 &index);
9634
9635 if (IS_ERR(inode)) {
9636 ret = PTR_ERR(inode);
9637 return ret;
9638 }
9639
9640 inode->i_op = &btrfs_special_inode_operations;
9641 init_special_inode(inode, inode->i_mode,
9642 WHITEOUT_DEV);
9643
9644 ret = btrfs_init_inode_security(trans, inode, dir,
9645 &dentry->d_name);
9646 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009647 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009648
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009649 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9650 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009651 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009652 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009653
9654 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009655out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009656 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009657 if (ret)
9658 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009659 iput(inode);
9660
Filipe Mananac9901612016-05-05 01:41:57 +01009661 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009662}
9663
Chris Mason39279cc2007-06-12 06:35:45 -04009664static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009665 struct inode *new_dir, struct dentry *new_dentry,
9666 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009667{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009668 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009669 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009670 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009671 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9672 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009673 struct inode *new_inode = d_inode(new_dentry);
9674 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009675 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009676 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009677 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009678 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009679 bool log_pinned = false;
Filipe Mananad4682ba2018-06-11 19:24:28 +01009680 struct btrfs_log_ctx ctx;
9681 bool sync_log = false;
9682 bool commit_transaction = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009683
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009684 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009685 return -EPERM;
9686
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009687 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009688 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009689 return -EXDEV;
9690
Li Zefan33345d012011-04-20 10:31:50 +08009691 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009692 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009693 return -ENOTEMPTY;
9694
Chris Mason39279cc2007-06-12 06:35:45 -04009695 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009696 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009697 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009698
9699
9700 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009701 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009702 new_dentry->d_name.name,
9703 new_dentry->d_name.len);
9704
9705 if (ret) {
9706 if (ret == -EEXIST) {
9707 /* we shouldn't get
9708 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309709 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009710 return ret;
9711 }
9712 } else {
9713 /* maybe -EOVERFLOW */
9714 return ret;
9715 }
9716 }
9717 ret = 0;
9718
Chris Mason5a3f23d2009-03-31 13:27:11 -04009719 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009720 * we're using rename to replace one file with another. Start IO on it
9721 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009722 */
Chris Mason8d875f92014-08-12 10:47:42 -07009723 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009724 filemap_flush(old_inode->i_mapping);
9725
Yan, Zheng76dda932009-09-21 16:00:26 -04009726 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009727 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009728 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009729 /*
9730 * We want to reserve the absolute worst case amount of items. So if
9731 * both inodes are subvols and we need to unlink them then that would
9732 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009733 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009734 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9735 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009736 * If our rename has the whiteout flag, we need more 5 units for the
9737 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9738 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009739 */
Filipe Manana5062af32016-05-05 10:26:26 +01009740 trans_num_items = 11;
9741 if (flags & RENAME_WHITEOUT)
9742 trans_num_items += 5;
9743 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009744 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009745 ret = PTR_ERR(trans);
9746 goto out_notrans;
9747 }
Chris Mason5f39d392007-10-15 16:14:19 -04009748
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009749 if (dest != root)
9750 btrfs_record_root_in_trans(trans, dest);
9751
Nikolay Borisov877574e2017-02-20 13:50:33 +02009752 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009753 if (ret)
9754 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009755
Miao Xie67de1172013-12-26 13:07:06 +08009756 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009757 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009758 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009759 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009760 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009761 btrfs_pin_log_trans(root);
9762 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009763 ret = btrfs_insert_inode_ref(trans, dest,
9764 new_dentry->d_name.name,
9765 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009766 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009767 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009768 if (ret)
9769 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009770 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009771
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009772 inode_inc_iversion(old_dir);
9773 inode_inc_iversion(new_dir);
9774 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009775 old_dir->i_ctime = old_dir->i_mtime =
9776 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009777 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009778
Chris Mason12fcfd22009-03-24 10:24:20 -04009779 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009780 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9781 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009782
Li Zefan33345d012011-04-20 10:31:50 +08009783 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009784 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009785 ret = btrfs_unlink_subvol(trans, old_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009786 old_dentry->d_name.name,
9787 old_dentry->d_name.len);
9788 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009789 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9790 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009791 old_dentry->d_name.name,
9792 old_dentry->d_name.len);
9793 if (!ret)
9794 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009795 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009796 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009797 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009798 goto out_fail;
9799 }
Chris Mason39279cc2007-06-12 06:35:45 -04009800
9801 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009802 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009803 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009804 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009805 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9806 root_objectid = BTRFS_I(new_inode)->location.objectid;
Lu Fengqi401b3b12018-08-01 11:32:30 +08009807 ret = btrfs_unlink_subvol(trans, new_dir, root_objectid,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009808 new_dentry->d_name.name,
9809 new_dentry->d_name.len);
9810 BUG_ON(new_inode->i_nlink == 0);
9811 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009812 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9813 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009814 new_dentry->d_name.name,
9815 new_dentry->d_name.len);
9816 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009817 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009818 ret = btrfs_orphan_add(trans,
9819 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009820 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009821 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009822 goto out_fail;
9823 }
Chris Mason39279cc2007-06-12 06:35:45 -04009824 }
Josef Bacikaec74772008-07-24 12:12:38 -04009825
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009826 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009827 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009828 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009829 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009830 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009831 goto out_fail;
9832 }
Chris Mason39279cc2007-06-12 06:35:45 -04009833
Miao Xie67de1172013-12-26 13:07:06 +08009834 if (old_inode->i_nlink == 1)
9835 BTRFS_I(old_inode)->dir_index = index;
9836
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009837 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009838 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009839
Filipe Mananad4682ba2018-06-11 19:24:28 +01009840 btrfs_init_log_ctx(&ctx, old_inode);
9841 ret = btrfs_log_new_name(trans, BTRFS_I(old_inode),
9842 BTRFS_I(old_dir), parent,
9843 false, &ctx);
9844 if (ret == BTRFS_NEED_LOG_SYNC)
9845 sync_log = true;
9846 else if (ret == BTRFS_NEED_TRANS_COMMIT)
9847 commit_transaction = true;
9848 ret = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009849 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009850 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009851 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009852
9853 if (flags & RENAME_WHITEOUT) {
9854 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9855 old_dentry);
9856
9857 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009858 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009859 goto out_fail;
9860 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009861 }
Chris Mason39279cc2007-06-12 06:35:45 -04009862out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009863 /*
9864 * If we have pinned the log and an error happened, we unpin tasks
9865 * trying to sync the log and force them to fallback to a transaction
9866 * commit if the log currently contains any of the inodes involved in
9867 * this rename operation (to ensure we do not persist a log with an
9868 * inconsistent state for any of these inodes or leading to any
9869 * inconsistencies when replayed). If the transaction was aborted, the
9870 * abortion reason is propagated to userspace when attempting to commit
9871 * the transaction. If the log does not contain any of these inodes, we
9872 * allow the tasks to sync it.
9873 */
9874 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009875 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9876 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9877 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009878 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009879 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009880 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009881
9882 btrfs_end_log_trans(root);
9883 log_pinned = false;
9884 }
Filipe Mananad4682ba2018-06-11 19:24:28 +01009885 if (!ret && sync_log) {
9886 ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx);
9887 if (ret)
9888 commit_transaction = true;
9889 }
9890 if (commit_transaction) {
9891 ret = btrfs_commit_transaction(trans);
9892 } else {
9893 int ret2;
9894
9895 ret2 = btrfs_end_transaction(trans);
9896 ret = ret ? ret : ret2;
9897 }
Johann Lombardib44c59a2011-03-31 13:23:47 +00009898out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009899 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009900 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009901
Chris Mason39279cc2007-06-12 06:35:45 -04009902 return ret;
9903}
9904
Miklos Szeredi80ace852014-07-23 15:15:32 +02009905static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9906 struct inode *new_dir, struct dentry *new_dentry,
9907 unsigned int flags)
9908{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009909 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009910 return -EINVAL;
9911
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009912 if (flags & RENAME_EXCHANGE)
9913 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9914 new_dentry);
9915
9916 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009917}
9918
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009919struct btrfs_delalloc_work {
9920 struct inode *inode;
9921 struct completion completion;
9922 struct list_head list;
9923 struct btrfs_work work;
9924};
9925
Miao Xie8ccf6f192012-10-25 09:28:04 +00009926static void btrfs_run_delalloc_work(struct btrfs_work *work)
9927{
9928 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009929 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009930
9931 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9932 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009933 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009934 filemap_flush(inode->i_mapping);
9935 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9936 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009937 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009938
Nikolay Borisov076da912018-04-23 10:54:16 +03009939 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009940 complete(&delalloc_work->completion);
9941}
9942
Nikolay Borisov3a2f8c02018-04-24 17:23:59 +03009943static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009944{
9945 struct btrfs_delalloc_work *work;
9946
David Sterba100d5702015-12-08 14:39:32 +01009947 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009948 if (!work)
9949 return NULL;
9950
9951 init_completion(&work->completion);
9952 INIT_LIST_HEAD(&work->list);
9953 work->inode = inode;
Liu Bo9e0af232014-08-15 23:36:53 +08009954 WARN_ON_ONCE(!inode);
9955 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9956 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009957
9958 return work;
9959}
9960
Chris Masond352ac62008-09-29 15:18:18 -04009961/*
9962 * some fairly slow code that needs optimization. This walks the list
9963 * of all the inodes with pending delalloc and forces them to disk.
9964 */
Ethan Lien3cd24c62018-11-01 14:49:03 +08009965static int start_delalloc_inodes(struct btrfs_root *root, int nr, bool snapshot)
Chris Masonea8c2812008-08-04 23:17:27 -04009966{
Chris Masonea8c2812008-08-04 23:17:27 -04009967 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009968 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009969 struct btrfs_delalloc_work *work, *next;
9970 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00009971 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009972 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04009973
Miao Xie8ccf6f192012-10-25 09:28:04 +00009974 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009975 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00009976
Miao Xie573bfb72014-03-06 13:55:03 +08009977 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +00009978 spin_lock(&root->delalloc_lock);
9979 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009980 while (!list_empty(&splice)) {
9981 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04009982 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009983
Miao Xieeb73c1b2013-05-15 07:48:22 +00009984 list_move_tail(&binode->delalloc_inodes,
9985 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009986 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00009987 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +00009988 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009989 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009990 }
Miao Xieeb73c1b2013-05-15 07:48:22 +00009991 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009992
Ethan Lien3cd24c62018-11-01 14:49:03 +08009993 if (snapshot)
9994 set_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
9995 &binode->runtime_flags);
Nikolay Borisov076da912018-04-23 10:54:16 +03009996 work = btrfs_alloc_delalloc_work(inode);
David Sterba5d99a9982014-09-29 19:20:37 +02009997 if (!work) {
Nikolay Borisov4fbb5142018-04-23 10:54:15 +03009998 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +00009999 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010000 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010001 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010002 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010003 btrfs_queue_work(root->fs_info->flush_workers,
10004 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010005 ret++;
10006 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010007 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010008 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010009 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010010 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010011 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010012
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010013out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010014 list_for_each_entry_safe(work, next, &works, list) {
10015 list_del_init(&work->list);
Nikolay Borisov40012f92018-04-19 10:46:39 +030010016 wait_for_completion(&work->completion);
10017 kfree(work);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010018 }
10019
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010020 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010021 spin_lock(&root->delalloc_lock);
10022 list_splice_tail(&splice, &root->delalloc_inodes);
10023 spin_unlock(&root->delalloc_lock);
10024 }
Miao Xie573bfb72014-03-06 13:55:03 +080010025 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010026 return ret;
10027}
10028
Ethan Lien3cd24c62018-11-01 14:49:03 +080010029int btrfs_start_delalloc_snapshot(struct btrfs_root *root)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010030{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010031 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010032 int ret;
10033
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010034 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010035 return -EROFS;
10036
Ethan Lien3cd24c62018-11-01 14:49:03 +080010037 ret = start_delalloc_inodes(root, -1, true);
Miao Xie6c255e62014-03-06 13:55:01 +080010038 if (ret > 0)
10039 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010040 return ret;
10041}
10042
Nikolay Borisov82b3e532018-04-23 10:54:13 +030010043int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010044{
10045 struct btrfs_root *root;
10046 struct list_head splice;
10047 int ret;
10048
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010049 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010050 return -EROFS;
10051
10052 INIT_LIST_HEAD(&splice);
10053
Miao Xie573bfb72014-03-06 13:55:03 +080010054 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010055 spin_lock(&fs_info->delalloc_root_lock);
10056 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010057 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010058 root = list_first_entry(&splice, struct btrfs_root,
10059 delalloc_root);
10060 root = btrfs_grab_fs_root(root);
10061 BUG_ON(!root);
10062 list_move_tail(&root->delalloc_root,
10063 &fs_info->delalloc_roots);
10064 spin_unlock(&fs_info->delalloc_root_lock);
10065
Ethan Lien3cd24c62018-11-01 14:49:03 +080010066 ret = start_delalloc_inodes(root, nr, false);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010067 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010068 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010069 goto out;
10070
Miao Xie6c255e62014-03-06 13:55:01 +080010071 if (nr != -1) {
10072 nr -= ret;
10073 WARN_ON(nr < 0);
10074 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010075 spin_lock(&fs_info->delalloc_root_lock);
10076 }
10077 spin_unlock(&fs_info->delalloc_root_lock);
10078
Miao Xie6c255e62014-03-06 13:55:01 +080010079 ret = 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010080out:
Nikolay Borisov81f1d392018-04-19 10:46:37 +030010081 if (!list_empty(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010082 spin_lock(&fs_info->delalloc_root_lock);
10083 list_splice_tail(&splice, &fs_info->delalloc_roots);
10084 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010085 }
Miao Xie573bfb72014-03-06 13:55:03 +080010086 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010087 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010088}
10089
Chris Mason39279cc2007-06-12 06:35:45 -040010090static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10091 const char *symname)
10092{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010093 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010094 struct btrfs_trans_handle *trans;
10095 struct btrfs_root *root = BTRFS_I(dir)->root;
10096 struct btrfs_path *path;
10097 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010098 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010099 int err;
Chris Mason39279cc2007-06-12 06:35:45 -040010100 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010101 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010102 int name_len;
10103 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010104 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010105 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010106 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010107
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010108 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010109 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010110 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010111
Josef Bacik9ed74f22009-09-11 16:12:44 -040010112 /*
10113 * 2 items for inode item and ref
10114 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010115 * 1 item for updating parent inode item
10116 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010117 * 1 item for xattr if selinux is on
10118 */
Filipe Manana9269d122015-12-31 18:16:29 +000010119 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010120 if (IS_ERR(trans))
10121 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010122
Li Zefan581bb052011-04-20 10:06:11 +080010123 err = btrfs_find_free_ino(root, &objectid);
10124 if (err)
10125 goto out_unlock;
10126
Josef Bacikaec74772008-07-24 12:12:38 -040010127 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010128 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10129 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010130 if (IS_ERR(inode)) {
10131 err = PTR_ERR(inode);
Al Viro32955c52018-05-16 12:20:05 -040010132 inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010133 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010134 }
Chris Mason39279cc2007-06-12 06:35:45 -040010135
Casey Schauflerad19db72011-12-15 10:09:07 -050010136 /*
10137 * If the active LSM wants to access the inode during
10138 * d_instantiate it needs these. Smack checks to see
10139 * if the filesystem supports xattrs by looking at the
10140 * ops vector.
10141 */
10142 inode->i_fop = &btrfs_file_operations;
10143 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010144 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010145 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10146
10147 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10148 if (err)
Al Viro32955c52018-05-16 12:20:05 -040010149 goto out_unlock;
Casey Schauflerad19db72011-12-15 10:09:07 -050010150
Chris Mason39279cc2007-06-12 06:35:45 -040010151 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010152 if (!path) {
10153 err = -ENOMEM;
Al Viro32955c52018-05-16 12:20:05 -040010154 goto out_unlock;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010155 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010156 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010157 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010158 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010159 datasize = btrfs_file_extent_calc_inline_size(name_len);
10160 err = btrfs_insert_empty_item(trans, root, path, &key,
10161 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010162 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010163 btrfs_free_path(path);
Al Viro32955c52018-05-16 12:20:05 -040010164 goto out_unlock;
Chris Mason54aa1f42007-06-22 14:16:25 -040010165 }
Chris Mason5f39d392007-10-15 16:14:19 -040010166 leaf = path->nodes[0];
10167 ei = btrfs_item_ptr(leaf, path->slots[0],
10168 struct btrfs_file_extent_item);
10169 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10170 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010171 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010172 btrfs_set_file_extent_encryption(leaf, ei, 0);
10173 btrfs_set_file_extent_compression(leaf, ei, 0);
10174 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10175 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10176
Chris Mason39279cc2007-06-12 06:35:45 -040010177 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010178 write_extent_buffer(leaf, symname, ptr, name_len);
10179 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010180 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010181
Chris Mason39279cc2007-06-12 06:35:45 -040010182 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010183 inode_nohighmem(inode);
Omar Sandoval4779cc02018-09-24 15:16:55 -070010184 inode->i_mapping->a_ops = &btrfs_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010185 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010186 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010187 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010188 /*
10189 * Last step, add directory indexes for our symlink inode. This is the
10190 * last step to avoid extra cleanup of these indexes if an error happens
10191 * elsewhere above.
10192 */
10193 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010194 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10195 BTRFS_I(inode), 0, index);
Al Viro32955c52018-05-16 12:20:05 -040010196 if (err)
10197 goto out_unlock;
Chris Masonb0d5d102014-09-08 13:08:51 -070010198
Al Viro1e2e5472018-05-04 08:23:01 -040010199 d_instantiate_new(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010200
10201out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010202 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010203 if (err && inode) {
Chris Mason39279cc2007-06-12 06:35:45 -040010204 inode_dec_link_count(inode);
Al Viro32955c52018-05-16 12:20:05 -040010205 discard_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010206 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010207 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010208 return err;
10209}
Chris Mason16432982008-04-10 10:23:21 -040010210
Josef Bacik0af3d002010-06-21 14:48:16 -040010211static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10212 u64 start, u64 num_bytes, u64 min_size,
10213 loff_t actual_len, u64 *alloc_hint,
10214 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010215{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010216 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010217 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10218 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010219 struct btrfs_root *root = BTRFS_I(inode)->root;
10220 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010221 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010222 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010223 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010224 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010225 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010226 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010227 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010228
Josef Bacik0af3d002010-06-21 14:48:16 -040010229 if (trans)
10230 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010231 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010232 if (own_trans) {
10233 trans = btrfs_start_transaction(root, 3);
10234 if (IS_ERR(trans)) {
10235 ret = PTR_ERR(trans);
10236 break;
10237 }
Yan Zhengd899e052008-10-30 14:25:28 -040010238 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010239
Byongho Leeee221842015-12-15 01:42:10 +090010240 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010241 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010242 /*
10243 * If we are severely fragmented we could end up with really
10244 * small allocations, so if the allocator is returning small
10245 * chunks lets make its job easier by only searching for those
10246 * sized chunks.
10247 */
10248 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010249 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10250 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010251 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010252 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010253 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010254 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010255 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010256 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010257
Josef Bacik0b670dc2015-09-23 17:11:16 -040010258 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010259 ret = insert_reserved_file_extent(trans, inode,
10260 cur_offset, ins.objectid,
10261 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010262 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010263 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010264 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010265 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010266 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010267 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010268 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010269 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010270 break;
10271 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010272
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010273 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010274 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010275
Josef Bacik5dc562c2012-08-17 13:14:17 -040010276 em = alloc_extent_map();
10277 if (!em) {
10278 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10279 &BTRFS_I(inode)->runtime_flags);
10280 goto next;
10281 }
10282
10283 em->start = cur_offset;
10284 em->orig_start = cur_offset;
10285 em->len = ins.offset;
10286 em->block_start = ins.objectid;
10287 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010288 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010289 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010290 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010291 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10292 em->generation = trans->transid;
10293
10294 while (1) {
10295 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010296 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010297 write_unlock(&em_tree->lock);
10298 if (ret != -EEXIST)
10299 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010300 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010301 cur_offset + ins.offset - 1,
10302 0);
10303 }
10304 free_extent_map(em);
10305next:
Yan Zhengd899e052008-10-30 14:25:28 -040010306 num_bytes -= ins.offset;
10307 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010308 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010309
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010310 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010311 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010312 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010313 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010314 (actual_len > inode->i_size) &&
10315 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010316 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010317 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010318 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010319 i_size = cur_offset;
10320 i_size_write(inode, i_size);
10321 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010322 }
10323
Yan Zhengd899e052008-10-30 14:25:28 -040010324 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010325
10326 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010327 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010328 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010329 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010330 break;
10331 }
Yan Zhengd899e052008-10-30 14:25:28 -040010332
Josef Bacik0af3d002010-06-21 14:48:16 -040010333 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010334 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010335 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010336 if (cur_offset < end)
Qu Wenruobc42bda2017-02-27 15:10:39 +080010337 btrfs_free_reserved_data_space(inode, NULL, cur_offset,
Wang Xiaoguang18513092016-07-25 15:51:40 +080010338 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010339 return ret;
10340}
10341
Josef Bacik0af3d002010-06-21 14:48:16 -040010342int btrfs_prealloc_file_range(struct inode *inode, int mode,
10343 u64 start, u64 num_bytes, u64 min_size,
10344 loff_t actual_len, u64 *alloc_hint)
10345{
10346 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10347 min_size, actual_len, alloc_hint,
10348 NULL);
10349}
10350
10351int btrfs_prealloc_file_range_trans(struct inode *inode,
10352 struct btrfs_trans_handle *trans, int mode,
10353 u64 start, u64 num_bytes, u64 min_size,
10354 loff_t actual_len, u64 *alloc_hint)
10355{
10356 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10357 min_size, actual_len, alloc_hint, trans);
10358}
10359
Chris Masone6dcd2d2008-07-17 12:53:50 -040010360static int btrfs_set_page_dirty(struct page *page)
10361{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010362 return __set_page_dirty_nobuffers(page);
10363}
10364
Al Viro10556cb22011-06-20 19:28:19 -040010365static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010366{
Li Zefanb83cc962010-12-20 16:04:08 +080010367 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010368 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010369
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010370 if (mask & MAY_WRITE &&
10371 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10372 if (btrfs_root_readonly(root))
10373 return -EROFS;
10374 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10375 return -EACCES;
10376 }
Al Viro2830ba72011-06-20 19:16:29 -040010377 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010378}
Chris Mason39279cc2007-06-12 06:35:45 -040010379
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010380static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10381{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010382 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010383 struct btrfs_trans_handle *trans;
10384 struct btrfs_root *root = BTRFS_I(dir)->root;
10385 struct inode *inode = NULL;
10386 u64 objectid;
10387 u64 index;
10388 int ret = 0;
10389
10390 /*
10391 * 5 units required for adding orphan entry
10392 */
10393 trans = btrfs_start_transaction(root, 5);
10394 if (IS_ERR(trans))
10395 return PTR_ERR(trans);
10396
10397 ret = btrfs_find_free_ino(root, &objectid);
10398 if (ret)
10399 goto out;
10400
10401 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010402 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010403 if (IS_ERR(inode)) {
10404 ret = PTR_ERR(inode);
10405 inode = NULL;
10406 goto out;
10407 }
10408
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010409 inode->i_fop = &btrfs_file_operations;
10410 inode->i_op = &btrfs_file_inode_operations;
10411
10412 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010413 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10414
Chris Masonb0d5d102014-09-08 13:08:51 -070010415 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10416 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010417 goto out;
Chris Masonb0d5d102014-09-08 13:08:51 -070010418
10419 ret = btrfs_update_inode(trans, root, inode);
10420 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010421 goto out;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010422 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010423 if (ret)
Al Viro32955c52018-05-16 12:20:05 -040010424 goto out;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010425
Filipe Manana5762b5c2014-08-01 00:10:32 +010010426 /*
10427 * We set number of links to 0 in btrfs_new_inode(), and here we set
10428 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10429 * through:
10430 *
10431 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10432 */
10433 set_nlink(inode, 1);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010434 d_tmpfile(dentry, inode);
Al Viro32955c52018-05-16 12:20:05 -040010435 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010436 mark_inode_dirty(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010437out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010438 btrfs_end_transaction(trans);
Al Viro32955c52018-05-16 12:20:05 -040010439 if (ret && inode)
10440 discard_new_inode(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010441 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010442 return ret;
10443}
10444
David Sterba5cdc84b2018-07-18 20:32:52 +020010445void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacikc6100a42017-05-05 11:57:13 -040010446{
David Sterba5cdc84b2018-07-18 20:32:52 +020010447 struct inode *inode = tree->private_data;
Josef Bacikc6100a42017-05-05 11:57:13 -040010448 unsigned long index = start >> PAGE_SHIFT;
10449 unsigned long end_index = end >> PAGE_SHIFT;
10450 struct page *page;
10451
10452 while (index <= end_index) {
10453 page = find_get_page(inode->i_mapping, index);
10454 ASSERT(page); /* Pages should be in the extent_io_tree */
10455 set_page_writeback(page);
10456 put_page(page);
10457 index++;
10458 }
10459}
10460
Omar Sandovaled46ff32016-11-03 10:28:14 -070010461#ifdef CONFIG_SWAP
10462/*
10463 * Add an entry indicating a block group or device which is pinned by a
10464 * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
10465 * negative errno on failure.
10466 */
10467static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr,
10468 bool is_block_group)
10469{
10470 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10471 struct btrfs_swapfile_pin *sp, *entry;
10472 struct rb_node **p;
10473 struct rb_node *parent = NULL;
10474
10475 sp = kmalloc(sizeof(*sp), GFP_NOFS);
10476 if (!sp)
10477 return -ENOMEM;
10478 sp->ptr = ptr;
10479 sp->inode = inode;
10480 sp->is_block_group = is_block_group;
10481
10482 spin_lock(&fs_info->swapfile_pins_lock);
10483 p = &fs_info->swapfile_pins.rb_node;
10484 while (*p) {
10485 parent = *p;
10486 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
10487 if (sp->ptr < entry->ptr ||
10488 (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
10489 p = &(*p)->rb_left;
10490 } else if (sp->ptr > entry->ptr ||
10491 (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
10492 p = &(*p)->rb_right;
10493 } else {
10494 spin_unlock(&fs_info->swapfile_pins_lock);
10495 kfree(sp);
10496 return 1;
10497 }
10498 }
10499 rb_link_node(&sp->node, parent, p);
10500 rb_insert_color(&sp->node, &fs_info->swapfile_pins);
10501 spin_unlock(&fs_info->swapfile_pins_lock);
10502 return 0;
10503}
10504
10505/* Free all of the entries pinned by this swapfile. */
10506static void btrfs_free_swapfile_pins(struct inode *inode)
10507{
10508 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10509 struct btrfs_swapfile_pin *sp;
10510 struct rb_node *node, *next;
10511
10512 spin_lock(&fs_info->swapfile_pins_lock);
10513 node = rb_first(&fs_info->swapfile_pins);
10514 while (node) {
10515 next = rb_next(node);
10516 sp = rb_entry(node, struct btrfs_swapfile_pin, node);
10517 if (sp->inode == inode) {
10518 rb_erase(&sp->node, &fs_info->swapfile_pins);
10519 if (sp->is_block_group)
10520 btrfs_put_block_group(sp->ptr);
10521 kfree(sp);
10522 }
10523 node = next;
10524 }
10525 spin_unlock(&fs_info->swapfile_pins_lock);
10526}
10527
10528struct btrfs_swap_info {
10529 u64 start;
10530 u64 block_start;
10531 u64 block_len;
10532 u64 lowest_ppage;
10533 u64 highest_ppage;
10534 unsigned long nr_pages;
10535 int nr_extents;
10536};
10537
10538static int btrfs_add_swap_extent(struct swap_info_struct *sis,
10539 struct btrfs_swap_info *bsi)
10540{
10541 unsigned long nr_pages;
10542 u64 first_ppage, first_ppage_reported, next_ppage;
10543 int ret;
10544
10545 first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT;
10546 next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len,
10547 PAGE_SIZE) >> PAGE_SHIFT;
10548
10549 if (first_ppage >= next_ppage)
10550 return 0;
10551 nr_pages = next_ppage - first_ppage;
10552
10553 first_ppage_reported = first_ppage;
10554 if (bsi->start == 0)
10555 first_ppage_reported++;
10556 if (bsi->lowest_ppage > first_ppage_reported)
10557 bsi->lowest_ppage = first_ppage_reported;
10558 if (bsi->highest_ppage < (next_ppage - 1))
10559 bsi->highest_ppage = next_ppage - 1;
10560
10561 ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage);
10562 if (ret < 0)
10563 return ret;
10564 bsi->nr_extents += ret;
10565 bsi->nr_pages += nr_pages;
10566 return 0;
10567}
10568
10569static void btrfs_swap_deactivate(struct file *file)
10570{
10571 struct inode *inode = file_inode(file);
10572
10573 btrfs_free_swapfile_pins(inode);
10574 atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles);
10575}
10576
10577static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10578 sector_t *span)
10579{
10580 struct inode *inode = file_inode(file);
10581 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
10582 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
10583 struct extent_state *cached_state = NULL;
10584 struct extent_map *em = NULL;
10585 struct btrfs_device *device = NULL;
10586 struct btrfs_swap_info bsi = {
10587 .lowest_ppage = (sector_t)-1ULL,
10588 };
10589 int ret = 0;
10590 u64 isize;
10591 u64 start;
10592
10593 /*
10594 * If the swap file was just created, make sure delalloc is done. If the
10595 * file changes again after this, the user is doing something stupid and
10596 * we don't really care.
10597 */
10598 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
10599 if (ret)
10600 return ret;
10601
10602 /*
10603 * The inode is locked, so these flags won't change after we check them.
10604 */
10605 if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) {
10606 btrfs_warn(fs_info, "swapfile must not be compressed");
10607 return -EINVAL;
10608 }
10609 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) {
10610 btrfs_warn(fs_info, "swapfile must not be copy-on-write");
10611 return -EINVAL;
10612 }
10613 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
10614 btrfs_warn(fs_info, "swapfile must not be checksummed");
10615 return -EINVAL;
10616 }
10617
10618 /*
10619 * Balance or device remove/replace/resize can move stuff around from
10620 * under us. The EXCL_OP flag makes sure they aren't running/won't run
10621 * concurrently while we are mapping the swap extents, and
10622 * fs_info->swapfile_pins prevents them from running while the swap file
10623 * is active and moving the extents. Note that this also prevents a
10624 * concurrent device add which isn't actually necessary, but it's not
10625 * really worth the trouble to allow it.
10626 */
10627 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
10628 btrfs_warn(fs_info,
10629 "cannot activate swapfile while exclusive operation is running");
10630 return -EBUSY;
10631 }
10632 /*
10633 * Snapshots can create extents which require COW even if NODATACOW is
10634 * set. We use this counter to prevent snapshots. We must increment it
10635 * before walking the extents because we don't want a concurrent
10636 * snapshot to run after we've already checked the extents.
10637 */
10638 atomic_inc(&BTRFS_I(inode)->root->nr_swapfiles);
10639
10640 isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize);
10641
10642 lock_extent_bits(io_tree, 0, isize - 1, &cached_state);
10643 start = 0;
10644 while (start < isize) {
10645 u64 logical_block_start, physical_block_start;
10646 struct btrfs_block_group_cache *bg;
10647 u64 len = isize - start;
10648
10649 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
10650 if (IS_ERR(em)) {
10651 ret = PTR_ERR(em);
10652 goto out;
10653 }
10654
10655 if (em->block_start == EXTENT_MAP_HOLE) {
10656 btrfs_warn(fs_info, "swapfile must not have holes");
10657 ret = -EINVAL;
10658 goto out;
10659 }
10660 if (em->block_start == EXTENT_MAP_INLINE) {
10661 /*
10662 * It's unlikely we'll ever actually find ourselves
10663 * here, as a file small enough to fit inline won't be
10664 * big enough to store more than the swap header, but in
10665 * case something changes in the future, let's catch it
10666 * here rather than later.
10667 */
10668 btrfs_warn(fs_info, "swapfile must not be inline");
10669 ret = -EINVAL;
10670 goto out;
10671 }
10672 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
10673 btrfs_warn(fs_info, "swapfile must not be compressed");
10674 ret = -EINVAL;
10675 goto out;
10676 }
10677
10678 logical_block_start = em->block_start + (start - em->start);
10679 len = min(len, em->len - (start - em->start));
10680 free_extent_map(em);
10681 em = NULL;
10682
10683 ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL);
10684 if (ret < 0) {
10685 goto out;
10686 } else if (ret) {
10687 ret = 0;
10688 } else {
10689 btrfs_warn(fs_info,
10690 "swapfile must not be copy-on-write");
10691 ret = -EINVAL;
10692 goto out;
10693 }
10694
10695 em = btrfs_get_chunk_map(fs_info, logical_block_start, len);
10696 if (IS_ERR(em)) {
10697 ret = PTR_ERR(em);
10698 goto out;
10699 }
10700
10701 if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
10702 btrfs_warn(fs_info,
10703 "swapfile must have single data profile");
10704 ret = -EINVAL;
10705 goto out;
10706 }
10707
10708 if (device == NULL) {
10709 device = em->map_lookup->stripes[0].dev;
10710 ret = btrfs_add_swapfile_pin(inode, device, false);
10711 if (ret == 1)
10712 ret = 0;
10713 else if (ret)
10714 goto out;
10715 } else if (device != em->map_lookup->stripes[0].dev) {
10716 btrfs_warn(fs_info, "swapfile must be on one device");
10717 ret = -EINVAL;
10718 goto out;
10719 }
10720
10721 physical_block_start = (em->map_lookup->stripes[0].physical +
10722 (logical_block_start - em->start));
10723 len = min(len, em->len - (logical_block_start - em->start));
10724 free_extent_map(em);
10725 em = NULL;
10726
10727 bg = btrfs_lookup_block_group(fs_info, logical_block_start);
10728 if (!bg) {
10729 btrfs_warn(fs_info,
10730 "could not find block group containing swapfile");
10731 ret = -EINVAL;
10732 goto out;
10733 }
10734
10735 ret = btrfs_add_swapfile_pin(inode, bg, true);
10736 if (ret) {
10737 btrfs_put_block_group(bg);
10738 if (ret == 1)
10739 ret = 0;
10740 else
10741 goto out;
10742 }
10743
10744 if (bsi.block_len &&
10745 bsi.block_start + bsi.block_len == physical_block_start) {
10746 bsi.block_len += len;
10747 } else {
10748 if (bsi.block_len) {
10749 ret = btrfs_add_swap_extent(sis, &bsi);
10750 if (ret)
10751 goto out;
10752 }
10753 bsi.start = start;
10754 bsi.block_start = physical_block_start;
10755 bsi.block_len = len;
10756 }
10757
10758 start += len;
10759 }
10760
10761 if (bsi.block_len)
10762 ret = btrfs_add_swap_extent(sis, &bsi);
10763
10764out:
10765 if (!IS_ERR_OR_NULL(em))
10766 free_extent_map(em);
10767
10768 unlock_extent_cached(io_tree, 0, isize - 1, &cached_state);
10769
10770 if (ret)
10771 btrfs_swap_deactivate(file);
10772
10773 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
10774
10775 if (ret)
10776 return ret;
10777
10778 if (device)
10779 sis->bdev = device->bdev;
10780 *span = bsi.highest_ppage - bsi.lowest_ppage + 1;
10781 sis->max = bsi.nr_pages;
10782 sis->pages = bsi.nr_pages - 1;
10783 sis->highest_bit = bsi.nr_pages - 1;
10784 return bsi.nr_extents;
10785}
10786#else
10787static void btrfs_swap_deactivate(struct file *file)
10788{
10789}
10790
10791static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file,
10792 sector_t *span)
10793{
10794 return -EOPNOTSUPP;
10795}
10796#endif
10797
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010798static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010799 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010800 .lookup = btrfs_lookup,
10801 .create = btrfs_create,
10802 .unlink = btrfs_unlink,
10803 .link = btrfs_link,
10804 .mkdir = btrfs_mkdir,
10805 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010806 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010807 .symlink = btrfs_symlink,
10808 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010809 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010810 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010811 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010812 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010813 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010814 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010815 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010816};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010817static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010818 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010819 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010820 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010821};
Yan, Zheng76dda932009-09-21 16:00:26 -040010822
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010823static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010824 .llseek = generic_file_llseek,
10825 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010826 .iterate_shared = btrfs_real_readdir,
Josef Bacik23b5ec72017-07-24 15:14:25 -040010827 .open = btrfs_opendir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010828 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010829#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010830 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010831#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010832 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010833 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010834};
10835
David Sterba20e55062015-11-19 11:42:28 +010010836static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010837 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010838 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010839 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
10840};
10841
Chris Mason35054392009-01-21 13:11:13 -050010842/*
10843 * btrfs doesn't support the bmap operation because swapfiles
10844 * use bmap to make a mapping of extents in the file. They assume
10845 * these extents won't change over the life of the file and they
10846 * use the bmap result to do IO directly to the drive.
10847 *
10848 * the btrfs bmap call would return logical addresses that aren't
10849 * suitable for IO and they also will change frequently as COW
10850 * operations happen. So, swapfile + btrfs == corruption.
10851 *
10852 * For now we're avoiding this by dropping bmap.
10853 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010854static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010855 .readpage = btrfs_readpage,
10856 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010857 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010858 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010859 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010860 .invalidatepage = btrfs_invalidatepage,
10861 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010862 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010863 .error_remove_page = generic_error_remove_page,
Omar Sandovaled46ff32016-11-03 10:28:14 -070010864 .swap_activate = btrfs_swap_activate,
10865 .swap_deactivate = btrfs_swap_deactivate,
Chris Mason39279cc2007-06-12 06:35:45 -040010866};
10867
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010868static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010869 .getattr = btrfs_getattr,
10870 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010871 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010872 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010873 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010874 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010875 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010876 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010877};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010878static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010879 .getattr = btrfs_getattr,
10880 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010881 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010882 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010883 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010884 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010885 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010886};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010887static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010888 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010889 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010890 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010891 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010892 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010893 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010894};
Yan, Zheng76dda932009-09-21 16:00:26 -040010895
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010896const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010897 .d_delete = btrfs_dentry_delete,
10898};