blob: 0d932b9594de5e005689dd678b5cca3d1cad8ffc [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040034#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050035#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040036#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040037#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020039#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050040#include <linux/mount.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000041#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050042#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040043#include <linux/posix_acl_xattr.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080044#include <linux/uio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040049#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040050#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040051#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040052#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020053#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040054#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050055#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050056#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080057#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000058#include "backref.h"
Josef Bacikf23b5a52013-06-19 10:16:26 -040059#include "hash.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000060#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080061#include "qgroup.h"
Wang Xiaoguangdda32452016-07-11 11:05:29 +080062#include "dedupe.h"
Chris Mason39279cc2007-06-12 06:35:45 -040063
64struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080065 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040066 struct btrfs_root *root;
67};
68
Filipe Mananaf28a4922015-12-08 19:23:20 +000069struct btrfs_dio_data {
70 u64 outstanding_extents;
71 u64 reserve;
72 u64 unsubmitted_oe_range_start;
73 u64 unsubmitted_oe_range_end;
Liu Bo4aaedfb2016-12-14 22:36:05 -080074 int overwrite;
Filipe Mananaf28a4922015-12-08 19:23:20 +000075};
76
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070077static const struct inode_operations btrfs_dir_inode_operations;
78static const struct inode_operations btrfs_symlink_inode_operations;
79static const struct inode_operations btrfs_dir_ro_inode_operations;
80static const struct inode_operations btrfs_special_inode_operations;
81static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070082static const struct address_space_operations btrfs_aops;
83static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070084static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010085static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040086
87static struct kmem_cache *btrfs_inode_cachep;
88struct kmem_cache *btrfs_trans_handle_cachep;
89struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040090struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050091struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040092
93#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010094static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040095 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
96 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
97 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
98 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
99 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
100 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
101 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
102};
103
Eric Sandeen3972f262013-01-12 02:57:22 +0000104static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -0500105static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -0400106static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500107static noinline int cow_file_range(struct inode *inode,
108 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800109 u64 start, u64 end, u64 delalloc_end,
110 int *page_started, unsigned long *nr_written,
111 int unlock, struct btrfs_dedupe_hash *hash);
Liu Bo6f9994d2017-01-31 07:50:22 -0800112static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
113 u64 orig_start, u64 block_start,
114 u64 block_len, u64 orig_block_len,
115 u64 ram_bytes, int compress_type,
116 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400117
Eric Sandeen48a3b632013-04-25 20:41:01 +0000118static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400119
Josef Bacik6a3891c2015-03-16 17:38:52 -0400120#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
121void btrfs_test_inode_set_ops(struct inode *inode)
122{
123 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
124}
125#endif
126
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000127static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500128 struct inode *inode, struct inode *dir,
129 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500130{
131 int err;
132
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000133 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500134 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500135 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500136 return err;
137}
138
Chris Masond352ac62008-09-29 15:18:18 -0400139/*
Chris Masonc8b97812008-10-29 14:49:59 -0400140 * this does all the hard work for inserting an inline extent into
141 * the btree. The caller should have done a btrfs_drop_extents so that
142 * no overlapping inline items exist in the btree
143 */
Chris Mason40f76582014-05-21 13:35:51 -0700144static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000145 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400146 struct btrfs_root *root, struct inode *inode,
147 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000148 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400149 struct page **compressed_pages)
150{
Chris Masonc8b97812008-10-29 14:49:59 -0400151 struct extent_buffer *leaf;
152 struct page *page = NULL;
153 char *kaddr;
154 unsigned long ptr;
155 struct btrfs_file_extent_item *ei;
156 int err = 0;
157 int ret;
158 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400159 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400160
Li Zefanfe3f5662011-03-28 08:30:38 +0000161 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400162 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400163
Chris Masonc8b97812008-10-29 14:49:59 -0400164 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000165
166 if (!extent_inserted) {
167 struct btrfs_key key;
168 size_t datasize;
169
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200170 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000171 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200172 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000173
174 datasize = btrfs_file_extent_calc_inline_size(cur_size);
175 path->leave_spinning = 1;
176 ret = btrfs_insert_empty_item(trans, root, path, &key,
177 datasize);
178 if (ret) {
179 err = ret;
180 goto fail;
181 }
Chris Masonc8b97812008-10-29 14:49:59 -0400182 }
183 leaf = path->nodes[0];
184 ei = btrfs_item_ptr(leaf, path->slots[0],
185 struct btrfs_file_extent_item);
186 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
187 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
188 btrfs_set_file_extent_encryption(leaf, ei, 0);
189 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
190 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
191 ptr = btrfs_file_extent_inline_start(ei);
192
Li Zefan261507a02010-12-17 14:21:50 +0800193 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400194 struct page *cpage;
195 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500196 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400197 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500198 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300199 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400200
Cong Wang7ac687d2011-11-25 23:14:28 +0800201 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400202 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800203 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400204
205 i++;
206 ptr += cur_size;
207 compressed_size -= cur_size;
208 }
209 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800210 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400211 } else {
212 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300213 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400214 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800215 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300216 offset = start & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400217 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800218 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300219 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400220 }
221 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000222 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400223
Yan, Zhengc2167752009-11-12 09:34:21 +0000224 /*
225 * we're an inline extent, so nobody can
226 * extend the file past i_size without locking
227 * a page we already have locked.
228 *
229 * We must do any isize and inode updates
230 * before we unlock the pages. Otherwise we
231 * could end up racing with unlink.
232 */
Chris Masonc8b97812008-10-29 14:49:59 -0400233 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100234 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000235
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100236 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400237fail:
Chris Masonc8b97812008-10-29 14:49:59 -0400238 return err;
239}
240
241
242/*
243 * conditionally insert an inline extent into the file. This
244 * does the checks required to make sure the data is small enough
245 * to fit as an inline extent.
246 */
Josef Bacik00361582013-08-14 14:02:47 -0400247static noinline int cow_file_range_inline(struct btrfs_root *root,
248 struct inode *inode, u64 start,
249 u64 end, size_t compressed_size,
250 int compress_type,
251 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400252{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400253 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400254 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400255 u64 isize = i_size_read(inode);
256 u64 actual_end = min(end + 1, isize);
257 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400258 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400259 u64 data_len = inline_len;
260 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000261 struct btrfs_path *path;
262 int extent_inserted = 0;
263 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400264
265 if (compressed_size)
266 data_len = compressed_size;
267
268 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400269 actual_end > fs_info->sectorsize ||
270 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400271 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400272 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400273 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400274 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400275 return 1;
276 }
277
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000278 path = btrfs_alloc_path();
279 if (!path)
280 return -ENOMEM;
281
Josef Bacik00361582013-08-14 14:02:47 -0400282 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000283 if (IS_ERR(trans)) {
284 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400285 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000286 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400287 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400288
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000289 if (compressed_size && compressed_pages)
290 extent_item_size = btrfs_file_extent_calc_inline_size(
291 compressed_size);
292 else
293 extent_item_size = btrfs_file_extent_calc_inline_size(
294 inline_len);
295
296 ret = __btrfs_drop_extents(trans, root, inode, path,
297 start, aligned_end, NULL,
298 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400299 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400300 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400301 goto out;
302 }
Chris Masonc8b97812008-10-29 14:49:59 -0400303
304 if (isize > actual_end)
305 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000306 ret = insert_inline_extent(trans, path, extent_inserted,
307 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400308 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000309 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400310 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400311 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400312 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400313 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400314 ret = 1;
315 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100316 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400317
Josef Bacikbdc20e62013-02-28 13:23:38 -0500318 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Nikolay Borisov691fa052017-02-20 13:50:42 +0200319 btrfs_delalloc_release_metadata(BTRFS_I(inode), end + 1 - start);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200320 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400321out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800322 /*
323 * Don't forget to free the reserved space, as for inlined extent
324 * it won't count as data extent, free them directly here.
325 * And at reserve time, it's always aligned to page size, so
326 * just free one page here.
327 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300328 btrfs_qgroup_free_data(inode, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000329 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400330 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400331 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400332}
333
Chris Mason771ed682008-11-06 22:02:51 -0500334struct async_extent {
335 u64 start;
336 u64 ram_size;
337 u64 compressed_size;
338 struct page **pages;
339 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800340 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500341 struct list_head list;
342};
343
344struct async_cow {
345 struct inode *inode;
346 struct btrfs_root *root;
347 struct page *locked_page;
348 u64 start;
349 u64 end;
350 struct list_head extents;
351 struct btrfs_work work;
352};
353
354static noinline int add_async_extent(struct async_cow *cow,
355 u64 start, u64 ram_size,
356 u64 compressed_size,
357 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800358 unsigned long nr_pages,
359 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500360{
361 struct async_extent *async_extent;
362
363 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100364 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500365 async_extent->start = start;
366 async_extent->ram_size = ram_size;
367 async_extent->compressed_size = compressed_size;
368 async_extent->pages = pages;
369 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800370 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500371 list_add_tail(&async_extent->list, &cow->extents);
372 return 0;
373}
374
Wang Shilongf79707b2014-07-17 11:44:09 +0800375static inline int inode_need_compress(struct inode *inode)
376{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400377 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800378
379 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400380 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800381 return 1;
382 /* bad compression ratios */
383 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
384 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400385 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800386 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
387 BTRFS_I(inode)->force_compress)
388 return 1;
389 return 0;
390}
391
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200392static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800393 u64 start, u64 end, u64 num_bytes, u64 small_write)
394{
395 /* If this is a small write inside eof, kick off a defrag */
396 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200397 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800398 btrfs_add_inode_defrag(NULL, inode);
399}
400
Chris Masonc8b97812008-10-29 14:49:59 -0400401/*
Chris Mason771ed682008-11-06 22:02:51 -0500402 * we create compressed extents in two phases. The first
403 * phase compresses a range of pages that have already been
404 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400405 *
Chris Mason771ed682008-11-06 22:02:51 -0500406 * This is done inside an ordered work queue, and the compression
407 * is spread across many cpus. The actual IO submission is step
408 * two, and the ordered work queue takes care of making sure that
409 * happens in the same order things were put onto the queue by
410 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400411 *
Chris Mason771ed682008-11-06 22:02:51 -0500412 * If this code finds it can't get good compression, it puts an
413 * entry onto the work queue to write the uncompressed bytes. This
414 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300415 * are written in the same order that the flusher thread sent them
416 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400417 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100418static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500419 struct page *locked_page,
420 u64 start, u64 end,
421 struct async_cow *async_cow,
422 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400423{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400424 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonb888db22007-08-27 16:49:44 -0400425 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400426 u64 num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400427 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400428 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500429 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400430 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400431 struct page **pages = NULL;
432 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400433 unsigned long total_compressed = 0;
434 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400435 int i;
436 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400437 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400438 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400439
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200440 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
441 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400442
Chris Mason42dc7ba2008-12-15 11:44:56 -0500443 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400444again:
445 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300446 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100447 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
448 nr_pages = min_t(unsigned long, nr_pages,
449 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400450
Chris Masonf03d9301f2009-02-04 09:31:06 -0500451 /*
452 * we don't want to send crud past the end of i_size through
453 * compression, that's just a waste of CPU time. So, if the
454 * end of the file is before the start of our current
455 * requested range of bytes, we bail out to the uncompressed
456 * cleanup code that can deal with all of this.
457 *
458 * It isn't really the fastest way to fix things, but this is a
459 * very uncommon corner.
460 */
461 if (actual_end <= start)
462 goto cleanup_and_bail_uncompressed;
463
Chris Masonc8b97812008-10-29 14:49:59 -0400464 total_compressed = actual_end - start;
465
Shilong Wang4bcbb332014-10-07 18:44:35 -0400466 /*
467 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400468 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400469 */
470 if (total_compressed <= blocksize &&
471 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
472 goto cleanup_and_bail_uncompressed;
473
David Sterba069eac72017-02-14 19:36:54 +0100474 total_compressed = min_t(unsigned long, total_compressed,
475 BTRFS_MAX_UNCOMPRESSED);
Qu Wenruofda28322013-02-26 08:10:22 +0000476 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500477 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400478 total_in = 0;
479 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400480
Chris Mason771ed682008-11-06 22:02:51 -0500481 /*
482 * we do compression for mount -o compress and when the
483 * inode has not been flagged as nocompress. This flag can
484 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400485 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800486 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400487 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100488 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800489 if (!pages) {
490 /* just bail out to the uncompressed code */
491 goto cont;
492 }
Chris Mason179e29e2007-11-01 11:28:41 -0400493
Li Zefan261507a02010-12-17 14:21:50 +0800494 if (BTRFS_I(inode)->force_compress)
495 compress_type = BTRFS_I(inode)->force_compress;
496
Chris Mason4adaa612013-03-26 13:07:00 -0400497 /*
498 * we need to call clear_page_dirty_for_io on each
499 * page in the range. Otherwise applications with the file
500 * mmap'd can wander in and change the page contents while
501 * we are compressing them.
502 *
503 * If the compression fails for any reason, we set the pages
504 * dirty again later on.
505 */
506 extent_range_clear_dirty_for_io(inode, start, end);
507 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800508 ret = btrfs_compress_pages(compress_type,
509 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100510 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100511 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800512 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100513 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400514
515 if (!ret) {
516 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300517 (PAGE_SIZE - 1);
David Sterba4d3a8002017-02-14 19:04:07 +0100518 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400519 char *kaddr;
520
521 /* zero the tail end of the last page, we might be
522 * sending it down to disk
523 */
524 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800525 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400526 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300527 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800528 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400529 }
530 will_compress = 1;
531 }
532 }
Li Zefan560f7d72011-09-08 10:22:01 +0800533cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400534 if (start == 0) {
535 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500536 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400537 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500538 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400539 */
Josef Bacik00361582013-08-14 14:02:47 -0400540 ret = cow_file_range_inline(root, inode, start, end,
Anand Jainf74670f2016-12-06 12:43:07 +0800541 0, BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400542 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500543 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400544 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000545 total_compressed,
546 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400547 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100548 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400549 unsigned long clear_flags = EXTENT_DELALLOC |
550 EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100551 unsigned long page_error_op;
552
Josef Bacik151a41b2013-07-29 13:22:24 -0400553 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100554 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400555
Chris Mason771ed682008-11-06 22:02:51 -0500556 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 * inline extent creation worked or returned error,
558 * we don't need to create any more async work items.
559 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500560 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800561 extent_clear_unlock_delalloc(inode, start, end, end,
562 NULL, clear_flags,
563 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400564 PAGE_CLEAR_DIRTY |
565 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100566 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400567 PAGE_END_WRITEBACK);
Wang Xiaoguang18513092016-07-25 15:51:40 +0800568 btrfs_free_reserved_data_space_noquota(inode, start,
569 end - start + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400570 goto free_pages_out;
571 }
572 }
573
574 if (will_compress) {
575 /*
576 * we aren't doing an inline extent round the compressed size
577 * up to a block size boundary so the allocator does sane
578 * things
579 */
Qu Wenruofda28322013-02-26 08:10:22 +0000580 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400581
582 /*
583 * one last check to make sure the compression is really a
584 * win, compare the page count read with the blocks on disk
585 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300586 total_in = ALIGN(total_in, PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400587 if (total_compressed >= total_in) {
588 will_compress = 0;
589 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400590 num_bytes = total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700591 *num_added += 1;
592
593 /*
594 * The async work queues will take care of doing actual
595 * allocation on disk for these compressed pages, and
596 * will submit them to the elevator.
597 */
598 add_async_extent(async_cow, start, num_bytes,
David Sterba4d3a8002017-02-14 19:04:07 +0100599 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700600 compress_type);
601
602 if (start + num_bytes < end) {
603 start += num_bytes;
604 pages = NULL;
605 cond_resched();
606 goto again;
607 }
608 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400609 }
610 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700611 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400612 /*
613 * the compression code ran but failed to make things smaller,
614 * free any pages it allocated and our page pointer array
615 */
David Sterba4d3a8002017-02-14 19:04:07 +0100616 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400617 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300618 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400619 }
620 kfree(pages);
621 pages = NULL;
622 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100623 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400624
625 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400626 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500627 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500628 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500629 }
Chris Masonc8b97812008-10-29 14:49:59 -0400630 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500631cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700632 /*
633 * No compression, but we still need to write the pages in the file
634 * we've been given so far. redirty the locked page if it corresponds
635 * to our extent and set things up for the async work queue to run
636 * cow_file_range to do the normal delalloc dance.
637 */
638 if (page_offset(locked_page) >= start &&
639 page_offset(locked_page) <= end)
640 __set_page_dirty_nobuffers(locked_page);
641 /* unlocked later on in the async handlers */
642
643 if (redirty)
644 extent_range_redirty_for_io(inode, start, end);
645 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
646 BTRFS_COMPRESS_NONE);
647 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500648
Filipe Mananac44f6492014-10-09 21:15:44 +0100649 return;
Chris Mason771ed682008-11-06 22:02:51 -0500650
651free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100652 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500653 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300654 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500655 }
Chris Masond3977122009-01-05 21:25:51 -0500656 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500657}
Chris Mason771ed682008-11-06 22:02:51 -0500658
Filipe Manana40ae8372014-10-06 22:14:24 +0100659static void free_async_extent_pages(struct async_extent *async_extent)
660{
661 int i;
662
663 if (!async_extent->pages)
664 return;
665
666 for (i = 0; i < async_extent->nr_pages; i++) {
667 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300668 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100669 }
670 kfree(async_extent->pages);
671 async_extent->nr_pages = 0;
672 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500673}
674
675/*
676 * phase two of compressed writeback. This is the ordered portion
677 * of the code, which only gets called in the order the work was
678 * queued. We walk all the async extents created by compress_file_range
679 * and send them down to the disk.
680 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100681static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500682 struct async_cow *async_cow)
683{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400684 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500685 struct async_extent *async_extent;
686 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500687 struct btrfs_key ins;
688 struct extent_map *em;
689 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500690 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500691 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500692
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500693again:
Chris Masond3977122009-01-05 21:25:51 -0500694 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500695 async_extent = list_entry(async_cow->extents.next,
696 struct async_extent, list);
697 list_del(&async_extent->list);
698
699 io_tree = &BTRFS_I(inode)->io_tree;
700
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500701retry:
Chris Mason771ed682008-11-06 22:02:51 -0500702 /* did the compression code fall back to uncompressed IO? */
703 if (!async_extent->pages) {
704 int page_started = 0;
705 unsigned long nr_written = 0;
706
707 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000708 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100709 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500710
711 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500712 ret = cow_file_range(inode, async_cow->locked_page,
713 async_extent->start,
714 async_extent->start +
715 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800716 async_extent->start +
717 async_extent->ram_size - 1,
718 &page_started, &nr_written, 0,
719 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500720
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100721 /* JDM XXX */
722
Chris Mason771ed682008-11-06 22:02:51 -0500723 /*
724 * if page_started, cow_file_range inserted an
725 * inline extent and took care of all the unlocking
726 * and IO for us. Otherwise, we need to submit
727 * all those pages down to the drive.
728 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500729 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500730 extent_write_locked_range(io_tree,
731 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500732 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500733 async_extent->ram_size - 1,
734 btrfs_get_extent,
735 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500736 else if (ret)
737 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500738 kfree(async_extent);
739 cond_resched();
740 continue;
741 }
742
743 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100744 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500745
Wang Xiaoguang18513092016-07-25 15:51:40 +0800746 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500747 async_extent->compressed_size,
748 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800749 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500750 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100751 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500752
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400753 if (ret == -ENOSPC) {
754 unlock_extent(io_tree, async_extent->start,
755 async_extent->start +
756 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800757
758 /*
759 * we need to redirty the pages if we decide to
760 * fallback to uncompressed IO, otherwise we
761 * will not submit these pages down to lower
762 * layers.
763 */
764 extent_range_redirty_for_io(inode,
765 async_extent->start,
766 async_extent->start +
767 async_extent->ram_size - 1);
768
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100769 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400770 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500771 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500772 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000773 /*
774 * here we're doing allocation and writeback of the
775 * compressed pages
776 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800777 em = create_io_em(inode, async_extent->start,
778 async_extent->ram_size, /* len */
779 async_extent->start, /* orig_start */
780 ins.objectid, /* block_start */
781 ins.offset, /* block_len */
782 ins.offset, /* orig_block_len */
783 async_extent->ram_size, /* ram_bytes */
784 async_extent->compress_type,
785 BTRFS_ORDERED_COMPRESSED);
786 if (IS_ERR(em))
787 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500788 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800789 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500790
Li Zefan261507a02010-12-17 14:21:50 +0800791 ret = btrfs_add_ordered_extent_compress(inode,
792 async_extent->start,
793 ins.objectid,
794 async_extent->ram_size,
795 ins.offset,
796 BTRFS_ORDERED_COMPRESSED,
797 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100798 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200799 btrfs_drop_extent_cache(BTRFS_I(inode),
800 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100801 async_extent->start +
802 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500803 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100804 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400805 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500806
Chris Mason771ed682008-11-06 22:02:51 -0500807 /*
808 * clear dirty, set writeback and unlock the pages.
809 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400810 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400811 async_extent->start +
812 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800813 async_extent->start +
814 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400815 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
816 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400817 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500818 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500819 async_extent->start,
820 async_extent->ram_size,
821 ins.objectid,
822 ins.offset, async_extent->pages,
823 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100824 if (ret) {
825 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
826 struct page *p = async_extent->pages[0];
827 const u64 start = async_extent->start;
828 const u64 end = start + async_extent->ram_size - 1;
829
830 p->mapping = inode->i_mapping;
831 tree->ops->writepage_end_io_hook(p, start, end,
832 NULL, 0);
833 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800834 extent_clear_unlock_delalloc(inode, start, end, end,
835 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100836 PAGE_END_WRITEBACK |
837 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100838 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100839 }
Chris Mason771ed682008-11-06 22:02:51 -0500840 alloc_hint = ins.objectid + ins.offset;
841 kfree(async_extent);
842 cond_resched();
843 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100844 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500845out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400846 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400847 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100848out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400849 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500850 async_extent->start +
851 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800852 async_extent->start +
853 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400854 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400855 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
856 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100857 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
858 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100859 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100860 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500861 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500862}
863
Josef Bacik4b46fce2010-05-23 11:00:55 -0400864static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
865 u64 num_bytes)
866{
867 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
868 struct extent_map *em;
869 u64 alloc_hint = 0;
870
871 read_lock(&em_tree->lock);
872 em = search_extent_mapping(em_tree, start, num_bytes);
873 if (em) {
874 /*
875 * if block start isn't an actual block number then find the
876 * first block in this inode and use that as a hint. If that
877 * block is also bogus then just don't worry about it.
878 */
879 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
880 free_extent_map(em);
881 em = search_extent_mapping(em_tree, 0, 0);
882 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
883 alloc_hint = em->block_start;
884 if (em)
885 free_extent_map(em);
886 } else {
887 alloc_hint = em->block_start;
888 free_extent_map(em);
889 }
890 }
891 read_unlock(&em_tree->lock);
892
893 return alloc_hint;
894}
895
Chris Mason771ed682008-11-06 22:02:51 -0500896/*
897 * when extent_io.c finds a delayed allocation range in the file,
898 * the call backs end up in this code. The basic idea is to
899 * allocate extents on disk for the range, and create ordered data structs
900 * in ram to track those extents.
901 *
902 * locked_page is the page that writepage had locked already. We use
903 * it to make sure we don't do extra locks or unlocks.
904 *
905 * *page_started is set to one if we unlock locked_page and do everything
906 * required to start IO on it. It may be clean and already done with
907 * IO when we return.
908 */
Josef Bacik00361582013-08-14 14:02:47 -0400909static noinline int cow_file_range(struct inode *inode,
910 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800911 u64 start, u64 end, u64 delalloc_end,
912 int *page_started, unsigned long *nr_written,
913 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500914{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400915 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400916 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500917 u64 alloc_hint = 0;
918 u64 num_bytes;
919 unsigned long ram_size;
920 u64 disk_num_bytes;
921 u64 cur_alloc_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400922 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500923 struct btrfs_key ins;
924 struct extent_map *em;
Chris Mason771ed682008-11-06 22:02:51 -0500925 int ret = 0;
926
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200927 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400928 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500929 ret = -EINVAL;
930 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400931 }
Chris Mason771ed682008-11-06 22:02:51 -0500932
Qu Wenruofda28322013-02-26 08:10:22 +0000933 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500934 num_bytes = max(blocksize, num_bytes);
935 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500936
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200937 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400938
Chris Mason771ed682008-11-06 22:02:51 -0500939 if (start == 0) {
940 /* lets try to make an inline extent */
Anand Jainf74670f2016-12-06 12:43:07 +0800941 ret = cow_file_range_inline(root, inode, start, end, 0,
942 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500943 if (ret == 0) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800944 extent_clear_unlock_delalloc(inode, start, end,
945 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400946 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400947 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400948 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
949 PAGE_END_WRITEBACK);
Wang Xiaoguang18513092016-07-25 15:51:40 +0800950 btrfs_free_reserved_data_space_noquota(inode, start,
951 end - start + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500952 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300953 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500954 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500955 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100956 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100957 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500958 }
959 }
Chris Masonc8b97812008-10-29 14:49:59 -0400960
961 BUG_ON(disk_num_bytes >
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400962 btrfs_super_total_bytes(fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400963
Josef Bacik4b46fce2010-05-23 11:00:55 -0400964 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200965 btrfs_drop_extent_cache(BTRFS_I(inode), start,
966 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400967
Chris Masond3977122009-01-05 21:25:51 -0500968 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400969 unsigned long op;
970
Josef Bacik287a0ab2010-03-19 18:07:23 +0000971 cur_alloc_size = disk_num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +0800972 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400973 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +0800974 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -0400975 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100976 goto out_unlock;
Chris Masond3977122009-01-05 21:25:51 -0500977
Chris Mason771ed682008-11-06 22:02:51 -0500978 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -0800979 em = create_io_em(inode, start, ins.offset, /* len */
980 start, /* orig_start */
981 ins.objectid, /* block_start */
982 ins.offset, /* block_len */
983 ins.offset, /* orig_block_len */
984 ram_size, /* ram_bytes */
985 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -0800986 BTRFS_ORDERED_REGULAR /* type */);
Liu Bo6f9994d2017-01-31 07:50:22 -0800987 if (IS_ERR(em))
Liu Boace68ba2013-04-22 10:53:47 +0000988 goto out_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800989 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400990
Chris Mason98d20f62008-04-14 09:46:10 -0400991 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400992 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500993 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +0000994 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +0100995 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -0400996
Yan Zheng17d217f2008-12-12 10:03:38 -0500997 if (root->root_key.objectid ==
998 BTRFS_DATA_RELOC_TREE_OBJECTID) {
999 ret = btrfs_reloc_clone_csums(inode, start,
1000 cur_alloc_size);
Josef Bacik00361582013-08-14 14:02:47 -04001001 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001002 goto out_drop_extent_cache;
Yan Zheng17d217f2008-12-12 10:03:38 -05001003 }
1004
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001005 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001006
Chris Masond3977122009-01-05 21:25:51 -05001007 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -04001008 break;
Chris Masond3977122009-01-05 21:25:51 -05001009
Chris Masonc8b97812008-10-29 14:49:59 -04001010 /* we're not doing compressed IO, don't unlock the first
1011 * page (which the caller expects to stay locked), don't
1012 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001013 *
1014 * Do set the Private2 bit so we know this page was properly
1015 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001016 */
Josef Bacikc2790a22013-07-29 11:20:47 -04001017 op = unlock ? PAGE_UNLOCK : 0;
1018 op |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001019
Josef Bacikc2790a22013-07-29 11:20:47 -04001020 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001021 start + ram_size - 1,
1022 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001023 EXTENT_LOCKED | EXTENT_DELALLOC,
1024 op);
Chris Masonc8b97812008-10-29 14:49:59 -04001025 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001026 num_bytes -= cur_alloc_size;
1027 alloc_hint = ins.objectid + ins.offset;
1028 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -04001029 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001030out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001031 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001032
Filipe Mananad9f85962014-08-25 10:43:00 +01001033out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001034 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001035out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001036 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001037 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001038out_unlock:
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001039 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1040 locked_page,
Josef Bacik151a41b2013-07-29 13:22:24 -04001041 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1042 EXTENT_DELALLOC | EXTENT_DEFRAG,
1043 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1044 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001045 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001046}
Chris Masonc8b97812008-10-29 14:49:59 -04001047
Chris Mason771ed682008-11-06 22:02:51 -05001048/*
1049 * work queue call back to started compression on a file and pages
1050 */
1051static noinline void async_cow_start(struct btrfs_work *work)
1052{
1053 struct async_cow *async_cow;
1054 int num_added = 0;
1055 async_cow = container_of(work, struct async_cow, work);
1056
1057 compress_file_range(async_cow->inode, async_cow->locked_page,
1058 async_cow->start, async_cow->end, async_cow,
1059 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001060 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001061 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001062 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001063 }
Chris Mason771ed682008-11-06 22:02:51 -05001064}
1065
1066/*
1067 * work queue call back to submit previously compressed pages
1068 */
1069static noinline void async_cow_submit(struct btrfs_work *work)
1070{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001071 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001072 struct async_cow *async_cow;
1073 struct btrfs_root *root;
1074 unsigned long nr_pages;
1075
1076 async_cow = container_of(work, struct async_cow, work);
1077
1078 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001079 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001080 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1081 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001082
David Sterbaee863952015-02-16 19:41:40 +01001083 /*
1084 * atomic_sub_return implies a barrier for waitqueue_active
1085 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001086 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
Byongho Leeee221842015-12-15 01:42:10 +09001087 5 * SZ_1M &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001088 waitqueue_active(&fs_info->async_submit_wait))
1089 wake_up(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001090
Chris Masond3977122009-01-05 21:25:51 -05001091 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001092 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001093}
Chris Masonc8b97812008-10-29 14:49:59 -04001094
Chris Mason771ed682008-11-06 22:02:51 -05001095static noinline void async_cow_free(struct btrfs_work *work)
1096{
1097 struct async_cow *async_cow;
1098 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001099 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001100 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001101 kfree(async_cow);
1102}
1103
1104static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1105 u64 start, u64 end, int *page_started,
1106 unsigned long *nr_written)
1107{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001108 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001109 struct async_cow *async_cow;
1110 struct btrfs_root *root = BTRFS_I(inode)->root;
1111 unsigned long nr_pages;
1112 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001113
Chris Masona3429ab2009-10-08 12:30:20 -04001114 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1115 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001116 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001117 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001118 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001119 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001120 async_cow->root = root;
1121 async_cow->locked_page = locked_page;
1122 async_cow->start = start;
1123
Wang Shilongf79707b2014-07-17 11:44:09 +08001124 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001125 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001126 cur_end = end;
1127 else
Byongho Leeee221842015-12-15 01:42:10 +09001128 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001129
1130 async_cow->end = cur_end;
1131 INIT_LIST_HEAD(&async_cow->extents);
1132
Liu Bo9e0af232014-08-15 23:36:53 +08001133 btrfs_init_work(&async_cow->work,
1134 btrfs_delalloc_helper,
1135 async_cow_start, async_cow_submit,
1136 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001137
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001138 nr_pages = (cur_end - start + PAGE_SIZE) >>
1139 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001140 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001141
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001142 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001143
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001144 while (atomic_read(&fs_info->async_submit_draining) &&
1145 atomic_read(&fs_info->async_delalloc_pages)) {
1146 wait_event(fs_info->async_submit_wait,
1147 (atomic_read(&fs_info->async_delalloc_pages) ==
1148 0));
Chris Mason771ed682008-11-06 22:02:51 -05001149 }
1150
1151 *nr_written += nr_pages;
1152 start = cur_end + 1;
1153 }
1154 *page_started = 1;
1155 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001156}
1157
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001158static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001159 u64 bytenr, u64 num_bytes)
1160{
1161 int ret;
1162 struct btrfs_ordered_sum *sums;
1163 LIST_HEAD(list);
1164
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001165 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001166 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001167 if (ret == 0 && list_empty(&list))
1168 return 0;
1169
1170 while (!list_empty(&list)) {
1171 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1172 list_del(&sums->list);
1173 kfree(sums);
1174 }
1175 return 1;
1176}
1177
Chris Masond352ac62008-09-29 15:18:18 -04001178/*
1179 * when nowcow writeback call back. This checks for snapshots or COW copies
1180 * of the extents that exist in the file, and COWs the file as required.
1181 *
1182 * If no cow copies or snapshots exist, we write directly to the existing
1183 * blocks on disk
1184 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001185static noinline int run_delalloc_nocow(struct inode *inode,
1186 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001187 u64 start, u64 end, int *page_started, int force,
1188 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001189{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001190 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001191 struct btrfs_root *root = BTRFS_I(inode)->root;
1192 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001193 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001194 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001195 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001196 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001197 u64 cow_start;
1198 u64 cur_offset;
1199 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001200 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001201 u64 disk_bytenr;
1202 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001203 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001204 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001205 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001206 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001207 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001208 int nocow;
1209 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001210 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001211 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001212
1213 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001214 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001215 extent_clear_unlock_delalloc(inode, start, end, end,
1216 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001217 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001218 EXTENT_DO_ACCOUNTING |
1219 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001220 PAGE_CLEAR_DIRTY |
1221 PAGE_SET_WRITEBACK |
1222 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001223 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001224 }
Li Zefan82d59022011-04-20 10:33:24 +08001225
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001226 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001227
Yan Zheng80ff3852008-10-30 14:20:02 -04001228 cow_start = (u64)-1;
1229 cur_offset = start;
1230 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001231 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001233 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001234 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001235 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1236 leaf = path->nodes[0];
1237 btrfs_item_key_to_cpu(leaf, &found_key,
1238 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001239 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001240 found_key.type == BTRFS_EXTENT_DATA_KEY)
1241 path->slots[0]--;
1242 }
1243 check_prev = 0;
1244next_slot:
1245 leaf = path->nodes[0];
1246 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1247 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001248 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001249 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001250 if (ret > 0)
1251 break;
1252 leaf = path->nodes[0];
1253 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001254
Yan Zheng80ff3852008-10-30 14:20:02 -04001255 nocow = 0;
1256 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001257 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001258 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001259
Filipe Manana1d512cb2015-11-09 00:33:58 +00001260 if (found_key.objectid > ino)
1261 break;
1262 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1263 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1264 path->slots[0]++;
1265 goto next_slot;
1266 }
1267 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001268 found_key.offset > end)
1269 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001270
Yan Zheng80ff3852008-10-30 14:20:02 -04001271 if (found_key.offset > cur_offset) {
1272 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001273 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001274 goto out_check;
1275 }
Chris Masonc31f8832008-01-08 15:46:31 -05001276
Yan Zheng80ff3852008-10-30 14:20:02 -04001277 fi = btrfs_item_ptr(leaf, path->slots[0],
1278 struct btrfs_file_extent_item);
1279 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001280
Josef Bacikcc95bef2013-04-04 14:31:27 -04001281 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001282 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1283 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001284 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001285 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001286 extent_end = found_key.offset +
1287 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001288 disk_num_bytes =
1289 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001290 if (extent_end <= start) {
1291 path->slots[0]++;
1292 goto next_slot;
1293 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001294 if (disk_bytenr == 0)
1295 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001296 if (btrfs_file_extent_compression(leaf, fi) ||
1297 btrfs_file_extent_encryption(leaf, fi) ||
1298 btrfs_file_extent_other_encoding(leaf, fi))
1299 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001300 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1301 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001302 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001303 goto out_check;
Liu Boe4c3b2d2017-01-30 12:25:28 -08001304 if (btrfs_cross_ref_exist(root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001305 found_key.offset -
1306 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001307 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001308 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001309 disk_bytenr += cur_offset - found_key.offset;
1310 num_bytes = min(end + 1, extent_end) - cur_offset;
1311 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001312 * if there are pending snapshots for this root,
1313 * we fall into common COW way.
1314 */
1315 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001316 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001317 if (!err)
1318 goto out_check;
1319 }
1320 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001321 * force cow if csum exists in the range.
1322 * this ensure that csum for a given extent are
1323 * either valid or do not exist.
1324 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001325 if (csum_exist_in_range(fs_info, disk_bytenr,
1326 num_bytes))
Yan Zheng17d217f2008-12-12 10:03:38 -05001327 goto out_check;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001328 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001329 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001330 nocow = 1;
1331 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1332 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001333 btrfs_file_extent_inline_len(leaf,
1334 path->slots[0], fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001335 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001336 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001337 } else {
1338 BUG_ON(1);
1339 }
1340out_check:
1341 if (extent_end <= start) {
1342 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001343 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001344 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001345 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001346 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001347 goto next_slot;
1348 }
1349 if (!nocow) {
1350 if (cow_start == (u64)-1)
1351 cow_start = cur_offset;
1352 cur_offset = extent_end;
1353 if (cur_offset > end)
1354 break;
1355 path->slots[0]++;
1356 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001357 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001358
David Sterbab3b4aa72011-04-21 01:20:15 +02001359 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001360 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001361 ret = cow_file_range(inode, locked_page,
1362 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001363 end, page_started, nr_written, 1,
1364 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001365 if (ret) {
1366 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001367 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001368 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001369 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001370 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001372 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001373 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001374 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001375
Yan Zhengd899e052008-10-30 14:25:28 -04001376 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001377 u64 orig_start = found_key.offset - extent_offset;
1378
1379 em = create_io_em(inode, cur_offset, num_bytes,
1380 orig_start,
1381 disk_bytenr, /* block_start */
1382 num_bytes, /* block_len */
1383 disk_num_bytes, /* orig_block_len */
1384 ram_bytes, BTRFS_COMPRESS_NONE,
1385 BTRFS_ORDERED_PREALLOC);
1386 if (IS_ERR(em)) {
1387 if (!nolock && nocow)
1388 btrfs_end_write_no_snapshoting(root);
1389 if (nocow)
1390 btrfs_dec_nocow_writers(fs_info,
1391 disk_bytenr);
1392 ret = PTR_ERR(em);
1393 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001394 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001395 free_extent_map(em);
1396 }
1397
1398 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001399 type = BTRFS_ORDERED_PREALLOC;
1400 } else {
1401 type = BTRFS_ORDERED_NOCOW;
1402 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001403
1404 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001405 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001406 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001407 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001408 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001409
Yan, Zhengefa56462010-05-16 10:49:59 -04001410 if (root->root_key.objectid ==
1411 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1412 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1413 num_bytes);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001414 if (ret) {
1415 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001416 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001417 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001418 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001419 }
1420
Josef Bacikc2790a22013-07-29 11:20:47 -04001421 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001422 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001423 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001424 EXTENT_DELALLOC |
1425 EXTENT_CLEAR_DATA_RESV,
1426 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1427
Wang Shilonge9894fd2014-03-27 11:12:25 +08001428 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001429 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001430 cur_offset = extent_end;
1431 if (cur_offset > end)
1432 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001433 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001434 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001435
Josef Bacik17ca04a2012-05-31 15:58:55 -04001436 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001437 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001438 cur_offset = end;
1439 }
1440
Yan Zheng80ff3852008-10-30 14:20:02 -04001441 if (cow_start != (u64)-1) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001442 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1443 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001444 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001445 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001446 }
1447
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001448error:
Josef Bacik17ca04a2012-05-31 15:58:55 -04001449 if (ret && cur_offset < end)
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001450 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001451 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001452 EXTENT_DELALLOC | EXTENT_DEFRAG |
1453 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1454 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001455 PAGE_SET_WRITEBACK |
1456 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001457 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001458 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001459}
1460
Wang Shilong47059d92014-07-03 18:22:07 +08001461static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1462{
1463
1464 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1465 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1466 return 0;
1467
1468 /*
1469 * @defrag_bytes is a hint value, no spinlock held here,
1470 * if is not zero, it means the file is defragging.
1471 * Force cow if given extent needs to be defragged.
1472 */
1473 if (BTRFS_I(inode)->defrag_bytes &&
1474 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1475 EXTENT_DEFRAG, 0, NULL))
1476 return 1;
1477
1478 return 0;
1479}
1480
Chris Masond352ac62008-09-29 15:18:18 -04001481/*
1482 * extent_io.c call back to do delayed allocation processing
1483 */
Chris Masonc8b97812008-10-29 14:49:59 -04001484static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001485 u64 start, u64 end, int *page_started,
1486 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001487{
Chris Masonbe20aa92007-12-17 20:14:01 -05001488 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001489 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001490
Wang Shilong47059d92014-07-03 18:22:07 +08001491 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001492 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001493 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001494 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001495 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001496 page_started, 0, nr_written);
Wang Shilong78160302014-07-17 11:44:10 +08001497 } else if (!inode_need_compress(inode)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001498 ret = cow_file_range(inode, locked_page, start, end, end,
1499 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001500 } else {
1501 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1502 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001503 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001504 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001505 }
Chris Masonb888db22007-08-27 16:49:44 -04001506 return ret;
1507}
1508
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001509static void btrfs_split_extent_hook(struct inode *inode,
1510 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001511{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001512 u64 size;
1513
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001514 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001515 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001516 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001517
Josef Bacikdcab6a32015-02-11 15:08:59 -05001518 size = orig->end - orig->start + 1;
1519 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001520 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001521 u64 new_size;
1522
1523 /*
Josef Bacikba117212015-03-13 15:01:24 -04001524 * See the explanation in btrfs_merge_extent_hook, the same
1525 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001526 */
1527 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001528 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001529 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001530 num_extents += count_max_extents(new_size);
1531 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001532 return;
1533 }
1534
Josef Bacik9e0baf62011-07-15 15:16:44 +00001535 spin_lock(&BTRFS_I(inode)->lock);
1536 BTRFS_I(inode)->outstanding_extents++;
1537 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001538}
1539
1540/*
1541 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1542 * extents so we can keep track of new extents that are just merged onto old
1543 * extents, such as when we are doing sequential writes, so we can properly
1544 * account for the metadata space we'll need.
1545 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001546static void btrfs_merge_extent_hook(struct inode *inode,
1547 struct extent_state *new,
1548 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001549{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001550 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001551 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001552
Josef Bacik9ed74f22009-09-11 16:12:44 -04001553 /* not delalloc, ignore it */
1554 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001555 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001556
Josef Bacik8461a3d2015-03-13 15:12:08 -04001557 if (new->start > other->start)
1558 new_size = new->end - other->start + 1;
1559 else
1560 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001561
1562 /* we're not bigger than the max, unreserve the space and go */
1563 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1564 spin_lock(&BTRFS_I(inode)->lock);
1565 BTRFS_I(inode)->outstanding_extents--;
1566 spin_unlock(&BTRFS_I(inode)->lock);
1567 return;
1568 }
1569
1570 /*
Josef Bacikba117212015-03-13 15:01:24 -04001571 * We have to add up either side to figure out how many extents were
1572 * accounted for before we merged into one big extent. If the number of
1573 * extents we accounted for is <= the amount we need for the new range
1574 * then we can return, otherwise drop. Think of it like this
1575 *
1576 * [ 4k][MAX_SIZE]
1577 *
1578 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1579 * need 2 outstanding extents, on one side we have 1 and the other side
1580 * we have 1 so they are == and we can return. But in this case
1581 *
1582 * [MAX_SIZE+4k][MAX_SIZE+4k]
1583 *
1584 * Each range on their own accounts for 2 extents, but merged together
1585 * they are only 3 extents worth of accounting, so we need to drop in
1586 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001587 */
Josef Bacikba117212015-03-13 15:01:24 -04001588 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001589 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001590 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001591 num_extents += count_max_extents(old_size);
1592 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001593 return;
1594
Josef Bacik9e0baf62011-07-15 15:16:44 +00001595 spin_lock(&BTRFS_I(inode)->lock);
1596 BTRFS_I(inode)->outstanding_extents--;
1597 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001598}
1599
Miao Xieeb73c1b2013-05-15 07:48:22 +00001600static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1601 struct inode *inode)
1602{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001603 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1604
Miao Xieeb73c1b2013-05-15 07:48:22 +00001605 spin_lock(&root->delalloc_lock);
1606 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1607 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1608 &root->delalloc_inodes);
1609 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1610 &BTRFS_I(inode)->runtime_flags);
1611 root->nr_delalloc_inodes++;
1612 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001613 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001614 BUG_ON(!list_empty(&root->delalloc_root));
1615 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001616 &fs_info->delalloc_roots);
1617 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001618 }
1619 }
1620 spin_unlock(&root->delalloc_lock);
1621}
1622
1623static void btrfs_del_delalloc_inode(struct btrfs_root *root,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001624 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001625{
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001626 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001627
Miao Xieeb73c1b2013-05-15 07:48:22 +00001628 spin_lock(&root->delalloc_lock);
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001629 if (!list_empty(&inode->delalloc_inodes)) {
1630 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001631 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001632 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001633 root->nr_delalloc_inodes--;
1634 if (!root->nr_delalloc_inodes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001635 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001636 BUG_ON(list_empty(&root->delalloc_root));
1637 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001638 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001639 }
1640 }
1641 spin_unlock(&root->delalloc_lock);
1642}
1643
Chris Masond352ac62008-09-29 15:18:18 -04001644/*
1645 * extent_io.c set_bit_hook, used to track delayed allocation
1646 * bytes in this file, and to maintain the list of inodes that
1647 * have pending delalloc work to be done.
1648 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001649static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001650 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001651{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001652
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001653 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1654
Wang Shilong47059d92014-07-03 18:22:07 +08001655 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1656 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001657 /*
1658 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001659 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001660 * bit, which is only set or cleared with irqs on
1661 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001662 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001663 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001664 u64 len = state->end + 1 - state->start;
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001665 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001666
Josef Bacik9e0baf62011-07-15 15:16:44 +00001667 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001668 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001669 } else {
1670 spin_lock(&BTRFS_I(inode)->lock);
1671 BTRFS_I(inode)->outstanding_extents++;
1672 spin_unlock(&BTRFS_I(inode)->lock);
1673 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001674
Josef Bacik6a3891c2015-03-16 17:38:52 -04001675 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001676 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001677 return;
1678
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001679 __percpu_counter_add(&fs_info->delalloc_bytes, len,
1680 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001681 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001682 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001683 if (*bits & EXTENT_DEFRAG)
1684 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001685 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001686 &BTRFS_I(inode)->runtime_flags))
1687 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001688 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001689 }
Chris Mason291d6732008-01-29 15:55:23 -05001690}
1691
Chris Masond352ac62008-09-29 15:18:18 -04001692/*
1693 * extent_io.c clear_bit_hook, see set_bit_hook for why
1694 */
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001695static void btrfs_clear_bit_hook(struct btrfs_inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001696 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001697 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001698{
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001699 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001700 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001701 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001702
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001703 spin_lock(&inode->lock);
Wang Shilong47059d92014-07-03 18:22:07 +08001704 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001705 inode->defrag_bytes -= len;
1706 spin_unlock(&inode->lock);
Wang Shilong47059d92014-07-03 18:22:07 +08001707
Chris Mason75eff682008-12-15 15:54:40 -05001708 /*
1709 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001710 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001711 * bit, which is only set or cleared with irqs on
1712 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001713 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001714 struct btrfs_root *root = inode->root;
1715 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001716
Josef Bacik9e0baf62011-07-15 15:16:44 +00001717 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001718 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001719 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001720 spin_lock(&inode->lock);
1721 inode->outstanding_extents -= num_extents;
1722 spin_unlock(&inode->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001723 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001724
Josef Bacikb6d08f02013-09-27 14:57:43 -04001725 /*
1726 * We don't reserve metadata space for space cache inodes so we
1727 * don't need to call dellalloc_release_metadata if there is an
1728 * error.
1729 */
1730 if (*bits & EXTENT_DO_ACCOUNTING &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001731 root != fs_info->tree_root)
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001732 btrfs_delalloc_release_metadata(inode, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001733
Josef Bacik6a3891c2015-03-16 17:38:52 -04001734 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001735 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001736 return;
1737
Josef Bacik0cb59c92010-07-02 12:14:14 -04001738 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Wang Xiaoguang18513092016-07-25 15:51:40 +08001739 && do_list && !(state->state & EXTENT_NORESERVE)
1740 && (*bits & (EXTENT_DO_ACCOUNTING |
1741 EXTENT_CLEAR_DATA_RESV)))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001742 btrfs_free_reserved_data_space_noquota(
1743 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001744 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001745
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001746 __percpu_counter_add(&fs_info->delalloc_bytes, -len,
1747 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001748 spin_lock(&inode->lock);
1749 inode->delalloc_bytes -= len;
1750 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001751 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001752 &inode->runtime_flags))
1753 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001754 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001755 }
Chris Mason291d6732008-01-29 15:55:23 -05001756}
1757
Chris Masond352ac62008-09-29 15:18:18 -04001758/*
1759 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1760 * we don't create bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001761 *
1762 * return 1 if page cannot be merged to bio
1763 * return 0 if page can be merged to bio
1764 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001765 */
Mike Christie81a75f672016-06-05 14:31:54 -05001766int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001767 size_t size, struct bio *bio,
1768 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001769{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001770 struct inode *inode = page->mapping->host;
1771 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001772 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001773 u64 length = 0;
1774 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001775 int ret;
1776
Chris Mason771ed682008-11-06 22:02:51 -05001777 if (bio_flags & EXTENT_BIO_COMPRESSED)
1778 return 0;
1779
Kent Overstreet4f024f32013-10-11 15:44:27 -07001780 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001781 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001782 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1783 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001784 if (ret < 0)
1785 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001786 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001787 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001788 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001789}
1790
Chris Masond352ac62008-09-29 15:18:18 -04001791/*
1792 * in order to insert checksums into the metadata in large chunks,
1793 * we wait until bio submission time. All the pages in the bio are
1794 * checksummed and sums are attached onto the ordered extent record.
1795 *
1796 * At IO completion time the cums attached on the ordered extent record
1797 * are inserted into the btree
1798 */
Mike Christie81a75f672016-06-05 14:31:54 -05001799static int __btrfs_submit_bio_start(struct inode *inode, struct bio *bio,
1800 int mirror_num, unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -04001801 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001802{
Chris Mason065631f2008-02-20 12:07:25 -05001803 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001804
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001805 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001806 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001807 return 0;
1808}
Chris Masone0156402008-04-16 11:15:20 -04001809
Chris Mason4a69a412008-11-06 22:03:00 -05001810/*
1811 * in order to insert checksums into the metadata in large chunks,
1812 * we wait until bio submission time. All the pages in the bio are
1813 * checksummed and sums are attached onto the ordered extent record.
1814 *
1815 * At IO completion time the cums attached on the ordered extent record
1816 * are inserted into the btree
1817 */
Mike Christie81a75f672016-06-05 14:31:54 -05001818static int __btrfs_submit_bio_done(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001819 int mirror_num, unsigned long bio_flags,
1820 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001821{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001822 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Stefan Behrens61891922012-11-05 18:51:52 +01001823 int ret;
1824
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001825 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001826 if (ret) {
1827 bio->bi_error = ret;
1828 bio_endio(bio);
1829 }
Stefan Behrens61891922012-11-05 18:51:52 +01001830 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001831}
1832
Chris Masond352ac62008-09-29 15:18:18 -04001833/*
Chris Masoncad321a2008-12-17 14:51:42 -05001834 * extent_io.c submission hook. This does the right thing for csum calculation
1835 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001836 */
Mike Christie81a75f672016-06-05 14:31:54 -05001837static int btrfs_submit_bio_hook(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001838 int mirror_num, unsigned long bio_flags,
1839 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001840{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001841 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001842 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301843 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Chris Mason44b8bd72008-04-16 11:14:51 -04001844 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001845 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001846 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001847
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001848 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001849
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001850 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301851 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001852
Mike Christie37226b22016-06-05 14:31:52 -05001853 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001854 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001855 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001856 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001857
Chris Masond20f7042008-12-08 16:58:54 -05001858 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001859 ret = btrfs_submit_compressed_read(inode, bio,
1860 mirror_num,
1861 bio_flags);
1862 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001863 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001864 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001865 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001866 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001867 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001868 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001869 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001870 /* csum items have already been cloned */
1871 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1872 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001873 /* we're doing a write, do the async checksumming */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001874 ret = btrfs_wq_submit_bio(fs_info, inode, bio, mirror_num,
1875 bio_flags, bio_offset,
1876 __btrfs_submit_bio_start,
1877 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001878 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001879 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001880 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05001881 if (ret)
1882 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001883 }
1884
Chris Mason0b86a832008-03-24 15:01:56 -04001885mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001886 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01001887
1888out:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001889 if (ret < 0) {
1890 bio->bi_error = ret;
1891 bio_endio(bio);
1892 }
Stefan Behrens61891922012-11-05 18:51:52 +01001893 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001894}
Chris Mason6885f302008-02-20 16:11:05 -05001895
Chris Masond352ac62008-09-29 15:18:18 -04001896/*
1897 * given a list of ordered sums record them in the inode. This happens
1898 * at IO completion time based on sums calculated at bio submission time.
1899 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001900static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01001901 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001902{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001903 struct btrfs_ordered_sum *sum;
1904
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001905 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001906 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001907 btrfs_csum_file_blocks(trans,
1908 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001909 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001910 }
1911 return 0;
1912}
1913
Josef Bacik2ac55d42010-02-03 19:33:23 +00001914int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001915 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04001916{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001917 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001918 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
David Sterba7cd8c752016-04-26 23:54:39 +02001919 cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04001920}
1921
Chris Masond352ac62008-09-29 15:18:18 -04001922/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001923struct btrfs_writepage_fixup {
1924 struct page *page;
1925 struct btrfs_work work;
1926};
1927
Christoph Hellwigb2950862008-12-02 09:54:17 -05001928static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001929{
1930 struct btrfs_writepage_fixup *fixup;
1931 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001932 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001933 struct page *page;
1934 struct inode *inode;
1935 u64 page_start;
1936 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001937 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001938
1939 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1940 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001941again:
Chris Mason247e7432008-07-17 12:53:51 -04001942 lock_page(page);
1943 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1944 ClearPageChecked(page);
1945 goto out_page;
1946 }
1947
1948 inode = page->mapping->host;
1949 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001950 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04001951
David Sterbaff13db42015-12-03 14:30:40 +01001952 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001953 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001954
1955 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001956 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001957 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001958
Nikolay Borisova776c6f2017-02-20 13:50:49 +02001959 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001960 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04001961 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001962 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1963 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001964 unlock_page(page);
1965 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001966 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001967 goto again;
1968 }
Chris Mason247e7432008-07-17 12:53:51 -04001969
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001970 ret = btrfs_delalloc_reserve_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001971 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001972 if (ret) {
1973 mapping_set_error(page->mapping, ret);
1974 end_extent_writepage(page, ret, page_start, page_end);
1975 ClearPageChecked(page);
1976 goto out;
1977 }
1978
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001979 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state,
1980 0);
Chris Mason247e7432008-07-17 12:53:51 -04001981 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001982 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001983out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001984 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1985 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001986out_page:
1987 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001988 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001989 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001990}
1991
1992/*
1993 * There are a few paths in the higher layers of the kernel that directly
1994 * set the page dirty bit without asking the filesystem if it is a
1995 * good idea. This causes problems because we want to make sure COW
1996 * properly happens and the data=ordered rules are followed.
1997 *
Chris Masonc8b97812008-10-29 14:49:59 -04001998 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001999 * hasn't been properly setup for IO. We kick off an async process
2000 * to fix it up. The async helper will wait for ordered extents, set
2001 * the delalloc bit and make it safe to write the page.
2002 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002003static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002004{
2005 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002006 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002007 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002008
Chris Mason8b62b722009-09-02 16:53:46 -04002009 /* this page is properly in the ordered list */
2010 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002011 return 0;
2012
2013 if (PageChecked(page))
2014 return -EAGAIN;
2015
2016 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2017 if (!fixup)
2018 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002019
Chris Mason247e7432008-07-17 12:53:51 -04002020 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002021 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002022 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2023 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002024 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002025 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002026 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002027}
2028
Yan Zhengd899e052008-10-30 14:25:28 -04002029static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2030 struct inode *inode, u64 file_pos,
2031 u64 disk_bytenr, u64 disk_num_bytes,
2032 u64 num_bytes, u64 ram_bytes,
2033 u8 compression, u8 encryption,
2034 u16 other_encoding, int extent_type)
2035{
2036 struct btrfs_root *root = BTRFS_I(inode)->root;
2037 struct btrfs_file_extent_item *fi;
2038 struct btrfs_path *path;
2039 struct extent_buffer *leaf;
2040 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002041 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002042 int ret;
2043
2044 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002045 if (!path)
2046 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002047
Chris Masona1ed8352009-09-11 12:27:37 -04002048 /*
2049 * we may be replacing one extent in the tree with another.
2050 * The new extent is pinned in the extent map, and we don't want
2051 * to drop it from the cache until it is completely in the btree.
2052 *
2053 * So, tell btrfs_drop_extents to leave this extent in the cache.
2054 * the caller is expected to unpin it and allow it to be merged
2055 * with the others.
2056 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002057 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2058 file_pos + num_bytes, NULL, 0,
2059 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002060 if (ret)
2061 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002062
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002063 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002064 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002065 ins.offset = file_pos;
2066 ins.type = BTRFS_EXTENT_DATA_KEY;
2067
2068 path->leave_spinning = 1;
2069 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2070 sizeof(*fi));
2071 if (ret)
2072 goto out;
2073 }
Yan Zhengd899e052008-10-30 14:25:28 -04002074 leaf = path->nodes[0];
2075 fi = btrfs_item_ptr(leaf, path->slots[0],
2076 struct btrfs_file_extent_item);
2077 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2078 btrfs_set_file_extent_type(leaf, fi, extent_type);
2079 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2080 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2081 btrfs_set_file_extent_offset(leaf, fi, 0);
2082 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2083 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2084 btrfs_set_file_extent_compression(leaf, fi, compression);
2085 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2086 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002087
Yan Zhengd899e052008-10-30 14:25:28 -04002088 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002089 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002090
2091 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002092
2093 ins.objectid = disk_bytenr;
2094 ins.offset = disk_num_bytes;
2095 ins.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002096 ret = btrfs_alloc_reserved_file_extent(trans, root->root_key.objectid,
David Sterbaf85b7372017-01-20 14:54:07 +01002097 btrfs_ino(BTRFS_I(inode)), file_pos, ram_bytes, &ins);
Qu Wenruo297d7502015-09-08 17:08:37 +08002098 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002099 * Release the reserved range from inode dirty range map, as it is
2100 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002101 */
2102 btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002103out:
Yan Zhengd899e052008-10-30 14:25:28 -04002104 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002105
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002106 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002107}
2108
Liu Bo38c227d2013-01-29 03:18:40 +00002109/* snapshot-aware defrag */
2110struct sa_defrag_extent_backref {
2111 struct rb_node node;
2112 struct old_sa_defrag_extent *old;
2113 u64 root_id;
2114 u64 inum;
2115 u64 file_pos;
2116 u64 extent_offset;
2117 u64 num_bytes;
2118 u64 generation;
2119};
2120
2121struct old_sa_defrag_extent {
2122 struct list_head list;
2123 struct new_sa_defrag_extent *new;
2124
2125 u64 extent_offset;
2126 u64 bytenr;
2127 u64 offset;
2128 u64 len;
2129 int count;
2130};
2131
2132struct new_sa_defrag_extent {
2133 struct rb_root root;
2134 struct list_head head;
2135 struct btrfs_path *path;
2136 struct inode *inode;
2137 u64 file_pos;
2138 u64 len;
2139 u64 bytenr;
2140 u64 disk_len;
2141 u8 compress_type;
2142};
2143
2144static int backref_comp(struct sa_defrag_extent_backref *b1,
2145 struct sa_defrag_extent_backref *b2)
2146{
2147 if (b1->root_id < b2->root_id)
2148 return -1;
2149 else if (b1->root_id > b2->root_id)
2150 return 1;
2151
2152 if (b1->inum < b2->inum)
2153 return -1;
2154 else if (b1->inum > b2->inum)
2155 return 1;
2156
2157 if (b1->file_pos < b2->file_pos)
2158 return -1;
2159 else if (b1->file_pos > b2->file_pos)
2160 return 1;
2161
2162 /*
2163 * [------------------------------] ===> (a range of space)
2164 * |<--->| |<---->| =============> (fs/file tree A)
2165 * |<---------------------------->| ===> (fs/file tree B)
2166 *
2167 * A range of space can refer to two file extents in one tree while
2168 * refer to only one file extent in another tree.
2169 *
2170 * So we may process a disk offset more than one time(two extents in A)
2171 * and locate at the same extent(one extent in B), then insert two same
2172 * backrefs(both refer to the extent in B).
2173 */
2174 return 0;
2175}
2176
2177static void backref_insert(struct rb_root *root,
2178 struct sa_defrag_extent_backref *backref)
2179{
2180 struct rb_node **p = &root->rb_node;
2181 struct rb_node *parent = NULL;
2182 struct sa_defrag_extent_backref *entry;
2183 int ret;
2184
2185 while (*p) {
2186 parent = *p;
2187 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2188
2189 ret = backref_comp(backref, entry);
2190 if (ret < 0)
2191 p = &(*p)->rb_left;
2192 else
2193 p = &(*p)->rb_right;
2194 }
2195
2196 rb_link_node(&backref->node, parent, p);
2197 rb_insert_color(&backref->node, root);
2198}
2199
2200/*
2201 * Note the backref might has changed, and in this case we just return 0.
2202 */
2203static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2204 void *ctx)
2205{
2206 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002207 struct old_sa_defrag_extent *old = ctx;
2208 struct new_sa_defrag_extent *new = old->new;
2209 struct btrfs_path *path = new->path;
2210 struct btrfs_key key;
2211 struct btrfs_root *root;
2212 struct sa_defrag_extent_backref *backref;
2213 struct extent_buffer *leaf;
2214 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002215 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002216 int slot;
2217 int ret;
2218 u64 extent_offset;
2219 u64 num_bytes;
2220
2221 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002222 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002223 return 0;
2224
2225 key.objectid = root_id;
2226 key.type = BTRFS_ROOT_ITEM_KEY;
2227 key.offset = (u64)-1;
2228
Liu Bo38c227d2013-01-29 03:18:40 +00002229 root = btrfs_read_fs_root_no_name(fs_info, &key);
2230 if (IS_ERR(root)) {
2231 if (PTR_ERR(root) == -ENOENT)
2232 return 0;
2233 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002234 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002235 inum, offset, root_id);
2236 return PTR_ERR(root);
2237 }
2238
2239 key.objectid = inum;
2240 key.type = BTRFS_EXTENT_DATA_KEY;
2241 if (offset > (u64)-1 << 32)
2242 key.offset = 0;
2243 else
2244 key.offset = offset;
2245
2246 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302247 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002248 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002249 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002250
2251 while (1) {
2252 cond_resched();
2253
2254 leaf = path->nodes[0];
2255 slot = path->slots[0];
2256
2257 if (slot >= btrfs_header_nritems(leaf)) {
2258 ret = btrfs_next_leaf(root, path);
2259 if (ret < 0) {
2260 goto out;
2261 } else if (ret > 0) {
2262 ret = 0;
2263 goto out;
2264 }
2265 continue;
2266 }
2267
2268 path->slots[0]++;
2269
2270 btrfs_item_key_to_cpu(leaf, &key, slot);
2271
2272 if (key.objectid > inum)
2273 goto out;
2274
2275 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2276 continue;
2277
2278 extent = btrfs_item_ptr(leaf, slot,
2279 struct btrfs_file_extent_item);
2280
2281 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2282 continue;
2283
Liu Boe68afa42013-07-01 22:13:26 +08002284 /*
2285 * 'offset' refers to the exact key.offset,
2286 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2287 * (key.offset - extent_offset).
2288 */
2289 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002290 continue;
2291
Liu Boe68afa42013-07-01 22:13:26 +08002292 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002293 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002294
Liu Bo38c227d2013-01-29 03:18:40 +00002295 if (extent_offset >= old->extent_offset + old->offset +
2296 old->len || extent_offset + num_bytes <=
2297 old->extent_offset + old->offset)
2298 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002299 break;
2300 }
2301
2302 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2303 if (!backref) {
2304 ret = -ENOENT;
2305 goto out;
2306 }
2307
2308 backref->root_id = root_id;
2309 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002310 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002311 backref->num_bytes = num_bytes;
2312 backref->extent_offset = extent_offset;
2313 backref->generation = btrfs_file_extent_generation(leaf, extent);
2314 backref->old = old;
2315 backref_insert(&new->root, backref);
2316 old->count++;
2317out:
2318 btrfs_release_path(path);
2319 WARN_ON(ret);
2320 return ret;
2321}
2322
2323static noinline bool record_extent_backrefs(struct btrfs_path *path,
2324 struct new_sa_defrag_extent *new)
2325{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002326 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002327 struct old_sa_defrag_extent *old, *tmp;
2328 int ret;
2329
2330 new->path = path;
2331
2332 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002333 ret = iterate_inodes_from_logical(old->bytenr +
2334 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002335 path, record_one_backref,
2336 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002337 if (ret < 0 && ret != -ENOENT)
2338 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002339
2340 /* no backref to be processed for this extent */
2341 if (!old->count) {
2342 list_del(&old->list);
2343 kfree(old);
2344 }
2345 }
2346
2347 if (list_empty(&new->head))
2348 return false;
2349
2350 return true;
2351}
2352
2353static int relink_is_mergable(struct extent_buffer *leaf,
2354 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002355 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002356{
Liu Bo116e0022013-08-02 16:30:40 +08002357 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002358 return 0;
2359
2360 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2361 return 0;
2362
Liu Bo116e0022013-08-02 16:30:40 +08002363 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2364 return 0;
2365
2366 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002367 btrfs_file_extent_other_encoding(leaf, fi))
2368 return 0;
2369
2370 return 1;
2371}
2372
2373/*
2374 * Note the backref might has changed, and in this case we just return 0.
2375 */
2376static noinline int relink_extent_backref(struct btrfs_path *path,
2377 struct sa_defrag_extent_backref *prev,
2378 struct sa_defrag_extent_backref *backref)
2379{
2380 struct btrfs_file_extent_item *extent;
2381 struct btrfs_file_extent_item *item;
2382 struct btrfs_ordered_extent *ordered;
2383 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002384 struct btrfs_root *root;
2385 struct btrfs_key key;
2386 struct extent_buffer *leaf;
2387 struct old_sa_defrag_extent *old = backref->old;
2388 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002389 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002390 struct inode *inode;
2391 struct extent_state *cached = NULL;
2392 int ret = 0;
2393 u64 start;
2394 u64 len;
2395 u64 lock_start;
2396 u64 lock_end;
2397 bool merge = false;
2398 int index;
2399
2400 if (prev && prev->root_id == backref->root_id &&
2401 prev->inum == backref->inum &&
2402 prev->file_pos + prev->num_bytes == backref->file_pos)
2403 merge = true;
2404
2405 /* step 1: get root */
2406 key.objectid = backref->root_id;
2407 key.type = BTRFS_ROOT_ITEM_KEY;
2408 key.offset = (u64)-1;
2409
Liu Bo38c227d2013-01-29 03:18:40 +00002410 index = srcu_read_lock(&fs_info->subvol_srcu);
2411
2412 root = btrfs_read_fs_root_no_name(fs_info, &key);
2413 if (IS_ERR(root)) {
2414 srcu_read_unlock(&fs_info->subvol_srcu, index);
2415 if (PTR_ERR(root) == -ENOENT)
2416 return 0;
2417 return PTR_ERR(root);
2418 }
Liu Bo38c227d2013-01-29 03:18:40 +00002419
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002420 if (btrfs_root_readonly(root)) {
2421 srcu_read_unlock(&fs_info->subvol_srcu, index);
2422 return 0;
2423 }
2424
Liu Bo38c227d2013-01-29 03:18:40 +00002425 /* step 2: get inode */
2426 key.objectid = backref->inum;
2427 key.type = BTRFS_INODE_ITEM_KEY;
2428 key.offset = 0;
2429
2430 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2431 if (IS_ERR(inode)) {
2432 srcu_read_unlock(&fs_info->subvol_srcu, index);
2433 return 0;
2434 }
2435
2436 srcu_read_unlock(&fs_info->subvol_srcu, index);
2437
2438 /* step 3: relink backref */
2439 lock_start = backref->file_pos;
2440 lock_end = backref->file_pos + backref->num_bytes - 1;
2441 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002442 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002443
2444 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2445 if (ordered) {
2446 btrfs_put_ordered_extent(ordered);
2447 goto out_unlock;
2448 }
2449
2450 trans = btrfs_join_transaction(root);
2451 if (IS_ERR(trans)) {
2452 ret = PTR_ERR(trans);
2453 goto out_unlock;
2454 }
2455
2456 key.objectid = backref->inum;
2457 key.type = BTRFS_EXTENT_DATA_KEY;
2458 key.offset = backref->file_pos;
2459
2460 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2461 if (ret < 0) {
2462 goto out_free_path;
2463 } else if (ret > 0) {
2464 ret = 0;
2465 goto out_free_path;
2466 }
2467
2468 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2469 struct btrfs_file_extent_item);
2470
2471 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2472 backref->generation)
2473 goto out_free_path;
2474
2475 btrfs_release_path(path);
2476
2477 start = backref->file_pos;
2478 if (backref->extent_offset < old->extent_offset + old->offset)
2479 start += old->extent_offset + old->offset -
2480 backref->extent_offset;
2481
2482 len = min(backref->extent_offset + backref->num_bytes,
2483 old->extent_offset + old->offset + old->len);
2484 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2485
2486 ret = btrfs_drop_extents(trans, root, inode, start,
2487 start + len, 1);
2488 if (ret)
2489 goto out_free_path;
2490again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002491 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002492 key.type = BTRFS_EXTENT_DATA_KEY;
2493 key.offset = start;
2494
Liu Boa09a0a72013-03-11 09:20:58 +00002495 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002496 if (merge) {
2497 struct btrfs_file_extent_item *fi;
2498 u64 extent_len;
2499 struct btrfs_key found_key;
2500
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002501 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002502 if (ret < 0)
2503 goto out_free_path;
2504
2505 path->slots[0]--;
2506 leaf = path->nodes[0];
2507 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2508
2509 fi = btrfs_item_ptr(leaf, path->slots[0],
2510 struct btrfs_file_extent_item);
2511 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2512
Liu Bo116e0022013-08-02 16:30:40 +08002513 if (extent_len + found_key.offset == start &&
2514 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002515 btrfs_set_file_extent_num_bytes(leaf, fi,
2516 extent_len + len);
2517 btrfs_mark_buffer_dirty(leaf);
2518 inode_add_bytes(inode, len);
2519
2520 ret = 1;
2521 goto out_free_path;
2522 } else {
2523 merge = false;
2524 btrfs_release_path(path);
2525 goto again;
2526 }
2527 }
2528
2529 ret = btrfs_insert_empty_item(trans, root, path, &key,
2530 sizeof(*extent));
2531 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002532 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002533 goto out_free_path;
2534 }
2535
2536 leaf = path->nodes[0];
2537 item = btrfs_item_ptr(leaf, path->slots[0],
2538 struct btrfs_file_extent_item);
2539 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2540 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2541 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2542 btrfs_set_file_extent_num_bytes(leaf, item, len);
2543 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2544 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2545 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2546 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2547 btrfs_set_file_extent_encryption(leaf, item, 0);
2548 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2549
2550 btrfs_mark_buffer_dirty(leaf);
2551 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002552 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002553
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002554 ret = btrfs_inc_extent_ref(trans, fs_info, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002555 new->disk_len, 0,
2556 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002557 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002558 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002559 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002560 goto out_free_path;
2561 }
2562
2563 ret = 1;
2564out_free_path:
2565 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002566 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002567 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002568out_unlock:
2569 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2570 &cached, GFP_NOFS);
2571 iput(inode);
2572 return ret;
2573}
2574
Liu Bo6f519562013-10-29 10:45:05 +08002575static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2576{
2577 struct old_sa_defrag_extent *old, *tmp;
2578
2579 if (!new)
2580 return;
2581
2582 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002583 kfree(old);
2584 }
2585 kfree(new);
2586}
2587
Liu Bo38c227d2013-01-29 03:18:40 +00002588static void relink_file_extents(struct new_sa_defrag_extent *new)
2589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002590 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002591 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002592 struct sa_defrag_extent_backref *backref;
2593 struct sa_defrag_extent_backref *prev = NULL;
2594 struct inode *inode;
2595 struct btrfs_root *root;
2596 struct rb_node *node;
2597 int ret;
2598
2599 inode = new->inode;
2600 root = BTRFS_I(inode)->root;
2601
2602 path = btrfs_alloc_path();
2603 if (!path)
2604 return;
2605
2606 if (!record_extent_backrefs(path, new)) {
2607 btrfs_free_path(path);
2608 goto out;
2609 }
2610 btrfs_release_path(path);
2611
2612 while (1) {
2613 node = rb_first(&new->root);
2614 if (!node)
2615 break;
2616 rb_erase(node, &new->root);
2617
2618 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2619
2620 ret = relink_extent_backref(path, prev, backref);
2621 WARN_ON(ret < 0);
2622
2623 kfree(prev);
2624
2625 if (ret == 1)
2626 prev = backref;
2627 else
2628 prev = NULL;
2629 cond_resched();
2630 }
2631 kfree(prev);
2632
2633 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002634out:
Liu Bo6f519562013-10-29 10:45:05 +08002635 free_sa_defrag_extent(new);
2636
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002637 atomic_dec(&fs_info->defrag_running);
2638 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002639}
2640
2641static struct new_sa_defrag_extent *
2642record_old_file_extents(struct inode *inode,
2643 struct btrfs_ordered_extent *ordered)
2644{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002645 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002646 struct btrfs_root *root = BTRFS_I(inode)->root;
2647 struct btrfs_path *path;
2648 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002649 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002650 struct new_sa_defrag_extent *new;
2651 int ret;
2652
2653 new = kmalloc(sizeof(*new), GFP_NOFS);
2654 if (!new)
2655 return NULL;
2656
2657 new->inode = inode;
2658 new->file_pos = ordered->file_offset;
2659 new->len = ordered->len;
2660 new->bytenr = ordered->start;
2661 new->disk_len = ordered->disk_len;
2662 new->compress_type = ordered->compress_type;
2663 new->root = RB_ROOT;
2664 INIT_LIST_HEAD(&new->head);
2665
2666 path = btrfs_alloc_path();
2667 if (!path)
2668 goto out_kfree;
2669
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002670 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002671 key.type = BTRFS_EXTENT_DATA_KEY;
2672 key.offset = new->file_pos;
2673
2674 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2675 if (ret < 0)
2676 goto out_free_path;
2677 if (ret > 0 && path->slots[0] > 0)
2678 path->slots[0]--;
2679
2680 /* find out all the old extents for the file range */
2681 while (1) {
2682 struct btrfs_file_extent_item *extent;
2683 struct extent_buffer *l;
2684 int slot;
2685 u64 num_bytes;
2686 u64 offset;
2687 u64 end;
2688 u64 disk_bytenr;
2689 u64 extent_offset;
2690
2691 l = path->nodes[0];
2692 slot = path->slots[0];
2693
2694 if (slot >= btrfs_header_nritems(l)) {
2695 ret = btrfs_next_leaf(root, path);
2696 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002697 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002698 else if (ret > 0)
2699 break;
2700 continue;
2701 }
2702
2703 btrfs_item_key_to_cpu(l, &key, slot);
2704
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002705 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002706 break;
2707 if (key.type != BTRFS_EXTENT_DATA_KEY)
2708 break;
2709 if (key.offset >= new->file_pos + new->len)
2710 break;
2711
2712 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2713
2714 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2715 if (key.offset + num_bytes < new->file_pos)
2716 goto next;
2717
2718 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2719 if (!disk_bytenr)
2720 goto next;
2721
2722 extent_offset = btrfs_file_extent_offset(l, extent);
2723
2724 old = kmalloc(sizeof(*old), GFP_NOFS);
2725 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002726 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002727
2728 offset = max(new->file_pos, key.offset);
2729 end = min(new->file_pos + new->len, key.offset + num_bytes);
2730
2731 old->bytenr = disk_bytenr;
2732 old->extent_offset = extent_offset;
2733 old->offset = offset - key.offset;
2734 old->len = end - offset;
2735 old->new = new;
2736 old->count = 0;
2737 list_add_tail(&old->list, &new->head);
2738next:
2739 path->slots[0]++;
2740 cond_resched();
2741 }
2742
2743 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002744 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002745
2746 return new;
2747
Liu Bo38c227d2013-01-29 03:18:40 +00002748out_free_path:
2749 btrfs_free_path(path);
2750out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002751 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002752 return NULL;
2753}
2754
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002755static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002756 u64 start, u64 len)
2757{
2758 struct btrfs_block_group_cache *cache;
2759
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002760 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002761 ASSERT(cache);
2762
2763 spin_lock(&cache->lock);
2764 cache->delalloc_bytes -= len;
2765 spin_unlock(&cache->lock);
2766
2767 btrfs_put_block_group(cache);
2768}
2769
Chris Masond352ac62008-09-29 15:18:18 -04002770/* as ordered data IO finishes, this gets called so we can finish
2771 * an ordered extent if the range of bytes in the file it covers are
2772 * fully written.
2773 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002774static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002775{
Josef Bacik5fd02042012-05-02 14:00:54 -04002776 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002777 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002778 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002779 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002780 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002781 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002782 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002783 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002784 int ret = 0;
2785 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002786 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002787 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002788
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002789 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002790
Josef Bacik5fd02042012-05-02 14:00:54 -04002791 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2792 ret = -EIO;
2793 goto out;
2794 }
2795
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002796 btrfs_free_io_failure_record(BTRFS_I(inode),
2797 ordered_extent->file_offset,
2798 ordered_extent->file_offset +
2799 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002800
Josef Bacik77cef2e2013-08-29 13:57:21 -04002801 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2802 truncated = true;
2803 logical_len = ordered_extent->truncated_len;
2804 /* Truncated the entire extent, don't bother adding */
2805 if (!logical_len)
2806 goto out;
2807 }
2808
Yan, Zhengc2167752009-11-12 09:34:21 +00002809 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002810 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002811
2812 /*
2813 * For mwrite(mmap + memset to write) case, we still reserve
2814 * space for NOCOW range.
2815 * As NOCOW won't cause a new delayed ref, just free the space
2816 */
2817 btrfs_qgroup_free_data(inode, ordered_extent->file_offset,
2818 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002819 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2820 if (nolock)
2821 trans = btrfs_join_transaction_nolock(root);
2822 else
2823 trans = btrfs_join_transaction(root);
2824 if (IS_ERR(trans)) {
2825 ret = PTR_ERR(trans);
2826 trans = NULL;
2827 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002828 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002829 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002830 ret = btrfs_update_inode_fallback(trans, root, inode);
2831 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002832 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002833 goto out;
2834 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002835
Josef Bacik2ac55d42010-02-03 19:33:23 +00002836 lock_extent_bits(io_tree, ordered_extent->file_offset,
2837 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002838 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002839
Liu Bo38c227d2013-01-29 03:18:40 +00002840 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2841 ordered_extent->file_offset + ordered_extent->len - 1,
2842 EXTENT_DEFRAG, 1, cached_state);
2843 if (ret) {
2844 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002845 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002846 /* the inode is shared */
2847 new = record_old_file_extents(inode, ordered_extent);
2848
2849 clear_extent_bit(io_tree, ordered_extent->file_offset,
2850 ordered_extent->file_offset + ordered_extent->len - 1,
2851 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2852 }
2853
Josef Bacik0cb59c92010-07-02 12:14:14 -04002854 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002855 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002856 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002857 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002858 if (IS_ERR(trans)) {
2859 ret = PTR_ERR(trans);
2860 trans = NULL;
2861 goto out_unlock;
2862 }
Chris Masona79b7d42014-05-22 16:18:52 -07002863
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002864 trans->block_rsv = &fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002865
Chris Masonc8b97812008-10-29 14:49:59 -04002866 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002867 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002868 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002869 BUG_ON(compress_type);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02002870 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04002871 ordered_extent->file_offset,
2872 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002873 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002874 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002875 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002876 ret = insert_reserved_file_extent(trans, inode,
2877 ordered_extent->file_offset,
2878 ordered_extent->start,
2879 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002880 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002881 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002882 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002883 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002884 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002885 ordered_extent->start,
2886 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002887 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002888 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2889 ordered_extent->file_offset, ordered_extent->len,
2890 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002891 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002892 btrfs_abort_transaction(trans, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002893 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002894 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002895
David Sterbadf9f6282017-02-10 19:35:37 +01002896 add_pending_csums(trans, inode, &ordered_extent->list);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002897
Josef Bacik6c760c02012-11-09 10:53:21 -05002898 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2899 ret = btrfs_update_inode_fallback(trans, root, inode);
2900 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002901 btrfs_abort_transaction(trans, ret);
Josef Bacik6c760c02012-11-09 10:53:21 -05002902 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002903 }
2904 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002905out_unlock:
2906 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2907 ordered_extent->file_offset +
2908 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002909out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002910 if (root != fs_info->tree_root)
Nikolay Borisov691fa052017-02-20 13:50:42 +02002911 btrfs_delalloc_release_metadata(BTRFS_I(inode),
2912 ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002913 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002914 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002915
Josef Bacik77cef2e2013-08-29 13:57:21 -04002916 if (ret || truncated) {
2917 u64 start, end;
2918
2919 if (truncated)
2920 start = ordered_extent->file_offset + logical_len;
2921 else
2922 start = ordered_extent->file_offset;
2923 end = ordered_extent->file_offset + ordered_extent->len - 1;
2924 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
2925
2926 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02002927 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04002928
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002929 /*
2930 * If the ordered extent had an IOERR or something else went
2931 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04002932 * back to the allocator. We only free the extent in the
2933 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002934 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04002935 if ((ret || !logical_len) &&
2936 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002937 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002938 btrfs_free_reserved_extent(fs_info,
2939 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08002940 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002941 }
2942
2943
Josef Bacik5fd02042012-05-02 14:00:54 -04002944 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002945 * This needs to be done to make sure anybody waiting knows we are done
2946 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002947 */
2948 btrfs_remove_ordered_extent(inode, ordered_extent);
2949
Liu Bo38c227d2013-01-29 03:18:40 +00002950 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08002951 if (new) {
2952 if (ret) {
2953 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002954 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08002955 } else {
2956 relink_file_extents(new);
2957 }
2958 }
Liu Bo38c227d2013-01-29 03:18:40 +00002959
Chris Masone6dcd2d2008-07-17 12:53:50 -04002960 /* once for us */
2961 btrfs_put_ordered_extent(ordered_extent);
2962 /* once for the tree */
2963 btrfs_put_ordered_extent(ordered_extent);
2964
Josef Bacik5fd02042012-05-02 14:00:54 -04002965 return ret;
2966}
2967
2968static void finish_ordered_fn(struct btrfs_work *work)
2969{
2970 struct btrfs_ordered_extent *ordered_extent;
2971 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2972 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002973}
2974
Christoph Hellwigb2950862008-12-02 09:54:17 -05002975static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002976 struct extent_state *state, int uptodate)
2977{
Josef Bacik5fd02042012-05-02 14:00:54 -04002978 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002979 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04002980 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08002981 struct btrfs_workqueue *wq;
2982 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04002983
liubo1abe9b82011-03-24 11:18:59 +00002984 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2985
Chris Mason8b62b722009-09-02 16:53:46 -04002986 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002987 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2988 end - start + 1, uptodate))
2989 return 0;
2990
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002991 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002992 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08002993 func = btrfs_freespace_write_helper;
2994 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002995 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08002996 func = btrfs_endio_write_helper;
2997 }
Josef Bacik5fd02042012-05-02 14:00:54 -04002998
Liu Bo9e0af232014-08-15 23:36:53 +08002999 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3000 NULL);
3001 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04003002
3003 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04003004}
3005
Miao Xiedc380ae2014-09-12 18:43:55 +08003006static int __readpage_endio_check(struct inode *inode,
3007 struct btrfs_io_bio *io_bio,
3008 int icsum, struct page *page,
3009 int pgoff, u64 start, size_t len)
3010{
3011 char *kaddr;
3012 u32 csum_expected;
3013 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003014
3015 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3016
3017 kaddr = kmap_atomic(page);
3018 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003019 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003020 if (csum != csum_expected)
3021 goto zeroit;
3022
3023 kunmap_atomic(kaddr);
3024 return 0;
3025zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003026 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003027 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003028 memset(kaddr + pgoff, 1, len);
3029 flush_dcache_page(page);
3030 kunmap_atomic(kaddr);
3031 if (csum_expected == 0)
3032 return 0;
3033 return -EIO;
3034}
3035
Chris Masond352ac62008-09-29 15:18:18 -04003036/*
Chris Masond352ac62008-09-29 15:18:18 -04003037 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003038 * if there's a match, we allow the bio to finish. If not, the code in
3039 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003040 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003041static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3042 u64 phy_offset, struct page *page,
3043 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003044{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003045 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003046 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003047 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003048 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003049
Chris Masond20f7042008-12-08 16:58:54 -05003050 if (PageChecked(page)) {
3051 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003052 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003053 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003054
3055 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003056 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003057
Yan Zheng17d217f2008-12-12 10:03:38 -05003058 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003059 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003060 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003061 return 0;
3062 }
3063
Miao Xiefacc8a222013-07-25 19:22:34 +08003064 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003065 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3066 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003067}
Chris Masonb888db22007-08-27 16:49:44 -04003068
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003069void btrfs_add_delayed_iput(struct inode *inode)
3070{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003071 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003072 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003073
3074 if (atomic_add_unless(&inode->i_count, -1, 1))
3075 return;
3076
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003077 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003078 if (binode->delayed_iput_count == 0) {
3079 ASSERT(list_empty(&binode->delayed_iput));
3080 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
3081 } else {
3082 binode->delayed_iput_count++;
3083 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003084 spin_unlock(&fs_info->delayed_iput_lock);
3085}
3086
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003087void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003088{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003089
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003090 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003091 while (!list_empty(&fs_info->delayed_iputs)) {
3092 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003093
David Sterba8089fe62015-11-19 14:15:51 +01003094 inode = list_first_entry(&fs_info->delayed_iputs,
3095 struct btrfs_inode, delayed_iput);
3096 if (inode->delayed_iput_count) {
3097 inode->delayed_iput_count--;
3098 list_move_tail(&inode->delayed_iput,
3099 &fs_info->delayed_iputs);
3100 } else {
3101 list_del_init(&inode->delayed_iput);
3102 }
3103 spin_unlock(&fs_info->delayed_iput_lock);
3104 iput(&inode->vfs_inode);
3105 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003106 }
David Sterba8089fe62015-11-19 14:15:51 +01003107 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003108}
3109
Yan, Zhengd68fc572010-05-16 10:49:58 -04003110/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003111 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003112 * files in the subvolume, it removes orphan item and frees block_rsv
3113 * structure.
3114 */
3115void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3116 struct btrfs_root *root)
3117{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003118 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik90290e12011-12-02 15:44:12 -05003119 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003120 int ret;
3121
Josef Bacik8a35d952012-05-23 14:26:42 -04003122 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003123 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3124 return;
3125
Josef Bacik90290e12011-12-02 15:44:12 -05003126 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003127 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003128 spin_unlock(&root->orphan_lock);
3129 return;
3130 }
3131
3132 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3133 spin_unlock(&root->orphan_lock);
3134 return;
3135 }
3136
3137 block_rsv = root->orphan_block_rsv;
3138 root->orphan_block_rsv = NULL;
3139 spin_unlock(&root->orphan_lock);
3140
Miao Xie27cdeb72014-04-02 19:51:05 +08003141 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003142 btrfs_root_refs(&root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003143 ret = btrfs_del_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003144 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003145 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003146 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003147 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003148 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3149 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003150 }
3151
Josef Bacik90290e12011-12-02 15:44:12 -05003152 if (block_rsv) {
3153 WARN_ON(block_rsv->size > 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003154 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003155 }
3156}
3157
3158/*
Josef Bacik7b128762008-07-24 12:17:14 -04003159 * This creates an orphan entry for the given inode in case something goes
3160 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003161 *
3162 * NOTE: caller of this function should reserve 5 units of metadata for
3163 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003164 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003165int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3166 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003167{
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003168 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
3169 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003170 struct btrfs_block_rsv *block_rsv = NULL;
3171 int reserve = 0;
3172 int insert = 0;
3173 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003174
Yan, Zhengd68fc572010-05-16 10:49:58 -04003175 if (!root->orphan_block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003176 block_rsv = btrfs_alloc_block_rsv(fs_info,
3177 BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003178 if (!block_rsv)
3179 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003180 }
3181
Yan, Zhengd68fc572010-05-16 10:49:58 -04003182 spin_lock(&root->orphan_lock);
3183 if (!root->orphan_block_rsv) {
3184 root->orphan_block_rsv = block_rsv;
3185 } else if (block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003186 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003187 block_rsv = NULL;
3188 }
Josef Bacik7b128762008-07-24 12:17:14 -04003189
Josef Bacik8a35d952012-05-23 14:26:42 -04003190 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003191 &inode->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003192#if 0
3193 /*
3194 * For proper ENOSPC handling, we should do orphan
3195 * cleanup when mounting. But this introduces backward
3196 * compatibility issue.
3197 */
3198 if (!xchg(&root->orphan_item_inserted, 1))
3199 insert = 2;
3200 else
3201 insert = 1;
3202#endif
3203 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003204 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003205 }
Josef Bacik7b128762008-07-24 12:17:14 -04003206
Josef Bacik72ac3c02012-05-23 14:13:11 -04003207 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003208 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003209 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003210 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003211
Yan, Zhengd68fc572010-05-16 10:49:58 -04003212 /* grab metadata reservation from transaction handle */
3213 if (reserve) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003214 ret = btrfs_orphan_reserve_metadata(trans, inode);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003215 ASSERT(!ret);
3216 if (ret) {
3217 atomic_dec(&root->orphan_inodes);
3218 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003219 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003220 if (insert)
3221 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003222 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003223 return ret;
3224 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003225 }
3226
3227 /* insert an orphan item to track this unlinked/truncated file */
3228 if (insert >= 1) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003229 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003230 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003231 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003232 if (reserve) {
3233 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003234 &inode->runtime_flags);
3235 btrfs_orphan_release_metadata(inode);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003236 }
3237 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003238 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003239 &inode->runtime_flags);
Jeff Mahoney66642832016-06-10 18:19:25 -04003240 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003241 return ret;
3242 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003243 }
3244 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003245 }
3246
3247 /* insert an orphan item to track subvolume contains orphan files */
3248 if (insert >= 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003249 ret = btrfs_insert_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003250 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003251 if (ret && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003252 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003253 return ret;
3254 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003255 }
3256 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003257}
3258
3259/*
3260 * We have done the truncate/delete so we can go ahead and remove the orphan
3261 * item for this particular inode.
3262 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003263static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003264 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003265{
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003266 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003267 int delete_item = 0;
3268 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003269 int ret = 0;
3270
Yan, Zhengd68fc572010-05-16 10:49:58 -04003271 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003272 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003273 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003274 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003275
Josef Bacik72ac3c02012-05-23 14:13:11 -04003276 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003277 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003278 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003279 spin_unlock(&root->orphan_lock);
3280
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003281 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003282 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003283 if (trans)
3284 ret = btrfs_del_orphan_item(trans, root,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003285 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04003286 }
Josef Bacik7b128762008-07-24 12:17:14 -04003287
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003288 if (release_rsv)
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003289 btrfs_orphan_release_metadata(inode);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003290
Josef Bacik4ef31a42013-08-13 14:10:08 -04003291 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003292}
3293
3294/*
3295 * this cleans up any orphans that may be left on the list from the last use
3296 * of this root.
3297 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003298int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003299{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003300 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003301 struct btrfs_path *path;
3302 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003303 struct btrfs_key key, found_key;
3304 struct btrfs_trans_handle *trans;
3305 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003306 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003307 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3308
Yan, Zhengd68fc572010-05-16 10:49:58 -04003309 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003310 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003311
3312 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003313 if (!path) {
3314 ret = -ENOMEM;
3315 goto out;
3316 }
David Sterbae4058b52015-11-27 16:31:35 +01003317 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003318
3319 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003320 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003321 key.offset = (u64)-1;
3322
Josef Bacik7b128762008-07-24 12:17:14 -04003323 while (1) {
3324 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003325 if (ret < 0)
3326 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003327
3328 /*
3329 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003330 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003331 * find the key and see if we have stuff that matches
3332 */
3333 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003334 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003335 if (path->slots[0] == 0)
3336 break;
3337 path->slots[0]--;
3338 }
3339
3340 /* pull out the item */
3341 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003342 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3343
3344 /* make sure the item matches what we want */
3345 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3346 break;
David Sterba962a2982014-06-04 18:41:45 +02003347 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003348 break;
3349
3350 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003351 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003352
3353 /*
3354 * this is where we are basically btrfs_lookup, without the
3355 * crossing root thing. we store the inode number in the
3356 * offset of the orphan item.
3357 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003358
3359 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003360 btrfs_err(fs_info,
3361 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003362 ret = -EINVAL;
3363 goto out;
3364 }
3365
3366 last_objectid = found_key.offset;
3367
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368 found_key.objectid = found_key.offset;
3369 found_key.type = BTRFS_INODE_ITEM_KEY;
3370 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003371 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303372 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003373 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003374 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003375
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003376 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003377 struct btrfs_root *dead_root;
3378 struct btrfs_fs_info *fs_info = root->fs_info;
3379 int is_dead_root = 0;
3380
3381 /*
3382 * this is an orphan in the tree root. Currently these
3383 * could come from 2 sources:
3384 * a) a snapshot deletion in progress
3385 * b) a free space cache inode
3386 * We need to distinguish those two, as the snapshot
3387 * orphan must not get deleted.
3388 * find_dead_roots already ran before us, so if this
3389 * is a snapshot deletion, we should find the root
3390 * in the dead_roots list
3391 */
3392 spin_lock(&fs_info->trans_lock);
3393 list_for_each_entry(dead_root, &fs_info->dead_roots,
3394 root_list) {
3395 if (dead_root->root_key.objectid ==
3396 found_key.objectid) {
3397 is_dead_root = 1;
3398 break;
3399 }
3400 }
3401 spin_unlock(&fs_info->trans_lock);
3402 if (is_dead_root) {
3403 /* prevent this orphan from being found again */
3404 key.offset = found_key.objectid - 1;
3405 continue;
3406 }
3407 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003408 /*
3409 * Inode is already gone but the orphan item is still there,
3410 * kill the orphan item.
3411 */
Filipe Manana67710892016-06-06 11:51:25 +01003412 if (ret == -ENOENT) {
Josef Bacika8c9e572011-09-21 16:55:59 -04003413 trans = btrfs_start_transaction(root, 1);
3414 if (IS_ERR(trans)) {
3415 ret = PTR_ERR(trans);
3416 goto out;
3417 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003418 btrfs_debug(fs_info, "auto deleting %Lu",
3419 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003420 ret = btrfs_del_orphan_item(trans, root,
3421 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003422 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003423 if (ret)
3424 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003425 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003426 }
Josef Bacik7b128762008-07-24 12:17:14 -04003427
Josef Bacik7b128762008-07-24 12:17:14 -04003428 /*
3429 * add this inode to the orphan list so btrfs_orphan_del does
3430 * the proper thing when we hit it
3431 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003432 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3433 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003434 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003435
Josef Bacik7b128762008-07-24 12:17:14 -04003436 /* if we have links, this was a truncate, lets do that */
3437 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303438 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003439 iput(inode);
3440 continue;
3441 }
Josef Bacik7b128762008-07-24 12:17:14 -04003442 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003443
3444 /* 1 for the orphan item deletion. */
3445 trans = btrfs_start_transaction(root, 1);
3446 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003447 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003448 ret = PTR_ERR(trans);
3449 goto out;
3450 }
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003451 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003452 btrfs_end_transaction(trans);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003453 if (ret) {
3454 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003455 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003456 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003457
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003458 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003459 if (ret)
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003460 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003461 } else {
3462 nr_unlink++;
3463 }
3464
3465 /* this will do delete_inode and everything for us */
3466 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003467 if (ret)
3468 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003469 }
Miao Xie3254c872011-11-10 20:45:05 -05003470 /* release the path since we're done with it */
3471 btrfs_release_path(path);
3472
Yan, Zhengd68fc572010-05-16 10:49:58 -04003473 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3474
3475 if (root->orphan_block_rsv)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003476 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003477 (u64)-1);
3478
Miao Xie27cdeb72014-04-02 19:51:05 +08003479 if (root->orphan_block_rsv ||
3480 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003481 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003482 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003483 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003484 }
Josef Bacik7b128762008-07-24 12:17:14 -04003485
3486 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003487 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003488 if (nr_truncate)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003489 btrfs_debug(fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003490
3491out:
3492 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003493 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003494 btrfs_free_path(path);
3495 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003496}
3497
Chris Masond352ac62008-09-29 15:18:18 -04003498/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003499 * very simple check to peek ahead in the leaf looking for xattrs. If we
3500 * don't find any xattrs, we know there can't be any acls.
3501 *
3502 * slot is the slot the inode is in, objectid is the objectid of the inode
3503 */
3504static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003505 int slot, u64 objectid,
3506 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003507{
3508 u32 nritems = btrfs_header_nritems(leaf);
3509 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003510 static u64 xattr_access = 0;
3511 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003512 int scanned = 0;
3513
Josef Bacikf23b5a52013-06-19 10:16:26 -04003514 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003515 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3516 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3517 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3518 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003519 }
3520
Chris Mason46a53cc2009-04-27 11:47:50 -04003521 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003522 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003523 while (slot < nritems) {
3524 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3525
3526 /* we found a different objectid, there must not be acls */
3527 if (found_key.objectid != objectid)
3528 return 0;
3529
3530 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003531 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003532 if (*first_xattr_slot == -1)
3533 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003534 if (found_key.offset == xattr_access ||
3535 found_key.offset == xattr_default)
3536 return 1;
3537 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003538
3539 /*
3540 * we found a key greater than an xattr key, there can't
3541 * be any acls later on
3542 */
3543 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3544 return 0;
3545
3546 slot++;
3547 scanned++;
3548
3549 /*
3550 * it goes inode, inode backrefs, xattrs, extents,
3551 * so if there are a ton of hard links to an inode there can
3552 * be a lot of backrefs. Don't waste time searching too hard,
3553 * this is just an optimization
3554 */
3555 if (scanned >= 8)
3556 break;
3557 }
3558 /* we hit the end of the leaf before we found an xattr or
3559 * something larger than an xattr. We have to assume the inode
3560 * has acls
3561 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003562 if (*first_xattr_slot == -1)
3563 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003564 return 1;
3565}
3566
3567/*
Chris Masond352ac62008-09-29 15:18:18 -04003568 * read an inode from the btree into the in-memory inode
3569 */
Filipe Manana67710892016-06-06 11:51:25 +01003570static int btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003571{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003572 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04003573 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003574 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003575 struct btrfs_inode_item *inode_item;
3576 struct btrfs_root *root = BTRFS_I(inode)->root;
3577 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003578 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003579 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003580 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003581 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003582 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003583 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003584
3585 ret = btrfs_fill_inode(inode, &rdev);
3586 if (!ret)
3587 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003588
3589 path = btrfs_alloc_path();
Filipe Manana67710892016-06-06 11:51:25 +01003590 if (!path) {
3591 ret = -ENOMEM;
Mark Fasheh1748f842011-07-12 11:25:31 -07003592 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003593 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003594
Chris Mason39279cc2007-06-12 06:35:45 -04003595 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003596
Chris Mason39279cc2007-06-12 06:35:45 -04003597 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003598 if (ret) {
3599 if (ret > 0)
3600 ret = -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003601 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003602 }
Chris Mason39279cc2007-06-12 06:35:45 -04003603
Chris Mason5f39d392007-10-15 16:14:19 -04003604 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003605
3606 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003607 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003608
Chris Mason5f39d392007-10-15 16:14:19 -04003609 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3610 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003611 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003612 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003613 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3614 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003615 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003616
David Sterbaa937b972014-12-12 17:39:12 +01003617 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3618 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003619
David Sterbaa937b972014-12-12 17:39:12 +01003620 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3621 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003622
David Sterbaa937b972014-12-12 17:39:12 +01003623 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3624 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003625
chandan r9cc97d62012-07-04 12:48:07 +05303626 BTRFS_I(inode)->i_otime.tv_sec =
3627 btrfs_timespec_sec(leaf, &inode_item->otime);
3628 BTRFS_I(inode)->i_otime.tv_nsec =
3629 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003630
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003631 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003632 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003633 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3634
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003635 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003636 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003637 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003638 rdev = btrfs_inode_rdev(leaf, inode_item);
3639
Josef Bacikaec74772008-07-24 12:12:38 -04003640 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003641 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003642
3643cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003644 /*
3645 * If we were modified in the current generation and evicted from memory
3646 * and then re-read we need to do a full sync since we don't have any
3647 * idea about which extents were modified before we were evicted from
3648 * cache.
3649 *
3650 * This is required for both inode re-read from disk and delayed inode
3651 * in delayed_nodes_tree.
3652 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003653 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003654 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3655 &BTRFS_I(inode)->runtime_flags);
3656
Filipe Mananabde6c242015-07-24 00:00:19 +01003657 /*
3658 * We don't persist the id of the transaction where an unlink operation
3659 * against the inode was last made. So here we assume the inode might
3660 * have been evicted, and therefore the exact value of last_unlink_trans
3661 * lost, and set it to last_trans to avoid metadata inconsistencies
3662 * between the inode and its parent if the inode is fsync'ed and the log
3663 * replayed. For example, in the scenario:
3664 *
3665 * touch mydir/foo
3666 * ln mydir/foo mydir/bar
3667 * sync
3668 * unlink mydir/bar
3669 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3670 * xfs_io -c fsync mydir/foo
3671 * <power failure>
3672 * mount fs, triggers fsync log replay
3673 *
3674 * We must make sure that when we fsync our inode foo we also log its
3675 * parent inode, otherwise after log replay the parent still has the
3676 * dentry with the "bar" name but our inode foo has a link count of 1
3677 * and doesn't have an inode ref with the name "bar" anymore.
3678 *
3679 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003680 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003681 * transaction commits on fsync if our inode is a directory, or if our
3682 * inode is not a directory, logging its parent unnecessarily.
3683 */
3684 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3685
Miao Xie67de1172013-12-26 13:07:06 +08003686 path->slots[0]++;
3687 if (inode->i_nlink != 1 ||
3688 path->slots[0] >= btrfs_header_nritems(leaf))
3689 goto cache_acl;
3690
3691 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003692 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003693 goto cache_acl;
3694
3695 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3696 if (location.type == BTRFS_INODE_REF_KEY) {
3697 struct btrfs_inode_ref *ref;
3698
3699 ref = (struct btrfs_inode_ref *)ptr;
3700 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3701 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3702 struct btrfs_inode_extref *extref;
3703
3704 extref = (struct btrfs_inode_extref *)ptr;
3705 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3706 extref);
3707 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003708cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003709 /*
3710 * try to precache a NULL acl entry for files that don't have
3711 * any xattrs or acls
3712 */
Li Zefan33345d012011-04-20 10:31:50 +08003713 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003714 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003715 if (first_xattr_slot != -1) {
3716 path->slots[0] = first_xattr_slot;
3717 ret = btrfs_load_inode_props(inode, path);
3718 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003719 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003720 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003721 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003722 root->root_key.objectid, ret);
3723 }
3724 btrfs_free_path(path);
3725
Al Viro72c04902009-06-24 16:58:48 -04003726 if (!maybe_acls)
3727 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003728
Chris Mason39279cc2007-06-12 06:35:45 -04003729 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003730 case S_IFREG:
3731 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003732 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003733 inode->i_fop = &btrfs_file_operations;
3734 inode->i_op = &btrfs_file_inode_operations;
3735 break;
3736 case S_IFDIR:
3737 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003738 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003739 break;
3740 case S_IFLNK:
3741 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003742 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003743 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3744 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003745 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003746 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003747 init_special_inode(inode, inode->i_mode, rdev);
3748 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003749 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003750
3751 btrfs_update_iflags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003752 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003753
3754make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003755 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003756 make_bad_inode(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003757 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003758}
3759
Chris Masond352ac62008-09-29 15:18:18 -04003760/*
3761 * given a leaf and an inode, copy the inode fields into the leaf
3762 */
Chris Masone02119d2008-09-05 16:13:11 -04003763static void fill_inode_item(struct btrfs_trans_handle *trans,
3764 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003765 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003766 struct inode *inode)
3767{
Liu Bo51fab692012-12-27 09:01:21 +00003768 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003769
Liu Bo51fab692012-12-27 09:01:21 +00003770 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003771
Liu Bo51fab692012-12-27 09:01:21 +00003772 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3773 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3774 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3775 &token);
3776 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3777 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003778
David Sterbaa937b972014-12-12 17:39:12 +01003779 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003780 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003781 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003782 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003783
David Sterbaa937b972014-12-12 17:39:12 +01003784 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003785 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003786 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003787 inode->i_mtime.tv_nsec, &token);
3788
David Sterbaa937b972014-12-12 17:39:12 +01003789 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003790 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003791 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003792 inode->i_ctime.tv_nsec, &token);
3793
chandan r9cc97d62012-07-04 12:48:07 +05303794 btrfs_set_token_timespec_sec(leaf, &item->otime,
3795 BTRFS_I(inode)->i_otime.tv_sec, &token);
3796 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3797 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3798
Liu Bo51fab692012-12-27 09:01:21 +00003799 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3800 &token);
3801 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3802 &token);
3803 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3804 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3805 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3806 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3807 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003808}
3809
Chris Masond352ac62008-09-29 15:18:18 -04003810/*
3811 * copy everything in the in-memory inode into the btree.
3812 */
Chris Mason21151332011-11-10 20:39:08 -05003813static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003814 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003815{
3816 struct btrfs_inode_item *inode_item;
3817 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003818 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003819 int ret;
3820
3821 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003822 if (!path)
3823 return -ENOMEM;
3824
Chris Masonb9473432009-03-13 11:00:37 -04003825 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003826 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3827 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003828 if (ret) {
3829 if (ret > 0)
3830 ret = -ENOENT;
3831 goto failed;
3832 }
3833
Chris Mason5f39d392007-10-15 16:14:19 -04003834 leaf = path->nodes[0];
3835 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003836 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003837
Chris Masone02119d2008-09-05 16:13:11 -04003838 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003839 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003840 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003841 ret = 0;
3842failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003843 btrfs_free_path(path);
3844 return ret;
3845}
3846
Chris Masond352ac62008-09-29 15:18:18 -04003847/*
Chris Mason21151332011-11-10 20:39:08 -05003848 * copy everything in the in-memory inode into the btree.
3849 */
3850noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3851 struct btrfs_root *root, struct inode *inode)
3852{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003853 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003854 int ret;
3855
3856 /*
3857 * If the inode is a free space inode, we can deadlock during commit
3858 * if we put it into the delayed code.
3859 *
3860 * The data relocation inode should also be directly updated
3861 * without delay
3862 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003863 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003864 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003865 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003866 btrfs_update_root_times(trans, root);
3867
Chris Mason21151332011-11-10 20:39:08 -05003868 ret = btrfs_delayed_update_inode(trans, root, inode);
3869 if (!ret)
3870 btrfs_set_inode_last_trans(trans, inode);
3871 return ret;
3872 }
3873
3874 return btrfs_update_inode_item(trans, root, inode);
3875}
3876
Josef Bacikbe6aef62012-10-22 15:43:12 -04003877noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3878 struct btrfs_root *root,
3879 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003880{
3881 int ret;
3882
3883 ret = btrfs_update_inode(trans, root, inode);
3884 if (ret == -ENOSPC)
3885 return btrfs_update_inode_item(trans, root, inode);
3886 return ret;
3887}
3888
3889/*
Chris Masond352ac62008-09-29 15:18:18 -04003890 * unlink helper that gets used here in inode.c and in the tree logging
3891 * recovery code. It remove a link in a directory with a given name, and
3892 * also drops the back refs in the inode to the directory
3893 */
Al Viro92986792011-03-04 17:14:37 +00003894static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3895 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003896 struct btrfs_inode *dir,
3897 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003898 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003899{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003900 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003902 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003903 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003904 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003905 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003906 u64 index;
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003907 u64 ino = btrfs_ino(inode);
3908 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003909
3910 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003911 if (!path) {
3912 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003913 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003914 }
3915
Chris Masonb9473432009-03-13 11:00:37 -04003916 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003917 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003918 name, name_len, -1);
3919 if (IS_ERR(di)) {
3920 ret = PTR_ERR(di);
3921 goto err;
3922 }
3923 if (!di) {
3924 ret = -ENOENT;
3925 goto err;
3926 }
Chris Mason5f39d392007-10-15 16:14:19 -04003927 leaf = path->nodes[0];
3928 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003929 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003930 if (ret)
3931 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003932 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003933
Miao Xie67de1172013-12-26 13:07:06 +08003934 /*
3935 * If we don't have dir index, we have to get it by looking up
3936 * the inode ref, since we get the inode ref, remove it directly,
3937 * it is unnecessary to do delayed deletion.
3938 *
3939 * But if we have dir index, needn't search inode ref to get it.
3940 * Since the inode ref is close to the inode item, it is better
3941 * that we delay to delete it, and just do this deletion when
3942 * we update the inode item.
3943 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003944 if (inode->dir_index) {
3945 ret = btrfs_delayed_delete_inode_ref(inode);
Miao Xie67de1172013-12-26 13:07:06 +08003946 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003947 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08003948 goto skip_backref;
3949 }
3950 }
3951
Li Zefan33345d012011-04-20 10:31:50 +08003952 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3953 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003954 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003955 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003956 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003957 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04003958 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003959 goto err;
3960 }
Miao Xie67de1172013-12-26 13:07:06 +08003961skip_backref:
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003962 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003963 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003964 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003965 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003966 }
Chris Mason39279cc2007-06-12 06:35:45 -04003967
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003968 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
3969 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003970 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003971 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003972 goto err;
3973 }
Chris Masone02119d2008-09-05 16:13:11 -04003974
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003975 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
3976 index);
Chris Mason6418c962010-10-30 07:34:24 -04003977 if (ret == -ENOENT)
3978 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003979 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003980 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003981err:
3982 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003983 if (ret)
3984 goto out;
3985
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003986 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003987 inode_inc_iversion(&inode->vfs_inode);
3988 inode_inc_iversion(&dir->vfs_inode);
3989 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
3990 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
3991 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04003992out:
Chris Mason39279cc2007-06-12 06:35:45 -04003993 return ret;
3994}
3995
Al Viro92986792011-03-04 17:14:37 +00003996int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3997 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003998 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003999 const char *name, int name_len)
4000{
4001 int ret;
4002 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4003 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004004 drop_nlink(&inode->vfs_inode);
4005 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00004006 }
4007 return ret;
4008}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004009
4010/*
4011 * helper to start transaction for unlink and rmdir.
4012 *
Josef Bacikd52be812013-05-29 14:54:47 -04004013 * unlink and rmdir are special in btrfs, they do not always free space, so
4014 * if we cannot make our reservations the normal way try and see if there is
4015 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4016 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004017 */
Josef Bacikd52be812013-05-29 14:54:47 -04004018static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004019{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004020 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004021
Josef Bacike70bea52011-10-11 14:18:24 -04004022 /*
4023 * 1 for the possible orphan item
4024 * 1 for the dir item
4025 * 1 for the dir index
4026 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004027 * 1 for the inode
4028 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004029 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004030}
4031
Chris Mason39279cc2007-06-12 06:35:45 -04004032static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4033{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004034 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004035 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004036 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004037 int ret;
4038
Josef Bacikd52be812013-05-29 14:54:47 -04004039 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004040 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004041 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004042
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004043 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4044 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004045
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004046 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4047 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4048 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004049 if (ret)
4050 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004051
Yan, Zhenga22285a2010-05-16 10:48:46 -04004052 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004053 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004054 if (ret)
4055 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004056 }
Josef Bacik7b128762008-07-24 12:17:14 -04004057
Tsutomu Itohb5324022011-07-19 07:27:20 +00004058out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004059 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004060 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004061 return ret;
4062}
4063
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004064int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4065 struct btrfs_root *root,
4066 struct inode *dir, u64 objectid,
4067 const char *name, int name_len)
4068{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004069 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004070 struct btrfs_path *path;
4071 struct extent_buffer *leaf;
4072 struct btrfs_dir_item *di;
4073 struct btrfs_key key;
4074 u64 index;
4075 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004076 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004077
4078 path = btrfs_alloc_path();
4079 if (!path)
4080 return -ENOMEM;
4081
Li Zefan33345d012011-04-20 10:31:50 +08004082 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004083 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004084 if (IS_ERR_OR_NULL(di)) {
4085 if (!di)
4086 ret = -ENOENT;
4087 else
4088 ret = PTR_ERR(di);
4089 goto out;
4090 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004091
4092 leaf = path->nodes[0];
4093 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4094 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4095 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004096 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004097 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004098 goto out;
4099 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004100 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004101
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004102 ret = btrfs_del_root_ref(trans, fs_info, objectid,
4103 root->root_key.objectid, dir_ino,
4104 &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004105 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004106 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004107 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004108 goto out;
4109 }
Li Zefan33345d012011-04-20 10:31:50 +08004110 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004111 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004112 if (IS_ERR_OR_NULL(di)) {
4113 if (!di)
4114 ret = -ENOENT;
4115 else
4116 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004117 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004118 goto out;
4119 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004120
4121 leaf = path->nodes[0];
4122 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004123 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004124 index = key.offset;
4125 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004126 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004127
Nikolay Borisove67bbbb2017-01-10 20:35:36 +02004128 ret = btrfs_delete_delayed_dir_index(trans, fs_info, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004129 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004130 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004131 goto out;
4132 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004133
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004134 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004135 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004136 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004137 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004138 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004139 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004140out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004141 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004142 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004143}
4144
Chris Mason39279cc2007-06-12 06:35:45 -04004145static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4146{
David Howells2b0143b2015-03-17 22:25:59 +00004147 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004148 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004149 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004150 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004151 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004152
David Sterbab3ae2442012-09-13 16:04:34 -06004153 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004154 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004155 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
David Sterbab3ae2442012-09-13 16:04:34 -06004156 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004157
Josef Bacikd52be812013-05-29 14:54:47 -04004158 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004159 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004160 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004161
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004162 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004163 err = btrfs_unlink_subvol(trans, root, dir,
4164 BTRFS_I(inode)->location.objectid,
4165 dentry->d_name.name,
4166 dentry->d_name.len);
4167 goto out;
4168 }
4169
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004170 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004171 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004172 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004173
Filipe Manana44f714d2016-06-06 16:11:13 +01004174 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4175
Chris Mason39279cc2007-06-12 06:35:45 -04004176 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004177 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4178 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4179 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004180 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004181 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004182 /*
4183 * Propagate the last_unlink_trans value of the deleted dir to
4184 * its parent directory. This is to prevent an unrecoverable
4185 * log tree in the case we do something like this:
4186 * 1) create dir foo
4187 * 2) create snapshot under dir foo
4188 * 3) delete the snapshot
4189 * 4) rmdir foo
4190 * 5) mkdir foo
4191 * 6) fsync foo or some file inside foo
4192 */
4193 if (last_unlink_trans >= trans->transid)
4194 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4195 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004196out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004197 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004198 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004199
Chris Mason39279cc2007-06-12 06:35:45 -04004200 return err;
4201}
4202
Chris Mason28f75a02015-02-04 06:59:29 -08004203static int truncate_space_check(struct btrfs_trans_handle *trans,
4204 struct btrfs_root *root,
4205 u64 bytes_deleted)
4206{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004207 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004208 int ret;
4209
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004210 /*
4211 * This is only used to apply pressure to the enospc system, we don't
4212 * intend to use this reservation at all.
4213 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004214 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004215 bytes_deleted *= fs_info->nodesize;
4216 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004217 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004218 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004219 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004220 trans->transid,
4221 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004222 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004223 }
Chris Mason28f75a02015-02-04 06:59:29 -08004224 return ret;
4225
4226}
4227
Filipe Manana0305cd52015-10-16 12:34:25 +01004228static int truncate_inline_extent(struct inode *inode,
4229 struct btrfs_path *path,
4230 struct btrfs_key *found_key,
4231 const u64 item_end,
4232 const u64 new_size)
4233{
4234 struct extent_buffer *leaf = path->nodes[0];
4235 int slot = path->slots[0];
4236 struct btrfs_file_extent_item *fi;
4237 u32 size = (u32)(new_size - found_key->offset);
4238 struct btrfs_root *root = BTRFS_I(inode)->root;
4239
4240 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4241
4242 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4243 loff_t offset = new_size;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004244 loff_t page_end = ALIGN(offset, PAGE_SIZE);
Filipe Manana0305cd52015-10-16 12:34:25 +01004245
4246 /*
4247 * Zero out the remaining of the last page of our inline extent,
4248 * instead of directly truncating our inline extent here - that
4249 * would be much more complex (decompressing all the data, then
4250 * compressing the truncated data, which might be bigger than
4251 * the size of the inline extent, resize the extent, etc).
4252 * We release the path because to get the page we might need to
4253 * read the extent item from disk (data not in the page cache).
4254 */
4255 btrfs_release_path(path);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304256 return btrfs_truncate_block(inode, offset, page_end - offset,
4257 0);
Filipe Manana0305cd52015-10-16 12:34:25 +01004258 }
4259
4260 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4261 size = btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004262 btrfs_truncate_item(root->fs_info, path, size, 1);
Filipe Manana0305cd52015-10-16 12:34:25 +01004263
4264 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4265 inode_sub_bytes(inode, item_end + 1 - new_size);
4266
4267 return 0;
4268}
4269
Chris Mason323ac952008-10-01 19:05:46 -04004270/*
Chris Mason39279cc2007-06-12 06:35:45 -04004271 * this can truncate away extent items, csum items and directory items.
4272 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004273 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004274 *
4275 * csum items that cross the new i_size are truncated to the new size
4276 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004277 *
4278 * min_type is the minimum key type to truncate down to. If set to 0, this
4279 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004280 */
Yan, Zheng80825102009-11-12 09:35:36 +00004281int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4282 struct btrfs_root *root,
4283 struct inode *inode,
4284 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004285{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004286 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004287 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004288 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004289 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004290 struct btrfs_key key;
4291 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004292 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004293 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004294 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004295 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004296 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004297 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004298 int found_extent;
4299 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004300 int pending_del_nr = 0;
4301 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004302 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004303 int ret;
4304 int err = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004305 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004306 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004307 bool be_nice = 0;
4308 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004309 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004310
4311 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004312
Chris Mason28ed1342014-12-17 09:41:04 -08004313 /*
4314 * for non-free space inodes and ref cows, we want to back off from
4315 * time to time
4316 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004317 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004318 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4319 be_nice = 1;
4320
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004321 path = btrfs_alloc_path();
4322 if (!path)
4323 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004324 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004325
Josef Bacik5dc562c2012-08-17 13:14:17 -04004326 /*
4327 * We want to drop from the next block forward in case this new size is
4328 * not block aligned since we will be keeping the last block of the
4329 * extent just the way it is.
4330 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004331 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004332 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004333 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004334 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004335 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004336
Miao Xie16cdcec2011-04-22 18:12:22 +08004337 /*
4338 * This function is also used to drop the items in the log tree before
4339 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4340 * it is used to drop the loged items. So we shouldn't kill the delayed
4341 * items.
4342 */
4343 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004344 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004345
Li Zefan33345d012011-04-20 10:31:50 +08004346 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004347 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004348 key.type = (u8)-1;
4349
Chris Mason85e21ba2008-01-29 15:11:36 -05004350search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004351 /*
4352 * with a 16K leaf size and 128MB extents, you can actually queue
4353 * up a huge file in a single leaf. Most of the time that
4354 * bytes_deleted is > 0, it will be huge by the time we get here
4355 */
Byongho Leeee221842015-12-15 01:42:10 +09004356 if (be_nice && bytes_deleted > SZ_32M) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004357 if (btrfs_should_end_transaction(trans)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004358 err = -EAGAIN;
4359 goto error;
4360 }
4361 }
4362
4363
Chris Masonb9473432009-03-13 11:00:37 -04004364 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004365 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004366 if (ret < 0) {
4367 err = ret;
4368 goto out;
4369 }
Chris Masond3977122009-01-05 21:25:51 -05004370
Chris Mason85e21ba2008-01-29 15:11:36 -05004371 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004372 /* there are no items in the tree for us to truncate, we're
4373 * done
4374 */
Yan, Zheng80825102009-11-12 09:35:36 +00004375 if (path->slots[0] == 0)
4376 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004377 path->slots[0]--;
4378 }
4379
Chris Masond3977122009-01-05 21:25:51 -05004380 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004381 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004382 leaf = path->nodes[0];
4383 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004384 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004385
Li Zefan33345d012011-04-20 10:31:50 +08004386 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004387 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004388
Chris Mason85e21ba2008-01-29 15:11:36 -05004389 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004390 break;
4391
Chris Mason5f39d392007-10-15 16:14:19 -04004392 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004393 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004394 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004395 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004396 extent_type = btrfs_file_extent_type(leaf, fi);
4397 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004398 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004399 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004400 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004401 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004402 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004403 }
Yan008630c2007-11-07 13:31:09 -05004404 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004405 }
Yan, Zheng80825102009-11-12 09:35:36 +00004406 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004407 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004408 } else {
Liu Bo91298ee2016-12-01 13:43:31 -08004409 if (item_end < new_size) {
4410 /*
4411 * With NO_HOLES mode, for the following mapping
4412 *
4413 * [0-4k][hole][8k-12k]
4414 *
4415 * if truncating isize down to 6k, it ends up
4416 * isize being 8k.
4417 */
4418 if (btrfs_fs_incompat(root->fs_info, NO_HOLES))
4419 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004420 break;
Liu Bo91298ee2016-12-01 13:43:31 -08004421 }
Yan, Zheng80825102009-11-12 09:35:36 +00004422 if (found_key.offset >= new_size)
4423 del_item = 1;
4424 else
4425 del_item = 0;
4426 }
Chris Mason39279cc2007-06-12 06:35:45 -04004427 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004428 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004429 if (found_type != BTRFS_EXTENT_DATA_KEY)
4430 goto delete;
4431
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004432 if (del_item)
4433 last_size = found_key.offset;
4434 else
4435 last_size = new_size;
4436
Chris Mason179e29e2007-11-01 11:28:41 -04004437 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004438 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004439 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004440 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004441 u64 orig_num_bytes =
4442 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004443 extent_num_bytes = ALIGN(new_size -
4444 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004445 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004446 btrfs_set_file_extent_num_bytes(leaf, fi,
4447 extent_num_bytes);
4448 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004449 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004450 if (test_bit(BTRFS_ROOT_REF_COWS,
4451 &root->state) &&
4452 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004453 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004454 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004455 } else {
Chris Masondb945352007-10-15 16:15:53 -04004456 extent_num_bytes =
4457 btrfs_file_extent_disk_num_bytes(leaf,
4458 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004459 extent_offset = found_key.offset -
4460 btrfs_file_extent_offset(leaf, fi);
4461
Chris Mason39279cc2007-06-12 06:35:45 -04004462 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004463 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004464 if (extent_start != 0) {
4465 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004466 if (test_bit(BTRFS_ROOT_REF_COWS,
4467 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004468 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004469 }
4470 }
Chris Mason90692182008-02-08 13:49:28 -05004471 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004472 /*
4473 * we can't truncate inline items that have had
4474 * special encodings
4475 */
4476 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004477 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4478 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004479
4480 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004481 * Need to release path in order to truncate a
4482 * compressed extent. So delete any accumulated
4483 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004484 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004485 if (btrfs_file_extent_compression(leaf, fi) !=
4486 BTRFS_COMPRESS_NONE && pending_del_nr) {
4487 err = btrfs_del_items(trans, root, path,
4488 pending_del_slot,
4489 pending_del_nr);
4490 if (err) {
4491 btrfs_abort_transaction(trans,
Filipe Manana0305cd52015-10-16 12:34:25 +01004492 err);
4493 goto error;
4494 }
4495 pending_del_nr = 0;
4496 }
4497
4498 err = truncate_inline_extent(inode, path,
4499 &found_key,
4500 item_end,
4501 new_size);
4502 if (err) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004503 btrfs_abort_transaction(trans, err);
Filipe Manana0305cd52015-10-16 12:34:25 +01004504 goto error;
4505 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004506 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4507 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004508 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004509 }
Chris Mason39279cc2007-06-12 06:35:45 -04004510 }
Chris Mason179e29e2007-11-01 11:28:41 -04004511delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004512 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004513 if (!pending_del_nr) {
4514 /* no pending yet, add ourselves */
4515 pending_del_slot = path->slots[0];
4516 pending_del_nr = 1;
4517 } else if (pending_del_nr &&
4518 path->slots[0] + 1 == pending_del_slot) {
4519 /* hop on the pending chunk */
4520 pending_del_nr++;
4521 pending_del_slot = path->slots[0];
4522 } else {
Chris Masond3977122009-01-05 21:25:51 -05004523 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004524 }
Chris Mason39279cc2007-06-12 06:35:45 -04004525 } else {
4526 break;
4527 }
Chris Mason28f75a02015-02-04 06:59:29 -08004528 should_throttle = 0;
4529
Miao Xie27cdeb72014-04-02 19:51:05 +08004530 if (found_extent &&
4531 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004532 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004533 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004534 bytes_deleted += extent_num_bytes;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004535 ret = btrfs_free_extent(trans, fs_info, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004536 extent_num_bytes, 0,
4537 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004538 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004539 BUG_ON(ret);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004540 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4541 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004542 trans->delayed_ref_updates * 2,
4543 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004544 if (be_nice) {
4545 if (truncate_space_check(trans, root,
4546 extent_num_bytes)) {
4547 should_end = 1;
4548 }
4549 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004550 fs_info))
Chris Mason28f75a02015-02-04 06:59:29 -08004551 should_throttle = 1;
Chris Mason28f75a02015-02-04 06:59:29 -08004552 }
Chris Mason39279cc2007-06-12 06:35:45 -04004553 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004554
Yan, Zheng80825102009-11-12 09:35:36 +00004555 if (found_type == BTRFS_INODE_ITEM_KEY)
4556 break;
4557
4558 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004559 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004560 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004561 if (pending_del_nr) {
4562 ret = btrfs_del_items(trans, root, path,
4563 pending_del_slot,
4564 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004565 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004566 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004567 goto error;
4568 }
Yan, Zheng80825102009-11-12 09:35:36 +00004569 pending_del_nr = 0;
4570 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004571 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004572 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004573 unsigned long updates = trans->delayed_ref_updates;
4574 if (updates) {
4575 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004576 ret = btrfs_run_delayed_refs(trans,
4577 fs_info,
4578 updates * 2);
Josef Bacik12621332015-02-03 07:50:16 -08004579 if (ret && !err)
4580 err = ret;
4581 }
4582 }
Chris Mason28f75a02015-02-04 06:59:29 -08004583 /*
4584 * if we failed to refill our space rsv, bail out
4585 * and let the transaction restart
4586 */
4587 if (should_end) {
4588 err = -EAGAIN;
4589 goto error;
4590 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004591 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004592 } else {
4593 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004594 }
Chris Mason39279cc2007-06-12 06:35:45 -04004595 }
Yan, Zheng80825102009-11-12 09:35:36 +00004596out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004597 if (pending_del_nr) {
4598 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4599 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004600 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004601 btrfs_abort_transaction(trans, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004602 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004603error:
Filipe Mananac1aa4572015-06-20 18:20:09 +01004604 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004605 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason28ed1342014-12-17 09:41:04 -08004606
Chris Mason39279cc2007-06-12 06:35:45 -04004607 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004608
Liu Bo19fd2df2016-12-01 13:01:02 -08004609 if (err == 0) {
4610 /* only inline file may have last_size != new_size */
4611 if (new_size >= fs_info->sectorsize ||
4612 new_size > fs_info->max_inline)
4613 ASSERT(last_size == new_size);
4614 }
4615
Byongho Leeee221842015-12-15 01:42:10 +09004616 if (be_nice && bytes_deleted > SZ_32M) {
Chris Mason28ed1342014-12-17 09:41:04 -08004617 unsigned long updates = trans->delayed_ref_updates;
4618 if (updates) {
4619 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004620 ret = btrfs_run_delayed_refs(trans, fs_info,
4621 updates * 2);
Chris Mason28ed1342014-12-17 09:41:04 -08004622 if (ret && !err)
4623 err = ret;
4624 }
4625 }
Yan, Zheng80825102009-11-12 09:35:36 +00004626 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004627}
4628
Chris Masona52d9a82007-08-27 16:49:44 -04004629/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304630 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004631 * @inode - inode that we're zeroing
4632 * @from - the offset to start zeroing
4633 * @len - the length to zero, 0 to zero the entire range respective to the
4634 * offset
4635 * @front - zero up to the offset instead of from the offset on
4636 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304637 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004638 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004639 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304640int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004641 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004642{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004643 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004644 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004645 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4646 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004647 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004648 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004649 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004650 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304651 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004652 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004653 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004654 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304655 u64 block_start;
4656 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004657
Josef Bacik2aaa6652012-08-29 14:27:18 -04004658 if ((offset & (blocksize - 1)) == 0 &&
4659 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004660 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304661
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004662 ret = btrfs_delalloc_reserve_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304663 round_down(from, blocksize), blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004664 if (ret)
4665 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004666
Chris Mason211c17f2008-05-15 09:13:45 -04004667again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004668 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004669 if (!page) {
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004670 btrfs_delalloc_release_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304671 round_down(from, blocksize),
4672 blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004673 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004674 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004675 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004676
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304677 block_start = round_down(from, blocksize);
4678 block_end = block_start + blocksize - 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004679
Chris Masona52d9a82007-08-27 16:49:44 -04004680 if (!PageUptodate(page)) {
4681 ret = btrfs_readpage(NULL, page);
4682 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004683 if (page->mapping != mapping) {
4684 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004685 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004686 goto again;
4687 }
Chris Masona52d9a82007-08-27 16:49:44 -04004688 if (!PageUptodate(page)) {
4689 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004690 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004691 }
4692 }
Chris Mason211c17f2008-05-15 09:13:45 -04004693 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004694
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304695 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004696 set_page_extent_mapped(page);
4697
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304698 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004699 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304700 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004701 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004702 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004703 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004704 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004705 btrfs_put_ordered_extent(ordered);
4706 goto again;
4707 }
4708
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304709 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004710 EXTENT_DIRTY | EXTENT_DELALLOC |
4711 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004712 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004713
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304714 ret = btrfs_set_extent_delalloc(inode, block_start, block_end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004715 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004716 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304717 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004718 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004719 goto out_unlock;
4720 }
4721
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304722 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004723 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304724 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004725 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004726 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304727 memset(kaddr + (block_start - page_offset(page)),
4728 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004729 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304730 memset(kaddr + (block_start - page_offset(page)) + offset,
4731 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004732 flush_dcache_page(page);
4733 kunmap(page);
4734 }
Chris Mason247e7432008-07-17 12:53:51 -04004735 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004736 set_page_dirty(page);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304737 unlock_extent_cached(io_tree, block_start, block_end, &cached_state,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004738 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004739
Chris Mason89642222008-07-24 09:41:53 -04004740out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004741 if (ret)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304742 btrfs_delalloc_release_space(inode, block_start,
4743 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004744 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004745 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004746out:
4747 return ret;
4748}
4749
Josef Bacik16e75492013-10-22 12:18:51 -04004750static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4751 u64 offset, u64 len)
4752{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004753 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004754 struct btrfs_trans_handle *trans;
4755 int ret;
4756
4757 /*
4758 * Still need to make sure the inode looks like it's been updated so
4759 * that any holes get logged if we fsync.
4760 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004761 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4762 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004763 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4764 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4765 return 0;
4766 }
4767
4768 /*
4769 * 1 - for the one we're dropping
4770 * 1 - for the one we're adding
4771 * 1 - for updating the inode.
4772 */
4773 trans = btrfs_start_transaction(root, 3);
4774 if (IS_ERR(trans))
4775 return PTR_ERR(trans);
4776
4777 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4778 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004779 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004780 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004781 return ret;
4782 }
4783
David Sterbaf85b7372017-01-20 14:54:07 +01004784 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4785 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004786 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004787 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004788 else
4789 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004790 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004791 return ret;
4792}
4793
Josef Bacik695a0d02011-03-04 15:46:53 -05004794/*
4795 * This function puts in dummy file extents for the area we're creating a hole
4796 * for. So if we are truncating this file to a larger size we need to insert
4797 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4798 * the range between oldsize and size
4799 */
Josef Bacika41ad392011-01-31 15:30:16 -05004800int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004801{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004802 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004803 struct btrfs_root *root = BTRFS_I(inode)->root;
4804 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004805 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004806 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004807 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004808 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4809 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004810 u64 last_byte;
4811 u64 cur_offset;
4812 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004813 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004814
Josef Bacika71754f2013-06-17 17:14:39 -04004815 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304816 * If our size started in the middle of a block we need to zero out the
4817 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004818 * expose stale data.
4819 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304820 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004821 if (err)
4822 return err;
4823
Yan Zheng9036c102008-10-30 14:19:41 -04004824 if (size <= hole_start)
4825 return 0;
4826
Yan Zheng9036c102008-10-30 14:19:41 -04004827 while (1) {
4828 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004829
David Sterbaff13db42015-12-03 14:30:40 +01004830 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004831 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02004832 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08004833 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004834 if (!ordered)
4835 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004836 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4837 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004838 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004839 btrfs_put_ordered_extent(ordered);
4840 }
4841
Yan Zheng9036c102008-10-30 14:19:41 -04004842 cur_offset = hole_start;
4843 while (1) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02004844 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04004845 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004846 if (IS_ERR(em)) {
4847 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004848 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004849 break;
4850 }
Yan Zheng9036c102008-10-30 14:19:41 -04004851 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004852 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004853 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004854 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004855 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004856
Josef Bacik16e75492013-10-22 12:18:51 -04004857 err = maybe_insert_hole(root, inode, cur_offset,
4858 hole_size);
4859 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004860 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004861 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04004862 cur_offset + hole_size - 1, 0);
4863 hole_em = alloc_extent_map();
4864 if (!hole_em) {
4865 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4866 &BTRFS_I(inode)->runtime_flags);
4867 goto next;
4868 }
4869 hole_em->start = cur_offset;
4870 hole_em->len = hole_size;
4871 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004872
Josef Bacik5dc562c2012-08-17 13:14:17 -04004873 hole_em->block_start = EXTENT_MAP_HOLE;
4874 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004875 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004876 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004877 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004878 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004879 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004880
4881 while (1) {
4882 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004883 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004884 write_unlock(&em_tree->lock);
4885 if (err != -EEXIST)
4886 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004887 btrfs_drop_extent_cache(BTRFS_I(inode),
4888 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04004889 cur_offset +
4890 hole_size - 1, 0);
4891 }
4892 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004893 }
Josef Bacik16e75492013-10-22 12:18:51 -04004894next:
Yan Zheng9036c102008-10-30 14:19:41 -04004895 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004896 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004897 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004898 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004899 break;
4900 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004901 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004902 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4903 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004904 return err;
4905}
4906
Eric Sandeen3972f262013-01-12 02:57:22 +00004907static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004908{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004909 struct btrfs_root *root = BTRFS_I(inode)->root;
4910 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004911 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004912 loff_t newsize = attr->ia_size;
4913 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004914 int ret;
4915
Eric Sandeen3972f262013-01-12 02:57:22 +00004916 /*
4917 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4918 * special case where we need to update the times despite not having
4919 * these flags set. For all other operations the VFS set these flags
4920 * explicitly if it wants a timestamp update.
4921 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004922 if (newsize != oldsize) {
4923 inode_inc_iversion(inode);
4924 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4925 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004926 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004927 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004928
Josef Bacika41ad392011-01-31 15:30:16 -05004929 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004930 /*
4931 * Don't do an expanding truncate while snapshoting is ongoing.
4932 * This is to ensure the snapshot captures a fully consistent
4933 * state of this file - if the snapshot captures this expanding
4934 * truncation, it must capture all writes that happened before
4935 * this truncation.
4936 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08004937 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05004938 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004939 if (ret) {
4940 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00004941 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004942 }
Yan, Zheng80825102009-11-12 09:35:36 +00004943
Miao Xief4a2f4c2011-12-14 20:12:01 -05004944 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004945 if (IS_ERR(trans)) {
4946 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004947 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004948 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05004949
4950 i_size_write(inode, newsize);
4951 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05304952 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004953 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00004954 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004955 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05004956 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004957
Josef Bacika41ad392011-01-31 15:30:16 -05004958 /*
4959 * We're truncating a file that used to have good data down to
4960 * zero. Make sure it gets into the ordered flush list so that
4961 * any new writes get down to disk quickly.
4962 */
4963 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004964 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4965 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004966
Josef Bacikf3fe8202013-01-07 17:03:21 -05004967 /*
4968 * 1 for the orphan item we're going to add
4969 * 1 for the orphan item deletion.
4970 */
4971 trans = btrfs_start_transaction(root, 2);
4972 if (IS_ERR(trans))
4973 return PTR_ERR(trans);
4974
4975 /*
4976 * We need to do this in case we fail at _any_ point during the
4977 * actual truncate. Once we do the truncate_setsize we could
4978 * invalidate pages which forces any outstanding ordered io to
4979 * be instantly completed which will give us extents that need
4980 * to be truncated. If we fail to get an orphan inode down we
4981 * could have left over extents that were never meant to live,
Nicholas D Steeves01327612016-05-19 21:18:45 -04004982 * so we need to guarantee from this point on that everything
Josef Bacikf3fe8202013-01-07 17:03:21 -05004983 * will be consistent.
4984 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004985 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004986 btrfs_end_transaction(trans);
Josef Bacikf3fe8202013-01-07 17:03:21 -05004987 if (ret)
4988 return ret;
4989
Josef Bacika41ad392011-01-31 15:30:16 -05004990 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4991 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004992
4993 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02004994 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00004995 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02004996 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00004997
Josef Bacika41ad392011-01-31 15:30:16 -05004998 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004999 if (ret && inode->i_nlink) {
5000 int err;
5001
Liu Bo19fd2df2016-12-01 13:01:02 -08005002 /* To get a stable disk_i_size */
5003 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
5004 if (err) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005005 btrfs_orphan_del(NULL, BTRFS_I(inode));
Liu Bo19fd2df2016-12-01 13:01:02 -08005006 return err;
5007 }
5008
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005009 /*
5010 * failed to truncate, disk_i_size is only adjusted down
5011 * as we remove extents, so it should represent the true
5012 * size of the inode, so reset the in memory size and
5013 * delete our orphan entry.
5014 */
5015 trans = btrfs_join_transaction(root);
5016 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005017 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005018 return ret;
5019 }
5020 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005021 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005022 if (err)
Jeff Mahoney66642832016-06-10 18:19:25 -04005023 btrfs_abort_transaction(trans, err);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005024 btrfs_end_transaction(trans);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005025 }
Yan, Zheng80825102009-11-12 09:35:36 +00005026 }
5027
Josef Bacika41ad392011-01-31 15:30:16 -05005028 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005029}
5030
Chris Mason39279cc2007-06-12 06:35:45 -04005031static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5032{
David Howells2b0143b2015-03-17 22:25:59 +00005033 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005034 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005035 int err;
5036
Li Zefanb83cc962010-12-20 16:04:08 +08005037 if (btrfs_root_readonly(root))
5038 return -EROFS;
5039
Jan Kara31051c82016-05-26 16:55:18 +02005040 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005041 if (err)
5042 return err;
5043
Chris Mason5a3f23d2009-03-31 13:27:11 -04005044 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005045 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005046 if (err)
5047 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005048 }
Yan Zheng9036c102008-10-30 14:19:41 -04005049
Christoph Hellwig10257742010-06-04 11:30:02 +02005050 if (attr->ia_valid) {
5051 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005052 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005053 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005054
Josef Bacik22c44fe2011-11-30 10:45:38 -05005055 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005056 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005057 }
5058
Chris Mason39279cc2007-06-12 06:35:45 -04005059 return err;
5060}
Chris Mason61295eb2008-01-14 16:24:38 -05005061
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005062/*
5063 * While truncating the inode pages during eviction, we get the VFS calling
5064 * btrfs_invalidatepage() against each page of the inode. This is slow because
5065 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5066 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5067 * extent_state structures over and over, wasting lots of time.
5068 *
5069 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5070 * those expensive operations on a per page basis and do only the ordered io
5071 * finishing, while we release here the extent_map and extent_state structures,
5072 * without the excessive merging and splitting.
5073 */
5074static void evict_inode_truncate_pages(struct inode *inode)
5075{
5076 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5077 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5078 struct rb_node *node;
5079
5080 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005081 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005082
5083 write_lock(&map_tree->lock);
5084 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5085 struct extent_map *em;
5086
5087 node = rb_first(&map_tree->map);
5088 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005089 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5090 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005091 remove_extent_mapping(map_tree, em);
5092 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005093 if (need_resched()) {
5094 write_unlock(&map_tree->lock);
5095 cond_resched();
5096 write_lock(&map_tree->lock);
5097 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005098 }
5099 write_unlock(&map_tree->lock);
5100
Filipe Manana6ca07092015-05-26 00:55:42 +01005101 /*
5102 * Keep looping until we have no more ranges in the io tree.
5103 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005104 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5105 * still in progress (unlocked the pages in the bio but did not yet
5106 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005107 * ranges can still be locked and eviction started because before
5108 * submitting those bios, which are executed by a separate task (work
5109 * queue kthread), inode references (inode->i_count) were not taken
5110 * (which would be dropped in the end io callback of each bio).
5111 * Therefore here we effectively end up waiting for those bios and
5112 * anyone else holding locked ranges without having bumped the inode's
5113 * reference count - if we don't do it, when they access the inode's
5114 * io_tree to unlock a range it may be too late, leading to an
5115 * use-after-free issue.
5116 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005117 spin_lock(&io_tree->lock);
5118 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5119 struct extent_state *state;
5120 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005121 u64 start;
5122 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005123
5124 node = rb_first(&io_tree->state);
5125 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005126 start = state->start;
5127 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005128 spin_unlock(&io_tree->lock);
5129
David Sterbaff13db42015-12-03 14:30:40 +01005130 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005131
5132 /*
5133 * If still has DELALLOC flag, the extent didn't reach disk,
5134 * and its reserved space won't be freed by delayed_ref.
5135 * So we need to free its reserved space here.
5136 * (Refer to comment in btrfs_invalidatepage, case 2)
5137 *
5138 * Note, end is the bytenr of last byte, so we need + 1 here.
5139 */
5140 if (state->state & EXTENT_DELALLOC)
5141 btrfs_qgroup_free_data(inode, start, end - start + 1);
5142
Filipe Manana6ca07092015-05-26 00:55:42 +01005143 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005144 EXTENT_LOCKED | EXTENT_DIRTY |
5145 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5146 EXTENT_DEFRAG, 1, 1,
5147 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005148
Filipe Manana7064dd52014-08-08 02:47:05 +01005149 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005150 spin_lock(&io_tree->lock);
5151 }
5152 spin_unlock(&io_tree->lock);
5153}
5154
Al Virobd555972010-06-07 11:35:40 -04005155void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005156{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005157 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005158 struct btrfs_trans_handle *trans;
5159 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005160 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005161 int steal_from_global = 0;
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005162 u64 min_size;
Chris Mason39279cc2007-06-12 06:35:45 -04005163 int ret;
5164
liubo1abe9b82011-03-24 11:18:59 +00005165 trace_btrfs_inode_evict(inode);
5166
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005167 if (!root) {
5168 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5169 return;
5170 }
5171
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005173
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005174 evict_inode_truncate_pages(inode);
5175
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005176 if (inode->i_nlink &&
5177 ((btrfs_root_refs(&root->root_item) != 0 &&
5178 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005179 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005180 goto no_delete;
5181
Chris Mason39279cc2007-06-12 06:35:45 -04005182 if (is_bad_inode(inode)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005183 btrfs_orphan_del(NULL, BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04005184 goto no_delete;
5185 }
Al Virobd555972010-06-07 11:35:40 -04005186 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005187 if (!special_file(inode->i_mode))
5188 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005189
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005190 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005191
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005192 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Liu Bo6bf02312012-06-25 21:59:09 -06005193 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005194 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005195 goto no_delete;
5196 }
5197
Yan, Zheng76dda932009-09-21 16:00:26 -04005198 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005199 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5200 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005201 goto no_delete;
5202 }
5203
Nikolay Borisovaa790212017-01-10 20:35:40 +02005204 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005205 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005206 btrfs_orphan_del(NULL, BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005207 goto no_delete;
5208 }
5209
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005210 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005211 if (!rsv) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005212 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik4289a662011-08-05 13:22:24 -04005213 goto no_delete;
5214 }
Josef Bacik4a338542011-08-29 11:01:31 -04005215 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005216 rsv->failfast = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005217 global_rsv = &fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005218
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005219 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005220
Josef Bacik4289a662011-08-05 13:22:24 -04005221 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005222 * This is a bit simpler than btrfs_truncate since we've already
5223 * reserved our space for our orphan item in the unlink, so we just
5224 * need to reserve some slack space in case we add bytes and update
5225 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005226 */
Yan, Zheng80825102009-11-12 09:35:36 +00005227 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005228 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5229 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005230
Josef Bacik726c35f2011-09-26 15:46:06 -04005231 /*
5232 * Try and steal from the global reserve since we will
5233 * likely not use this space anyway, we want to try as
5234 * hard as possible to get this to work.
5235 */
5236 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005237 steal_from_global++;
5238 else
5239 steal_from_global = 0;
5240 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005241
Josef Bacik3bce8762015-02-24 12:35:51 -08005242 /*
5243 * steal_from_global == 0: we reserved stuff, hooray!
5244 * steal_from_global == 1: we didn't reserve stuff, boo!
5245 * steal_from_global == 2: we've committed, still not a lot of
5246 * room but maybe we'll have room in the global reserve this
5247 * time.
5248 * steal_from_global == 3: abandon all hope!
5249 */
5250 if (steal_from_global > 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005251 btrfs_warn(fs_info,
5252 "Could not get space for a delete, will truncate on mount %d",
5253 ret);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005254 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005255 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005256 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005257 }
5258
Miao Xie0e8c36a2012-12-19 06:59:51 +00005259 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005260 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005261 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005262 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005263 goto no_delete;
5264 }
5265
Josef Bacik3bce8762015-02-24 12:35:51 -08005266 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005267 * We can't just steal from the global reserve, we need to make
Josef Bacik3bce8762015-02-24 12:35:51 -08005268 * sure there is room to do it, if not we need to commit and try
5269 * again.
5270 */
5271 if (steal_from_global) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005272 if (!btrfs_check_space_for_delayed_refs(trans, fs_info))
Josef Bacik3bce8762015-02-24 12:35:51 -08005273 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04005274 min_size, 0);
Josef Bacik3bce8762015-02-24 12:35:51 -08005275 else
5276 ret = -ENOSPC;
5277 }
5278
5279 /*
5280 * Couldn't steal from the global reserve, we have too much
5281 * pending stuff built up, commit the transaction and try it
5282 * again.
5283 */
5284 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005285 ret = btrfs_commit_transaction(trans);
Josef Bacik3bce8762015-02-24 12:35:51 -08005286 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005287 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005288 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik3bce8762015-02-24 12:35:51 -08005289 goto no_delete;
5290 }
5291 continue;
5292 } else {
5293 steal_from_global = 0;
5294 }
5295
Josef Bacik4289a662011-08-05 13:22:24 -04005296 trans->block_rsv = rsv;
5297
Yan, Zhengd68fc572010-05-16 10:49:58 -04005298 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005299 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005300 break;
5301
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005302 trans->block_rsv = &fs_info->trans_block_rsv;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005303 btrfs_end_transaction(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00005304 trans = NULL;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005305 btrfs_btree_balance_dirty(fs_info);
Josef Bacik7b128762008-07-24 12:17:14 -04005306 }
5307
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005308 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005309
Josef Bacik4ef31a42013-08-13 14:10:08 -04005310 /*
5311 * Errors here aren't a big deal, it just means we leave orphan items
5312 * in the tree. They will be cleaned up on the next mount.
5313 */
Yan, Zheng80825102009-11-12 09:35:36 +00005314 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005315 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005316 btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04005317 } else {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005318 btrfs_orphan_del(NULL, BTRFS_I(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00005319 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005320
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005321 trans->block_rsv = &fs_info->trans_block_rsv;
5322 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005323 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005324 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005325
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005326 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005327 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04005328no_delete:
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005329 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005330 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005331}
5332
5333/*
5334 * this returns the key found in the dir entry in the location pointer.
5335 * If no dir entries were found, location->objectid is 0.
5336 */
5337static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5338 struct btrfs_key *location)
5339{
5340 const char *name = dentry->d_name.name;
5341 int namelen = dentry->d_name.len;
5342 struct btrfs_dir_item *di;
5343 struct btrfs_path *path;
5344 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005345 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005346
5347 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005348 if (!path)
5349 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005350
David Sterbaf85b7372017-01-20 14:54:07 +01005351 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5352 name, namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005353 if (IS_ERR(di))
5354 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005355
David Sterbac7040052011-04-19 18:00:01 +02005356 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005357 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005358
Chris Mason5f39d392007-10-15 16:14:19 -04005359 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005360out:
Chris Mason39279cc2007-06-12 06:35:45 -04005361 btrfs_free_path(path);
5362 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005363out_err:
5364 location->objectid = 0;
5365 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005366}
5367
5368/*
5369 * when we hit a tree root in a directory, the btrfs part of the inode
5370 * needs to be changed to reflect the root directory of the tree root. This
5371 * is kind of like crossing a mount point.
5372 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005373static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005374 struct inode *dir,
5375 struct dentry *dentry,
5376 struct btrfs_key *location,
5377 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005378{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005379 struct btrfs_path *path;
5380 struct btrfs_root *new_root;
5381 struct btrfs_root_ref *ref;
5382 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005383 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005384 int ret;
5385 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005386
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005387 path = btrfs_alloc_path();
5388 if (!path) {
5389 err = -ENOMEM;
5390 goto out;
5391 }
Chris Mason39279cc2007-06-12 06:35:45 -04005392
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005393 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005394 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5395 key.type = BTRFS_ROOT_REF_KEY;
5396 key.offset = location->objectid;
5397
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005398 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005399 if (ret) {
5400 if (ret < 0)
5401 err = ret;
5402 goto out;
5403 }
Chris Mason39279cc2007-06-12 06:35:45 -04005404
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005405 leaf = path->nodes[0];
5406 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005407 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005408 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5409 goto out;
5410
5411 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5412 (unsigned long)(ref + 1),
5413 dentry->d_name.len);
5414 if (ret)
5415 goto out;
5416
David Sterbab3b4aa72011-04-21 01:20:15 +02005417 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005418
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005419 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005420 if (IS_ERR(new_root)) {
5421 err = PTR_ERR(new_root);
5422 goto out;
5423 }
5424
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005425 *sub_root = new_root;
5426 location->objectid = btrfs_root_dirid(&new_root->root_item);
5427 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005428 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005429 err = 0;
5430out:
5431 btrfs_free_path(path);
5432 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005433}
5434
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005435static void inode_tree_add(struct inode *inode)
5436{
5437 struct btrfs_root *root = BTRFS_I(inode)->root;
5438 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005439 struct rb_node **p;
5440 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005441 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005442 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005443
Al Viro1d3382cb2010-10-23 15:19:20 -04005444 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005445 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005446 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005447 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005448 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005449 while (*p) {
5450 parent = *p;
5451 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5452
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005453 if (ino < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005454 p = &parent->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005455 else if (ino > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005456 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005457 else {
5458 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005459 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005460 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005461 RB_CLEAR_NODE(parent);
5462 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005463 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005464 }
5465 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005466 rb_link_node(new, parent, p);
5467 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005468 spin_unlock(&root->inode_lock);
5469}
5470
5471static void inode_tree_del(struct inode *inode)
5472{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005473 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005474 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005475 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005476
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005477 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005478 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005479 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005480 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005481 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005482 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005483 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005484
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005485 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005486 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005487 spin_lock(&root->inode_lock);
5488 empty = RB_EMPTY_ROOT(&root->inode_tree);
5489 spin_unlock(&root->inode_lock);
5490 if (empty)
5491 btrfs_add_dead_root(root);
5492 }
5493}
5494
Jeff Mahoney143bede2012-03-01 14:56:26 +01005495void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005496{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005497 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04005498 struct rb_node *node;
5499 struct rb_node *prev;
5500 struct btrfs_inode *entry;
5501 struct inode *inode;
5502 u64 objectid = 0;
5503
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005504 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Liu Bo7813b3d2014-02-10 17:37:25 +08005505 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005506
5507 spin_lock(&root->inode_lock);
5508again:
5509 node = root->inode_tree.rb_node;
5510 prev = NULL;
5511 while (node) {
5512 prev = node;
5513 entry = rb_entry(node, struct btrfs_inode, rb_node);
5514
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005515 if (objectid < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005516 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005517 else if (objectid > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005518 node = node->rb_right;
5519 else
5520 break;
5521 }
5522 if (!node) {
5523 while (prev) {
5524 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005525 if (objectid <= btrfs_ino(BTRFS_I(&entry->vfs_inode))) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005526 node = prev;
5527 break;
5528 }
5529 prev = rb_next(prev);
5530 }
5531 }
5532 while (node) {
5533 entry = rb_entry(node, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005534 objectid = btrfs_ino(BTRFS_I(&entry->vfs_inode)) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005535 inode = igrab(&entry->vfs_inode);
5536 if (inode) {
5537 spin_unlock(&root->inode_lock);
5538 if (atomic_read(&inode->i_count) > 1)
5539 d_prune_aliases(inode);
5540 /*
Al Viro45321ac2010-06-07 13:43:19 -04005541 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005542 * the inode cache when its usage count
5543 * hits zero.
5544 */
5545 iput(inode);
5546 cond_resched();
5547 spin_lock(&root->inode_lock);
5548 goto again;
5549 }
5550
5551 if (cond_resched_lock(&root->inode_lock))
5552 goto again;
5553
5554 node = rb_next(node);
5555 }
5556 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005557}
5558
Chris Masone02119d2008-09-05 16:13:11 -04005559static int btrfs_init_locked_inode(struct inode *inode, void *p)
5560{
5561 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005562 inode->i_ino = args->location->objectid;
5563 memcpy(&BTRFS_I(inode)->location, args->location,
5564 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005565 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005566 return 0;
5567}
5568
5569static int btrfs_find_actor(struct inode *inode, void *opaque)
5570{
5571 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005572 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005573 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005574}
5575
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005576static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005577 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005578 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005579{
5580 struct inode *inode;
5581 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005582 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005583
Chris Mason90d3e592014-01-09 17:28:00 -08005584 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005585 args.root = root;
5586
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005587 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005588 btrfs_init_locked_inode,
5589 (void *)&args);
5590 return inode;
5591}
5592
Balaji Rao1a54ef82008-07-21 02:01:04 +05305593/* Get an inode object given its location and corresponding root.
5594 * Returns in *is_new if the inode was read from disk
5595 */
5596struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005597 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305598{
5599 struct inode *inode;
5600
Chris Mason90d3e592014-01-09 17:28:00 -08005601 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305602 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005603 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305604
5605 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005606 int ret;
5607
5608 ret = btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005609 if (!is_bad_inode(inode)) {
5610 inode_tree_add(inode);
5611 unlock_new_inode(inode);
5612 if (new)
5613 *new = 1;
5614 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005615 unlock_new_inode(inode);
5616 iput(inode);
Filipe Manana67710892016-06-06 11:51:25 +01005617 ASSERT(ret < 0);
5618 inode = ERR_PTR(ret < 0 ? ret : -ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005619 }
5620 }
5621
Balaji Rao1a54ef82008-07-21 02:01:04 +05305622 return inode;
5623}
5624
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005625static struct inode *new_simple_dir(struct super_block *s,
5626 struct btrfs_key *key,
5627 struct btrfs_root *root)
5628{
5629 struct inode *inode = new_inode(s);
5630
5631 if (!inode)
5632 return ERR_PTR(-ENOMEM);
5633
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005634 BTRFS_I(inode)->root = root;
5635 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005636 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005637
5638 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005639 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005640 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005641 inode->i_fop = &simple_dir_operations;
5642 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005643 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305644 inode->i_atime = inode->i_mtime;
5645 inode->i_ctime = inode->i_mtime;
5646 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005647
5648 return inode;
5649}
5650
Chris Mason3de45862008-11-17 21:02:50 -05005651struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005652{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005653 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005654 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005655 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005656 struct btrfs_root *sub_root = root;
5657 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005658 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005659 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005660
5661 if (dentry->d_name.len > BTRFS_NAME_LEN)
5662 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005663
Jeff Layton39e3c952012-11-28 11:30:53 -05005664 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005665 if (ret < 0)
5666 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005667
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005668 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005669 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005670
5671 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005672 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005673 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005674 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005675
5676 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5677
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005678 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005679 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005680 &location, &sub_root);
5681 if (ret < 0) {
5682 if (ret != -ENOENT)
5683 inode = ERR_PTR(ret);
5684 else
5685 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5686 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005687 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005688 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005689 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005690
Julia Lawall34d19ba2011-01-24 19:55:19 +00005691 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005692 down_read(&fs_info->cleanup_work_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005693 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005694 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005695 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005696 if (ret) {
5697 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005698 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005699 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005700 }
5701
Chris Mason3de45862008-11-17 21:02:50 -05005702 return inode;
5703}
5704
Nick Pigginfe15ce42011-01-07 17:49:23 +11005705static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005706{
5707 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005708 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005709
Li Zefan848cce02012-02-21 17:04:28 +08005710 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005711 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005712
Li Zefan848cce02012-02-21 17:04:28 +08005713 if (inode) {
5714 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005715 if (btrfs_root_refs(&root->root_item) == 0)
5716 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005717
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005718 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005719 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005720 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005721 return 0;
5722}
5723
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005724static void btrfs_dentry_release(struct dentry *dentry)
5725{
Daeseok Youn944a4512014-04-14 15:37:02 +09005726 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005727}
5728
Chris Mason3de45862008-11-17 21:02:50 -05005729static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005730 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005731{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005732 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005733
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005734 inode = btrfs_lookup_dentry(dir, dentry);
5735 if (IS_ERR(inode)) {
5736 if (PTR_ERR(inode) == -ENOENT)
5737 inode = NULL;
5738 else
5739 return ERR_CAST(inode);
5740 }
5741
Al Viro41d28bc2014-10-12 22:24:21 -04005742 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005743}
5744
Miao Xie16cdcec2011-04-22 18:12:22 +08005745unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005746 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5747};
5748
Al Viro9cdda8d2013-05-22 16:48:09 -04005749static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005750{
Al Viro9cdda8d2013-05-22 16:48:09 -04005751 struct inode *inode = file_inode(file);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005752 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005753 struct btrfs_root *root = BTRFS_I(inode)->root;
5754 struct btrfs_item *item;
5755 struct btrfs_dir_item *di;
5756 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005757 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005758 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005759 struct list_head ins_list;
5760 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005761 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005762 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005763 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005764 unsigned char d_type;
5765 int over = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005766 char tmp_name[32];
5767 char *name_ptr;
5768 int name_len;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005769 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005770 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005771
Al Viro9cdda8d2013-05-22 16:48:09 -04005772 if (!dir_emit_dots(file, ctx))
5773 return 0;
5774
David Woodhouse49593bf2008-08-17 17:08:36 +01005775 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005776 if (!path)
5777 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005778
David Sterbae4058b52015-11-27 16:31:35 +01005779 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005780
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005781 INIT_LIST_HEAD(&ins_list);
5782 INIT_LIST_HEAD(&del_list);
5783 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005784
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005785 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005786 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005787 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005788
Chris Mason39279cc2007-06-12 06:35:45 -04005789 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5790 if (ret < 0)
5791 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005792
5793 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005794 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005795 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005796 if (slot >= btrfs_header_nritems(leaf)) {
5797 ret = btrfs_next_leaf(root, path);
5798 if (ret < 0)
5799 goto err;
5800 else if (ret > 0)
5801 break;
5802 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005803 }
Chris Mason3de45862008-11-17 21:02:50 -05005804
Ross Kirkdd3cc162013-09-16 15:58:09 +01005805 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005806 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5807
5808 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005809 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005810 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005811 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005812 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005813 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005814 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005815 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005816
Al Viro9cdda8d2013-05-22 16:48:09 -04005817 ctx->pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01005818
Chris Mason39279cc2007-06-12 06:35:45 -04005819 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005820 if (verify_dir_item(fs_info, leaf, di))
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005821 goto next;
David Woodhouse49593bf2008-08-17 17:08:36 +01005822
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005823 name_len = btrfs_dir_name_len(leaf, di);
5824 if (name_len <= sizeof(tmp_name)) {
5825 name_ptr = tmp_name;
5826 } else {
5827 name_ptr = kmalloc(name_len, GFP_KERNEL);
5828 if (!name_ptr) {
5829 ret = -ENOMEM;
5830 goto err;
Chris Mason5f39d392007-10-15 16:14:19 -04005831 }
Chris Mason39279cc2007-06-12 06:35:45 -04005832 }
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005833 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5834 name_len);
5835
5836 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5837 btrfs_dir_item_key_to_cpu(leaf, di, &location);
5838
5839 over = !dir_emit(ctx, name_ptr, name_len, location.objectid,
5840 d_type);
5841
5842 if (name_ptr != tmp_name)
5843 kfree(name_ptr);
5844
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005845 if (over)
5846 goto nopos;
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005847 ctx->pos++;
Li Zefanb9e03af2011-03-23 10:43:58 +08005848next:
5849 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005850 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005851
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005852 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005853 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005854 goto nopos;
5855
Zach Browndb62efb2013-07-11 16:19:42 -07005856 /*
5857 * Stop new entries from being returned after we return the last
5858 * entry.
5859 *
5860 * New directory entries are assigned a strictly increasing
5861 * offset. This means that new entries created during readdir
5862 * are *guaranteed* to be seen in the future by that readdir.
5863 * This has broken buggy programs which operate on names as
5864 * they're returned by readdir. Until we re-use freed offsets
5865 * we have this hack to stop new entries from being returned
5866 * under the assumption that they'll never reach this huge
5867 * offset.
5868 *
5869 * This is being careful not to overflow 32bit loff_t unless the
5870 * last entry requires it because doing so has broken 32bit apps
5871 * in the past.
5872 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005873 if (ctx->pos >= INT_MAX)
5874 ctx->pos = LLONG_MAX;
5875 else
5876 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005877nopos:
5878 ret = 0;
5879err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005880 if (put)
5881 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005882 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005883 return ret;
5884}
5885
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005886int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005887{
5888 struct btrfs_root *root = BTRFS_I(inode)->root;
5889 struct btrfs_trans_handle *trans;
5890 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005891 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005892
Josef Bacik72ac3c02012-05-23 14:13:11 -04005893 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005894 return 0;
5895
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005896 if (btrfs_fs_closing(root->fs_info) &&
5897 btrfs_is_free_space_inode(BTRFS_I(inode)))
Li Zefan82d59022011-04-20 10:33:24 +08005898 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005899
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005900 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005901 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005902 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005903 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005904 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005905 if (IS_ERR(trans))
5906 return PTR_ERR(trans);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005907 ret = btrfs_commit_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005908 }
5909 return ret;
5910}
5911
5912/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005913 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005914 * inode changes. But, it is most likely to find the inode in cache.
5915 * FIXME, needs more benchmarking...there are no reasons other than performance
5916 * to keep or drop this code.
5917 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005918static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005919{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005920 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005921 struct btrfs_root *root = BTRFS_I(inode)->root;
5922 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005923 int ret;
5924
Josef Bacik72ac3c02012-05-23 14:13:11 -04005925 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005926 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005927
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005928 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005929 if (IS_ERR(trans))
5930 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005931
5932 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005933 if (ret && ret == -ENOSPC) {
5934 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005935 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04005936 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005937 if (IS_ERR(trans))
5938 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005939
Chris Mason94b60442010-05-26 11:02:00 -04005940 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005941 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005942 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08005943 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005944 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005945
5946 return ret;
5947}
5948
5949/*
5950 * This is a copy of file_update_time. We need this so we can return error on
5951 * ENOSPC for updating the inode in the case of file write and mmap writes.
5952 */
Josef Bacike41f9412012-03-26 09:46:47 -04005953static int btrfs_update_time(struct inode *inode, struct timespec *now,
5954 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005955{
Alexander Block2bc5565282012-06-15 09:49:33 +02005956 struct btrfs_root *root = BTRFS_I(inode)->root;
5957
5958 if (btrfs_root_readonly(root))
5959 return -EROFS;
5960
Josef Bacike41f9412012-03-26 09:46:47 -04005961 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005962 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005963 if (flags & S_CTIME)
5964 inode->i_ctime = *now;
5965 if (flags & S_MTIME)
5966 inode->i_mtime = *now;
5967 if (flags & S_ATIME)
5968 inode->i_atime = *now;
5969 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005970}
5971
Chris Masond352ac62008-09-29 15:18:18 -04005972/*
5973 * find the highest existing sequence number in a directory
5974 * and then set the in-memory index_cnt variable to reflect
5975 * free sequence numbers
5976 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005977static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04005978{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005979 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04005980 struct btrfs_key key, found_key;
5981 struct btrfs_path *path;
5982 struct extent_buffer *leaf;
5983 int ret;
5984
Nikolay Borisov4c5706552017-02-20 13:50:32 +02005985 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02005986 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04005987 key.offset = (u64)-1;
5988
5989 path = btrfs_alloc_path();
5990 if (!path)
5991 return -ENOMEM;
5992
5993 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5994 if (ret < 0)
5995 goto out;
5996 /* FIXME: we should be able to handle this */
5997 if (ret == 0)
5998 goto out;
5999 ret = 0;
6000
6001 /*
6002 * MAGIC NUMBER EXPLANATION:
6003 * since we search a directory based on f_pos we have to start at 2
6004 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6005 * else has to start at 2
6006 */
6007 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006008 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006009 goto out;
6010 }
6011
6012 path->slots[0]--;
6013
6014 leaf = path->nodes[0];
6015 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6016
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006017 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006018 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006019 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006020 goto out;
6021 }
6022
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006023 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006024out:
6025 btrfs_free_path(path);
6026 return ret;
6027}
6028
Chris Masond352ac62008-09-29 15:18:18 -04006029/*
6030 * helper to find a free sequence number in a given directory. This current
6031 * code is very simple, later versions will do smarter things in the btree
6032 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006033int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006034{
6035 int ret = 0;
6036
Nikolay Borisov877574e2017-02-20 13:50:33 +02006037 if (dir->index_cnt == (u64)-1) {
6038 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006039 if (ret) {
Nikolay Borisov877574e2017-02-20 13:50:33 +02006040 ret = btrfs_set_inode_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006041 if (ret)
6042 return ret;
6043 }
Josef Bacikaec74772008-07-24 12:12:38 -04006044 }
6045
Nikolay Borisov877574e2017-02-20 13:50:33 +02006046 *index = dir->index_cnt;
6047 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006048
6049 return ret;
6050}
6051
Chris Masonb0d5d102014-09-08 13:08:51 -07006052static int btrfs_insert_inode_locked(struct inode *inode)
6053{
6054 struct btrfs_iget_args args;
6055 args.location = &BTRFS_I(inode)->location;
6056 args.root = BTRFS_I(inode)->root;
6057
6058 return insert_inode_locked4(inode,
6059 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6060 btrfs_find_actor, &args);
6061}
6062
Chris Mason39279cc2007-06-12 06:35:45 -04006063static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6064 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006065 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006066 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006067 u64 ref_objectid, u64 objectid,
6068 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006069{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006070 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006071 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006072 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006073 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006074 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006075 struct btrfs_inode_ref *ref;
6076 struct btrfs_key key[2];
6077 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006078 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006079 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006080 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006081
Chris Mason5f39d392007-10-15 16:14:19 -04006082 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006083 if (!path)
6084 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006085
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006086 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006087 if (!inode) {
6088 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006089 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006090 }
Chris Mason39279cc2007-06-12 06:35:45 -04006091
Li Zefan581bb052011-04-20 10:06:11 +08006092 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006093 * O_TMPFILE, set link count to 0, so that after this point,
6094 * we fill in an inode item with the correct link count.
6095 */
6096 if (!name)
6097 set_nlink(inode, 0);
6098
6099 /*
Li Zefan581bb052011-04-20 10:06:11 +08006100 * we have to initialize this early, so we can reclaim the inode
6101 * number if we fail afterwards in this function.
6102 */
6103 inode->i_ino = objectid;
6104
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006105 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006106 trace_btrfs_inode_request(dir);
6107
Nikolay Borisov877574e2017-02-20 13:50:33 +02006108 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006109 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006110 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006111 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006112 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006113 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006114 } else if (dir) {
6115 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006116 }
6117 /*
6118 * index_cnt is ignored for everything but a dir,
6119 * btrfs_get_inode_index_count has an explanation for the magic
6120 * number
6121 */
6122 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006123 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006124 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006125 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006126 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006127
Josef Bacik5dc562c2012-08-17 13:14:17 -04006128 /*
6129 * We could have gotten an inode number from somebody who was fsynced
6130 * and then removed in this same transaction, so let's just set full
6131 * sync since it will be a full sync anyway and this will blow away the
6132 * old info in the log.
6133 */
6134 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6135
Chris Mason9c583092008-01-29 15:15:18 -05006136 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006137 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006138 key[0].offset = 0;
6139
Chris Mason9c583092008-01-29 15:15:18 -05006140 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006141
6142 if (name) {
6143 /*
6144 * Start new inodes with an inode_ref. This is slightly more
6145 * efficient for small numbers of hard links since they will
6146 * be packed into one item. Extended refs will kick in if we
6147 * add more hard links than can fit in the ref item.
6148 */
6149 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006150 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006151 key[1].offset = ref_objectid;
6152
6153 sizes[1] = name_len + sizeof(*ref);
6154 }
Chris Mason9c583092008-01-29 15:15:18 -05006155
Chris Masonb0d5d102014-09-08 13:08:51 -07006156 location = &BTRFS_I(inode)->location;
6157 location->objectid = objectid;
6158 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006159 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006160
6161 ret = btrfs_insert_inode_locked(inode);
6162 if (ret < 0)
6163 goto fail;
6164
Chris Masonb9473432009-03-13 11:00:37 -04006165 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006166 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006167 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006168 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006169
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006170 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006171 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306172
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006173 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306174 inode->i_atime = inode->i_mtime;
6175 inode->i_ctime = inode->i_mtime;
6176 BTRFS_I(inode)->i_otime = inode->i_mtime;
6177
Chris Mason5f39d392007-10-15 16:14:19 -04006178 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6179 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006180 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006181 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006182 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006183
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006184 if (name) {
6185 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6186 struct btrfs_inode_ref);
6187 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6188 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6189 ptr = (unsigned long)(ref + 1);
6190 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6191 }
Chris Mason9c583092008-01-29 15:15:18 -05006192
Chris Mason5f39d392007-10-15 16:14:19 -04006193 btrfs_mark_buffer_dirty(path->nodes[0]);
6194 btrfs_free_path(path);
6195
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006196 btrfs_inherit_iflags(inode, dir);
6197
Al Viro569254b2011-07-24 17:08:40 -04006198 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006199 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006200 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006201 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006202 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6203 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006204 }
6205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006206 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006207
6208 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006209 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006210
Alexander Block8ea05e32012-07-25 17:35:53 +02006211 btrfs_update_root_times(trans, root);
6212
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006213 ret = btrfs_inode_inherit_props(trans, inode, dir);
6214 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006215 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006216 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006217 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006218
Chris Mason39279cc2007-06-12 06:35:45 -04006219 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006220
6221fail_unlock:
6222 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006223fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006224 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006225 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006226 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006227 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006228 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006229}
6230
6231static inline u8 btrfs_inode_type(struct inode *inode)
6232{
6233 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6234}
6235
Chris Masond352ac62008-09-29 15:18:18 -04006236/*
6237 * utility function to add 'inode' into 'parent_inode' with
6238 * a give name and a given sequence number.
6239 * if 'add_backref' is true, also insert a backref from the
6240 * inode to the parent directory.
6241 */
Chris Masone02119d2008-09-05 16:13:11 -04006242int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006243 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006244 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006245{
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006246 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006247 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006248 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006249 struct btrfs_root *root = parent_inode->root;
6250 u64 ino = btrfs_ino(inode);
6251 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006252
Li Zefan33345d012011-04-20 10:31:50 +08006253 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006254 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006255 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006256 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006257 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006258 key.offset = 0;
6259 }
Chris Mason39279cc2007-06-12 06:35:45 -04006260
Li Zefan33345d012011-04-20 10:31:50 +08006261 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006262 ret = btrfs_add_root_ref(trans, fs_info, key.objectid,
6263 root->root_key.objectid, parent_ino,
6264 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006265 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006266 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6267 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006268 }
6269
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006270 /* Nothing to clean up yet */
6271 if (ret)
6272 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006273
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006274 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006275 parent_inode, &key,
6276 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006277 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006278 goto fail_dir_item;
6279 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006280 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006281 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006282 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006283
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006284 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006285 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006286 inode_inc_iversion(&parent_inode->vfs_inode);
6287 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6288 current_time(&parent_inode->vfs_inode);
6289 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006290 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006291 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006292 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006293
6294fail_dir_item:
6295 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6296 u64 local_index;
6297 int err;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006298 err = btrfs_del_root_ref(trans, fs_info, key.objectid,
6299 root->root_key.objectid, parent_ino,
6300 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006301
6302 } else if (add_backref) {
6303 u64 local_index;
6304 int err;
6305
6306 err = btrfs_del_inode_ref(trans, root, name, name_len,
6307 ino, parent_ino, &local_index);
6308 }
6309 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006310}
6311
6312static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006313 struct btrfs_inode *dir, struct dentry *dentry,
6314 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006315{
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006316 int err = btrfs_add_link(trans, dir, inode,
Josef Bacika1b075d2010-11-19 20:36:11 +00006317 dentry->d_name.name, dentry->d_name.len,
6318 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006319 if (err > 0)
6320 err = -EEXIST;
6321 return err;
6322}
6323
Josef Bacik618e21d2007-07-11 10:18:17 -04006324static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006325 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006326{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006327 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006328 struct btrfs_trans_handle *trans;
6329 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006330 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006331 int err;
6332 int drop_inode = 0;
6333 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006334 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006335
Josef Bacik9ed74f22009-09-11 16:12:44 -04006336 /*
6337 * 2 for inode item and ref
6338 * 2 for dir items
6339 * 1 for xattr if selinux is on
6340 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006341 trans = btrfs_start_transaction(root, 5);
6342 if (IS_ERR(trans))
6343 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006344
Li Zefan581bb052011-04-20 10:06:11 +08006345 err = btrfs_find_free_ino(root, &objectid);
6346 if (err)
6347 goto out_unlock;
6348
Josef Bacikaec74772008-07-24 12:12:38 -04006349 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006350 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6351 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006352 if (IS_ERR(inode)) {
6353 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006354 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006355 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006356
Casey Schauflerad19db72011-12-15 10:09:07 -05006357 /*
6358 * If the active LSM wants to access the inode during
6359 * d_instantiate it needs these. Smack checks to see
6360 * if the filesystem supports xattrs by looking at the
6361 * ops vector.
6362 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006363 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006364 init_special_inode(inode, inode->i_mode, rdev);
6365
6366 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006367 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006368 goto out_unlock_inode;
6369
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006370 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6371 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -07006372 if (err) {
6373 goto out_unlock_inode;
6374 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006375 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006376 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006377 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006378 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006379
Josef Bacik618e21d2007-07-11 10:18:17 -04006380out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006381 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006382 btrfs_balance_delayed_items(fs_info);
6383 btrfs_btree_balance_dirty(fs_info);
Josef Bacik618e21d2007-07-11 10:18:17 -04006384 if (drop_inode) {
6385 inode_dec_link_count(inode);
6386 iput(inode);
6387 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006388 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006389
6390out_unlock_inode:
6391 drop_inode = 1;
6392 unlock_new_inode(inode);
6393 goto out_unlock;
6394
Josef Bacik618e21d2007-07-11 10:18:17 -04006395}
6396
Chris Mason39279cc2007-06-12 06:35:45 -04006397static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006398 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006399{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006400 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006401 struct btrfs_trans_handle *trans;
6402 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006403 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006404 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006405 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006406 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006407 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006408
Josef Bacik9ed74f22009-09-11 16:12:44 -04006409 /*
6410 * 2 for inode item and ref
6411 * 2 for dir items
6412 * 1 for xattr if selinux is on
6413 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006414 trans = btrfs_start_transaction(root, 5);
6415 if (IS_ERR(trans))
6416 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006417
Li Zefan581bb052011-04-20 10:06:11 +08006418 err = btrfs_find_free_ino(root, &objectid);
6419 if (err)
6420 goto out_unlock;
6421
Josef Bacikaec74772008-07-24 12:12:38 -04006422 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006423 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6424 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006425 if (IS_ERR(inode)) {
6426 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006427 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006428 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006429 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006430 /*
6431 * If the active LSM wants to access the inode during
6432 * d_instantiate it needs these. Smack checks to see
6433 * if the filesystem supports xattrs by looking at the
6434 * ops vector.
6435 */
6436 inode->i_fop = &btrfs_file_operations;
6437 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006438 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006439
6440 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6441 if (err)
6442 goto out_unlock_inode;
6443
6444 err = btrfs_update_inode(trans, root, inode);
6445 if (err)
6446 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006447
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006448 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6449 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006450 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006451 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006452
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006453 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006454 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006455 d_instantiate(dentry, inode);
6456
Chris Mason39279cc2007-06-12 06:35:45 -04006457out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006458 btrfs_end_transaction(trans);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006459 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006460 inode_dec_link_count(inode);
6461 iput(inode);
6462 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006463 btrfs_balance_delayed_items(fs_info);
6464 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006465 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006466
6467out_unlock_inode:
6468 unlock_new_inode(inode);
6469 goto out_unlock;
6470
Chris Mason39279cc2007-06-12 06:35:45 -04006471}
6472
6473static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6474 struct dentry *dentry)
6475{
Filipe Manana271dba42016-01-05 16:24:05 +00006476 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006477 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006478 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006479 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006480 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006481 int err;
6482 int drop_inode = 0;
6483
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006484 /* do not allow sys_link's with other subvols of the same device */
6485 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006486 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006487
Mark Fashehf1863732012-08-08 11:32:27 -07006488 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006489 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006490
Nikolay Borisov877574e2017-02-20 13:50:33 +02006491 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006492 if (err)
6493 goto fail;
6494
Yan, Zhenga22285a2010-05-16 10:48:46 -04006495 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006496 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006497 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006498 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006499 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006500 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006501 if (IS_ERR(trans)) {
6502 err = PTR_ERR(trans);
Filipe Manana271dba42016-01-05 16:24:05 +00006503 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006504 goto fail;
6505 }
Chris Mason5f39d392007-10-15 16:14:19 -04006506
Miao Xie67de1172013-12-26 13:07:06 +08006507 /* There are several dir indexes for this inode, clear the cache. */
6508 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006509 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006510 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006511 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006512 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006513 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006514
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006515 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6516 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006517
Yan, Zhenga5719522009-09-24 09:17:31 -04006518 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006519 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006520 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006521 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006522 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006523 if (err)
6524 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006525 if (inode->i_nlink == 1) {
6526 /*
6527 * If new hard link count is 1, it's a file created
6528 * with open(2) O_TMPFILE flag.
6529 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006530 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006531 if (err)
6532 goto fail;
6533 }
Al Viro08c422c2011-12-23 07:58:13 -05006534 d_instantiate(dentry, inode);
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006535 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006536 }
Chris Mason39279cc2007-06-12 06:35:45 -04006537
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006538 btrfs_balance_delayed_items(fs_info);
Chris Mason1832a6d2007-12-21 16:27:21 -05006539fail:
Filipe Manana271dba42016-01-05 16:24:05 +00006540 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006541 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006542 if (drop_inode) {
6543 inode_dec_link_count(inode);
6544 iput(inode);
6545 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006546 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006547 return err;
6548}
6549
Al Viro18bb1db2011-07-26 01:41:39 -04006550static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006551{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006552 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006553 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006554 struct btrfs_trans_handle *trans;
6555 struct btrfs_root *root = BTRFS_I(dir)->root;
6556 int err = 0;
6557 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006558 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006559 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006560
Josef Bacik9ed74f22009-09-11 16:12:44 -04006561 /*
6562 * 2 items for inode and ref
6563 * 2 items for dir items
6564 * 1 for xattr if selinux is on
6565 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006566 trans = btrfs_start_transaction(root, 5);
6567 if (IS_ERR(trans))
6568 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006569
Li Zefan581bb052011-04-20 10:06:11 +08006570 err = btrfs_find_free_ino(root, &objectid);
6571 if (err)
6572 goto out_fail;
6573
Josef Bacikaec74772008-07-24 12:12:38 -04006574 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006575 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6576 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006577 if (IS_ERR(inode)) {
6578 err = PTR_ERR(inode);
6579 goto out_fail;
6580 }
Chris Mason5f39d392007-10-15 16:14:19 -04006581
Chris Mason39279cc2007-06-12 06:35:45 -04006582 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006583 /* these must be set before we unlock the inode */
6584 inode->i_op = &btrfs_dir_inode_operations;
6585 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006586
Eric Paris2a7dba32011-02-01 11:05:39 -05006587 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006588 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006589 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006590
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006591 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006592 err = btrfs_update_inode(trans, root, inode);
6593 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006594 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006595
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006596 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6597 dentry->d_name.name,
6598 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006599 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006600 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006601
Chris Mason39279cc2007-06-12 06:35:45 -04006602 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006603 /*
6604 * mkdir is special. We're unlocking after we call d_instantiate
6605 * to avoid a race with nfsd calling d_instantiate.
6606 */
6607 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006608 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006609
6610out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006611 btrfs_end_transaction(trans);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006612 if (drop_on_err) {
6613 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006614 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006615 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006616 btrfs_balance_delayed_items(fs_info);
6617 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006618 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006619
6620out_fail_inode:
6621 unlock_new_inode(inode);
6622 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006623}
6624
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006625/* Find next extent map of a given extent map, caller needs to ensure locks */
6626static struct extent_map *next_extent_map(struct extent_map *em)
6627{
6628 struct rb_node *next;
6629
6630 next = rb_next(&em->rb_node);
6631 if (!next)
6632 return NULL;
6633 return container_of(next, struct extent_map, rb_node);
6634}
6635
6636static struct extent_map *prev_extent_map(struct extent_map *em)
6637{
6638 struct rb_node *prev;
6639
6640 prev = rb_prev(&em->rb_node);
6641 if (!prev)
6642 return NULL;
6643 return container_of(prev, struct extent_map, rb_node);
6644}
6645
Chris Masond352ac62008-09-29 15:18:18 -04006646/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006647 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006648 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006649 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006650 */
Chris Mason3b951512008-04-17 11:29:12 -04006651static int merge_extent_mapping(struct extent_map_tree *em_tree,
6652 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006653 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006654 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006655{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006656 struct extent_map *prev;
6657 struct extent_map *next;
6658 u64 start;
6659 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006660 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006661
Chris Masone6dcd2d2008-07-17 12:53:50 -04006662 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006663
6664 if (existing->start > map_start) {
6665 next = existing;
6666 prev = prev_extent_map(next);
6667 } else {
6668 prev = existing;
6669 next = next_extent_map(prev);
6670 }
6671
6672 start = prev ? extent_map_end(prev) : em->start;
6673 start = max_t(u64, start, em->start);
6674 end = next ? next->start : extent_map_end(em);
6675 end = min_t(u64, end, extent_map_end(em));
6676 start_diff = start - em->start;
6677 em->start = start;
6678 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006679 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6680 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006681 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006682 em->block_len -= start_diff;
6683 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006684 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006685}
6686
Chris Masonc8b97812008-10-29 14:49:59 -04006687static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006688 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006689 size_t pg_offset, u64 extent_offset,
6690 struct btrfs_file_extent_item *item)
6691{
6692 int ret;
6693 struct extent_buffer *leaf = path->nodes[0];
6694 char *tmp;
6695 size_t max_size;
6696 unsigned long inline_size;
6697 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006698 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006699
6700 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006701 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006702 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6703 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006704 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006705 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006706 if (!tmp)
6707 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006708 ptr = btrfs_file_extent_inline_start(item);
6709
6710 read_extent_buffer(leaf, tmp, ptr, inline_size);
6711
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006712 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006713 ret = btrfs_decompress(compress_type, tmp, page,
6714 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006715 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006716 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006717}
6718
Chris Masond352ac62008-09-29 15:18:18 -04006719/*
6720 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006721 * the ugly parts come from merging extents from the disk with the in-ram
6722 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006723 * where the in-ram extents might be locked pending data=ordered completion.
6724 *
6725 * This also copies inline extents directly into the page.
6726 */
Chris Masond3977122009-01-05 21:25:51 -05006727
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006728struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
6729 struct page *page,
6730 size_t pg_offset, u64 start, u64 len,
6731 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006732{
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006733 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Masona52d9a82007-08-27 16:49:44 -04006734 int ret;
6735 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006736 u64 extent_start = 0;
6737 u64 extent_end = 0;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006738 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006739 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006740 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006741 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006742 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006743 struct extent_buffer *leaf;
6744 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006745 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006746 struct extent_map_tree *em_tree = &inode->extent_tree;
6747 struct extent_io_tree *io_tree = &inode->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006748 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006749 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006750
Chris Masona52d9a82007-08-27 16:49:44 -04006751again:
Chris Mason890871b2009-09-02 16:24:52 -04006752 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006753 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006754 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006755 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006756 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006757
Chris Masona52d9a82007-08-27 16:49:44 -04006758 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006759 if (em->start > start || em->start + em->len <= start)
6760 free_extent_map(em);
6761 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006762 free_extent_map(em);
6763 else
6764 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006765 }
David Sterba172ddd62011-04-21 00:48:27 +02006766 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006767 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006768 err = -ENOMEM;
6769 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006770 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006771 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006772 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006773 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006774 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006775 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006776
6777 if (!path) {
6778 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006779 if (!path) {
6780 err = -ENOMEM;
6781 goto out;
6782 }
6783 /*
6784 * Chances are we'll be called again, so go ahead and do
6785 * readahead
6786 */
David Sterbae4058b52015-11-27 16:31:35 +01006787 path->reada = READA_FORWARD;
Chris Masonf4219502008-07-22 11:18:09 -04006788 }
6789
Chris Mason179e29e2007-11-01 11:28:41 -04006790 ret = btrfs_lookup_file_extent(trans, root, path,
6791 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006792 if (ret < 0) {
6793 err = ret;
6794 goto out;
6795 }
6796
6797 if (ret != 0) {
6798 if (path->slots[0] == 0)
6799 goto not_found;
6800 path->slots[0]--;
6801 }
6802
Chris Mason5f39d392007-10-15 16:14:19 -04006803 leaf = path->nodes[0];
6804 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006805 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006806 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006807 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006808 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006809 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006810 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006811 /*
6812 * If we backup past the first extent we want to move forward
6813 * and see if there is an extent in front of us, otherwise we'll
6814 * say there is a hole for our whole search range which can
6815 * cause problems.
6816 */
6817 extent_end = start;
6818 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006819 }
6820
Chris Mason5f39d392007-10-15 16:14:19 -04006821 found_type = btrfs_file_extent_type(leaf, item);
6822 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006823 if (found_type == BTRFS_FILE_EXTENT_REG ||
6824 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006825 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006826 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006827 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6828 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006829 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006830 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006831 fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006832 }
Josef Bacik25a50342013-10-14 12:08:38 -04006833next:
Yan Zheng9036c102008-10-30 14:19:41 -04006834 if (start >= extent_end) {
6835 path->slots[0]++;
6836 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6837 ret = btrfs_next_leaf(root, path);
6838 if (ret < 0) {
6839 err = ret;
6840 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006841 }
Yan Zheng9036c102008-10-30 14:19:41 -04006842 if (ret > 0)
6843 goto not_found;
6844 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006845 }
Yan Zheng9036c102008-10-30 14:19:41 -04006846 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6847 if (found_key.objectid != objectid ||
6848 found_key.type != BTRFS_EXTENT_DATA_KEY)
6849 goto not_found;
6850 if (start + len <= found_key.offset)
6851 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006852 if (start > found_key.offset)
6853 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006854 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006855 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006856 em->len = found_key.offset - start;
6857 goto not_found_em;
6858 }
6859
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006860 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006861 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006862
Yan Zhengd899e052008-10-30 14:25:28 -04006863 if (found_type == BTRFS_FILE_EXTENT_REG ||
6864 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006865 goto insert;
6866 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006867 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006868 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006869 size_t size;
6870 size_t extent_offset;
6871 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006872
Filipe Manana7ffbb592014-06-09 03:48:05 +01006873 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006874 goto out;
Yan689f9342007-10-29 11:41:07 -04006875
Chris Mason514ac8a2014-01-03 21:07:00 -08006876 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006877 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006878 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6879 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006880 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006881 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006882 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006883 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006884 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006885 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006886 if (btrfs_file_extent_compression(leaf, item) !=
6887 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006888 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006889 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006890 if (ret) {
6891 err = ret;
6892 goto out;
6893 }
Chris Masonc8b97812008-10-29 14:49:59 -04006894 } else {
6895 map = kmap(page);
6896 read_extent_buffer(leaf, map + pg_offset, ptr,
6897 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006898 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006899 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006900 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006901 copy_size);
6902 }
Chris Masonc8b97812008-10-29 14:49:59 -04006903 kunmap(page);
6904 }
Chris Mason179e29e2007-11-01 11:28:41 -04006905 flush_dcache_page(page);
6906 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006907 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006908 if (!trans) {
6909 kunmap(page);
6910 free_extent_map(em);
6911 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006912
David Sterbab3b4aa72011-04-21 01:20:15 +02006913 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006914 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006915
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006916 if (IS_ERR(trans))
6917 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006918 goto again;
6919 }
Chris Masonc8b97812008-10-29 14:49:59 -04006920 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006921 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006922 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006923 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006924 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006925 }
Chris Masond1310b22008-01-24 16:13:08 -05006926 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006927 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006928 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006929 }
6930not_found:
6931 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006932 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006933 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006934not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006935 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006936 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006937insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006938 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006939 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006940 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006941 "bad extent! em: [%llu %llu] passed [%llu %llu]",
6942 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04006943 err = -EIO;
6944 goto out;
6945 }
Chris Masond1310b22008-01-24 16:13:08 -05006946
6947 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006948 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006949 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006950 /* it is possible that someone inserted the extent into the tree
6951 * while we had the lock dropped. It is also possible that
6952 * an overlapping map exists in the tree
6953 */
Chris Masona52d9a82007-08-27 16:49:44 -04006954 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006955 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006956
6957 ret = 0;
6958
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006959 existing = search_extent_mapping(em_tree, start, len);
6960 /*
6961 * existing will always be non-NULL, since there must be
6962 * extent causing the -EEXIST.
6963 */
Chris Mason8dff9c82015-09-19 11:28:25 -07006964 if (existing->start == em->start &&
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08006965 extent_map_end(existing) >= extent_map_end(em) &&
Chris Mason8dff9c82015-09-19 11:28:25 -07006966 em->block_start == existing->block_start) {
6967 /*
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08006968 * The existing extent map already encompasses the
6969 * entire extent map we tried to add.
Chris Mason8dff9c82015-09-19 11:28:25 -07006970 */
6971 free_extent_map(em);
6972 em = existing;
6973 err = 0;
6974
6975 } else if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08006976 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006977 /*
6978 * The existing extent map is the one nearest to
6979 * the [start, start + len) range which overlaps
6980 */
6981 err = merge_extent_mapping(em_tree, existing,
6982 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04006983 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006984 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04006985 free_extent_map(em);
6986 em = NULL;
6987 }
6988 } else {
6989 free_extent_map(em);
6990 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006991 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006992 }
Chris Masona52d9a82007-08-27 16:49:44 -04006993 }
Chris Mason890871b2009-09-02 16:24:52 -04006994 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006995out:
liubo1abe9b82011-03-24 11:18:59 +00006996
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006997 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00006998
Tsutomu Itoh527afb42015-08-19 14:55:00 +09006999 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007000 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007001 ret = btrfs_end_transaction(trans);
Chris Masond3977122009-01-05 21:25:51 -05007002 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04007003 err = ret;
7004 }
Chris Masona52d9a82007-08-27 16:49:44 -04007005 if (err) {
7006 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007007 return ERR_PTR(err);
7008 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007009 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007010 return em;
7011}
7012
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007013struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
7014 struct page *page,
7015 size_t pg_offset, u64 start, u64 len,
7016 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05007017{
7018 struct extent_map *em;
7019 struct extent_map *hole_em = NULL;
7020 u64 range_start = start;
7021 u64 end;
7022 u64 found;
7023 u64 found_end;
7024 int err = 0;
7025
7026 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7027 if (IS_ERR(em))
7028 return em;
7029 if (em) {
7030 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00007031 * if our em maps to
7032 * - a hole or
7033 * - a pre-alloc extent,
7034 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05007035 */
Liu Bof9e4fb52013-01-07 10:10:12 +00007036 if (em->block_start != EXTENT_MAP_HOLE &&
7037 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05007038 return em;
7039 else
7040 hole_em = em;
7041 }
7042
7043 /* check to see if we've wrapped (len == -1 or similar) */
7044 end = start + len;
7045 if (end < start)
7046 end = (u64)-1;
7047 else
7048 end -= 1;
7049
7050 em = NULL;
7051
7052 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007053 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007054 end, len, EXTENT_DELALLOC, 1);
7055 found_end = range_start + found;
7056 if (found_end < range_start)
7057 found_end = (u64)-1;
7058
7059 /*
7060 * we didn't find anything useful, return
7061 * the original results from get_extent()
7062 */
7063 if (range_start > end || found_end <= start) {
7064 em = hole_em;
7065 hole_em = NULL;
7066 goto out;
7067 }
7068
7069 /* adjust the range_start to make sure it doesn't
7070 * go backwards from the start they passed in
7071 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307072 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007073 found = found_end - range_start;
7074
7075 if (found > 0) {
7076 u64 hole_start = start;
7077 u64 hole_len = len;
7078
David Sterba172ddd62011-04-21 00:48:27 +02007079 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007080 if (!em) {
7081 err = -ENOMEM;
7082 goto out;
7083 }
7084 /*
7085 * when btrfs_get_extent can't find anything it
7086 * returns one huge hole
7087 *
7088 * make sure what it found really fits our range, and
7089 * adjust to make sure it is based on the start from
7090 * the caller
7091 */
7092 if (hole_em) {
7093 u64 calc_end = extent_map_end(hole_em);
7094
7095 if (calc_end <= start || (hole_em->start > end)) {
7096 free_extent_map(hole_em);
7097 hole_em = NULL;
7098 } else {
7099 hole_start = max(hole_em->start, start);
7100 hole_len = calc_end - hole_start;
7101 }
7102 }
7103 em->bdev = NULL;
7104 if (hole_em && range_start > hole_start) {
7105 /* our hole starts before our delalloc, so we
7106 * have to return just the parts of the hole
7107 * that go until the delalloc starts
7108 */
7109 em->len = min(hole_len,
7110 range_start - hole_start);
7111 em->start = hole_start;
7112 em->orig_start = hole_start;
7113 /*
7114 * don't adjust block start at all,
7115 * it is fixed at EXTENT_MAP_HOLE
7116 */
7117 em->block_start = hole_em->block_start;
7118 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007119 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7120 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007121 } else {
7122 em->start = range_start;
7123 em->len = found;
7124 em->orig_start = range_start;
7125 em->block_start = EXTENT_MAP_DELALLOC;
7126 em->block_len = found;
7127 }
7128 } else if (hole_em) {
7129 return hole_em;
7130 }
7131out:
7132
7133 free_extent_map(hole_em);
7134 if (err) {
7135 free_extent_map(em);
7136 return ERR_PTR(err);
7137 }
7138 return em;
7139}
7140
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007141static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7142 const u64 start,
7143 const u64 len,
7144 const u64 orig_start,
7145 const u64 block_start,
7146 const u64 block_len,
7147 const u64 orig_block_len,
7148 const u64 ram_bytes,
7149 const int type)
7150{
7151 struct extent_map *em = NULL;
7152 int ret;
7153
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007154 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007155 em = create_io_em(inode, start, len, orig_start,
7156 block_start, block_len, orig_block_len,
7157 ram_bytes,
7158 BTRFS_COMPRESS_NONE, /* compress_type */
7159 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007160 if (IS_ERR(em))
7161 goto out;
7162 }
7163 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7164 len, block_len, type);
7165 if (ret) {
7166 if (em) {
7167 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007168 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007169 start + len - 1, 0);
7170 }
7171 em = ERR_PTR(ret);
7172 }
7173 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007174
7175 return em;
7176}
7177
Josef Bacik4b46fce2010-05-23 11:00:55 -04007178static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7179 u64 start, u64 len)
7180{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007181 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007182 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007183 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007184 struct btrfs_key ins;
7185 u64 alloc_hint;
7186 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007187
Josef Bacik4b46fce2010-05-23 11:00:55 -04007188 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007189 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007190 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007191 if (ret)
7192 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007193
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007194 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7195 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007196 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007197 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007198 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007199 btrfs_free_reserved_extent(fs_info, ins.objectid,
7200 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007201
Josef Bacik4b46fce2010-05-23 11:00:55 -04007202 return em;
7203}
7204
Chris Mason46bfbb52010-05-26 11:04:10 -04007205/*
7206 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7207 * block must be cow'd
7208 */
Josef Bacik00361582013-08-14 14:02:47 -04007209noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007210 u64 *orig_start, u64 *orig_block_len,
7211 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007212{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007213 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007214 struct btrfs_path *path;
7215 int ret;
7216 struct extent_buffer *leaf;
7217 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007218 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007219 struct btrfs_file_extent_item *fi;
7220 struct btrfs_key key;
7221 u64 disk_bytenr;
7222 u64 backref_offset;
7223 u64 extent_end;
7224 u64 num_bytes;
7225 int slot;
7226 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007227 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007228
Chris Mason46bfbb52010-05-26 11:04:10 -04007229 path = btrfs_alloc_path();
7230 if (!path)
7231 return -ENOMEM;
7232
David Sterbaf85b7372017-01-20 14:54:07 +01007233 ret = btrfs_lookup_file_extent(NULL, root, path,
7234 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007235 if (ret < 0)
7236 goto out;
7237
7238 slot = path->slots[0];
7239 if (ret == 1) {
7240 if (slot == 0) {
7241 /* can't find the item, must cow */
7242 ret = 0;
7243 goto out;
7244 }
7245 slot--;
7246 }
7247 ret = 0;
7248 leaf = path->nodes[0];
7249 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007250 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007251 key.type != BTRFS_EXTENT_DATA_KEY) {
7252 /* not our file or wrong item type, must cow */
7253 goto out;
7254 }
7255
7256 if (key.offset > offset) {
7257 /* Wrong offset, must cow */
7258 goto out;
7259 }
7260
7261 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7262 found_type = btrfs_file_extent_type(leaf, fi);
7263 if (found_type != BTRFS_FILE_EXTENT_REG &&
7264 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7265 /* not a regular extent, must cow */
7266 goto out;
7267 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007268
7269 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7270 goto out;
7271
Miao Xiee77751a2013-12-27 21:11:50 +08007272 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7273 if (extent_end <= offset)
7274 goto out;
7275
Chris Mason46bfbb52010-05-26 11:04:10 -04007276 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007277 if (disk_bytenr == 0)
7278 goto out;
7279
7280 if (btrfs_file_extent_compression(leaf, fi) ||
7281 btrfs_file_extent_encryption(leaf, fi) ||
7282 btrfs_file_extent_other_encoding(leaf, fi))
7283 goto out;
7284
Chris Mason46bfbb52010-05-26 11:04:10 -04007285 backref_offset = btrfs_file_extent_offset(leaf, fi);
7286
Josef Bacik7ee9e442013-06-21 16:37:03 -04007287 if (orig_start) {
7288 *orig_start = key.offset - backref_offset;
7289 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7290 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7291 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007292
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007293 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007294 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007295
7296 num_bytes = min(offset + *len, extent_end) - offset;
7297 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7298 u64 range_end;
7299
Jeff Mahoneyda170662016-06-15 09:22:56 -04007300 range_end = round_up(offset + num_bytes,
7301 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007302 ret = test_range_bit(io_tree, offset, range_end,
7303 EXTENT_DELALLOC, 0, NULL);
7304 if (ret) {
7305 ret = -EAGAIN;
7306 goto out;
7307 }
7308 }
7309
Josef Bacik1bda19e2013-10-18 12:10:36 -04007310 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007311
7312 /*
7313 * look for other files referencing this extent, if we
7314 * find any we must cow
7315 */
Josef Bacik00361582013-08-14 14:02:47 -04007316
Liu Boe4c3b2d2017-01-30 12:25:28 -08007317 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007318 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007319 if (ret) {
7320 ret = 0;
7321 goto out;
7322 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007323
7324 /*
7325 * adjust disk_bytenr and num_bytes to cover just the bytes
7326 * in this extent we are about to write. If there
7327 * are any csums in that range we have to cow in order
7328 * to keep the csums correct
7329 */
7330 disk_bytenr += backref_offset;
7331 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007332 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7333 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007334 /*
7335 * all of the above have passed, it is safe to overwrite this extent
7336 * without cow
7337 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007338 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007339 ret = 1;
7340out:
7341 btrfs_free_path(path);
7342 return ret;
7343}
7344
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007345bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7346{
7347 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7348 int found = false;
7349 void **pagep = NULL;
7350 struct page *page = NULL;
7351 int start_idx;
7352 int end_idx;
7353
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007354 start_idx = start >> PAGE_SHIFT;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007355
7356 /*
7357 * end is the last byte in the last page. end == start is legal
7358 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007359 end_idx = end >> PAGE_SHIFT;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007360
7361 rcu_read_lock();
7362
7363 /* Most of the code in this while loop is lifted from
7364 * find_get_page. It's been modified to begin searching from a
7365 * page and return just the first page found in that range. If the
7366 * found idx is less than or equal to the end idx then we know that
7367 * a page exists. If no pages are found or if those pages are
7368 * outside of the range then we're fine (yay!) */
7369 while (page == NULL &&
7370 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7371 page = radix_tree_deref_slot(pagep);
7372 if (unlikely(!page))
7373 break;
7374
7375 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007376 if (radix_tree_deref_retry(page)) {
7377 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007378 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007379 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007380 /*
7381 * Otherwise, shmem/tmpfs must be storing a swap entry
7382 * here as an exceptional entry: so return it without
7383 * attempting to raise page count.
7384 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007385 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007386 break; /* TODO: Is this relevant for this use case? */
7387 }
7388
Filipe Manana91405152014-06-05 13:22:24 +01007389 if (!page_cache_get_speculative(page)) {
7390 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007391 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007392 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007393
7394 /*
7395 * Has the page moved?
7396 * This is part of the lockless pagecache protocol. See
7397 * include/linux/pagemap.h for details.
7398 */
7399 if (unlikely(page != *pagep)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007400 put_page(page);
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007401 page = NULL;
7402 }
7403 }
7404
7405 if (page) {
7406 if (page->index <= end_idx)
7407 found = true;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007408 put_page(page);
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007409 }
7410
7411 rcu_read_unlock();
7412 return found;
7413}
7414
Josef Bacikeb838e72012-07-31 16:28:48 -04007415static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7416 struct extent_state **cached_state, int writing)
7417{
7418 struct btrfs_ordered_extent *ordered;
7419 int ret = 0;
7420
7421 while (1) {
7422 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007423 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007424 /*
7425 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007426 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007427 * extents in this range.
7428 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007429 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007430 lockend - lockstart + 1);
7431
7432 /*
7433 * We need to make sure there are no buffered pages in this
7434 * range either, we could have raced between the invalidate in
7435 * generic_file_direct_write and locking the extent. The
7436 * invalidate needs to happen so that reads after a write do not
7437 * get stale data.
7438 */
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007439 if (!ordered &&
7440 (!writing ||
7441 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007442 break;
7443
7444 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7445 cached_state, GFP_NOFS);
7446
7447 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007448 /*
7449 * If we are doing a DIO read and the ordered extent we
7450 * found is for a buffered write, we can not wait for it
7451 * to complete and retry, because if we do so we can
7452 * deadlock with concurrent buffered writes on page
7453 * locks. This happens only if our DIO read covers more
7454 * than one extent map, if at this point has already
7455 * created an ordered extent for a previous extent map
7456 * and locked its range in the inode's io tree, and a
7457 * concurrent write against that previous extent map's
7458 * range and this range started (we unlock the ranges
7459 * in the io tree only when the bios complete and
7460 * buffered writes always lock pages before attempting
7461 * to lock range in the io tree).
7462 */
7463 if (writing ||
7464 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7465 btrfs_start_ordered_extent(inode, ordered, 1);
7466 else
7467 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007468 btrfs_put_ordered_extent(ordered);
7469 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007470 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007471 * We could trigger writeback for this range (and wait
7472 * for it to complete) and then invalidate the pages for
7473 * this range (through invalidate_inode_pages2_range()),
7474 * but that can lead us to a deadlock with a concurrent
7475 * call to readpages() (a buffered read or a defrag call
7476 * triggered a readahead) on a page lock due to an
7477 * ordered dio extent we created before but did not have
7478 * yet a corresponding bio submitted (whence it can not
7479 * complete), which makes readpages() wait for that
7480 * ordered extent to complete while holding a lock on
7481 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007482 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007483 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007484 }
7485
Filipe Mananaade77022016-02-18 14:28:55 +00007486 if (ret)
7487 break;
7488
Josef Bacikeb838e72012-07-31 16:28:48 -04007489 cond_resched();
7490 }
7491
7492 return ret;
7493}
7494
Liu Bo6f9994d2017-01-31 07:50:22 -08007495/* The callers of this must take lock_extent() */
7496static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7497 u64 orig_start, u64 block_start,
7498 u64 block_len, u64 orig_block_len,
7499 u64 ram_bytes, int compress_type,
7500 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007501{
7502 struct extent_map_tree *em_tree;
7503 struct extent_map *em;
7504 struct btrfs_root *root = BTRFS_I(inode)->root;
7505 int ret;
7506
Liu Bo6f9994d2017-01-31 07:50:22 -08007507 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7508 type == BTRFS_ORDERED_COMPRESSED ||
7509 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007510 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007511
Josef Bacik69ffb542012-09-11 15:40:07 -04007512 em_tree = &BTRFS_I(inode)->extent_tree;
7513 em = alloc_extent_map();
7514 if (!em)
7515 return ERR_PTR(-ENOMEM);
7516
7517 em->start = start;
7518 em->orig_start = orig_start;
7519 em->len = len;
7520 em->block_len = block_len;
7521 em->block_start = block_start;
7522 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007523 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007524 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007525 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007526 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007527 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007528 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007529 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007530 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7531 em->compress_type = compress_type;
7532 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007533
7534 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007535 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007536 em->start + em->len - 1, 0);
7537 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007538 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007539 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007540 /*
7541 * The caller has taken lock_extent(), who could race with us
7542 * to add em?
7543 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007544 } while (ret == -EEXIST);
7545
7546 if (ret) {
7547 free_extent_map(em);
7548 return ERR_PTR(ret);
7549 }
7550
Liu Bo6f9994d2017-01-31 07:50:22 -08007551 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007552 return em;
7553}
7554
Filipe Manana9c9464c2015-11-04 09:52:04 +00007555static void adjust_dio_outstanding_extents(struct inode *inode,
7556 struct btrfs_dio_data *dio_data,
7557 const u64 len)
7558{
David Sterba823bb202017-01-04 11:09:51 +01007559 unsigned num_extents = count_max_extents(len);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007560
Filipe Manana9c9464c2015-11-04 09:52:04 +00007561 /*
7562 * If we have an outstanding_extents count still set then we're
7563 * within our reservation, otherwise we need to adjust our inode
7564 * counter appropriately.
7565 */
Liu Boc2931662016-12-22 17:13:54 -08007566 if (dio_data->outstanding_extents >= num_extents) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007567 dio_data->outstanding_extents -= num_extents;
7568 } else {
Liu Boc2931662016-12-22 17:13:54 -08007569 /*
7570 * If dio write length has been split due to no large enough
7571 * contiguous space, we need to compensate our inode counter
7572 * appropriately.
7573 */
7574 u64 num_needed = num_extents - dio_data->outstanding_extents;
7575
Filipe Manana9c9464c2015-11-04 09:52:04 +00007576 spin_lock(&BTRFS_I(inode)->lock);
Liu Boc2931662016-12-22 17:13:54 -08007577 BTRFS_I(inode)->outstanding_extents += num_needed;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007578 spin_unlock(&BTRFS_I(inode)->lock);
7579 }
7580}
7581
Josef Bacik4b46fce2010-05-23 11:00:55 -04007582static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7583 struct buffer_head *bh_result, int create)
7584{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007585 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007586 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007587 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307588 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007589 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007590 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007591 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007592 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007593 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007594
Miao Xie172a5042013-02-21 02:48:22 -07007595 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007596 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007597 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007598 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007599
Josef Bacikc3298612012-08-03 16:49:19 -04007600 lockstart = start;
7601 lockend = start + len - 1;
7602
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007603 if (current->journal_info) {
7604 /*
7605 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007606 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007607 * confused.
7608 */
chandan50745b02015-08-28 21:10:13 +05307609 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007610 current->journal_info = NULL;
7611 }
7612
Josef Bacikeb838e72012-07-31 16:28:48 -04007613 /*
7614 * If this errors out it's because we couldn't invalidate pagecache for
7615 * this range and we need to fallback to buffered.
7616 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007617 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7618 create)) {
7619 ret = -ENOTBLK;
7620 goto err;
7621 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007622
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007623 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007624 if (IS_ERR(em)) {
7625 ret = PTR_ERR(em);
7626 goto unlock_err;
7627 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007628
7629 /*
7630 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7631 * io. INLINE is special, and we could probably kludge it in here, but
7632 * it's still buffered so for safety lets just fall back to the generic
7633 * buffered path.
7634 *
7635 * For COMPRESSED we _have_ to read the entire extent in so we can
7636 * decompress it, so there will be buffering required no matter what we
7637 * do, so go ahead and fallback to buffered.
7638 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007639 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007640 * to buffered IO. Don't blame me, this is the price we pay for using
7641 * the generic code.
7642 */
7643 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7644 em->block_start == EXTENT_MAP_INLINE) {
7645 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007646 ret = -ENOTBLK;
7647 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007648 }
7649
7650 /* Just a good old fashioned hole, return */
7651 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7652 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7653 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007654 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007655 }
7656
7657 /*
7658 * We don't allocate a new extent in the following cases
7659 *
7660 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7661 * existing extent.
7662 * 2) The extent is marked as PREALLOC. We're good to go here and can
7663 * just use the extent.
7664 *
7665 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007666 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007667 len = min(len, em->len - (start - em->start));
7668 lockstart = start + len;
7669 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007670 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007671
7672 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7673 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7674 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007675 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007676 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007677
7678 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7679 type = BTRFS_ORDERED_PREALLOC;
7680 else
7681 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007682 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007683 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007684
Josef Bacik00361582013-08-14 14:02:47 -04007685 if (can_nocow_extent(inode, start, &len, &orig_start,
Filipe Mananaf78c4362016-05-09 13:15:41 +01007686 &orig_block_len, &ram_bytes) == 1 &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007687 btrfs_inc_nocow_writers(fs_info, block_start)) {
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007688 struct extent_map *em2;
Filipe Manana0b901912016-05-09 13:15:27 +01007689
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007690 em2 = btrfs_create_dio_extent(inode, start, len,
7691 orig_start, block_start,
7692 len, orig_block_len,
7693 ram_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007694 btrfs_dec_nocow_writers(fs_info, block_start);
Josef Bacik69ffb542012-09-11 15:40:07 -04007695 if (type == BTRFS_ORDERED_PREALLOC) {
7696 free_extent_map(em);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007697 em = em2;
Josef Bacik69ffb542012-09-11 15:40:07 -04007698 }
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007699 if (em2 && IS_ERR(em2)) {
7700 ret = PTR_ERR(em2);
Josef Bacikeb838e72012-07-31 16:28:48 -04007701 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007702 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08007703 /*
7704 * For inode marked NODATACOW or extent marked PREALLOC,
7705 * use the existing or preallocated extent, so does not
7706 * need to adjust btrfs_space_info's bytes_may_use.
7707 */
7708 btrfs_free_reserved_data_space_noquota(inode,
7709 start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04007710 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007711 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007712 }
Josef Bacik00361582013-08-14 14:02:47 -04007713
Chris Mason46bfbb52010-05-26 11:04:10 -04007714 /*
7715 * this will cow the extent, reset the len in case we changed
7716 * it above
7717 */
7718 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007719 free_extent_map(em);
7720 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007721 if (IS_ERR(em)) {
7722 ret = PTR_ERR(em);
7723 goto unlock_err;
7724 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007725 len = min(len, em->len - (start - em->start));
7726unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007727 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7728 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007729 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007730 bh_result->b_bdev = em->bdev;
7731 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007732 if (create) {
7733 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7734 set_buffer_new(bh_result);
7735
7736 /*
7737 * Need to update the i_size under the extent lock so buffered
7738 * readers will get the updated i_size when we unlock.
7739 */
Liu Bo4aaedfb2016-12-14 22:36:05 -08007740 if (!dio_data->overwrite && start + len > i_size_read(inode))
Josef Bacikc3473e82012-06-19 10:59:00 -04007741 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007742
Filipe Manana9c9464c2015-11-04 09:52:04 +00007743 adjust_dio_outstanding_extents(inode, dio_data, len);
chandan50745b02015-08-28 21:10:13 +05307744 WARN_ON(dio_data->reserve < len);
7745 dio_data->reserve -= len;
Filipe Mananaf28a4922015-12-08 19:23:20 +00007746 dio_data->unsubmitted_oe_range_end = start + len;
chandan50745b02015-08-28 21:10:13 +05307747 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007748 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007749
Josef Bacikeb838e72012-07-31 16:28:48 -04007750 /*
7751 * In the case of write we need to clear and unlock the entire range,
7752 * in the case of read we need to unlock only the end area that we
7753 * aren't using if there is any left over space.
7754 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007755 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007756 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7757 lockend, unlock_bits, 1, 0,
7758 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007759 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007760 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007761 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007762
Josef Bacik4b46fce2010-05-23 11:00:55 -04007763 free_extent_map(em);
7764
7765 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007766
7767unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007768 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7769 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007770err:
chandan50745b02015-08-28 21:10:13 +05307771 if (dio_data)
7772 current->journal_info = dio_data;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007773 /*
7774 * Compensate the delalloc release we do in btrfs_direct_IO() when we
7775 * write less data then expected, so that we don't underflow our inode's
7776 * outstanding extents counter.
7777 */
7778 if (create && dio_data)
7779 adjust_dio_outstanding_extents(inode, dio_data, len);
7780
Josef Bacikeb838e72012-07-31 16:28:48 -04007781 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007782}
7783
Miao Xie8b110e32014-09-12 18:44:03 +08007784static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
Mike Christie81a75f672016-06-05 14:31:54 -05007785 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007786{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007787 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007788 int ret;
7789
Mike Christie37226b22016-06-05 14:31:52 -05007790 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007791
7792 bio_get(bio);
7793
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007794 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007795 if (ret)
7796 goto err;
7797
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007798 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007799err:
7800 bio_put(bio);
7801 return ret;
7802}
7803
7804static int btrfs_check_dio_repairable(struct inode *inode,
7805 struct bio *failed_bio,
7806 struct io_failure_record *failrec,
7807 int failed_mirror)
7808{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007809 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007810 int num_copies;
7811
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007812 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007813 if (num_copies == 1) {
7814 /*
7815 * we only have a single copy of the data, so don't bother with
7816 * all the retry and error correction code that follows. no
7817 * matter what the error is, it is very likely to persist.
7818 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007819 btrfs_debug(fs_info,
7820 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7821 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007822 return 0;
7823 }
7824
7825 failrec->failed_mirror = failed_mirror;
7826 failrec->this_mirror++;
7827 if (failrec->this_mirror == failed_mirror)
7828 failrec->this_mirror++;
7829
7830 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007831 btrfs_debug(fs_info,
7832 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7833 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007834 return 0;
7835 }
7836
7837 return 1;
7838}
7839
7840static int dio_read_error(struct inode *inode, struct bio *failed_bio,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307841 struct page *page, unsigned int pgoff,
7842 u64 start, u64 end, int failed_mirror,
7843 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007844{
7845 struct io_failure_record *failrec;
7846 struct bio *bio;
7847 int isector;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007848 int read_mode = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08007849 int ret;
7850
Mike Christie37226b22016-06-05 14:31:52 -05007851 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007852
7853 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7854 if (ret)
7855 return ret;
7856
7857 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7858 failed_mirror);
7859 if (!ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02007860 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007861 return -EIO;
7862 }
7863
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307864 if ((failed_bio->bi_vcnt > 1)
7865 || (failed_bio->bi_io_vec->bv_len
Jeff Mahoneyda170662016-06-15 09:22:56 -04007866 > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007867 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007868
7869 isector = start - btrfs_io_bio(failed_bio)->logical;
7870 isector >>= inode->i_sb->s_blocksize_bits;
7871 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307872 pgoff, isector, repair_endio, repair_arg);
Miao Xie8b110e32014-09-12 18:44:03 +08007873 if (!bio) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02007874 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007875 return -EIO;
7876 }
Mike Christie37226b22016-06-05 14:31:52 -05007877 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie8b110e32014-09-12 18:44:03 +08007878
7879 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7880 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7881 read_mode, failrec->this_mirror, failrec->in_validation);
7882
Mike Christie81a75f672016-06-05 14:31:54 -05007883 ret = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007884 if (ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02007885 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007886 bio_put(bio);
7887 }
7888
7889 return ret;
7890}
7891
7892struct btrfs_retry_complete {
7893 struct completion done;
7894 struct inode *inode;
7895 u64 start;
7896 int uptodate;
7897};
7898
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007899static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007900{
7901 struct btrfs_retry_complete *done = bio->bi_private;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307902 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007903 struct bio_vec *bvec;
7904 int i;
7905
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007906 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007907 goto end;
7908
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307909 ASSERT(bio->bi_vcnt == 1);
7910 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007911 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307912
Miao Xie8b110e32014-09-12 18:44:03 +08007913 done->uptodate = 1;
7914 bio_for_each_segment_all(bvec, bio, i)
Nikolay Borisovb30cb442017-02-20 13:50:56 +02007915 clean_io_failure(BTRFS_I(done->inode), done->start, bvec->bv_page, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007916end:
7917 complete(&done->done);
7918 bio_put(bio);
7919}
7920
7921static int __btrfs_correct_data_nocsum(struct inode *inode,
7922 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007923{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307924 struct btrfs_fs_info *fs_info;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007925 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007926 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007927 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307928 unsigned int pgoff;
7929 u32 sectorsize;
7930 int nr_sectors;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007931 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08007932 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08007933
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307934 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007935 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307936
Miao Xiec1dc0892014-09-12 18:43:56 +08007937 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007938 done.inode = inode;
7939
7940 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307941 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
7942 pgoff = bvec->bv_offset;
7943
7944next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007945 done.uptodate = 0;
7946 done.start = start;
7947 init_completion(&done.done);
7948
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307949 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
7950 pgoff, start, start + sectorsize - 1,
7951 io_bio->mirror_num,
7952 btrfs_retry_endio_nocsum, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08007953 if (ret)
7954 return ret;
7955
7956 wait_for_completion(&done.done);
7957
7958 if (!done.uptodate) {
7959 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307960 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08007961 }
7962
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307963 start += sectorsize;
7964
7965 if (nr_sectors--) {
7966 pgoff += sectorsize;
7967 goto next_block_or_try_again;
7968 }
Miao Xie8b110e32014-09-12 18:44:03 +08007969 }
7970
7971 return 0;
7972}
7973
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007974static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007975{
7976 struct btrfs_retry_complete *done = bio->bi_private;
7977 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307978 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007979 struct bio_vec *bvec;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307980 u64 start;
Miao Xie8b110e32014-09-12 18:44:03 +08007981 int uptodate;
7982 int ret;
7983 int i;
7984
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007985 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007986 goto end;
7987
7988 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307989
7990 start = done->start;
7991
7992 ASSERT(bio->bi_vcnt == 1);
7993 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007994 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307995
Miao Xie8b110e32014-09-12 18:44:03 +08007996 bio_for_each_segment_all(bvec, bio, i) {
7997 ret = __readpage_endio_check(done->inode, io_bio, i,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307998 bvec->bv_page, bvec->bv_offset,
7999 done->start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08008000 if (!ret)
Nikolay Borisovb30cb442017-02-20 13:50:56 +02008001 clean_io_failure(BTRFS_I(done->inode), done->start,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308002 bvec->bv_page, bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08008003 else
8004 uptodate = 0;
8005 }
8006
8007 done->uptodate = uptodate;
8008end:
8009 complete(&done->done);
8010 bio_put(bio);
8011}
8012
8013static int __btrfs_subio_endio_read(struct inode *inode,
8014 struct btrfs_io_bio *io_bio, int err)
8015{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308016 struct btrfs_fs_info *fs_info;
Miao Xie8b110e32014-09-12 18:44:03 +08008017 struct bio_vec *bvec;
8018 struct btrfs_retry_complete done;
8019 u64 start;
8020 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308021 u32 sectorsize;
8022 int nr_sectors;
8023 unsigned int pgoff;
8024 int csum_pos;
Miao Xie8b110e32014-09-12 18:44:03 +08008025 int i;
8026 int ret;
8027
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308028 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008029 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308030
Miao Xie8b110e32014-09-12 18:44:03 +08008031 err = 0;
8032 start = io_bio->logical;
8033 done.inode = inode;
8034
Miao Xiec1dc0892014-09-12 18:43:56 +08008035 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308036 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8037
8038 pgoff = bvec->bv_offset;
8039next_block:
8040 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
8041 ret = __readpage_endio_check(inode, io_bio, csum_pos,
8042 bvec->bv_page, pgoff, start,
8043 sectorsize);
Miao Xie8b110e32014-09-12 18:44:03 +08008044 if (likely(!ret))
8045 goto next;
8046try_again:
8047 done.uptodate = 0;
8048 done.start = start;
8049 init_completion(&done.done);
8050
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308051 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8052 pgoff, start, start + sectorsize - 1,
8053 io_bio->mirror_num,
8054 btrfs_retry_endio, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008055 if (ret) {
8056 err = ret;
8057 goto next;
8058 }
8059
8060 wait_for_completion(&done.done);
8061
8062 if (!done.uptodate) {
8063 /* We might have another mirror, so try again */
8064 goto try_again;
8065 }
8066next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308067 offset += sectorsize;
8068 start += sectorsize;
8069
8070 ASSERT(nr_sectors);
8071
8072 if (--nr_sectors) {
8073 pgoff += sectorsize;
8074 goto next_block;
8075 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008076 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008077
8078 return err;
8079}
8080
Miao Xie8b110e32014-09-12 18:44:03 +08008081static int btrfs_subio_endio_read(struct inode *inode,
8082 struct btrfs_io_bio *io_bio, int err)
8083{
8084 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8085
8086 if (skip_csum) {
8087 if (unlikely(err))
8088 return __btrfs_correct_data_nocsum(inode, io_bio);
8089 else
8090 return 0;
8091 } else {
8092 return __btrfs_subio_endio_read(inode, io_bio, err);
8093 }
8094}
8095
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008096static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008097{
8098 struct btrfs_dio_private *dip = bio->bi_private;
8099 struct inode *inode = dip->inode;
8100 struct bio *dio_bio;
8101 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008102 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08008103
Miao Xie8b110e32014-09-12 18:44:03 +08008104 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
8105 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008106
Josef Bacik4b46fce2010-05-23 11:00:55 -04008107 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008108 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008109 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008110
Josef Bacik4b46fce2010-05-23 11:00:55 -04008111 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008112
Filipe Manana1636d1d2016-02-15 16:20:26 +00008113 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008114 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08008115
8116 if (io_bio->end_io)
8117 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04008118 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008119}
8120
Filipe Manana14543772015-11-24 16:23:54 +00008121static void btrfs_endio_direct_write_update_ordered(struct inode *inode,
8122 const u64 offset,
8123 const u64 bytes,
8124 const int uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008125{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008126 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008127 struct btrfs_ordered_extent *ordered = NULL;
Filipe Manana14543772015-11-24 16:23:54 +00008128 u64 ordered_offset = offset;
8129 u64 ordered_bytes = bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008130 int ret;
8131
Chris Mason163cf092010-11-28 19:56:33 -05008132again:
8133 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8134 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008135 ordered_bytes,
Filipe Manana14543772015-11-24 16:23:54 +00008136 uptodate);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008137 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008138 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008139
Liu Bo9e0af232014-08-15 23:36:53 +08008140 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
8141 finish_ordered_fn, NULL, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008142 btrfs_queue_work(fs_info->endio_write_workers, &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008143out_test:
8144 /*
8145 * our bio might span multiple ordered extents. If we haven't
8146 * completed the accounting for the whole dio, go back and try again
8147 */
Filipe Manana14543772015-11-24 16:23:54 +00008148 if (ordered_offset < offset + bytes) {
8149 ordered_bytes = offset + bytes - ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008150 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008151 goto again;
8152 }
Filipe Manana14543772015-11-24 16:23:54 +00008153}
8154
8155static void btrfs_endio_direct_write(struct bio *bio)
8156{
8157 struct btrfs_dio_private *dip = bio->bi_private;
8158 struct bio *dio_bio = dip->dio_bio;
8159
8160 btrfs_endio_direct_write_update_ordered(dip->inode,
8161 dip->logical_offset,
8162 dip->bytes,
8163 !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008164
Josef Bacik4b46fce2010-05-23 11:00:55 -04008165 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008166
Filipe Manana1636d1d2016-02-15 16:20:26 +00008167 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008168 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04008169 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008170}
8171
Mike Christie81a75f672016-06-05 14:31:54 -05008172static int __btrfs_submit_bio_start_direct_io(struct inode *inode,
Chris Masoneaf25d92010-05-25 09:48:28 -04008173 struct bio *bio, int mirror_num,
8174 unsigned long bio_flags, u64 offset)
8175{
8176 int ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008177 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008178 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008179 return 0;
8180}
8181
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008182static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008183{
8184 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008185 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008186
Miao Xie8b110e32014-09-12 18:44:03 +08008187 if (err)
8188 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008189 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008190 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8191 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008192 (unsigned long long)bio->bi_iter.bi_sector,
8193 bio->bi_iter.bi_size, err);
8194
8195 if (dip->subio_endio)
8196 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008197
8198 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008199 dip->errors = 1;
8200
8201 /*
8202 * before atomic variable goto zero, we must make sure
8203 * dip->errors is perceived to be set.
8204 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008205 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008206 }
8207
8208 /* if there are more bios still pending for this dio, just exit */
8209 if (!atomic_dec_and_test(&dip->pending_bios))
8210 goto out;
8211
Chris Mason9be33952013-05-17 18:30:14 -04008212 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008213 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008214 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008215 dip->dio_bio->bi_error = 0;
8216 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008217 }
8218out:
8219 bio_put(bio);
8220}
8221
8222static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8223 u64 first_sector, gfp_t gfp_flags)
8224{
Chris Masonda2f0f72015-07-02 13:57:22 -07008225 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008226 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008227 if (bio)
8228 bio_associate_current(bio);
8229 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008230}
8231
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008232static inline int btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008233 struct btrfs_dio_private *dip,
8234 struct bio *bio,
8235 u64 file_offset)
8236{
8237 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8238 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8239 int ret;
8240
8241 /*
8242 * We load all the csum data we need when we submit
8243 * the first bio to reduce the csum tree search and
8244 * contention.
8245 */
8246 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008247 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008248 file_offset);
8249 if (ret)
8250 return ret;
8251 }
8252
8253 if (bio == dip->orig_bio)
8254 return 0;
8255
8256 file_offset -= dip->logical_offset;
8257 file_offset >>= inode->i_sb->s_blocksize_bits;
8258 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8259
8260 return 0;
8261}
8262
Miao Xiee65e1532010-11-22 03:04:43 +00008263static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
Mike Christie81a75f672016-06-05 14:31:54 -05008264 u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008265 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008266{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008267 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008268 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008269 bool write = bio_op(bio) == REQ_OP_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00008270 int ret;
8271
Josef Bacikb812ce22012-11-16 13:56:32 -05008272 if (async_submit)
8273 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8274
Miao Xiee65e1532010-11-22 03:04:43 +00008275 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008276
8277 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008278 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008279 if (ret)
8280 goto err;
8281 }
Miao Xiee65e1532010-11-22 03:04:43 +00008282
Josef Bacik1ae39932011-04-06 14:41:34 -04008283 if (skip_sum)
8284 goto map;
8285
8286 if (write && async_submit) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008287 ret = btrfs_wq_submit_bio(fs_info, inode, bio, 0, 0,
8288 file_offset,
8289 __btrfs_submit_bio_start_direct_io,
8290 __btrfs_submit_bio_done);
Miao Xiee65e1532010-11-22 03:04:43 +00008291 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008292 } else if (write) {
8293 /*
8294 * If we aren't doing async submit, calculate the csum of the
8295 * bio now.
8296 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008297 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008298 if (ret)
8299 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008300 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008301 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008302 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008303 if (ret)
8304 goto err;
8305 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008306map:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008307 ret = btrfs_map_bio(fs_info, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008308err:
8309 bio_put(bio);
8310 return ret;
8311}
8312
Mike Christie81a75f672016-06-05 14:31:54 -05008313static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip,
Miao Xiee65e1532010-11-22 03:04:43 +00008314 int skip_sum)
8315{
8316 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008317 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008318 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008319 struct bio *bio;
8320 struct bio *orig_bio = dip->orig_bio;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008321 struct bio_vec *bvec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008322 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008323 u64 file_offset = dip->logical_offset;
8324 u64 submit_len = 0;
8325 u64 map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008326 u32 blocksize = fs_info->sectorsize;
Josef Bacik1ae39932011-04-06 14:41:34 -04008327 int async_submit = 0;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308328 int nr_sectors;
8329 int ret;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008330 int i, j;
Miao Xiee65e1532010-11-22 03:04:43 +00008331
Kent Overstreet4f024f32013-10-11 15:44:27 -07008332 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008333 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8334 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008335 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008336 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008337
Kent Overstreet4f024f32013-10-11 15:44:27 -07008338 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008339 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008340 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008341 goto submit;
8342 }
8343
David Woodhouse53b381b2013-01-29 18:40:14 -05008344 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008345 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008346 async_submit = 0;
8347 else
8348 async_submit = 1;
8349
Josef Bacik02f57c72011-04-06 14:25:44 -04008350 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8351 if (!bio)
8352 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008353
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008354 bio->bi_opf = orig_bio->bi_opf;
Josef Bacik02f57c72011-04-06 14:25:44 -04008355 bio->bi_private = dip;
8356 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008357 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008358 atomic_inc(&dip->pending_bios);
8359
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008360 bio_for_each_segment_all(bvec, orig_bio, j) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008361 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308362 i = 0;
8363next_block:
8364 if (unlikely(map_length < submit_len + blocksize ||
8365 bio_add_page(bio, bvec->bv_page, blocksize,
8366 bvec->bv_offset + (i * blocksize)) < blocksize)) {
Miao Xiee65e1532010-11-22 03:04:43 +00008367 /*
8368 * inc the count before we submit the bio so
8369 * we know the end IO handler won't happen before
8370 * we inc the count. Otherwise, the dip might get freed
8371 * before we're done setting it up
8372 */
8373 atomic_inc(&dip->pending_bios);
Mike Christie81a75f672016-06-05 14:31:54 -05008374 ret = __btrfs_submit_dio_bio(bio, inode,
Miao Xiee65e1532010-11-22 03:04:43 +00008375 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008376 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008377 if (ret) {
8378 bio_put(bio);
8379 atomic_dec(&dip->pending_bios);
8380 goto out_err;
8381 }
8382
Miao Xiee65e1532010-11-22 03:04:43 +00008383 start_sector += submit_len >> 9;
8384 file_offset += submit_len;
8385
8386 submit_len = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008387
8388 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8389 start_sector, GFP_NOFS);
8390 if (!bio)
8391 goto out_err;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008392 bio->bi_opf = orig_bio->bi_opf;
Miao Xiee65e1532010-11-22 03:04:43 +00008393 bio->bi_private = dip;
8394 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008395 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008396
Kent Overstreet4f024f32013-10-11 15:44:27 -07008397 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008398 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008399 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008400 &map_length, NULL, 0);
8401 if (ret) {
8402 bio_put(bio);
8403 goto out_err;
8404 }
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308405
8406 goto next_block;
Miao Xiee65e1532010-11-22 03:04:43 +00008407 } else {
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308408 submit_len += blocksize;
8409 if (--nr_sectors) {
8410 i++;
8411 goto next_block;
8412 }
Miao Xiee65e1532010-11-22 03:04:43 +00008413 }
8414 }
8415
Josef Bacik02f57c72011-04-06 14:25:44 -04008416submit:
Mike Christie81a75f672016-06-05 14:31:54 -05008417 ret = __btrfs_submit_dio_bio(bio, inode, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008418 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008419 if (!ret)
8420 return 0;
8421
8422 bio_put(bio);
8423out_err:
8424 dip->errors = 1;
8425 /*
8426 * before atomic variable goto zero, we must
8427 * make sure dip->errors is perceived to be set.
8428 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008429 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008430 if (atomic_dec_and_test(&dip->pending_bios))
8431 bio_io_error(dip->orig_bio);
8432
8433 /* bio_end_io() will handle error, so we needn't return it */
8434 return 0;
8435}
8436
Mike Christie8a4c1e42016-06-05 14:31:50 -05008437static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8438 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008439{
Filipe Manana61de7182015-07-01 12:13:10 +01008440 struct btrfs_dio_private *dip = NULL;
8441 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008442 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008443 int skip_sum;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008444 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008445 int ret = 0;
8446
8447 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8448
Chris Mason9be33952013-05-17 18:30:14 -04008449 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008450 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008451 ret = -ENOMEM;
8452 goto free_ordered;
8453 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008454
Miao Xiec1dc0892014-09-12 18:43:56 +08008455 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008456 if (!dip) {
8457 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008458 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008459 }
8460
8461 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008462 dip->inode = inode;
8463 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008464 dip->bytes = dio_bio->bi_iter.bi_size;
8465 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008466 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008467 dip->orig_bio = io_bio;
8468 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008469 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008470 btrfs_bio = btrfs_io_bio(io_bio);
8471 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008472
Miao Xiec1dc0892014-09-12 18:43:56 +08008473 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008474 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008475 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008476 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008477 dip->subio_endio = btrfs_subio_endio_read;
8478 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008479
Filipe Mananaf28a4922015-12-08 19:23:20 +00008480 /*
8481 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8482 * even if we fail to submit a bio, because in such case we do the
8483 * corresponding error handling below and it must not be done a second
8484 * time by btrfs_direct_IO().
8485 */
8486 if (write) {
8487 struct btrfs_dio_data *dio_data = current->journal_info;
8488
8489 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8490 dip->bytes;
8491 dio_data->unsubmitted_oe_range_start =
8492 dio_data->unsubmitted_oe_range_end;
8493 }
8494
Mike Christie81a75f672016-06-05 14:31:54 -05008495 ret = btrfs_submit_direct_hook(dip, skip_sum);
Miao Xiee65e1532010-11-22 03:04:43 +00008496 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008497 return;
Chris Mason9be33952013-05-17 18:30:14 -04008498
Miao Xie23ea8e52014-09-12 18:43:54 +08008499 if (btrfs_bio->end_io)
8500 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008501
Josef Bacik4b46fce2010-05-23 11:00:55 -04008502free_ordered:
8503 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008504 * If we arrived here it means either we failed to submit the dip
8505 * or we either failed to clone the dio_bio or failed to allocate the
8506 * dip. If we cloned the dio_bio and allocated the dip, we can just
8507 * call bio_endio against our io_bio so that we get proper resource
8508 * cleanup if we fail to submit the dip, otherwise, we must do the
8509 * same as btrfs_endio_direct_[write|read] because we can't call these
8510 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008511 */
Filipe Manana61de7182015-07-01 12:13:10 +01008512 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008513 io_bio->bi_error = -EIO;
8514 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008515 /*
8516 * The end io callbacks free our dip, do the final put on io_bio
8517 * and all the cleanup and final put for dio_bio (through
8518 * dio_end_io()).
8519 */
8520 dip = NULL;
8521 io_bio = NULL;
8522 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008523 if (write)
8524 btrfs_endio_direct_write_update_ordered(inode,
8525 file_offset,
8526 dio_bio->bi_iter.bi_size,
8527 0);
8528 else
Filipe Manana61de7182015-07-01 12:13:10 +01008529 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8530 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008531
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008532 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008533 /*
8534 * Releases and cleans up our dio_bio, no need to bio_put()
8535 * nor bio_endio()/bio_io_error() against dio_bio.
8536 */
8537 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008538 }
Filipe Manana61de7182015-07-01 12:13:10 +01008539 if (io_bio)
8540 bio_put(io_bio);
8541 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008542}
8543
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008544static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
8545 struct kiocb *iocb,
8546 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008547{
8548 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008549 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008550 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008551 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008552
8553 if (offset & blocksize_mask)
8554 goto out;
8555
Al Viro28060d52014-03-22 05:15:17 -04008556 if (iov_iter_alignment(iter) & blocksize_mask)
8557 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008558
Al Viro28060d52014-03-22 05:15:17 -04008559 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008560 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008561 return 0;
8562 /*
8563 * Check to make sure we don't have duplicate iov_base's in this
8564 * iovec, if so return EINVAL, otherwise we'll get csum errors
8565 * when reading back.
8566 */
8567 for (seg = 0; seg < iter->nr_segs; seg++) {
8568 for (i = seg + 1; i < iter->nr_segs; i++) {
8569 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008570 goto out;
8571 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008572 }
8573 retval = 0;
8574out:
8575 return retval;
8576}
Josef Bacikeb838e72012-07-31 16:28:48 -04008577
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008578static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008579{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008580 struct file *file = iocb->ki_filp;
8581 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008582 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308583 struct btrfs_dio_data dio_data = { 0 };
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008584 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008585 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008586 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008587 bool wakeup = true;
8588 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008589 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008590
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008591 if (check_direct_IO(fs_info, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008592 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008593
Jens Axboefe0f07d2015-04-15 17:05:48 -06008594 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008595 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008596
Josef Bacik0e267c42013-07-02 10:38:02 -04008597 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008598 * The generic stuff only does filemap_write_and_wait_range, which
8599 * isn't enough if we've written compressed pages to this area, so
8600 * we need to flush the dirty pages again to make absolutely sure
8601 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008602 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008603 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008604 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8605 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008606 filemap_fdatawrite_range(inode->i_mapping, offset,
8607 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008608
Omar Sandoval6f673762015-03-16 04:33:52 -07008609 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008610 /*
8611 * If the write DIO is beyond the EOF, we need update
8612 * the isize, but it is protected by i_mutex. So we can
8613 * not unlock the i_mutex at this case.
8614 */
8615 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008616 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008617 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008618 relock = true;
8619 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008620 ret = btrfs_delalloc_reserve_space(inode, offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008621 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008622 goto out;
David Sterba823bb202017-01-04 11:09:51 +01008623 dio_data.outstanding_extents = count_max_extents(count);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008624
8625 /*
8626 * We need to know how many extents we reserved so that we can
8627 * do the accounting properly if we go over the number we
8628 * originally calculated. Abuse current->journal_info for this.
8629 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008630 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008631 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008632 dio_data.unsubmitted_oe_range_start = (u64)offset;
8633 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308634 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308635 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008636 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8637 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008638 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008639 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8640 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008641 }
8642
Omar Sandoval17f8c842015-03-16 04:33:50 -07008643 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008644 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008645 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008646 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008647 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308648 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008649 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008650 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308651 if (dio_data.reserve)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008652 btrfs_delalloc_release_space(inode, offset,
8653 dio_data.reserve);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008654 /*
8655 * On error we might have left some ordered extents
8656 * without submitting corresponding bios for them, so
8657 * cleanup them up to avoid other tasks getting them
8658 * and waiting for them to complete forever.
8659 */
8660 if (dio_data.unsubmitted_oe_range_start <
8661 dio_data.unsubmitted_oe_range_end)
8662 btrfs_endio_direct_write_update_ordered(inode,
8663 dio_data.unsubmitted_oe_range_start,
8664 dio_data.unsubmitted_oe_range_end -
8665 dio_data.unsubmitted_oe_range_start,
8666 0);
Liu Boddba1bf2015-06-17 16:59:58 +08008667 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008668 btrfs_delalloc_release_space(inode, offset,
8669 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008670 }
Miao Xie38851cc2013-02-08 07:04:11 +00008671out:
Miao Xie2e60a512013-02-08 07:01:08 +00008672 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008673 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008674 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008675 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008676
8677 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008678}
8679
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008680#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8681
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008682static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8683 __u64 start, __u64 len)
8684{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008685 int ret;
8686
8687 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8688 if (ret)
8689 return ret;
8690
Chris Masonec29ed52011-02-23 16:23:20 -05008691 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008692}
8693
Chris Mason9ebefb182007-06-15 13:50:00 -04008694int btrfs_readpage(struct file *file, struct page *page)
8695{
Chris Masond1310b22008-01-24 16:13:08 -05008696 struct extent_io_tree *tree;
8697 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008698 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008699}
Chris Mason1832a6d2007-12-21 16:27:21 -05008700
Chris Mason39279cc2007-06-12 06:35:45 -04008701static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8702{
Chris Masond1310b22008-01-24 16:13:08 -05008703 struct extent_io_tree *tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008704 struct inode *inode = page->mapping->host;
8705 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008706
8707 if (current->flags & PF_MEMALLOC) {
8708 redirty_page_for_writepage(wbc, page);
8709 unlock_page(page);
8710 return 0;
8711 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008712
8713 /*
8714 * If we are under memory pressure we will call this directly from the
8715 * VM, we need to make sure we have the inode referenced for the ordered
8716 * extent. If not just return like we didn't do anything.
8717 */
8718 if (!igrab(inode)) {
8719 redirty_page_for_writepage(wbc, page);
8720 return AOP_WRITEPAGE_ACTIVATE;
8721 }
Chris Masond1310b22008-01-24 16:13:08 -05008722 tree = &BTRFS_I(page->mapping->host)->io_tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008723 ret = extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8724 btrfs_add_delayed_iput(inode);
8725 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008726}
Chris Mason39279cc2007-06-12 06:35:45 -04008727
Eric Sandeen48a3b632013-04-25 20:41:01 +00008728static int btrfs_writepages(struct address_space *mapping,
8729 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04008730{
Chris Masond1310b22008-01-24 16:13:08 -05008731 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008732
Chris Masond1310b22008-01-24 16:13:08 -05008733 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04008734 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8735}
8736
Chris Mason3ab2fb52007-11-08 10:59:22 -05008737static int
8738btrfs_readpages(struct file *file, struct address_space *mapping,
8739 struct list_head *pages, unsigned nr_pages)
8740{
Chris Masond1310b22008-01-24 16:13:08 -05008741 struct extent_io_tree *tree;
8742 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008743 return extent_readpages(tree, mapping, pages, nr_pages,
8744 btrfs_get_extent);
8745}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008746static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008747{
Chris Masond1310b22008-01-24 16:13:08 -05008748 struct extent_io_tree *tree;
8749 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008750 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008751
Chris Masond1310b22008-01-24 16:13:08 -05008752 tree = &BTRFS_I(page->mapping->host)->io_tree;
8753 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008754 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008755 if (ret == 1) {
8756 ClearPagePrivate(page);
8757 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008758 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008759 }
8760 return ret;
8761}
Chris Mason39279cc2007-06-12 06:35:45 -04008762
Chris Masone6dcd2d2008-07-17 12:53:50 -04008763static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8764{
Chris Mason98509cf2008-09-11 15:51:43 -04008765 if (PageWriteback(page) || PageDirty(page))
8766 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008767 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008768}
8769
Lukas Czernerd47992f2013-05-21 23:17:23 -04008770static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8771 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008772{
Josef Bacik5fd02042012-05-02 14:00:54 -04008773 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008774 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008775 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008776 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008777 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008778 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308779 u64 start;
8780 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008781 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008782
Chris Mason8b62b722009-09-02 16:53:46 -04008783 /*
8784 * we have the page locked, so new writeback can't start,
8785 * and the dirty bit won't be cleared while we are here.
8786 *
8787 * Wait for IO on this page so that we can safely clear
8788 * the PagePrivate2 bit and do ordered accounting
8789 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008790 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008791
Josef Bacik5fd02042012-05-02 14:00:54 -04008792 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008793 if (offset) {
8794 btrfs_releasepage(page, GFP_NOFS);
8795 return;
8796 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008797
8798 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008799 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308800again:
8801 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008802 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308803 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008804 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308805 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008806 /*
8807 * IO on this page will never be started, so we need
8808 * to account for any ordered extents now
8809 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008810 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308811 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008812 EXTENT_DIRTY | EXTENT_DELALLOC |
8813 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8814 EXTENT_DEFRAG, 1, 0, &cached_state,
8815 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008816 /*
8817 * whoever cleared the private bit is responsible
8818 * for the finish_ordered_io
8819 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008820 if (TestClearPagePrivate2(page)) {
8821 struct btrfs_ordered_inode_tree *tree;
8822 u64 new_len;
8823
8824 tree = &BTRFS_I(inode)->ordered_tree;
8825
8826 spin_lock_irq(&tree->lock);
8827 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308828 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008829 if (new_len < ordered->truncated_len)
8830 ordered->truncated_len = new_len;
8831 spin_unlock_irq(&tree->lock);
8832
8833 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308834 start,
8835 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008836 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008837 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008838 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008839 if (!inode_evicting) {
8840 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308841 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008842 &cached_state);
8843 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308844
8845 start = end + 1;
8846 if (start < page_end)
8847 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008848 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008849
Qu Wenruob9d0b382015-09-29 10:35:16 +08008850 /*
8851 * Qgroup reserved space handler
8852 * Page here will be either
8853 * 1) Already written to disk
8854 * In this case, its reserved space is released from data rsv map
8855 * and will be freed by delayed_ref handler finally.
8856 * So even we call qgroup_free_data(), it won't decrease reserved
8857 * space.
8858 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008859 * This means the reserved space should be freed here. However,
8860 * if a truncate invalidates the page (by clearing PageDirty)
8861 * and the page is accounted for while allocating extent
8862 * in btrfs_check_data_free_space() we let delayed_ref to
8863 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008864 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008865 if (PageDirty(page))
8866 btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008867 if (!inode_evicting) {
8868 clear_extent_bit(tree, page_start, page_end,
8869 EXTENT_LOCKED | EXTENT_DIRTY |
8870 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8871 EXTENT_DEFRAG, 1, 1,
8872 &cached_state, GFP_NOFS);
8873
8874 __btrfs_releasepage(page, GFP_NOFS);
8875 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008876
Chris Mason4a096752008-07-21 10:29:44 -04008877 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04008878 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04008879 ClearPagePrivate(page);
8880 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008881 put_page(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04008882 }
Chris Mason39279cc2007-06-12 06:35:45 -04008883}
8884
Chris Mason9ebefb182007-06-15 13:50:00 -04008885/*
8886 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8887 * called from a page fault handler when a page is first dirtied. Hence we must
8888 * be careful to check for EOF conditions here. We set the page up correctly
8889 * for a written page which means we get ENOSPC checking when writing into
8890 * holes and correct delalloc and unwritten extent mapping on filesystems that
8891 * support these features.
8892 *
8893 * We are not allowed to take the i_mutex here so we have to play games to
8894 * protect against truncate races as the page could now be beyond EOF. Because
8895 * vmtruncate() writes the inode size before removing pages, once we have the
8896 * page lock we can determine safely if the page is beyond EOF. If it is not
8897 * beyond EOF, then the page is guaranteed safe against truncation until we
8898 * unlock the page.
8899 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008900int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008901{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008902 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008903 struct inode *inode = file_inode(vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008904 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008905 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8906 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008907 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008908 char *kaddr;
8909 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008910 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008911 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008912 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308913 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008914 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008915 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308916 u64 end;
8917
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008918 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008919
Jan Karab2b5ef52012-06-12 16:20:45 +02008920 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008921 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008922 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308923 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008924
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308925 /*
8926 * Reserving delalloc space after obtaining the page lock can lead to
8927 * deadlock. For example, if a dirty page is locked by this function
8928 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8929 * dirty page write out, then the btrfs_writepage() function could
8930 * end up waiting indefinitely to get a lock on the page currently
8931 * being processed by btrfs_page_mkwrite() function.
8932 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008933 ret = btrfs_delalloc_reserve_space(inode, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308934 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05008935 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04008936 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008937 reserved = 1;
8938 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008939 if (ret) {
8940 if (ret == -ENOMEM)
8941 ret = VM_FAULT_OOM;
8942 else /* -ENOSPC, -EIO, etc */
8943 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008944 if (reserved)
8945 goto out;
8946 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008947 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008948
Nick Piggin56a76f82009-03-31 15:23:23 -07008949 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008950again:
Chris Mason9ebefb182007-06-15 13:50:00 -04008951 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04008952 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04008953
Chris Mason9ebefb182007-06-15 13:50:00 -04008954 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04008955 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04008956 /* page got truncated out from underneath us */
8957 goto out_unlock;
8958 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008959 wait_on_page_writeback(page);
8960
David Sterbaff13db42015-12-03 14:30:40 +01008961 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008962 set_page_extent_mapped(page);
8963
Chris Masoneb84ae02008-07-17 13:53:27 -04008964 /*
8965 * we can't set the delalloc bits if there are pending ordered
8966 * extents. Drop our locks and wait for them to finish
8967 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008968 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
8969 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008970 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00008971 unlock_extent_cached(io_tree, page_start, page_end,
8972 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008973 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04008974 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008975 btrfs_put_ordered_extent(ordered);
8976 goto again;
8977 }
8978
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008979 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04008980 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008981 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008982 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308983 end = page_start + reserved_space - 1;
8984 spin_lock(&BTRFS_I(inode)->lock);
8985 BTRFS_I(inode)->outstanding_extents++;
8986 spin_unlock(&BTRFS_I(inode)->lock);
8987 btrfs_delalloc_release_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008988 PAGE_SIZE - reserved_space);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308989 }
8990 }
8991
Josef Bacikfbf19082009-10-01 17:10:23 -04008992 /*
Liu Bo54160342016-12-13 12:15:19 -08008993 * page_mkwrite gets called when the page is firstly dirtied after it's
8994 * faulted in, but write(2) could also dirty a page and set delalloc
8995 * bits, thus in this case for space account reason, we still need to
8996 * clear any delalloc bits within this page range since we have to
8997 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04008998 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308999 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06009000 EXTENT_DIRTY | EXTENT_DELALLOC |
9001 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00009002 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04009003
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309004 ret = btrfs_set_extent_delalloc(inode, page_start, end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08009005 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009006 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009007 unlock_extent_cached(io_tree, page_start, page_end,
9008 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009009 ret = VM_FAULT_SIGBUS;
9010 goto out_unlock;
9011 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009012 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04009013
9014 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009015 if (page_start + PAGE_SIZE > size)
9016 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04009017 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009018 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009019
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009020 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009021 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009022 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009023 flush_dcache_page(page);
9024 kunmap(page);
9025 }
Chris Mason247e7432008-07-17 12:53:51 -04009026 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009027 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04009028 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04009029
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009030 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04009031 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06009032 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04009033
Josef Bacik2ac55d42010-02-03 19:33:23 +00009034 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04009035
9036out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02009037 if (!ret) {
9038 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04009039 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02009040 }
Chris Mason9ebefb182007-06-15 13:50:00 -04009041 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05009042out:
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309043 btrfs_delalloc_release_space(inode, page_start, reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009044out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02009045 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04009046 return ret;
9047}
9048
Josef Bacika41ad392011-01-31 15:30:16 -05009049static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04009050{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009051 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009052 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04009053 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04009054 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05009055 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009056 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009057 u64 mask = fs_info->sectorsize - 1;
9058 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04009059
Josef Bacik0ef8b722013-10-25 16:13:35 -04009060 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
9061 (u64)-1);
9062 if (ret)
9063 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009064
Josef Bacikfcb80c22011-05-03 10:40:22 -04009065 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04009066 * Yes ladies and gentlemen, this is indeed ugly. The fact is we have
Josef Bacikfcb80c22011-05-03 10:40:22 -04009067 * 3 things going on here
9068 *
9069 * 1) We need to reserve space for our orphan item and the space to
9070 * delete our orphan item. Lord knows we don't want to have a dangling
9071 * orphan item because we didn't reserve space to remove it.
9072 *
9073 * 2) We need to reserve space to update our inode.
9074 *
9075 * 3) We need to have something to cache all the space that is going to
9076 * be free'd up by the truncate operation, but also have some slack
9077 * space reserved in case it uses space during the truncate (thank you
9078 * very much snapshotting).
9079 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04009080 * And we need these to all be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04009081 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04009082 * we will use, so we need the truncate reservation to be separate so it
Josef Bacikfcb80c22011-05-03 10:40:22 -04009083 * doesn't end up using space reserved for updating the inode or
9084 * removing the orphan item. We also need to be able to stop the
9085 * transaction and start a new one, which means we need to be able to
9086 * update the inode several times, and we have no idea of knowing how
9087 * many times that will be, so we can't just reserve 1 item for the
Nicholas D Steeves01327612016-05-19 21:18:45 -04009088 * entirety of the operation, so that has to be done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04009089 * Then there is the orphan item, which does indeed need to be held on
9090 * to for the whole operation, and we need nobody to touch this reserved
9091 * space except the orphan code.
9092 *
9093 * So that leaves us with
9094 *
9095 * 1) root->orphan_block_rsv - for the orphan deletion.
9096 * 2) rsv - for the truncate reservation, which we will steal from the
9097 * transaction reservation.
9098 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
9099 * updating the inode.
9100 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009101 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009102 if (!rsv)
9103 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04009104 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009105 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05009106
Josef Bacik907cbce2011-08-08 13:46:15 -04009107 /*
Josef Bacik07127182011-08-19 10:29:59 -04009108 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009109 * 1 for updating the inode.
9110 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009111 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009112 if (IS_ERR(trans)) {
9113 err = PTR_ERR(trans);
9114 goto out;
9115 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009116
Josef Bacik907cbce2011-08-08 13:46:15 -04009117 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009118 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009119 min_size, 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009120 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009121
Chris Mason5a3f23d2009-03-31 13:27:11 -04009122 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009123 * So if we truncate and then write and fsync we normally would just
9124 * write the extents that changed, which is a problem if we need to
9125 * first truncate that entire inode. So set this flag so we write out
9126 * all of the extents in the inode to the sync log so we're completely
9127 * safe.
9128 */
9129 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009130 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009131
Yan, Zheng80825102009-11-12 09:35:36 +00009132 while (1) {
9133 ret = btrfs_truncate_inode_items(trans, root, inode,
9134 inode->i_size,
9135 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08009136 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05009137 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009138 break;
Josef Bacik3893e332011-01-31 16:03:11 -05009139 }
Chris Mason39279cc2007-06-12 06:35:45 -04009140
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009141 trans->block_rsv = &fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009142 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009143 if (ret) {
9144 err = ret;
9145 break;
9146 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04009147
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009148 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009149 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009150
9151 trans = btrfs_start_transaction(root, 2);
9152 if (IS_ERR(trans)) {
9153 ret = err = PTR_ERR(trans);
9154 trans = NULL;
9155 break;
9156 }
9157
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009158 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009159 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009160 rsv, min_size, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009161 BUG_ON(ret); /* shouldn't happen */
9162 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009163 }
9164
9165 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04009166 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02009167 ret = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik3893e332011-01-31 16:03:11 -05009168 if (ret)
9169 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009170 }
9171
Chris Mason917c16b2011-11-08 14:49:59 -05009172 if (trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009173 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason917c16b2011-11-08 14:49:59 -05009174 ret = btrfs_update_inode(trans, root, inode);
9175 if (ret && !err)
9176 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04009177
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009178 ret = btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009179 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009180 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009181out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009182 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009183
Josef Bacik3893e332011-01-31 16:03:11 -05009184 if (ret && !err)
9185 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05009186
Josef Bacik3893e332011-01-31 16:03:11 -05009187 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009188}
9189
Sven Wegener3b963622008-06-09 21:57:42 -04009190/*
Chris Masond352ac62008-09-29 15:18:18 -04009191 * create a new subvolume directory/inode (helper for the ioctl).
9192 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009193int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009194 struct btrfs_root *new_root,
9195 struct btrfs_root *parent_root,
9196 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009197{
Chris Mason39279cc2007-06-12 06:35:45 -04009198 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009199 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009200 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009201
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009202 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9203 new_dirid, new_dirid,
9204 S_IFDIR | (~current_umask() & S_IRWXUGO),
9205 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009206 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009207 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009208 inode->i_op = &btrfs_dir_inode_operations;
9209 inode->i_fop = &btrfs_dir_file_operations;
9210
Miklos Szeredibfe86842011-10-28 14:13:29 +02009211 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009212 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009213 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009214
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009215 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9216 if (err)
9217 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009218 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009219 new_root->root_key.objectid, err);
9220
Yan, Zheng76dda932009-09-21 16:00:26 -04009221 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009222
Yan, Zheng76dda932009-09-21 16:00:26 -04009223 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009224 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009225}
9226
Chris Mason39279cc2007-06-12 06:35:45 -04009227struct inode *btrfs_alloc_inode(struct super_block *sb)
9228{
9229 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009230 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009231
9232 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
9233 if (!ei)
9234 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009235
9236 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009237 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009238 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009239 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009240 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009241 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009242 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009243 ei->disk_i_size = 0;
9244 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009245 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009246 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009247 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009248 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009249 ei->last_log_commit = 0;
David Sterba8089fe62015-11-19 14:15:51 +01009250 ei->delayed_iput_count = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009251
Josef Bacik9e0baf62011-07-15 15:16:44 +00009252 spin_lock_init(&ei->lock);
9253 ei->outstanding_extents = 0;
9254 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009255
Josef Bacik72ac3c02012-05-23 14:13:11 -04009256 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08009257 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009258
Miao Xie16cdcec2011-04-22 18:12:22 +08009259 ei->delayed_node = NULL;
9260
chandan r9cc97d62012-07-04 12:48:07 +05309261 ei->i_otime.tv_sec = 0;
9262 ei->i_otime.tv_nsec = 0;
9263
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009264 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009265 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02009266 extent_io_tree_init(&ei->io_tree, &inode->i_data);
9267 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009268 ei->io_tree.track_uptodate = 1;
9269 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009270 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009271 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009272 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009273 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009274 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009275 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009276 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009277 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009278
9279 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009280}
9281
Josef Bacikaaedb552013-10-11 14:44:09 -04009282#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9283void btrfs_test_destroy_inode(struct inode *inode)
9284{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009285 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009286 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9287}
9288#endif
9289
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009290static void btrfs_i_callback(struct rcu_head *head)
9291{
9292 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009293 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9294}
9295
Chris Mason39279cc2007-06-12 06:35:45 -04009296void btrfs_destroy_inode(struct inode *inode)
9297{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009298 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009299 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009300 struct btrfs_root *root = BTRFS_I(inode)->root;
9301
Al Virob3d9b7a2012-06-09 13:51:19 -04009302 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009303 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009304 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9305 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009306 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
9307 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009308 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009309
Chris Mason5a3f23d2009-03-31 13:27:11 -04009310 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009311 * This can happen where we create an inode, but somebody else also
9312 * created the same inode and we need to destroy the one we already
9313 * created.
9314 */
9315 if (!root)
9316 goto free;
9317
Josef Bacik8a35d952012-05-23 14:26:42 -04009318 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9319 &BTRFS_I(inode)->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009320 btrfs_info(fs_info, "inode %llu still on the orphan list",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009321 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04009322 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009323 }
Josef Bacik7b128762008-07-24 12:17:14 -04009324
Chris Masond3977122009-01-05 21:25:51 -05009325 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009326 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9327 if (!ordered)
9328 break;
9329 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009330 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009331 "found ordered extent %llu %llu on inode cleanup",
9332 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009333 btrfs_remove_ordered_extent(inode, ordered);
9334 btrfs_put_ordered_extent(ordered);
9335 btrfs_put_ordered_extent(ordered);
9336 }
9337 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009338 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009339 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009340 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009341free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009342 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009343}
9344
Al Viro45321ac2010-06-07 13:43:19 -04009345int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009346{
9347 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009348
Naohiro Aota6379ef92013-06-06 09:56:34 +00009349 if (root == NULL)
9350 return 1;
9351
Liu Bofa6ac872013-02-20 14:10:23 +00009352 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009353 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009354 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009355 else
Al Viro45321ac2010-06-07 13:43:19 -04009356 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009357}
9358
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009359static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009360{
9361 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9362
9363 inode_init_once(&ei->vfs_inode);
9364}
9365
9366void btrfs_destroy_cachep(void)
9367{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009368 /*
9369 * Make sure all delayed rcu free inodes are flushed before we
9370 * destroy cache.
9371 */
9372 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009373 kmem_cache_destroy(btrfs_inode_cachep);
9374 kmem_cache_destroy(btrfs_trans_handle_cachep);
9375 kmem_cache_destroy(btrfs_transaction_cachep);
9376 kmem_cache_destroy(btrfs_path_cachep);
9377 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009378}
9379
9380int btrfs_init_cachep(void)
9381{
David Sterba837e1972012-09-07 03:00:48 -06009382 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009383 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009384 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9385 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009386 if (!btrfs_inode_cachep)
9387 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009388
David Sterba837e1972012-09-07 03:00:48 -06009389 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009390 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009391 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009392 if (!btrfs_trans_handle_cachep)
9393 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009394
David Sterba837e1972012-09-07 03:00:48 -06009395 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009396 sizeof(struct btrfs_transaction), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009397 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009398 if (!btrfs_transaction_cachep)
9399 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009400
David Sterba837e1972012-09-07 03:00:48 -06009401 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009402 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009403 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009404 if (!btrfs_path_cachep)
9405 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009406
David Sterba837e1972012-09-07 03:00:48 -06009407 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009408 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009409 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009410 if (!btrfs_free_space_cachep)
9411 goto fail;
9412
Chris Mason39279cc2007-06-12 06:35:45 -04009413 return 0;
9414fail:
9415 btrfs_destroy_cachep();
9416 return -ENOMEM;
9417}
9418
9419static int btrfs_getattr(struct vfsmount *mnt,
9420 struct dentry *dentry, struct kstat *stat)
9421{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009422 u64 delalloc_bytes;
David Howells2b0143b2015-03-17 22:25:59 +00009423 struct inode *inode = d_inode(dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009424 u32 blocksize = inode->i_sb->s_blocksize;
9425
Chris Mason39279cc2007-06-12 06:35:45 -04009426 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009427 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009428
9429 spin_lock(&BTRFS_I(inode)->lock);
9430 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
9431 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009432 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009433 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009434 return 0;
9435}
9436
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009437static int btrfs_rename_exchange(struct inode *old_dir,
9438 struct dentry *old_dentry,
9439 struct inode *new_dir,
9440 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009441{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009442 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009443 struct btrfs_trans_handle *trans;
9444 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009445 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009446 struct inode *new_inode = new_dentry->d_inode;
9447 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009448 struct timespec ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009449 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009450 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9451 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009452 u64 old_idx = 0;
9453 u64 new_idx = 0;
9454 u64 root_objectid;
9455 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009456 bool root_log_pinned = false;
9457 bool dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009458
9459 /* we only allow rename subvolume link between subvolumes */
9460 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9461 return -EXDEV;
9462
9463 /* close the race window with snapshot create/destroy ioctl */
9464 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009465 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009466 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009467 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009468
9469 /*
9470 * We want to reserve the absolute worst case amount of items. So if
9471 * both inodes are subvols and we need to unlink them then that would
9472 * require 4 item modifications, but if they are both normal inodes it
9473 * would require 5 item modifications, so we'll assume their normal
9474 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9475 * should cover the worst case number of items we'll modify.
9476 */
9477 trans = btrfs_start_transaction(root, 12);
9478 if (IS_ERR(trans)) {
9479 ret = PTR_ERR(trans);
9480 goto out_notrans;
9481 }
9482
9483 /*
9484 * We need to find a free sequence number both in the source and
9485 * in the destination directory for the exchange.
9486 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009487 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009488 if (ret)
9489 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009490 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009491 if (ret)
9492 goto out_fail;
9493
9494 BTRFS_I(old_inode)->dir_index = 0ULL;
9495 BTRFS_I(new_inode)->dir_index = 0ULL;
9496
9497 /* Reference for the source. */
9498 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9499 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009500 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009501 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009502 btrfs_pin_log_trans(root);
9503 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009504 ret = btrfs_insert_inode_ref(trans, dest,
9505 new_dentry->d_name.name,
9506 new_dentry->d_name.len,
9507 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009508 btrfs_ino(BTRFS_I(new_dir)),
9509 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009510 if (ret)
9511 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009512 }
9513
9514 /* And now for the dest. */
9515 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9516 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009517 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009518 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009519 btrfs_pin_log_trans(dest);
9520 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009521 ret = btrfs_insert_inode_ref(trans, root,
9522 old_dentry->d_name.name,
9523 old_dentry->d_name.len,
9524 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009525 btrfs_ino(BTRFS_I(old_dir)),
9526 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009527 if (ret)
9528 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009529 }
9530
9531 /* Update inode version and ctime/mtime. */
9532 inode_inc_iversion(old_dir);
9533 inode_inc_iversion(new_dir);
9534 inode_inc_iversion(old_inode);
9535 inode_inc_iversion(new_inode);
9536 old_dir->i_ctime = old_dir->i_mtime = ctime;
9537 new_dir->i_ctime = new_dir->i_mtime = ctime;
9538 old_inode->i_ctime = ctime;
9539 new_inode->i_ctime = ctime;
9540
9541 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009542 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9543 BTRFS_I(old_inode), 1);
9544 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9545 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009546 }
9547
9548 /* src is a subvolume */
9549 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9550 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9551 ret = btrfs_unlink_subvol(trans, root, old_dir,
9552 root_objectid,
9553 old_dentry->d_name.name,
9554 old_dentry->d_name.len);
9555 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009556 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9557 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009558 old_dentry->d_name.name,
9559 old_dentry->d_name.len);
9560 if (!ret)
9561 ret = btrfs_update_inode(trans, root, old_inode);
9562 }
9563 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009564 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009565 goto out_fail;
9566 }
9567
9568 /* dest is a subvolume */
9569 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9570 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
9571 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9572 root_objectid,
9573 new_dentry->d_name.name,
9574 new_dentry->d_name.len);
9575 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009576 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9577 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009578 new_dentry->d_name.name,
9579 new_dentry->d_name.len);
9580 if (!ret)
9581 ret = btrfs_update_inode(trans, dest, new_inode);
9582 }
9583 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009584 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009585 goto out_fail;
9586 }
9587
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009588 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009589 new_dentry->d_name.name,
9590 new_dentry->d_name.len, 0, old_idx);
9591 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009592 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009593 goto out_fail;
9594 }
9595
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009596 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009597 old_dentry->d_name.name,
9598 old_dentry->d_name.len, 0, new_idx);
9599 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009600 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009601 goto out_fail;
9602 }
9603
9604 if (old_inode->i_nlink == 1)
9605 BTRFS_I(old_inode)->dir_index = old_idx;
9606 if (new_inode->i_nlink == 1)
9607 BTRFS_I(new_inode)->dir_index = new_idx;
9608
Filipe Manana86e8aa02016-05-05 02:02:27 +01009609 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009610 parent = new_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009611 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9612 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009613 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009614 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009615 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009616 if (dest_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009617 parent = old_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009618 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9619 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009620 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009621 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009622 }
9623out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009624 /*
9625 * If we have pinned a log and an error happened, we unpin tasks
9626 * trying to sync the log and force them to fallback to a transaction
9627 * commit if the log currently contains any of the inodes involved in
9628 * this rename operation (to ensure we do not persist a log with an
9629 * inconsistent state for any of these inodes or leading to any
9630 * inconsistencies when replayed). If the transaction was aborted, the
9631 * abortion reason is propagated to userspace when attempting to commit
9632 * the transaction. If the log does not contain any of these inodes, we
9633 * allow the tasks to sync it.
9634 */
9635 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009636 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9637 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9638 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009639 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009640 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009641 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009642
9643 if (root_log_pinned) {
9644 btrfs_end_log_trans(root);
9645 root_log_pinned = false;
9646 }
9647 if (dest_log_pinned) {
9648 btrfs_end_log_trans(dest);
9649 dest_log_pinned = false;
9650 }
9651 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009652 ret = btrfs_end_transaction(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009653out_notrans:
9654 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009655 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009656 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009657 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009658
9659 return ret;
9660}
9661
9662static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9663 struct btrfs_root *root,
9664 struct inode *dir,
9665 struct dentry *dentry)
9666{
9667 int ret;
9668 struct inode *inode;
9669 u64 objectid;
9670 u64 index;
9671
9672 ret = btrfs_find_free_ino(root, &objectid);
9673 if (ret)
9674 return ret;
9675
9676 inode = btrfs_new_inode(trans, root, dir,
9677 dentry->d_name.name,
9678 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009679 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009680 objectid,
9681 S_IFCHR | WHITEOUT_MODE,
9682 &index);
9683
9684 if (IS_ERR(inode)) {
9685 ret = PTR_ERR(inode);
9686 return ret;
9687 }
9688
9689 inode->i_op = &btrfs_special_inode_operations;
9690 init_special_inode(inode, inode->i_mode,
9691 WHITEOUT_DEV);
9692
9693 ret = btrfs_init_inode_security(trans, inode, dir,
9694 &dentry->d_name);
9695 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009696 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009697
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009698 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9699 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009700 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009701 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009702
9703 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009704out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009705 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009706 if (ret)
9707 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009708 iput(inode);
9709
Filipe Mananac9901612016-05-05 01:41:57 +01009710 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009711}
9712
Chris Mason39279cc2007-06-12 06:35:45 -04009713static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009714 struct inode *new_dir, struct dentry *new_dentry,
9715 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009716{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009717 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009718 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009719 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009720 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9721 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009722 struct inode *new_inode = d_inode(new_dentry);
9723 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009724 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009725 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009726 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009727 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009728 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009729
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009730 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009731 return -EPERM;
9732
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009733 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009734 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009735 return -EXDEV;
9736
Li Zefan33345d012011-04-20 10:31:50 +08009737 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009738 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009739 return -ENOTEMPTY;
9740
Chris Mason39279cc2007-06-12 06:35:45 -04009741 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009742 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009743 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009744
9745
9746 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009747 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009748 new_dentry->d_name.name,
9749 new_dentry->d_name.len);
9750
9751 if (ret) {
9752 if (ret == -EEXIST) {
9753 /* we shouldn't get
9754 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309755 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009756 return ret;
9757 }
9758 } else {
9759 /* maybe -EOVERFLOW */
9760 return ret;
9761 }
9762 }
9763 ret = 0;
9764
Chris Mason5a3f23d2009-03-31 13:27:11 -04009765 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009766 * we're using rename to replace one file with another. Start IO on it
9767 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009768 */
Chris Mason8d875f92014-08-12 10:47:42 -07009769 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009770 filemap_flush(old_inode->i_mapping);
9771
Yan, Zheng76dda932009-09-21 16:00:26 -04009772 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009773 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009774 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009775 /*
9776 * We want to reserve the absolute worst case amount of items. So if
9777 * both inodes are subvols and we need to unlink them then that would
9778 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009779 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009780 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9781 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009782 * If our rename has the whiteout flag, we need more 5 units for the
9783 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9784 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009785 */
Filipe Manana5062af32016-05-05 10:26:26 +01009786 trans_num_items = 11;
9787 if (flags & RENAME_WHITEOUT)
9788 trans_num_items += 5;
9789 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009790 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009791 ret = PTR_ERR(trans);
9792 goto out_notrans;
9793 }
Chris Mason5f39d392007-10-15 16:14:19 -04009794
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009795 if (dest != root)
9796 btrfs_record_root_in_trans(trans, dest);
9797
Nikolay Borisov877574e2017-02-20 13:50:33 +02009798 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009799 if (ret)
9800 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009801
Miao Xie67de1172013-12-26 13:07:06 +08009802 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009803 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009804 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009805 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009806 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009807 btrfs_pin_log_trans(root);
9808 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009809 ret = btrfs_insert_inode_ref(trans, dest,
9810 new_dentry->d_name.name,
9811 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009812 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009813 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009814 if (ret)
9815 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009816 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009817
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009818 inode_inc_iversion(old_dir);
9819 inode_inc_iversion(new_dir);
9820 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009821 old_dir->i_ctime = old_dir->i_mtime =
9822 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009823 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009824
Chris Mason12fcfd22009-03-24 10:24:20 -04009825 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009826 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9827 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009828
Li Zefan33345d012011-04-20 10:31:50 +08009829 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009830 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9831 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9832 old_dentry->d_name.name,
9833 old_dentry->d_name.len);
9834 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009835 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9836 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009837 old_dentry->d_name.name,
9838 old_dentry->d_name.len);
9839 if (!ret)
9840 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009841 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009842 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009843 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009844 goto out_fail;
9845 }
Chris Mason39279cc2007-06-12 06:35:45 -04009846
9847 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009848 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009849 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009850 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009851 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9852 root_objectid = BTRFS_I(new_inode)->location.objectid;
9853 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9854 root_objectid,
9855 new_dentry->d_name.name,
9856 new_dentry->d_name.len);
9857 BUG_ON(new_inode->i_nlink == 0);
9858 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009859 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9860 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009861 new_dentry->d_name.name,
9862 new_dentry->d_name.len);
9863 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009864 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +02009865 ret = btrfs_orphan_add(trans,
9866 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009867 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009868 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009869 goto out_fail;
9870 }
Chris Mason39279cc2007-06-12 06:35:45 -04009871 }
Josef Bacikaec74772008-07-24 12:12:38 -04009872
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009873 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009874 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009875 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009876 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009877 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009878 goto out_fail;
9879 }
Chris Mason39279cc2007-06-12 06:35:45 -04009880
Miao Xie67de1172013-12-26 13:07:06 +08009881 if (old_inode->i_nlink == 1)
9882 BTRFS_I(old_inode)->dir_index = index;
9883
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009884 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009885 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009886
David Sterbaf85b7372017-01-20 14:54:07 +01009887 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9888 parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009889 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009890 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009891 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009892
9893 if (flags & RENAME_WHITEOUT) {
9894 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9895 old_dentry);
9896
9897 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009898 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009899 goto out_fail;
9900 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009901 }
Chris Mason39279cc2007-06-12 06:35:45 -04009902out_fail:
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009903 /*
9904 * If we have pinned the log and an error happened, we unpin tasks
9905 * trying to sync the log and force them to fallback to a transaction
9906 * commit if the log currently contains any of the inodes involved in
9907 * this rename operation (to ensure we do not persist a log with an
9908 * inconsistent state for any of these inodes or leading to any
9909 * inconsistencies when replayed). If the transaction was aborted, the
9910 * abortion reason is propagated to userspace when attempting to commit
9911 * the transaction. If the log does not contain any of these inodes, we
9912 * allow the tasks to sync it.
9913 */
9914 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009915 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9916 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9917 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009918 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009919 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009920 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009921
9922 btrfs_end_log_trans(root);
9923 log_pinned = false;
9924 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009925 btrfs_end_transaction(trans);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009926out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009927 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009928 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009929
Chris Mason39279cc2007-06-12 06:35:45 -04009930 return ret;
9931}
9932
Miklos Szeredi80ace852014-07-23 15:15:32 +02009933static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9934 struct inode *new_dir, struct dentry *new_dentry,
9935 unsigned int flags)
9936{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009937 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009938 return -EINVAL;
9939
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009940 if (flags & RENAME_EXCHANGE)
9941 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9942 new_dentry);
9943
9944 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009945}
9946
Miao Xie8ccf6f192012-10-25 09:28:04 +00009947static void btrfs_run_delalloc_work(struct btrfs_work *work)
9948{
9949 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009950 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009951
9952 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9953 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009954 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009955 filemap_flush(inode->i_mapping);
9956 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9957 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009958 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009959
9960 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -04009961 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009962 else
Josef Bacik9f23e282013-10-28 15:03:41 -04009963 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009964 complete(&delalloc_work->completion);
9965}
9966
9967struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
David Sterba651d4942015-11-27 19:24:16 +01009968 int delay_iput)
Miao Xie8ccf6f192012-10-25 09:28:04 +00009969{
9970 struct btrfs_delalloc_work *work;
9971
David Sterba100d5702015-12-08 14:39:32 +01009972 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009973 if (!work)
9974 return NULL;
9975
9976 init_completion(&work->completion);
9977 INIT_LIST_HEAD(&work->list);
9978 work->inode = inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009979 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +08009980 WARN_ON_ONCE(!inode);
9981 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
9982 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009983
9984 return work;
9985}
9986
9987void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
9988{
9989 wait_for_completion(&work->completion);
David Sterba100d5702015-12-08 14:39:32 +01009990 kfree(work);
Miao Xie8ccf6f192012-10-25 09:28:04 +00009991}
9992
Chris Masond352ac62008-09-29 15:18:18 -04009993/*
9994 * some fairly slow code that needs optimization. This walks the list
9995 * of all the inodes with pending delalloc and forces them to disk.
9996 */
Miao Xie6c255e62014-03-06 13:55:01 +08009997static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
9998 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -04009999{
Chris Masonea8c2812008-08-04 23:17:27 -040010000 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010001 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010002 struct btrfs_delalloc_work *work, *next;
10003 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +000010004 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010005 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -040010006
Miao Xie8ccf6f192012-10-25 09:28:04 +000010007 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010008 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +000010009
Miao Xie573bfb72014-03-06 13:55:03 +080010010 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010011 spin_lock(&root->delalloc_lock);
10012 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010013 while (!list_empty(&splice)) {
10014 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -040010015 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010016
Miao Xieeb73c1b2013-05-15 07:48:22 +000010017 list_move_tail(&binode->delalloc_inodes,
10018 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010019 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +000010020 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010021 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010022 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +000010023 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010024 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010025
David Sterba651d4942015-11-27 19:24:16 +010010026 work = btrfs_alloc_delalloc_work(inode, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +020010027 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -040010028 if (delay_iput)
10029 btrfs_add_delayed_iput(inode);
10030 else
10031 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010032 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010033 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010034 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010035 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010036 btrfs_queue_work(root->fs_info->flush_workers,
10037 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010038 ret++;
10039 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010040 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010041 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010042 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010043 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010044 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010045
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010046out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010047 list_for_each_entry_safe(work, next, &works, list) {
10048 list_del_init(&work->list);
10049 btrfs_wait_and_free_delalloc_work(work);
10050 }
10051
Miao Xieeb73c1b2013-05-15 07:48:22 +000010052 if (!list_empty_careful(&splice)) {
10053 spin_lock(&root->delalloc_lock);
10054 list_splice_tail(&splice, &root->delalloc_inodes);
10055 spin_unlock(&root->delalloc_lock);
10056 }
Miao Xie573bfb72014-03-06 13:55:03 +080010057 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010058 return ret;
10059}
10060
10061int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
10062{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010063 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010064 int ret;
10065
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010066 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010067 return -EROFS;
10068
Miao Xie6c255e62014-03-06 13:55:01 +080010069 ret = __start_delalloc_inodes(root, delay_iput, -1);
10070 if (ret > 0)
10071 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010072 /*
10073 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -040010074 * we have to make sure the IO is actually started and that
10075 * ordered extents get created before we return
10076 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010077 atomic_inc(&fs_info->async_submit_draining);
10078 while (atomic_read(&fs_info->nr_async_submits) ||
10079 atomic_read(&fs_info->async_delalloc_pages)) {
10080 wait_event(fs_info->async_submit_wait,
10081 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10082 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -040010083 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010084 atomic_dec(&fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010085 return ret;
10086}
10087
Miao Xie6c255e62014-03-06 13:55:01 +080010088int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
10089 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010090{
10091 struct btrfs_root *root;
10092 struct list_head splice;
10093 int ret;
10094
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010095 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010096 return -EROFS;
10097
10098 INIT_LIST_HEAD(&splice);
10099
Miao Xie573bfb72014-03-06 13:55:03 +080010100 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010101 spin_lock(&fs_info->delalloc_root_lock);
10102 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010103 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010104 root = list_first_entry(&splice, struct btrfs_root,
10105 delalloc_root);
10106 root = btrfs_grab_fs_root(root);
10107 BUG_ON(!root);
10108 list_move_tail(&root->delalloc_root,
10109 &fs_info->delalloc_roots);
10110 spin_unlock(&fs_info->delalloc_root_lock);
10111
Miao Xie6c255e62014-03-06 13:55:01 +080010112 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010113 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010114 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010115 goto out;
10116
Miao Xie6c255e62014-03-06 13:55:01 +080010117 if (nr != -1) {
10118 nr -= ret;
10119 WARN_ON(nr < 0);
10120 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010121 spin_lock(&fs_info->delalloc_root_lock);
10122 }
10123 spin_unlock(&fs_info->delalloc_root_lock);
10124
Miao Xie6c255e62014-03-06 13:55:01 +080010125 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010126 atomic_inc(&fs_info->async_submit_draining);
10127 while (atomic_read(&fs_info->nr_async_submits) ||
10128 atomic_read(&fs_info->async_delalloc_pages)) {
10129 wait_event(fs_info->async_submit_wait,
10130 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10131 atomic_read(&fs_info->async_delalloc_pages) == 0));
10132 }
10133 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010134out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010135 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010136 spin_lock(&fs_info->delalloc_root_lock);
10137 list_splice_tail(&splice, &fs_info->delalloc_roots);
10138 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010139 }
Miao Xie573bfb72014-03-06 13:55:03 +080010140 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010141 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010142}
10143
Chris Mason39279cc2007-06-12 06:35:45 -040010144static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10145 const char *symname)
10146{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010147 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010148 struct btrfs_trans_handle *trans;
10149 struct btrfs_root *root = BTRFS_I(dir)->root;
10150 struct btrfs_path *path;
10151 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010152 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010153 int err;
10154 int drop_inode = 0;
10155 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010156 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010157 int name_len;
10158 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010159 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010160 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010161 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010162
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010163 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010164 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010165 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010166
Josef Bacik9ed74f22009-09-11 16:12:44 -040010167 /*
10168 * 2 items for inode item and ref
10169 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010170 * 1 item for updating parent inode item
10171 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010172 * 1 item for xattr if selinux is on
10173 */
Filipe Manana9269d122015-12-31 18:16:29 +000010174 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010175 if (IS_ERR(trans))
10176 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010177
Li Zefan581bb052011-04-20 10:06:11 +080010178 err = btrfs_find_free_ino(root, &objectid);
10179 if (err)
10180 goto out_unlock;
10181
Josef Bacikaec74772008-07-24 12:12:38 -040010182 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010183 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10184 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010185 if (IS_ERR(inode)) {
10186 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010187 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010188 }
Chris Mason39279cc2007-06-12 06:35:45 -040010189
Casey Schauflerad19db72011-12-15 10:09:07 -050010190 /*
10191 * If the active LSM wants to access the inode during
10192 * d_instantiate it needs these. Smack checks to see
10193 * if the filesystem supports xattrs by looking at the
10194 * ops vector.
10195 */
10196 inode->i_fop = &btrfs_file_operations;
10197 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010198 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010199 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10200
10201 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10202 if (err)
10203 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -050010204
Chris Mason39279cc2007-06-12 06:35:45 -040010205 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010206 if (!path) {
10207 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -070010208 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010209 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010210 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010211 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010212 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010213 datasize = btrfs_file_extent_calc_inline_size(name_len);
10214 err = btrfs_insert_empty_item(trans, root, path, &key,
10215 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010216 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010217 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -070010218 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -040010219 }
Chris Mason5f39d392007-10-15 16:14:19 -040010220 leaf = path->nodes[0];
10221 ei = btrfs_item_ptr(leaf, path->slots[0],
10222 struct btrfs_file_extent_item);
10223 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10224 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010225 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010226 btrfs_set_file_extent_encryption(leaf, ei, 0);
10227 btrfs_set_file_extent_compression(leaf, ei, 0);
10228 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10229 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10230
Chris Mason39279cc2007-06-12 06:35:45 -040010231 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010232 write_extent_buffer(leaf, symname, ptr, name_len);
10233 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010234 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010235
Chris Mason39279cc2007-06-12 06:35:45 -040010236 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010237 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010238 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010239 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010240 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010241 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010242 /*
10243 * Last step, add directory indexes for our symlink inode. This is the
10244 * last step to avoid extra cleanup of these indexes if an error happens
10245 * elsewhere above.
10246 */
10247 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010248 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10249 BTRFS_I(inode), 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -070010250 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -040010251 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -070010252 goto out_unlock_inode;
10253 }
10254
10255 unlock_new_inode(inode);
10256 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010257
10258out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010259 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -040010260 if (drop_inode) {
10261 inode_dec_link_count(inode);
10262 iput(inode);
10263 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010264 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010265 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -070010266
10267out_unlock_inode:
10268 drop_inode = 1;
10269 unlock_new_inode(inode);
10270 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -040010271}
Chris Mason16432982008-04-10 10:23:21 -040010272
Josef Bacik0af3d002010-06-21 14:48:16 -040010273static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10274 u64 start, u64 num_bytes, u64 min_size,
10275 loff_t actual_len, u64 *alloc_hint,
10276 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010277{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010278 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010279 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10280 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010281 struct btrfs_root *root = BTRFS_I(inode)->root;
10282 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010283 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010284 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010285 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010286 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010287 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010288 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010289 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010290
Josef Bacik0af3d002010-06-21 14:48:16 -040010291 if (trans)
10292 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010293 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010294 if (own_trans) {
10295 trans = btrfs_start_transaction(root, 3);
10296 if (IS_ERR(trans)) {
10297 ret = PTR_ERR(trans);
10298 break;
10299 }
Yan Zhengd899e052008-10-30 14:25:28 -040010300 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010301
Byongho Leeee221842015-12-15 01:42:10 +090010302 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010303 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010304 /*
10305 * If we are severely fragmented we could end up with really
10306 * small allocations, so if the allocator is returning small
10307 * chunks lets make its job easier by only searching for those
10308 * sized chunks.
10309 */
10310 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010311 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10312 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010313 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010314 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010315 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010316 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010317 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010318 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010319
Josef Bacik0b670dc2015-09-23 17:11:16 -040010320 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010321 ret = insert_reserved_file_extent(trans, inode,
10322 cur_offset, ins.objectid,
10323 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010324 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010325 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010326 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010327 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010328 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010329 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010330 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010331 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010332 break;
10333 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010334
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010335 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010336 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010337
Josef Bacik5dc562c2012-08-17 13:14:17 -040010338 em = alloc_extent_map();
10339 if (!em) {
10340 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10341 &BTRFS_I(inode)->runtime_flags);
10342 goto next;
10343 }
10344
10345 em->start = cur_offset;
10346 em->orig_start = cur_offset;
10347 em->len = ins.offset;
10348 em->block_start = ins.objectid;
10349 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010350 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010351 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010352 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010353 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10354 em->generation = trans->transid;
10355
10356 while (1) {
10357 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010358 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010359 write_unlock(&em_tree->lock);
10360 if (ret != -EEXIST)
10361 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010362 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010363 cur_offset + ins.offset - 1,
10364 0);
10365 }
10366 free_extent_map(em);
10367next:
Yan Zhengd899e052008-10-30 14:25:28 -040010368 num_bytes -= ins.offset;
10369 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010370 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010371
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010372 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010373 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010374 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010375 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010376 (actual_len > inode->i_size) &&
10377 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010378 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010379 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010380 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010381 i_size = cur_offset;
10382 i_size_write(inode, i_size);
10383 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010384 }
10385
Yan Zhengd899e052008-10-30 14:25:28 -040010386 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010387
10388 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010389 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010390 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010391 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010392 break;
10393 }
Yan Zhengd899e052008-10-30 14:25:28 -040010394
Josef Bacik0af3d002010-06-21 14:48:16 -040010395 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010396 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010397 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010398 if (cur_offset < end)
10399 btrfs_free_reserved_data_space(inode, cur_offset,
10400 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010401 return ret;
10402}
10403
Josef Bacik0af3d002010-06-21 14:48:16 -040010404int btrfs_prealloc_file_range(struct inode *inode, int mode,
10405 u64 start, u64 num_bytes, u64 min_size,
10406 loff_t actual_len, u64 *alloc_hint)
10407{
10408 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10409 min_size, actual_len, alloc_hint,
10410 NULL);
10411}
10412
10413int btrfs_prealloc_file_range_trans(struct inode *inode,
10414 struct btrfs_trans_handle *trans, int mode,
10415 u64 start, u64 num_bytes, u64 min_size,
10416 loff_t actual_len, u64 *alloc_hint)
10417{
10418 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10419 min_size, actual_len, alloc_hint, trans);
10420}
10421
Chris Masone6dcd2d2008-07-17 12:53:50 -040010422static int btrfs_set_page_dirty(struct page *page)
10423{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010424 return __set_page_dirty_nobuffers(page);
10425}
10426
Al Viro10556cb2011-06-20 19:28:19 -040010427static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010428{
Li Zefanb83cc962010-12-20 16:04:08 +080010429 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010430 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010431
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010432 if (mask & MAY_WRITE &&
10433 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10434 if (btrfs_root_readonly(root))
10435 return -EROFS;
10436 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10437 return -EACCES;
10438 }
Al Viro2830ba72011-06-20 19:16:29 -040010439 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010440}
Chris Mason39279cc2007-06-12 06:35:45 -040010441
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010442static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10443{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010444 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010445 struct btrfs_trans_handle *trans;
10446 struct btrfs_root *root = BTRFS_I(dir)->root;
10447 struct inode *inode = NULL;
10448 u64 objectid;
10449 u64 index;
10450 int ret = 0;
10451
10452 /*
10453 * 5 units required for adding orphan entry
10454 */
10455 trans = btrfs_start_transaction(root, 5);
10456 if (IS_ERR(trans))
10457 return PTR_ERR(trans);
10458
10459 ret = btrfs_find_free_ino(root, &objectid);
10460 if (ret)
10461 goto out;
10462
10463 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010464 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010465 if (IS_ERR(inode)) {
10466 ret = PTR_ERR(inode);
10467 inode = NULL;
10468 goto out;
10469 }
10470
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010471 inode->i_fop = &btrfs_file_operations;
10472 inode->i_op = &btrfs_file_inode_operations;
10473
10474 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010475 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10476
Chris Masonb0d5d102014-09-08 13:08:51 -070010477 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10478 if (ret)
10479 goto out_inode;
10480
10481 ret = btrfs_update_inode(trans, root, inode);
10482 if (ret)
10483 goto out_inode;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010484 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010485 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -070010486 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010487
Filipe Manana5762b5c2014-08-01 00:10:32 +010010488 /*
10489 * We set number of links to 0 in btrfs_new_inode(), and here we set
10490 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10491 * through:
10492 *
10493 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10494 */
10495 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -070010496 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010497 d_tmpfile(dentry, inode);
10498 mark_inode_dirty(inode);
10499
10500out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010501 btrfs_end_transaction(trans);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010502 if (ret)
10503 iput(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010504 btrfs_balance_delayed_items(fs_info);
10505 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010506 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -070010507
10508out_inode:
10509 unlock_new_inode(inode);
10510 goto out;
10511
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010512}
10513
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010514static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010515 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010516 .lookup = btrfs_lookup,
10517 .create = btrfs_create,
10518 .unlink = btrfs_unlink,
10519 .link = btrfs_link,
10520 .mkdir = btrfs_mkdir,
10521 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010522 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010523 .symlink = btrfs_symlink,
10524 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010525 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010526 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010527 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010528 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010529 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010530 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010531 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010532};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010533static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010534 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010535 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010536 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010537};
Yan, Zheng76dda932009-09-21 16:00:26 -040010538
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010539static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010540 .llseek = generic_file_llseek,
10541 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010542 .iterate_shared = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010543 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010544#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010545 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010546#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010547 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010548 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010549};
10550
David Sterba20e55062015-11-19 11:42:28 +010010551static const struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -040010552 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -050010553 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -040010554 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010555 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010556 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010557 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010558 .set_bit_hook = btrfs_set_bit_hook,
10559 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010560 .merge_extent_hook = btrfs_merge_extent_hook,
10561 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010562};
10563
Chris Mason35054392009-01-21 13:11:13 -050010564/*
10565 * btrfs doesn't support the bmap operation because swapfiles
10566 * use bmap to make a mapping of extents in the file. They assume
10567 * these extents won't change over the life of the file and they
10568 * use the bmap result to do IO directly to the drive.
10569 *
10570 * the btrfs bmap call would return logical addresses that aren't
10571 * suitable for IO and they also will change frequently as COW
10572 * operations happen. So, swapfile + btrfs == corruption.
10573 *
10574 * For now we're avoiding this by dropping bmap.
10575 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010576static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010577 .readpage = btrfs_readpage,
10578 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -040010579 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010580 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010581 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010582 .invalidatepage = btrfs_invalidatepage,
10583 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010584 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010585 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010586};
10587
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010588static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010589 .readpage = btrfs_readpage,
10590 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010591 .invalidatepage = btrfs_invalidatepage,
10592 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010593};
10594
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010595static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010596 .getattr = btrfs_getattr,
10597 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010598 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010599 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010600 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010601 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010602 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010603 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010604};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010605static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010606 .getattr = btrfs_getattr,
10607 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010608 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010609 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010610 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010611 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010612 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010613};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010614static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010615 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010616 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010617 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010618 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010619 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010620 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010621};
Yan, Zheng76dda932009-09-21 16:00:26 -040010622
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010623const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010624 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010625 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010626};