blob: 29ad99a2e2870680e4d4d7379fba898c65f9b816 [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;
74};
75
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070076static const struct inode_operations btrfs_dir_inode_operations;
77static const struct inode_operations btrfs_symlink_inode_operations;
78static const struct inode_operations btrfs_dir_ro_inode_operations;
79static const struct inode_operations btrfs_special_inode_operations;
80static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070081static const struct address_space_operations btrfs_aops;
82static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070083static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010084static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040085
86static struct kmem_cache *btrfs_inode_cachep;
87struct kmem_cache *btrfs_trans_handle_cachep;
88struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040089struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050090struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040091
92#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010093static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040094 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
95 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
96 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
97 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
98 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
99 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
100 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
101};
102
Eric Sandeen3972f262013-01-12 02:57:22 +0000103static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -0500104static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -0400105static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500106static noinline int cow_file_range(struct inode *inode,
107 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800108 u64 start, u64 end, u64 delalloc_end,
109 int *page_started, unsigned long *nr_written,
110 int unlock, struct btrfs_dedupe_hash *hash);
Josef Bacik70c8a912012-10-11 16:54:30 -0400111static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
112 u64 len, u64 orig_start,
113 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -0400114 u64 orig_block_len, u64 ram_bytes,
115 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400116
Eric Sandeen48a3b632013-04-25 20:41:01 +0000117static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400118
Josef Bacik6a3891c2015-03-16 17:38:52 -0400119#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
120void btrfs_test_inode_set_ops(struct inode *inode)
121{
122 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
123}
124#endif
125
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000126static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500127 struct inode *inode, struct inode *dir,
128 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500129{
130 int err;
131
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000132 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500133 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500134 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500135 return err;
136}
137
Chris Masond352ac62008-09-29 15:18:18 -0400138/*
Chris Masonc8b97812008-10-29 14:49:59 -0400139 * this does all the hard work for inserting an inline extent into
140 * the btree. The caller should have done a btrfs_drop_extents so that
141 * no overlapping inline items exist in the btree
142 */
Chris Mason40f76582014-05-21 13:35:51 -0700143static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000144 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400145 struct btrfs_root *root, struct inode *inode,
146 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000147 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400148 struct page **compressed_pages)
149{
Chris Masonc8b97812008-10-29 14:49:59 -0400150 struct extent_buffer *leaf;
151 struct page *page = NULL;
152 char *kaddr;
153 unsigned long ptr;
154 struct btrfs_file_extent_item *ei;
155 int err = 0;
156 int ret;
157 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400158 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400159
Li Zefanfe3f5662011-03-28 08:30:38 +0000160 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400161 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400162
Chris Masonc8b97812008-10-29 14:49:59 -0400163 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000164
165 if (!extent_inserted) {
166 struct btrfs_key key;
167 size_t datasize;
168
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200169 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000170 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200171 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000172
173 datasize = btrfs_file_extent_calc_inline_size(cur_size);
174 path->leave_spinning = 1;
175 ret = btrfs_insert_empty_item(trans, root, path, &key,
176 datasize);
177 if (ret) {
178 err = ret;
179 goto fail;
180 }
Chris Masonc8b97812008-10-29 14:49:59 -0400181 }
182 leaf = path->nodes[0];
183 ei = btrfs_item_ptr(leaf, path->slots[0],
184 struct btrfs_file_extent_item);
185 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
186 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
187 btrfs_set_file_extent_encryption(leaf, ei, 0);
188 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
189 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
190 ptr = btrfs_file_extent_inline_start(ei);
191
Li Zefan261507a02010-12-17 14:21:50 +0800192 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400193 struct page *cpage;
194 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500195 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400196 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500197 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300198 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400199
Cong Wang7ac687d2011-11-25 23:14:28 +0800200 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400201 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800202 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400203
204 i++;
205 ptr += cur_size;
206 compressed_size -= cur_size;
207 }
208 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800209 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400210 } else {
211 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300212 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400213 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800214 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300215 offset = start & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400216 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800217 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300218 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400219 }
220 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000221 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400222
Yan, Zhengc2167752009-11-12 09:34:21 +0000223 /*
224 * we're an inline extent, so nobody can
225 * extend the file past i_size without locking
226 * a page we already have locked.
227 *
228 * We must do any isize and inode updates
229 * before we unlock the pages. Otherwise we
230 * could end up racing with unlink.
231 */
Chris Masonc8b97812008-10-29 14:49:59 -0400232 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100233 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000234
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100235 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400236fail:
Chris Masonc8b97812008-10-29 14:49:59 -0400237 return err;
238}
239
240
241/*
242 * conditionally insert an inline extent into the file. This
243 * does the checks required to make sure the data is small enough
244 * to fit as an inline extent.
245 */
Josef Bacik00361582013-08-14 14:02:47 -0400246static noinline int cow_file_range_inline(struct btrfs_root *root,
247 struct inode *inode, u64 start,
248 u64 end, size_t compressed_size,
249 int compress_type,
250 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400251{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400252 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400253 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400254 u64 isize = i_size_read(inode);
255 u64 actual_end = min(end + 1, isize);
256 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400257 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400258 u64 data_len = inline_len;
259 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000260 struct btrfs_path *path;
261 int extent_inserted = 0;
262 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400263
264 if (compressed_size)
265 data_len = compressed_size;
266
267 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400268 actual_end > fs_info->sectorsize ||
269 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400270 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400271 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400272 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400273 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400274 return 1;
275 }
276
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000277 path = btrfs_alloc_path();
278 if (!path)
279 return -ENOMEM;
280
Josef Bacik00361582013-08-14 14:02:47 -0400281 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000282 if (IS_ERR(trans)) {
283 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400284 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000285 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400286 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400287
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000288 if (compressed_size && compressed_pages)
289 extent_item_size = btrfs_file_extent_calc_inline_size(
290 compressed_size);
291 else
292 extent_item_size = btrfs_file_extent_calc_inline_size(
293 inline_len);
294
295 ret = __btrfs_drop_extents(trans, root, inode, path,
296 start, aligned_end, NULL,
297 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400298 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400299 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400300 goto out;
301 }
Chris Masonc8b97812008-10-29 14:49:59 -0400302
303 if (isize > actual_end)
304 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000305 ret = insert_inline_extent(trans, path, extent_inserted,
306 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400307 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000308 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400309 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400310 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400311 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400312 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400313 ret = 1;
314 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100315 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400316
Josef Bacikbdc20e62013-02-28 13:23:38 -0500317 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400318 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400319 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400320out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800321 /*
322 * Don't forget to free the reserved space, as for inlined extent
323 * it won't count as data extent, free them directly here.
324 * And at reserve time, it's always aligned to page size, so
325 * just free one page here.
326 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300327 btrfs_qgroup_free_data(inode, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000328 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400329 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400330 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400331}
332
Chris Mason771ed682008-11-06 22:02:51 -0500333struct async_extent {
334 u64 start;
335 u64 ram_size;
336 u64 compressed_size;
337 struct page **pages;
338 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800339 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500340 struct list_head list;
341};
342
343struct async_cow {
344 struct inode *inode;
345 struct btrfs_root *root;
346 struct page *locked_page;
347 u64 start;
348 u64 end;
349 struct list_head extents;
350 struct btrfs_work work;
351};
352
353static noinline int add_async_extent(struct async_cow *cow,
354 u64 start, u64 ram_size,
355 u64 compressed_size,
356 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800357 unsigned long nr_pages,
358 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500359{
360 struct async_extent *async_extent;
361
362 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100363 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500364 async_extent->start = start;
365 async_extent->ram_size = ram_size;
366 async_extent->compressed_size = compressed_size;
367 async_extent->pages = pages;
368 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800369 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500370 list_add_tail(&async_extent->list, &cow->extents);
371 return 0;
372}
373
Wang Shilongf79707b2014-07-17 11:44:09 +0800374static inline int inode_need_compress(struct inode *inode)
375{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400376 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800377
378 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400379 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800380 return 1;
381 /* bad compression ratios */
382 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
383 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400384 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800385 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
386 BTRFS_I(inode)->force_compress)
387 return 1;
388 return 0;
389}
390
Anand Jain26d30f82016-12-19 19:09:06 +0800391static inline void inode_should_defrag(struct inode *inode,
392 u64 start, u64 end, u64 num_bytes, u64 small_write)
393{
394 /* If this is a small write inside eof, kick off a defrag */
395 if (num_bytes < small_write &&
396 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
397 btrfs_add_inode_defrag(NULL, inode);
398}
399
Chris Masonc8b97812008-10-29 14:49:59 -0400400/*
Chris Mason771ed682008-11-06 22:02:51 -0500401 * we create compressed extents in two phases. The first
402 * phase compresses a range of pages that have already been
403 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400404 *
Chris Mason771ed682008-11-06 22:02:51 -0500405 * This is done inside an ordered work queue, and the compression
406 * is spread across many cpus. The actual IO submission is step
407 * two, and the ordered work queue takes care of making sure that
408 * happens in the same order things were put onto the queue by
409 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400410 *
Chris Mason771ed682008-11-06 22:02:51 -0500411 * If this code finds it can't get good compression, it puts an
412 * entry onto the work queue to write the uncompressed bytes. This
413 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300414 * are written in the same order that the flusher thread sent them
415 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400416 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100417static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500418 struct page *locked_page,
419 u64 start, u64 end,
420 struct async_cow *async_cow,
421 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400422{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400423 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonb888db22007-08-27 16:49:44 -0400424 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400425 u64 num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400426 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400427 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500428 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400429 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400430 struct page **pages = NULL;
431 unsigned long nr_pages;
432 unsigned long nr_pages_ret = 0;
433 unsigned long total_compressed = 0;
434 unsigned long total_in = 0;
Byongho Leeee221842015-12-15 01:42:10 +0900435 unsigned long max_compressed = SZ_128K;
436 unsigned long max_uncompressed = SZ_128K;
Chris Masonc8b97812008-10-29 14:49:59 -0400437 int i;
438 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400439 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400440 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400441
Anand Jain26d30f82016-12-19 19:09:06 +0800442 inode_should_defrag(inode, start, end, end - start + 1, SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400443
Chris Mason42dc7ba2008-12-15 11:44:56 -0500444 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400445again:
446 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300447 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
448 nr_pages = min_t(unsigned long, nr_pages, SZ_128K / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400449
Chris Masonf03d9301f2009-02-04 09:31:06 -0500450 /*
451 * we don't want to send crud past the end of i_size through
452 * compression, that's just a waste of CPU time. So, if the
453 * end of the file is before the start of our current
454 * requested range of bytes, we bail out to the uncompressed
455 * cleanup code that can deal with all of this.
456 *
457 * It isn't really the fastest way to fix things, but this is a
458 * very uncommon corner.
459 */
460 if (actual_end <= start)
461 goto cleanup_and_bail_uncompressed;
462
Chris Masonc8b97812008-10-29 14:49:59 -0400463 total_compressed = actual_end - start;
464
Shilong Wang4bcbb332014-10-07 18:44:35 -0400465 /*
466 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400467 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400468 */
469 if (total_compressed <= blocksize &&
470 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
471 goto cleanup_and_bail_uncompressed;
472
Chris Masonc8b97812008-10-29 14:49:59 -0400473 /* we want to make sure that amount of ram required to uncompress
474 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500475 * of a compressed extent to 128k. This is a crucial number
476 * because it also controls how easily we can spread reads across
477 * cpus for decompression.
478 *
479 * We also want to make sure the amount of IO required to do
480 * a random read is reasonably small, so we limit the size of
481 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400482 */
483 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000484 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500485 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400486 total_in = 0;
487 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400488
Chris Mason771ed682008-11-06 22:02:51 -0500489 /*
490 * we do compression for mount -o compress and when the
491 * inode has not been flagged as nocompress. This flag can
492 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400493 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800494 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400495 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100496 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800497 if (!pages) {
498 /* just bail out to the uncompressed code */
499 goto cont;
500 }
Chris Mason179e29e2007-11-01 11:28:41 -0400501
Li Zefan261507a02010-12-17 14:21:50 +0800502 if (BTRFS_I(inode)->force_compress)
503 compress_type = BTRFS_I(inode)->force_compress;
504
Chris Mason4adaa612013-03-26 13:07:00 -0400505 /*
506 * we need to call clear_page_dirty_for_io on each
507 * page in the range. Otherwise applications with the file
508 * mmap'd can wander in and change the page contents while
509 * we are compressing them.
510 *
511 * If the compression fails for any reason, we set the pages
512 * dirty again later on.
513 */
514 extent_range_clear_dirty_for_io(inode, start, end);
515 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800516 ret = btrfs_compress_pages(compress_type,
517 inode->i_mapping, start,
518 total_compressed, pages,
519 nr_pages, &nr_pages_ret,
520 &total_in,
521 &total_compressed,
522 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400523
524 if (!ret) {
525 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300526 (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400527 struct page *page = pages[nr_pages_ret - 1];
528 char *kaddr;
529
530 /* zero the tail end of the last page, we might be
531 * sending it down to disk
532 */
533 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800534 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400535 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300536 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800537 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400538 }
539 will_compress = 1;
540 }
541 }
Li Zefan560f7d72011-09-08 10:22:01 +0800542cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400543 if (start == 0) {
544 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500545 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400546 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500547 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400548 */
Josef Bacik00361582013-08-14 14:02:47 -0400549 ret = cow_file_range_inline(root, inode, start, end,
Anand Jainf74670f2016-12-06 12:43:07 +0800550 0, BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400551 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500552 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400553 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000554 total_compressed,
555 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400556 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400558 unsigned long clear_flags = EXTENT_DELALLOC |
559 EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100560 unsigned long page_error_op;
561
Josef Bacik151a41b2013-07-29 13:22:24 -0400562 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100563 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400564
Chris Mason771ed682008-11-06 22:02:51 -0500565 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100566 * inline extent creation worked or returned error,
567 * we don't need to create any more async work items.
568 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500569 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800570 extent_clear_unlock_delalloc(inode, start, end, end,
571 NULL, clear_flags,
572 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400573 PAGE_CLEAR_DIRTY |
574 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100575 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400576 PAGE_END_WRITEBACK);
Wang Xiaoguang18513092016-07-25 15:51:40 +0800577 btrfs_free_reserved_data_space_noquota(inode, start,
578 end - start + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400579 goto free_pages_out;
580 }
581 }
582
583 if (will_compress) {
584 /*
585 * we aren't doing an inline extent round the compressed size
586 * up to a block size boundary so the allocator does sane
587 * things
588 */
Qu Wenruofda28322013-02-26 08:10:22 +0000589 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400590
591 /*
592 * one last check to make sure the compression is really a
593 * win, compare the page count read with the blocks on disk
594 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300595 total_in = ALIGN(total_in, PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400596 if (total_compressed >= total_in) {
597 will_compress = 0;
598 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400599 num_bytes = total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700600 *num_added += 1;
601
602 /*
603 * The async work queues will take care of doing actual
604 * allocation on disk for these compressed pages, and
605 * will submit them to the elevator.
606 */
607 add_async_extent(async_cow, start, num_bytes,
608 total_compressed, pages, nr_pages_ret,
609 compress_type);
610
611 if (start + num_bytes < end) {
612 start += num_bytes;
613 pages = NULL;
614 cond_resched();
615 goto again;
616 }
617 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400618 }
619 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700620 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400621 /*
622 * the compression code ran but failed to make things smaller,
623 * free any pages it allocated and our page pointer array
624 */
625 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400626 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300627 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400628 }
629 kfree(pages);
630 pages = NULL;
631 total_compressed = 0;
632 nr_pages_ret = 0;
633
634 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400635 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500636 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500637 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500638 }
Chris Masonc8b97812008-10-29 14:49:59 -0400639 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500640cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700641 /*
642 * No compression, but we still need to write the pages in the file
643 * we've been given so far. redirty the locked page if it corresponds
644 * to our extent and set things up for the async work queue to run
645 * cow_file_range to do the normal delalloc dance.
646 */
647 if (page_offset(locked_page) >= start &&
648 page_offset(locked_page) <= end)
649 __set_page_dirty_nobuffers(locked_page);
650 /* unlocked later on in the async handlers */
651
652 if (redirty)
653 extent_range_redirty_for_io(inode, start, end);
654 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
655 BTRFS_COMPRESS_NONE);
656 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500657
Filipe Mananac44f6492014-10-09 21:15:44 +0100658 return;
Chris Mason771ed682008-11-06 22:02:51 -0500659
660free_pages_out:
661 for (i = 0; i < nr_pages_ret; i++) {
662 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300663 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500664 }
Chris Masond3977122009-01-05 21:25:51 -0500665 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500666}
Chris Mason771ed682008-11-06 22:02:51 -0500667
Filipe Manana40ae8372014-10-06 22:14:24 +0100668static void free_async_extent_pages(struct async_extent *async_extent)
669{
670 int i;
671
672 if (!async_extent->pages)
673 return;
674
675 for (i = 0; i < async_extent->nr_pages; i++) {
676 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300677 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100678 }
679 kfree(async_extent->pages);
680 async_extent->nr_pages = 0;
681 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500682}
683
684/*
685 * phase two of compressed writeback. This is the ordered portion
686 * of the code, which only gets called in the order the work was
687 * queued. We walk all the async extents created by compress_file_range
688 * and send them down to the disk.
689 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100690static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500691 struct async_cow *async_cow)
692{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400693 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500694 struct async_extent *async_extent;
695 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500696 struct btrfs_key ins;
697 struct extent_map *em;
698 struct btrfs_root *root = BTRFS_I(inode)->root;
699 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
700 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500701 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500702
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500703again:
Chris Masond3977122009-01-05 21:25:51 -0500704 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500705 async_extent = list_entry(async_cow->extents.next,
706 struct async_extent, list);
707 list_del(&async_extent->list);
708
709 io_tree = &BTRFS_I(inode)->io_tree;
710
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500711retry:
Chris Mason771ed682008-11-06 22:02:51 -0500712 /* did the compression code fall back to uncompressed IO? */
713 if (!async_extent->pages) {
714 int page_started = 0;
715 unsigned long nr_written = 0;
716
717 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000718 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100719 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500720
721 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500722 ret = cow_file_range(inode, async_cow->locked_page,
723 async_extent->start,
724 async_extent->start +
725 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800726 async_extent->start +
727 async_extent->ram_size - 1,
728 &page_started, &nr_written, 0,
729 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500730
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100731 /* JDM XXX */
732
Chris Mason771ed682008-11-06 22:02:51 -0500733 /*
734 * if page_started, cow_file_range inserted an
735 * inline extent and took care of all the unlocking
736 * and IO for us. Otherwise, we need to submit
737 * all those pages down to the drive.
738 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500739 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500740 extent_write_locked_range(io_tree,
741 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500742 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500743 async_extent->ram_size - 1,
744 btrfs_get_extent,
745 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500746 else if (ret)
747 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500748 kfree(async_extent);
749 cond_resched();
750 continue;
751 }
752
753 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100754 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500755
Wang Xiaoguang18513092016-07-25 15:51:40 +0800756 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500757 async_extent->compressed_size,
758 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800759 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500760 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100761 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500762
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400763 if (ret == -ENOSPC) {
764 unlock_extent(io_tree, async_extent->start,
765 async_extent->start +
766 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800767
768 /*
769 * we need to redirty the pages if we decide to
770 * fallback to uncompressed IO, otherwise we
771 * will not submit these pages down to lower
772 * layers.
773 */
774 extent_range_redirty_for_io(inode,
775 async_extent->start,
776 async_extent->start +
777 async_extent->ram_size - 1);
778
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100779 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400780 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500781 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500782 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000783 /*
784 * here we're doing allocation and writeback of the
785 * compressed pages
786 */
787 btrfs_drop_extent_cache(inode, async_extent->start,
788 async_extent->start +
789 async_extent->ram_size - 1, 0);
790
David Sterba172ddd62011-04-21 00:48:27 +0200791 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000792 if (!em) {
793 ret = -ENOMEM;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500794 goto out_free_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000795 }
Chris Mason771ed682008-11-06 22:02:51 -0500796 em->start = async_extent->start;
797 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500798 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400799 em->mod_start = em->start;
800 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500801
802 em->block_start = ins.objectid;
803 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500804 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400805 em->ram_bytes = async_extent->ram_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400806 em->bdev = fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800807 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500808 set_bit(EXTENT_FLAG_PINNED, &em->flags);
809 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400810 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500811
Chris Masond3977122009-01-05 21:25:51 -0500812 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400813 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400814 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400815 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500816 if (ret != -EEXIST) {
817 free_extent_map(em);
818 break;
819 }
820 btrfs_drop_extent_cache(inode, async_extent->start,
821 async_extent->start +
822 async_extent->ram_size - 1, 0);
823 }
824
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500825 if (ret)
826 goto out_free_reserve;
827
Li Zefan261507a02010-12-17 14:21:50 +0800828 ret = btrfs_add_ordered_extent_compress(inode,
829 async_extent->start,
830 ins.objectid,
831 async_extent->ram_size,
832 ins.offset,
833 BTRFS_ORDERED_COMPRESSED,
834 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100835 if (ret) {
836 btrfs_drop_extent_cache(inode, async_extent->start,
837 async_extent->start +
838 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500839 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100840 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400841 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500842
Chris Mason771ed682008-11-06 22:02:51 -0500843 /*
844 * clear dirty, set writeback and unlock the pages.
845 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400846 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400847 async_extent->start +
848 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800849 async_extent->start +
850 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400851 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
852 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400853 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500854 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500855 async_extent->start,
856 async_extent->ram_size,
857 ins.objectid,
858 ins.offset, async_extent->pages,
859 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100860 if (ret) {
861 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
862 struct page *p = async_extent->pages[0];
863 const u64 start = async_extent->start;
864 const u64 end = start + async_extent->ram_size - 1;
865
866 p->mapping = inode->i_mapping;
867 tree->ops->writepage_end_io_hook(p, start, end,
868 NULL, 0);
869 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800870 extent_clear_unlock_delalloc(inode, start, end, end,
871 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100872 PAGE_END_WRITEBACK |
873 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100874 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100875 }
Chris Mason771ed682008-11-06 22:02:51 -0500876 alloc_hint = ins.objectid + ins.offset;
877 kfree(async_extent);
878 cond_resched();
879 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100880 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500881out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400882 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400883 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100884out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400885 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500886 async_extent->start +
887 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800888 async_extent->start +
889 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400890 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400891 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
892 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100893 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
894 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100895 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100896 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500897 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500898}
899
Josef Bacik4b46fce2010-05-23 11:00:55 -0400900static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
901 u64 num_bytes)
902{
903 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
904 struct extent_map *em;
905 u64 alloc_hint = 0;
906
907 read_lock(&em_tree->lock);
908 em = search_extent_mapping(em_tree, start, num_bytes);
909 if (em) {
910 /*
911 * if block start isn't an actual block number then find the
912 * first block in this inode and use that as a hint. If that
913 * block is also bogus then just don't worry about it.
914 */
915 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
916 free_extent_map(em);
917 em = search_extent_mapping(em_tree, 0, 0);
918 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
919 alloc_hint = em->block_start;
920 if (em)
921 free_extent_map(em);
922 } else {
923 alloc_hint = em->block_start;
924 free_extent_map(em);
925 }
926 }
927 read_unlock(&em_tree->lock);
928
929 return alloc_hint;
930}
931
Chris Mason771ed682008-11-06 22:02:51 -0500932/*
933 * when extent_io.c finds a delayed allocation range in the file,
934 * the call backs end up in this code. The basic idea is to
935 * allocate extents on disk for the range, and create ordered data structs
936 * in ram to track those extents.
937 *
938 * locked_page is the page that writepage had locked already. We use
939 * it to make sure we don't do extra locks or unlocks.
940 *
941 * *page_started is set to one if we unlock locked_page and do everything
942 * required to start IO on it. It may be clean and already done with
943 * IO when we return.
944 */
Josef Bacik00361582013-08-14 14:02:47 -0400945static noinline int cow_file_range(struct inode *inode,
946 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800947 u64 start, u64 end, u64 delalloc_end,
948 int *page_started, unsigned long *nr_written,
949 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500950{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400951 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400952 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500953 u64 alloc_hint = 0;
954 u64 num_bytes;
955 unsigned long ram_size;
956 u64 disk_num_bytes;
957 u64 cur_alloc_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400958 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500959 struct btrfs_key ins;
960 struct extent_map *em;
961 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
962 int ret = 0;
963
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400964 if (btrfs_is_free_space_inode(inode)) {
965 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500966 ret = -EINVAL;
967 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400968 }
Chris Mason771ed682008-11-06 22:02:51 -0500969
Qu Wenruofda28322013-02-26 08:10:22 +0000970 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500971 num_bytes = max(blocksize, num_bytes);
972 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500973
Anand Jain26d30f82016-12-19 19:09:06 +0800974 inode_should_defrag(inode, start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400975
Chris Mason771ed682008-11-06 22:02:51 -0500976 if (start == 0) {
977 /* lets try to make an inline extent */
Anand Jainf74670f2016-12-06 12:43:07 +0800978 ret = cow_file_range_inline(root, inode, start, end, 0,
979 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500980 if (ret == 0) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800981 extent_clear_unlock_delalloc(inode, start, end,
982 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400983 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -0400984 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400985 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
986 PAGE_END_WRITEBACK);
Wang Xiaoguang18513092016-07-25 15:51:40 +0800987 btrfs_free_reserved_data_space_noquota(inode, start,
988 end - start + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500989 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300990 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500991 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500992 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100993 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100994 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500995 }
996 }
Chris Masonc8b97812008-10-29 14:49:59 -0400997
998 BUG_ON(disk_num_bytes >
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400999 btrfs_super_total_bytes(fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -04001000
Josef Bacik4b46fce2010-05-23 11:00:55 -04001001 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001002 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -04001003
Chris Masond3977122009-01-05 21:25:51 -05001004 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -04001005 unsigned long op;
1006
Josef Bacik287a0ab2010-03-19 18:07:23 +00001007 cur_alloc_size = disk_num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001008 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001009 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001010 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001011 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001012 goto out_unlock;
Chris Masond3977122009-01-05 21:25:51 -05001013
David Sterba172ddd62011-04-21 00:48:27 +02001014 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +00001015 if (!em) {
1016 ret = -ENOMEM;
Liu Boace68ba2013-04-22 10:53:47 +00001017 goto out_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +00001018 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001019 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -05001020 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -05001021 ram_size = ins.offset;
1022 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001023 em->mod_start = em->start;
1024 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -04001025
Chris Masone6dcd2d2008-07-17 12:53:50 -04001026 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -04001027 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05001028 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001029 em->ram_bytes = ram_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001030 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04001031 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001032 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -04001033
Chris Masond3977122009-01-05 21:25:51 -05001034 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001035 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001036 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001037 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001038 if (ret != -EEXIST) {
1039 free_extent_map(em);
1040 break;
1041 }
1042 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -04001043 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001044 }
Liu Boace68ba2013-04-22 10:53:47 +00001045 if (ret)
1046 goto out_reserve;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001047
Chris Mason98d20f62008-04-14 09:46:10 -04001048 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001049 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001050 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001051 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001052 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001053
Yan Zheng17d217f2008-12-12 10:03:38 -05001054 if (root->root_key.objectid ==
1055 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1056 ret = btrfs_reloc_clone_csums(inode, start,
1057 cur_alloc_size);
Josef Bacik00361582013-08-14 14:02:47 -04001058 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001059 goto out_drop_extent_cache;
Yan Zheng17d217f2008-12-12 10:03:38 -05001060 }
1061
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001062 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001063
Chris Masond3977122009-01-05 21:25:51 -05001064 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -04001065 break;
Chris Masond3977122009-01-05 21:25:51 -05001066
Chris Masonc8b97812008-10-29 14:49:59 -04001067 /* we're not doing compressed IO, don't unlock the first
1068 * page (which the caller expects to stay locked), don't
1069 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001070 *
1071 * Do set the Private2 bit so we know this page was properly
1072 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001073 */
Josef Bacikc2790a22013-07-29 11:20:47 -04001074 op = unlock ? PAGE_UNLOCK : 0;
1075 op |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001076
Josef Bacikc2790a22013-07-29 11:20:47 -04001077 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001078 start + ram_size - 1,
1079 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001080 EXTENT_LOCKED | EXTENT_DELALLOC,
1081 op);
Chris Masonc8b97812008-10-29 14:49:59 -04001082 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001083 num_bytes -= cur_alloc_size;
1084 alloc_hint = ins.objectid + ins.offset;
1085 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -04001086 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001087out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001088 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001089
Filipe Mananad9f85962014-08-25 10:43:00 +01001090out_drop_extent_cache:
1091 btrfs_drop_extent_cache(inode, start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001092out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001093 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001094 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001095out_unlock:
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001096 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1097 locked_page,
Josef Bacik151a41b2013-07-29 13:22:24 -04001098 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1099 EXTENT_DELALLOC | EXTENT_DEFRAG,
1100 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1101 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001102 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001103}
Chris Masonc8b97812008-10-29 14:49:59 -04001104
Chris Mason771ed682008-11-06 22:02:51 -05001105/*
1106 * work queue call back to started compression on a file and pages
1107 */
1108static noinline void async_cow_start(struct btrfs_work *work)
1109{
1110 struct async_cow *async_cow;
1111 int num_added = 0;
1112 async_cow = container_of(work, struct async_cow, work);
1113
1114 compress_file_range(async_cow->inode, async_cow->locked_page,
1115 async_cow->start, async_cow->end, async_cow,
1116 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001117 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001118 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001119 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001120 }
Chris Mason771ed682008-11-06 22:02:51 -05001121}
1122
1123/*
1124 * work queue call back to submit previously compressed pages
1125 */
1126static noinline void async_cow_submit(struct btrfs_work *work)
1127{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001128 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001129 struct async_cow *async_cow;
1130 struct btrfs_root *root;
1131 unsigned long nr_pages;
1132
1133 async_cow = container_of(work, struct async_cow, work);
1134
1135 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001136 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001137 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1138 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001139
David Sterbaee863952015-02-16 19:41:40 +01001140 /*
1141 * atomic_sub_return implies a barrier for waitqueue_active
1142 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001143 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
Byongho Leeee221842015-12-15 01:42:10 +09001144 5 * SZ_1M &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001145 waitqueue_active(&fs_info->async_submit_wait))
1146 wake_up(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001147
Chris Masond3977122009-01-05 21:25:51 -05001148 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001149 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001150}
Chris Masonc8b97812008-10-29 14:49:59 -04001151
Chris Mason771ed682008-11-06 22:02:51 -05001152static noinline void async_cow_free(struct btrfs_work *work)
1153{
1154 struct async_cow *async_cow;
1155 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001156 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001157 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001158 kfree(async_cow);
1159}
1160
1161static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1162 u64 start, u64 end, int *page_started,
1163 unsigned long *nr_written)
1164{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001165 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001166 struct async_cow *async_cow;
1167 struct btrfs_root *root = BTRFS_I(inode)->root;
1168 unsigned long nr_pages;
1169 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001170
Chris Masona3429ab2009-10-08 12:30:20 -04001171 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1172 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001173 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001174 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001175 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001176 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001177 async_cow->root = root;
1178 async_cow->locked_page = locked_page;
1179 async_cow->start = start;
1180
Wang Shilongf79707b2014-07-17 11:44:09 +08001181 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001182 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001183 cur_end = end;
1184 else
Byongho Leeee221842015-12-15 01:42:10 +09001185 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001186
1187 async_cow->end = cur_end;
1188 INIT_LIST_HEAD(&async_cow->extents);
1189
Liu Bo9e0af232014-08-15 23:36:53 +08001190 btrfs_init_work(&async_cow->work,
1191 btrfs_delalloc_helper,
1192 async_cow_start, async_cow_submit,
1193 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001194
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001195 nr_pages = (cur_end - start + PAGE_SIZE) >>
1196 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001197 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001198
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001199 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001200
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001201 while (atomic_read(&fs_info->async_submit_draining) &&
1202 atomic_read(&fs_info->async_delalloc_pages)) {
1203 wait_event(fs_info->async_submit_wait,
1204 (atomic_read(&fs_info->async_delalloc_pages) ==
1205 0));
Chris Mason771ed682008-11-06 22:02:51 -05001206 }
1207
1208 *nr_written += nr_pages;
1209 start = cur_end + 1;
1210 }
1211 *page_started = 1;
1212 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001213}
1214
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001215static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001216 u64 bytenr, u64 num_bytes)
1217{
1218 int ret;
1219 struct btrfs_ordered_sum *sums;
1220 LIST_HEAD(list);
1221
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001222 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001223 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001224 if (ret == 0 && list_empty(&list))
1225 return 0;
1226
1227 while (!list_empty(&list)) {
1228 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1229 list_del(&sums->list);
1230 kfree(sums);
1231 }
1232 return 1;
1233}
1234
Chris Masond352ac62008-09-29 15:18:18 -04001235/*
1236 * when nowcow writeback call back. This checks for snapshots or COW copies
1237 * of the extents that exist in the file, and COWs the file as required.
1238 *
1239 * If no cow copies or snapshots exist, we write directly to the existing
1240 * blocks on disk
1241 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001242static noinline int run_delalloc_nocow(struct inode *inode,
1243 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001244 u64 start, u64 end, int *page_started, int force,
1245 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001246{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001248 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001249 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001250 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001251 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001252 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001253 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001254 u64 cow_start;
1255 u64 cur_offset;
1256 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001257 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001258 u64 disk_bytenr;
1259 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001260 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001261 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001262 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001263 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001264 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 int nocow;
1266 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001267 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001268 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001269
1270 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001271 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001272 extent_clear_unlock_delalloc(inode, start, end, end,
1273 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001274 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001275 EXTENT_DO_ACCOUNTING |
1276 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001277 PAGE_CLEAR_DIRTY |
1278 PAGE_SET_WRITEBACK |
1279 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001280 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001281 }
Li Zefan82d59022011-04-20 10:33:24 +08001282
Liu Bo83eea1f2012-07-10 05:28:39 -06001283 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001284
1285 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001286 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001287 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001288 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001289
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001290 if (IS_ERR(trans)) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001291 extent_clear_unlock_delalloc(inode, start, end, end,
1292 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001293 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001294 EXTENT_DO_ACCOUNTING |
1295 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001296 PAGE_CLEAR_DIRTY |
1297 PAGE_SET_WRITEBACK |
1298 PAGE_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001299 btrfs_free_path(path);
1300 return PTR_ERR(trans);
1301 }
1302
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001303 trans->block_rsv = &fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001304
Yan Zheng80ff3852008-10-30 14:20:02 -04001305 cow_start = (u64)-1;
1306 cur_offset = start;
1307 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001308 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001309 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001310 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001311 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001312 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1313 leaf = path->nodes[0];
1314 btrfs_item_key_to_cpu(leaf, &found_key,
1315 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001316 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001317 found_key.type == BTRFS_EXTENT_DATA_KEY)
1318 path->slots[0]--;
1319 }
1320 check_prev = 0;
1321next_slot:
1322 leaf = path->nodes[0];
1323 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1324 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001325 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001326 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001327 if (ret > 0)
1328 break;
1329 leaf = path->nodes[0];
1330 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001331
Yan Zheng80ff3852008-10-30 14:20:02 -04001332 nocow = 0;
1333 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001334 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001335 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001336
Filipe Manana1d512cb2015-11-09 00:33:58 +00001337 if (found_key.objectid > ino)
1338 break;
1339 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1340 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1341 path->slots[0]++;
1342 goto next_slot;
1343 }
1344 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 found_key.offset > end)
1346 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001347
Yan Zheng80ff3852008-10-30 14:20:02 -04001348 if (found_key.offset > cur_offset) {
1349 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001350 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001351 goto out_check;
1352 }
Chris Masonc31f8832008-01-08 15:46:31 -05001353
Yan Zheng80ff3852008-10-30 14:20:02 -04001354 fi = btrfs_item_ptr(leaf, path->slots[0],
1355 struct btrfs_file_extent_item);
1356 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001357
Josef Bacikcc95bef2013-04-04 14:31:27 -04001358 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001359 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1360 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001361 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001362 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001363 extent_end = found_key.offset +
1364 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001365 disk_num_bytes =
1366 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001367 if (extent_end <= start) {
1368 path->slots[0]++;
1369 goto next_slot;
1370 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001371 if (disk_bytenr == 0)
1372 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001373 if (btrfs_file_extent_compression(leaf, fi) ||
1374 btrfs_file_extent_encryption(leaf, fi) ||
1375 btrfs_file_extent_other_encoding(leaf, fi))
1376 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001377 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1378 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001379 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001380 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001381 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001382 found_key.offset -
1383 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001384 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001385 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001386 disk_bytenr += cur_offset - found_key.offset;
1387 num_bytes = min(end + 1, extent_end) - cur_offset;
1388 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001389 * if there are pending snapshots for this root,
1390 * we fall into common COW way.
1391 */
1392 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001393 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001394 if (!err)
1395 goto out_check;
1396 }
1397 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001398 * force cow if csum exists in the range.
1399 * this ensure that csum for a given extent are
1400 * either valid or do not exist.
1401 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001402 if (csum_exist_in_range(fs_info, disk_bytenr,
1403 num_bytes))
Yan Zheng17d217f2008-12-12 10:03:38 -05001404 goto out_check;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001405 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr))
Filipe Mananaf78c4362016-05-09 13:15:41 +01001406 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001407 nocow = 1;
1408 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1409 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001410 btrfs_file_extent_inline_len(leaf,
1411 path->slots[0], fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001412 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001413 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001414 } else {
1415 BUG_ON(1);
1416 }
1417out_check:
1418 if (extent_end <= start) {
1419 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001420 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001421 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001422 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001423 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001424 goto next_slot;
1425 }
1426 if (!nocow) {
1427 if (cow_start == (u64)-1)
1428 cow_start = cur_offset;
1429 cur_offset = extent_end;
1430 if (cur_offset > end)
1431 break;
1432 path->slots[0]++;
1433 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001434 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001435
David Sterbab3b4aa72011-04-21 01:20:15 +02001436 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001437 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001438 ret = cow_file_range(inode, locked_page,
1439 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001440 end, page_started, nr_written, 1,
1441 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001442 if (ret) {
1443 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001444 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001445 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001446 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001447 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001448 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001449 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001450 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001451 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001452
Yan Zhengd899e052008-10-30 14:25:28 -04001453 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1454 struct extent_map *em;
1455 struct extent_map_tree *em_tree;
1456 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001457 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001458 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001459 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001460 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001461 em->len = num_bytes;
1462 em->block_len = num_bytes;
1463 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001464 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001465 em->ram_bytes = ram_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001466 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001467 em->mod_start = em->start;
1468 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001469 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001470 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001471 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001472 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001473 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001474 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001475 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001476 if (ret != -EEXIST) {
1477 free_extent_map(em);
1478 break;
1479 }
1480 btrfs_drop_extent_cache(inode, em->start,
1481 em->start + em->len - 1, 0);
1482 }
1483 type = BTRFS_ORDERED_PREALLOC;
1484 } else {
1485 type = BTRFS_ORDERED_NOCOW;
1486 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001487
1488 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001489 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001490 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001491 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001492 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001493
Yan, Zhengefa56462010-05-16 10:49:59 -04001494 if (root->root_key.objectid ==
1495 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1496 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1497 num_bytes);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001498 if (ret) {
1499 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001500 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001501 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001502 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001503 }
1504
Josef Bacikc2790a22013-07-29 11:20:47 -04001505 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001506 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001507 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001508 EXTENT_DELALLOC |
1509 EXTENT_CLEAR_DATA_RESV,
1510 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1511
Wang Shilonge9894fd2014-03-27 11:12:25 +08001512 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001513 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001514 cur_offset = extent_end;
1515 if (cur_offset > end)
1516 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001517 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001518 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001519
Josef Bacik17ca04a2012-05-31 15:58:55 -04001520 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001521 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001522 cur_offset = end;
1523 }
1524
Yan Zheng80ff3852008-10-30 14:20:02 -04001525 if (cow_start != (u64)-1) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001526 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1527 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001528 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001529 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001530 }
1531
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001532error:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001533 err = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001534 if (!ret)
1535 ret = err;
1536
Josef Bacik17ca04a2012-05-31 15:58:55 -04001537 if (ret && cur_offset < end)
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001538 extent_clear_unlock_delalloc(inode, cur_offset, end, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001539 locked_page, EXTENT_LOCKED |
Josef Bacik151a41b2013-07-29 13:22:24 -04001540 EXTENT_DELALLOC | EXTENT_DEFRAG |
1541 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1542 PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -04001543 PAGE_SET_WRITEBACK |
1544 PAGE_END_WRITEBACK);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001545 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001546 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001547}
1548
Wang Shilong47059d92014-07-03 18:22:07 +08001549static inline int need_force_cow(struct inode *inode, u64 start, u64 end)
1550{
1551
1552 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
1553 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC))
1554 return 0;
1555
1556 /*
1557 * @defrag_bytes is a hint value, no spinlock held here,
1558 * if is not zero, it means the file is defragging.
1559 * Force cow if given extent needs to be defragged.
1560 */
1561 if (BTRFS_I(inode)->defrag_bytes &&
1562 test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1563 EXTENT_DEFRAG, 0, NULL))
1564 return 1;
1565
1566 return 0;
1567}
1568
Chris Masond352ac62008-09-29 15:18:18 -04001569/*
1570 * extent_io.c call back to do delayed allocation processing
1571 */
Chris Masonc8b97812008-10-29 14:49:59 -04001572static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001573 u64 start, u64 end, int *page_started,
1574 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001575{
Chris Masonbe20aa92007-12-17 20:14:01 -05001576 int ret;
Wang Shilong47059d92014-07-03 18:22:07 +08001577 int force_cow = need_force_cow(inode, start, end);
Chris Masona2135012008-06-25 16:01:30 -04001578
Wang Shilong47059d92014-07-03 18:22:07 +08001579 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) {
Chris Masonc8b97812008-10-29 14:49:59 -04001580 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001581 page_started, 1, nr_written);
Wang Shilong47059d92014-07-03 18:22:07 +08001582 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) {
Yan Zhengd899e052008-10-30 14:25:28 -04001583 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001584 page_started, 0, nr_written);
Wang Shilong78160302014-07-17 11:44:10 +08001585 } else if (!inode_need_compress(inode)) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001586 ret = cow_file_range(inode, locked_page, start, end, end,
1587 page_started, nr_written, 1, NULL);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001588 } else {
1589 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1590 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001591 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001592 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001593 }
Chris Masonb888db22007-08-27 16:49:44 -04001594 return ret;
1595}
1596
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001597static void btrfs_split_extent_hook(struct inode *inode,
1598 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001599{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001600 u64 size;
1601
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001602 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001603 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001604 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001605
Josef Bacikdcab6a32015-02-11 15:08:59 -05001606 size = orig->end - orig->start + 1;
1607 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001608 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001609 u64 new_size;
1610
1611 /*
Josef Bacikba117212015-03-13 15:01:24 -04001612 * See the explanation in btrfs_merge_extent_hook, the same
1613 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001614 */
1615 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001616 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001617 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001618 num_extents += count_max_extents(new_size);
1619 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001620 return;
1621 }
1622
Josef Bacik9e0baf62011-07-15 15:16:44 +00001623 spin_lock(&BTRFS_I(inode)->lock);
1624 BTRFS_I(inode)->outstanding_extents++;
1625 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001626}
1627
1628/*
1629 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1630 * extents so we can keep track of new extents that are just merged onto old
1631 * extents, such as when we are doing sequential writes, so we can properly
1632 * account for the metadata space we'll need.
1633 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001634static void btrfs_merge_extent_hook(struct inode *inode,
1635 struct extent_state *new,
1636 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001637{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001638 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001639 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001640
Josef Bacik9ed74f22009-09-11 16:12:44 -04001641 /* not delalloc, ignore it */
1642 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001643 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001644
Josef Bacik8461a3d2015-03-13 15:12:08 -04001645 if (new->start > other->start)
1646 new_size = new->end - other->start + 1;
1647 else
1648 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001649
1650 /* we're not bigger than the max, unreserve the space and go */
1651 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1652 spin_lock(&BTRFS_I(inode)->lock);
1653 BTRFS_I(inode)->outstanding_extents--;
1654 spin_unlock(&BTRFS_I(inode)->lock);
1655 return;
1656 }
1657
1658 /*
Josef Bacikba117212015-03-13 15:01:24 -04001659 * We have to add up either side to figure out how many extents were
1660 * accounted for before we merged into one big extent. If the number of
1661 * extents we accounted for is <= the amount we need for the new range
1662 * then we can return, otherwise drop. Think of it like this
1663 *
1664 * [ 4k][MAX_SIZE]
1665 *
1666 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1667 * need 2 outstanding extents, on one side we have 1 and the other side
1668 * we have 1 so they are == and we can return. But in this case
1669 *
1670 * [MAX_SIZE+4k][MAX_SIZE+4k]
1671 *
1672 * Each range on their own accounts for 2 extents, but merged together
1673 * they are only 3 extents worth of accounting, so we need to drop in
1674 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001675 */
Josef Bacikba117212015-03-13 15:01:24 -04001676 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001677 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001678 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001679 num_extents += count_max_extents(old_size);
1680 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001681 return;
1682
Josef Bacik9e0baf62011-07-15 15:16:44 +00001683 spin_lock(&BTRFS_I(inode)->lock);
1684 BTRFS_I(inode)->outstanding_extents--;
1685 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001686}
1687
Miao Xieeb73c1b2013-05-15 07:48:22 +00001688static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1689 struct inode *inode)
1690{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001691 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1692
Miao Xieeb73c1b2013-05-15 07:48:22 +00001693 spin_lock(&root->delalloc_lock);
1694 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1695 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1696 &root->delalloc_inodes);
1697 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1698 &BTRFS_I(inode)->runtime_flags);
1699 root->nr_delalloc_inodes++;
1700 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001701 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001702 BUG_ON(!list_empty(&root->delalloc_root));
1703 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001704 &fs_info->delalloc_roots);
1705 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001706 }
1707 }
1708 spin_unlock(&root->delalloc_lock);
1709}
1710
1711static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1712 struct inode *inode)
1713{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001714 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1715
Miao Xieeb73c1b2013-05-15 07:48:22 +00001716 spin_lock(&root->delalloc_lock);
1717 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1718 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1719 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1720 &BTRFS_I(inode)->runtime_flags);
1721 root->nr_delalloc_inodes--;
1722 if (!root->nr_delalloc_inodes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001723 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001724 BUG_ON(list_empty(&root->delalloc_root));
1725 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001726 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001727 }
1728 }
1729 spin_unlock(&root->delalloc_lock);
1730}
1731
Chris Masond352ac62008-09-29 15:18:18 -04001732/*
1733 * extent_io.c set_bit_hook, used to track delayed allocation
1734 * bytes in this file, and to maintain the list of inodes that
1735 * have pending delalloc work to be done.
1736 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001737static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001738 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001739{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001740
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001741 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1742
Wang Shilong47059d92014-07-03 18:22:07 +08001743 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1744 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001745 /*
1746 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001747 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001748 * bit, which is only set or cleared with irqs on
1749 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001750 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001751 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001752 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001753 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001754
Josef Bacik9e0baf62011-07-15 15:16:44 +00001755 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001756 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001757 } else {
1758 spin_lock(&BTRFS_I(inode)->lock);
1759 BTRFS_I(inode)->outstanding_extents++;
1760 spin_unlock(&BTRFS_I(inode)->lock);
1761 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001762
Josef Bacik6a3891c2015-03-16 17:38:52 -04001763 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001764 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001765 return;
1766
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001767 __percpu_counter_add(&fs_info->delalloc_bytes, len,
1768 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001769 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001770 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001771 if (*bits & EXTENT_DEFRAG)
1772 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001773 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001774 &BTRFS_I(inode)->runtime_flags))
1775 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001776 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001777 }
Chris Mason291d6732008-01-29 15:55:23 -05001778}
1779
Chris Masond352ac62008-09-29 15:18:18 -04001780/*
1781 * extent_io.c clear_bit_hook, see set_bit_hook for why
1782 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001783static void btrfs_clear_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001784 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001785 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001786{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001787 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001788 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001789 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001790
1791 spin_lock(&BTRFS_I(inode)->lock);
1792 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
1793 BTRFS_I(inode)->defrag_bytes -= len;
1794 spin_unlock(&BTRFS_I(inode)->lock);
1795
Chris Mason75eff682008-12-15 15:54:40 -05001796 /*
1797 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001798 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001799 * bit, which is only set or cleared with irqs on
1800 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001801 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001802 struct btrfs_root *root = BTRFS_I(inode)->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001803 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001804
Josef Bacik9e0baf62011-07-15 15:16:44 +00001805 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001806 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001807 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1808 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05001809 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001810 spin_unlock(&BTRFS_I(inode)->lock);
1811 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001812
Josef Bacikb6d08f02013-09-27 14:57:43 -04001813 /*
1814 * We don't reserve metadata space for space cache inodes so we
1815 * don't need to call dellalloc_release_metadata if there is an
1816 * error.
1817 */
1818 if (*bits & EXTENT_DO_ACCOUNTING &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001819 root != fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001820 btrfs_delalloc_release_metadata(inode, len);
1821
Josef Bacik6a3891c2015-03-16 17:38:52 -04001822 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001823 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001824 return;
1825
Josef Bacik0cb59c92010-07-02 12:14:14 -04001826 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Wang Xiaoguang18513092016-07-25 15:51:40 +08001827 && do_list && !(state->state & EXTENT_NORESERVE)
1828 && (*bits & (EXTENT_DO_ACCOUNTING |
1829 EXTENT_CLEAR_DATA_RESV)))
Qu Wenruo51773be2015-10-08 18:19:37 +08001830 btrfs_free_reserved_data_space_noquota(inode,
1831 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001832
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001833 __percpu_counter_add(&fs_info->delalloc_bytes, -len,
1834 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001835 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001836 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001837 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001838 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001839 &BTRFS_I(inode)->runtime_flags))
1840 btrfs_del_delalloc_inode(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001841 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001842 }
Chris Mason291d6732008-01-29 15:55:23 -05001843}
1844
Chris Masond352ac62008-09-29 15:18:18 -04001845/*
1846 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1847 * we don't create bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001848 *
1849 * return 1 if page cannot be merged to bio
1850 * return 0 if page can be merged to bio
1851 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001852 */
Mike Christie81a75f672016-06-05 14:31:54 -05001853int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001854 size_t size, struct bio *bio,
1855 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001856{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001857 struct inode *inode = page->mapping->host;
1858 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001859 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001860 u64 length = 0;
1861 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001862 int ret;
1863
Chris Mason771ed682008-11-06 22:02:51 -05001864 if (bio_flags & EXTENT_BIO_COMPRESSED)
1865 return 0;
1866
Kent Overstreet4f024f32013-10-11 15:44:27 -07001867 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001868 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001869 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1870 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001871 if (ret < 0)
1872 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001873 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001874 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001875 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001876}
1877
Chris Masond352ac62008-09-29 15:18:18 -04001878/*
1879 * in order to insert checksums into the metadata in large chunks,
1880 * we wait until bio submission time. All the pages in the bio are
1881 * checksummed and sums are attached onto the ordered extent record.
1882 *
1883 * At IO completion time the cums attached on the ordered extent record
1884 * are inserted into the btree
1885 */
Mike Christie81a75f672016-06-05 14:31:54 -05001886static int __btrfs_submit_bio_start(struct inode *inode, struct bio *bio,
1887 int mirror_num, unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -04001888 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001889{
Chris Mason065631f2008-02-20 12:07:25 -05001890 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001891
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001892 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001893 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001894 return 0;
1895}
Chris Masone0156402008-04-16 11:15:20 -04001896
Chris Mason4a69a412008-11-06 22:03:00 -05001897/*
1898 * in order to insert checksums into the metadata in large chunks,
1899 * we wait until bio submission time. All the pages in the bio are
1900 * checksummed and sums are attached onto the ordered extent record.
1901 *
1902 * At IO completion time the cums attached on the ordered extent record
1903 * are inserted into the btree
1904 */
Mike Christie81a75f672016-06-05 14:31:54 -05001905static int __btrfs_submit_bio_done(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001906 int mirror_num, unsigned long bio_flags,
1907 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001908{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001909 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Stefan Behrens61891922012-11-05 18:51:52 +01001910 int ret;
1911
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001912 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001913 if (ret) {
1914 bio->bi_error = ret;
1915 bio_endio(bio);
1916 }
Stefan Behrens61891922012-11-05 18:51:52 +01001917 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001918}
1919
Chris Masond352ac62008-09-29 15:18:18 -04001920/*
Chris Masoncad321a2008-12-17 14:51:42 -05001921 * extent_io.c submission hook. This does the right thing for csum calculation
1922 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001923 */
Mike Christie81a75f672016-06-05 14:31:54 -05001924static int btrfs_submit_bio_hook(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001925 int mirror_num, unsigned long bio_flags,
1926 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001927{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001928 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001929 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301930 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Chris Mason44b8bd72008-04-16 11:14:51 -04001931 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001932 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001933 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001934
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001935 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001936
Liu Bo83eea1f2012-07-10 05:28:39 -06001937 if (btrfs_is_free_space_inode(inode))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301938 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001939
Mike Christie37226b22016-06-05 14:31:52 -05001940 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001941 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001942 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001943 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001944
Chris Masond20f7042008-12-08 16:58:54 -05001945 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001946 ret = btrfs_submit_compressed_read(inode, bio,
1947 mirror_num,
1948 bio_flags);
1949 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001950 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001951 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001952 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001953 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001954 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001955 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001956 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001957 /* csum items have already been cloned */
1958 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1959 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001960 /* we're doing a write, do the async checksumming */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001961 ret = btrfs_wq_submit_bio(fs_info, inode, bio, mirror_num,
1962 bio_flags, bio_offset,
1963 __btrfs_submit_bio_start,
1964 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001965 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001966 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001967 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05001968 if (ret)
1969 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001970 }
1971
Chris Mason0b86a832008-03-24 15:01:56 -04001972mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001973 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01001974
1975out:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001976 if (ret < 0) {
1977 bio->bi_error = ret;
1978 bio_endio(bio);
1979 }
Stefan Behrens61891922012-11-05 18:51:52 +01001980 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001981}
Chris Mason6885f302008-02-20 16:11:05 -05001982
Chris Masond352ac62008-09-29 15:18:18 -04001983/*
1984 * given a list of ordered sums record them in the inode. This happens
1985 * at IO completion time based on sums calculated at bio submission time.
1986 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001987static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001988 struct inode *inode, u64 file_offset,
1989 struct list_head *list)
1990{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001991 struct btrfs_ordered_sum *sum;
1992
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001993 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001994 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001995 btrfs_csum_file_blocks(trans,
1996 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001997 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001998 }
1999 return 0;
2000}
2001
Josef Bacik2ac55d42010-02-03 19:33:23 +00002002int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002003 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002004{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002005 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002006 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
David Sterba7cd8c752016-04-26 23:54:39 +02002007 cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002008}
2009
Chris Masond352ac62008-09-29 15:18:18 -04002010/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002011struct btrfs_writepage_fixup {
2012 struct page *page;
2013 struct btrfs_work work;
2014};
2015
Christoph Hellwigb2950862008-12-02 09:54:17 -05002016static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002017{
2018 struct btrfs_writepage_fixup *fixup;
2019 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002020 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002021 struct page *page;
2022 struct inode *inode;
2023 u64 page_start;
2024 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002025 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002026
2027 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2028 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002029again:
Chris Mason247e7432008-07-17 12:53:51 -04002030 lock_page(page);
2031 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2032 ClearPageChecked(page);
2033 goto out_page;
2034 }
2035
2036 inode = page->mapping->host;
2037 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002038 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002039
David Sterbaff13db42015-12-03 14:30:40 +01002040 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002041 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002042
2043 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002044 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002045 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002046
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05302047 ordered = btrfs_lookup_ordered_range(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002048 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002049 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002050 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
2051 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04002052 unlock_page(page);
2053 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002054 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002055 goto again;
2056 }
Chris Mason247e7432008-07-17 12:53:51 -04002057
Qu Wenruo7cf5b972015-09-08 17:25:55 +08002058 ret = btrfs_delalloc_reserve_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002059 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002060 if (ret) {
2061 mapping_set_error(page->mapping, ret);
2062 end_extent_writepage(page, ret, page_start, page_end);
2063 ClearPageChecked(page);
2064 goto out;
2065 }
2066
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002067 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state,
2068 0);
Chris Mason247e7432008-07-17 12:53:51 -04002069 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002070 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04002071out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002072 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
2073 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04002074out_page:
2075 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002077 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04002078}
2079
2080/*
2081 * There are a few paths in the higher layers of the kernel that directly
2082 * set the page dirty bit without asking the filesystem if it is a
2083 * good idea. This causes problems because we want to make sure COW
2084 * properly happens and the data=ordered rules are followed.
2085 *
Chris Masonc8b97812008-10-29 14:49:59 -04002086 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002087 * hasn't been properly setup for IO. We kick off an async process
2088 * to fix it up. The async helper will wait for ordered extents, set
2089 * the delalloc bit and make it safe to write the page.
2090 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002091static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002092{
2093 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002094 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002095 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002096
Chris Mason8b62b722009-09-02 16:53:46 -04002097 /* this page is properly in the ordered list */
2098 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002099 return 0;
2100
2101 if (PageChecked(page))
2102 return -EAGAIN;
2103
2104 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2105 if (!fixup)
2106 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002107
Chris Mason247e7432008-07-17 12:53:51 -04002108 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002109 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002110 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2111 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002112 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002113 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002114 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002115}
2116
Yan Zhengd899e052008-10-30 14:25:28 -04002117static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2118 struct inode *inode, u64 file_pos,
2119 u64 disk_bytenr, u64 disk_num_bytes,
2120 u64 num_bytes, u64 ram_bytes,
2121 u8 compression, u8 encryption,
2122 u16 other_encoding, int extent_type)
2123{
2124 struct btrfs_root *root = BTRFS_I(inode)->root;
2125 struct btrfs_file_extent_item *fi;
2126 struct btrfs_path *path;
2127 struct extent_buffer *leaf;
2128 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002129 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002130 int ret;
2131
2132 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002133 if (!path)
2134 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002135
Chris Masona1ed8352009-09-11 12:27:37 -04002136 /*
2137 * we may be replacing one extent in the tree with another.
2138 * The new extent is pinned in the extent map, and we don't want
2139 * to drop it from the cache until it is completely in the btree.
2140 *
2141 * So, tell btrfs_drop_extents to leave this extent in the cache.
2142 * the caller is expected to unpin it and allow it to be merged
2143 * with the others.
2144 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002145 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2146 file_pos + num_bytes, NULL, 0,
2147 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002148 if (ret)
2149 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002150
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002151 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002152 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002153 ins.offset = file_pos;
2154 ins.type = BTRFS_EXTENT_DATA_KEY;
2155
2156 path->leave_spinning = 1;
2157 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2158 sizeof(*fi));
2159 if (ret)
2160 goto out;
2161 }
Yan Zhengd899e052008-10-30 14:25:28 -04002162 leaf = path->nodes[0];
2163 fi = btrfs_item_ptr(leaf, path->slots[0],
2164 struct btrfs_file_extent_item);
2165 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2166 btrfs_set_file_extent_type(leaf, fi, extent_type);
2167 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2168 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2169 btrfs_set_file_extent_offset(leaf, fi, 0);
2170 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2171 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2172 btrfs_set_file_extent_compression(leaf, fi, compression);
2173 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2174 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002175
Yan Zhengd899e052008-10-30 14:25:28 -04002176 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002177 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002178
2179 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002180
2181 ins.objectid = disk_bytenr;
2182 ins.offset = disk_num_bytes;
2183 ins.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002184 ret = btrfs_alloc_reserved_file_extent(trans, root->root_key.objectid,
David Sterbaf85b7372017-01-20 14:54:07 +01002185 btrfs_ino(BTRFS_I(inode)), file_pos, ram_bytes, &ins);
Qu Wenruo297d7502015-09-08 17:08:37 +08002186 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002187 * Release the reserved range from inode dirty range map, as it is
2188 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002189 */
2190 btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002191out:
Yan Zhengd899e052008-10-30 14:25:28 -04002192 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002193
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002194 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002195}
2196
Liu Bo38c227d2013-01-29 03:18:40 +00002197/* snapshot-aware defrag */
2198struct sa_defrag_extent_backref {
2199 struct rb_node node;
2200 struct old_sa_defrag_extent *old;
2201 u64 root_id;
2202 u64 inum;
2203 u64 file_pos;
2204 u64 extent_offset;
2205 u64 num_bytes;
2206 u64 generation;
2207};
2208
2209struct old_sa_defrag_extent {
2210 struct list_head list;
2211 struct new_sa_defrag_extent *new;
2212
2213 u64 extent_offset;
2214 u64 bytenr;
2215 u64 offset;
2216 u64 len;
2217 int count;
2218};
2219
2220struct new_sa_defrag_extent {
2221 struct rb_root root;
2222 struct list_head head;
2223 struct btrfs_path *path;
2224 struct inode *inode;
2225 u64 file_pos;
2226 u64 len;
2227 u64 bytenr;
2228 u64 disk_len;
2229 u8 compress_type;
2230};
2231
2232static int backref_comp(struct sa_defrag_extent_backref *b1,
2233 struct sa_defrag_extent_backref *b2)
2234{
2235 if (b1->root_id < b2->root_id)
2236 return -1;
2237 else if (b1->root_id > b2->root_id)
2238 return 1;
2239
2240 if (b1->inum < b2->inum)
2241 return -1;
2242 else if (b1->inum > b2->inum)
2243 return 1;
2244
2245 if (b1->file_pos < b2->file_pos)
2246 return -1;
2247 else if (b1->file_pos > b2->file_pos)
2248 return 1;
2249
2250 /*
2251 * [------------------------------] ===> (a range of space)
2252 * |<--->| |<---->| =============> (fs/file tree A)
2253 * |<---------------------------->| ===> (fs/file tree B)
2254 *
2255 * A range of space can refer to two file extents in one tree while
2256 * refer to only one file extent in another tree.
2257 *
2258 * So we may process a disk offset more than one time(two extents in A)
2259 * and locate at the same extent(one extent in B), then insert two same
2260 * backrefs(both refer to the extent in B).
2261 */
2262 return 0;
2263}
2264
2265static void backref_insert(struct rb_root *root,
2266 struct sa_defrag_extent_backref *backref)
2267{
2268 struct rb_node **p = &root->rb_node;
2269 struct rb_node *parent = NULL;
2270 struct sa_defrag_extent_backref *entry;
2271 int ret;
2272
2273 while (*p) {
2274 parent = *p;
2275 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2276
2277 ret = backref_comp(backref, entry);
2278 if (ret < 0)
2279 p = &(*p)->rb_left;
2280 else
2281 p = &(*p)->rb_right;
2282 }
2283
2284 rb_link_node(&backref->node, parent, p);
2285 rb_insert_color(&backref->node, root);
2286}
2287
2288/*
2289 * Note the backref might has changed, and in this case we just return 0.
2290 */
2291static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2292 void *ctx)
2293{
2294 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002295 struct old_sa_defrag_extent *old = ctx;
2296 struct new_sa_defrag_extent *new = old->new;
2297 struct btrfs_path *path = new->path;
2298 struct btrfs_key key;
2299 struct btrfs_root *root;
2300 struct sa_defrag_extent_backref *backref;
2301 struct extent_buffer *leaf;
2302 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002303 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002304 int slot;
2305 int ret;
2306 u64 extent_offset;
2307 u64 num_bytes;
2308
2309 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002310 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002311 return 0;
2312
2313 key.objectid = root_id;
2314 key.type = BTRFS_ROOT_ITEM_KEY;
2315 key.offset = (u64)-1;
2316
Liu Bo38c227d2013-01-29 03:18:40 +00002317 root = btrfs_read_fs_root_no_name(fs_info, &key);
2318 if (IS_ERR(root)) {
2319 if (PTR_ERR(root) == -ENOENT)
2320 return 0;
2321 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002322 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002323 inum, offset, root_id);
2324 return PTR_ERR(root);
2325 }
2326
2327 key.objectid = inum;
2328 key.type = BTRFS_EXTENT_DATA_KEY;
2329 if (offset > (u64)-1 << 32)
2330 key.offset = 0;
2331 else
2332 key.offset = offset;
2333
2334 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302335 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002336 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002337 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002338
2339 while (1) {
2340 cond_resched();
2341
2342 leaf = path->nodes[0];
2343 slot = path->slots[0];
2344
2345 if (slot >= btrfs_header_nritems(leaf)) {
2346 ret = btrfs_next_leaf(root, path);
2347 if (ret < 0) {
2348 goto out;
2349 } else if (ret > 0) {
2350 ret = 0;
2351 goto out;
2352 }
2353 continue;
2354 }
2355
2356 path->slots[0]++;
2357
2358 btrfs_item_key_to_cpu(leaf, &key, slot);
2359
2360 if (key.objectid > inum)
2361 goto out;
2362
2363 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2364 continue;
2365
2366 extent = btrfs_item_ptr(leaf, slot,
2367 struct btrfs_file_extent_item);
2368
2369 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2370 continue;
2371
Liu Boe68afa42013-07-01 22:13:26 +08002372 /*
2373 * 'offset' refers to the exact key.offset,
2374 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2375 * (key.offset - extent_offset).
2376 */
2377 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002378 continue;
2379
Liu Boe68afa42013-07-01 22:13:26 +08002380 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002381 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002382
Liu Bo38c227d2013-01-29 03:18:40 +00002383 if (extent_offset >= old->extent_offset + old->offset +
2384 old->len || extent_offset + num_bytes <=
2385 old->extent_offset + old->offset)
2386 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002387 break;
2388 }
2389
2390 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2391 if (!backref) {
2392 ret = -ENOENT;
2393 goto out;
2394 }
2395
2396 backref->root_id = root_id;
2397 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002398 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002399 backref->num_bytes = num_bytes;
2400 backref->extent_offset = extent_offset;
2401 backref->generation = btrfs_file_extent_generation(leaf, extent);
2402 backref->old = old;
2403 backref_insert(&new->root, backref);
2404 old->count++;
2405out:
2406 btrfs_release_path(path);
2407 WARN_ON(ret);
2408 return ret;
2409}
2410
2411static noinline bool record_extent_backrefs(struct btrfs_path *path,
2412 struct new_sa_defrag_extent *new)
2413{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002414 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002415 struct old_sa_defrag_extent *old, *tmp;
2416 int ret;
2417
2418 new->path = path;
2419
2420 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002421 ret = iterate_inodes_from_logical(old->bytenr +
2422 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002423 path, record_one_backref,
2424 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002425 if (ret < 0 && ret != -ENOENT)
2426 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002427
2428 /* no backref to be processed for this extent */
2429 if (!old->count) {
2430 list_del(&old->list);
2431 kfree(old);
2432 }
2433 }
2434
2435 if (list_empty(&new->head))
2436 return false;
2437
2438 return true;
2439}
2440
2441static int relink_is_mergable(struct extent_buffer *leaf,
2442 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002443 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002444{
Liu Bo116e0022013-08-02 16:30:40 +08002445 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002446 return 0;
2447
2448 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2449 return 0;
2450
Liu Bo116e0022013-08-02 16:30:40 +08002451 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2452 return 0;
2453
2454 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002455 btrfs_file_extent_other_encoding(leaf, fi))
2456 return 0;
2457
2458 return 1;
2459}
2460
2461/*
2462 * Note the backref might has changed, and in this case we just return 0.
2463 */
2464static noinline int relink_extent_backref(struct btrfs_path *path,
2465 struct sa_defrag_extent_backref *prev,
2466 struct sa_defrag_extent_backref *backref)
2467{
2468 struct btrfs_file_extent_item *extent;
2469 struct btrfs_file_extent_item *item;
2470 struct btrfs_ordered_extent *ordered;
2471 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002472 struct btrfs_root *root;
2473 struct btrfs_key key;
2474 struct extent_buffer *leaf;
2475 struct old_sa_defrag_extent *old = backref->old;
2476 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002477 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002478 struct inode *inode;
2479 struct extent_state *cached = NULL;
2480 int ret = 0;
2481 u64 start;
2482 u64 len;
2483 u64 lock_start;
2484 u64 lock_end;
2485 bool merge = false;
2486 int index;
2487
2488 if (prev && prev->root_id == backref->root_id &&
2489 prev->inum == backref->inum &&
2490 prev->file_pos + prev->num_bytes == backref->file_pos)
2491 merge = true;
2492
2493 /* step 1: get root */
2494 key.objectid = backref->root_id;
2495 key.type = BTRFS_ROOT_ITEM_KEY;
2496 key.offset = (u64)-1;
2497
Liu Bo38c227d2013-01-29 03:18:40 +00002498 index = srcu_read_lock(&fs_info->subvol_srcu);
2499
2500 root = btrfs_read_fs_root_no_name(fs_info, &key);
2501 if (IS_ERR(root)) {
2502 srcu_read_unlock(&fs_info->subvol_srcu, index);
2503 if (PTR_ERR(root) == -ENOENT)
2504 return 0;
2505 return PTR_ERR(root);
2506 }
Liu Bo38c227d2013-01-29 03:18:40 +00002507
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002508 if (btrfs_root_readonly(root)) {
2509 srcu_read_unlock(&fs_info->subvol_srcu, index);
2510 return 0;
2511 }
2512
Liu Bo38c227d2013-01-29 03:18:40 +00002513 /* step 2: get inode */
2514 key.objectid = backref->inum;
2515 key.type = BTRFS_INODE_ITEM_KEY;
2516 key.offset = 0;
2517
2518 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2519 if (IS_ERR(inode)) {
2520 srcu_read_unlock(&fs_info->subvol_srcu, index);
2521 return 0;
2522 }
2523
2524 srcu_read_unlock(&fs_info->subvol_srcu, index);
2525
2526 /* step 3: relink backref */
2527 lock_start = backref->file_pos;
2528 lock_end = backref->file_pos + backref->num_bytes - 1;
2529 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002530 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002531
2532 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2533 if (ordered) {
2534 btrfs_put_ordered_extent(ordered);
2535 goto out_unlock;
2536 }
2537
2538 trans = btrfs_join_transaction(root);
2539 if (IS_ERR(trans)) {
2540 ret = PTR_ERR(trans);
2541 goto out_unlock;
2542 }
2543
2544 key.objectid = backref->inum;
2545 key.type = BTRFS_EXTENT_DATA_KEY;
2546 key.offset = backref->file_pos;
2547
2548 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2549 if (ret < 0) {
2550 goto out_free_path;
2551 } else if (ret > 0) {
2552 ret = 0;
2553 goto out_free_path;
2554 }
2555
2556 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2557 struct btrfs_file_extent_item);
2558
2559 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2560 backref->generation)
2561 goto out_free_path;
2562
2563 btrfs_release_path(path);
2564
2565 start = backref->file_pos;
2566 if (backref->extent_offset < old->extent_offset + old->offset)
2567 start += old->extent_offset + old->offset -
2568 backref->extent_offset;
2569
2570 len = min(backref->extent_offset + backref->num_bytes,
2571 old->extent_offset + old->offset + old->len);
2572 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2573
2574 ret = btrfs_drop_extents(trans, root, inode, start,
2575 start + len, 1);
2576 if (ret)
2577 goto out_free_path;
2578again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002579 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002580 key.type = BTRFS_EXTENT_DATA_KEY;
2581 key.offset = start;
2582
Liu Boa09a0a72013-03-11 09:20:58 +00002583 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002584 if (merge) {
2585 struct btrfs_file_extent_item *fi;
2586 u64 extent_len;
2587 struct btrfs_key found_key;
2588
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002589 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002590 if (ret < 0)
2591 goto out_free_path;
2592
2593 path->slots[0]--;
2594 leaf = path->nodes[0];
2595 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2596
2597 fi = btrfs_item_ptr(leaf, path->slots[0],
2598 struct btrfs_file_extent_item);
2599 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2600
Liu Bo116e0022013-08-02 16:30:40 +08002601 if (extent_len + found_key.offset == start &&
2602 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002603 btrfs_set_file_extent_num_bytes(leaf, fi,
2604 extent_len + len);
2605 btrfs_mark_buffer_dirty(leaf);
2606 inode_add_bytes(inode, len);
2607
2608 ret = 1;
2609 goto out_free_path;
2610 } else {
2611 merge = false;
2612 btrfs_release_path(path);
2613 goto again;
2614 }
2615 }
2616
2617 ret = btrfs_insert_empty_item(trans, root, path, &key,
2618 sizeof(*extent));
2619 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002620 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002621 goto out_free_path;
2622 }
2623
2624 leaf = path->nodes[0];
2625 item = btrfs_item_ptr(leaf, path->slots[0],
2626 struct btrfs_file_extent_item);
2627 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2628 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2629 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2630 btrfs_set_file_extent_num_bytes(leaf, item, len);
2631 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2632 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2633 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2634 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2635 btrfs_set_file_extent_encryption(leaf, item, 0);
2636 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2637
2638 btrfs_mark_buffer_dirty(leaf);
2639 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002640 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002641
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002642 ret = btrfs_inc_extent_ref(trans, fs_info, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002643 new->disk_len, 0,
2644 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002645 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002646 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002647 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002648 goto out_free_path;
2649 }
2650
2651 ret = 1;
2652out_free_path:
2653 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002654 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002655 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002656out_unlock:
2657 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2658 &cached, GFP_NOFS);
2659 iput(inode);
2660 return ret;
2661}
2662
Liu Bo6f519562013-10-29 10:45:05 +08002663static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2664{
2665 struct old_sa_defrag_extent *old, *tmp;
2666
2667 if (!new)
2668 return;
2669
2670 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002671 kfree(old);
2672 }
2673 kfree(new);
2674}
2675
Liu Bo38c227d2013-01-29 03:18:40 +00002676static void relink_file_extents(struct new_sa_defrag_extent *new)
2677{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002678 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002679 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002680 struct sa_defrag_extent_backref *backref;
2681 struct sa_defrag_extent_backref *prev = NULL;
2682 struct inode *inode;
2683 struct btrfs_root *root;
2684 struct rb_node *node;
2685 int ret;
2686
2687 inode = new->inode;
2688 root = BTRFS_I(inode)->root;
2689
2690 path = btrfs_alloc_path();
2691 if (!path)
2692 return;
2693
2694 if (!record_extent_backrefs(path, new)) {
2695 btrfs_free_path(path);
2696 goto out;
2697 }
2698 btrfs_release_path(path);
2699
2700 while (1) {
2701 node = rb_first(&new->root);
2702 if (!node)
2703 break;
2704 rb_erase(node, &new->root);
2705
2706 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2707
2708 ret = relink_extent_backref(path, prev, backref);
2709 WARN_ON(ret < 0);
2710
2711 kfree(prev);
2712
2713 if (ret == 1)
2714 prev = backref;
2715 else
2716 prev = NULL;
2717 cond_resched();
2718 }
2719 kfree(prev);
2720
2721 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002722out:
Liu Bo6f519562013-10-29 10:45:05 +08002723 free_sa_defrag_extent(new);
2724
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002725 atomic_dec(&fs_info->defrag_running);
2726 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002727}
2728
2729static struct new_sa_defrag_extent *
2730record_old_file_extents(struct inode *inode,
2731 struct btrfs_ordered_extent *ordered)
2732{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002733 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002734 struct btrfs_root *root = BTRFS_I(inode)->root;
2735 struct btrfs_path *path;
2736 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002737 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002738 struct new_sa_defrag_extent *new;
2739 int ret;
2740
2741 new = kmalloc(sizeof(*new), GFP_NOFS);
2742 if (!new)
2743 return NULL;
2744
2745 new->inode = inode;
2746 new->file_pos = ordered->file_offset;
2747 new->len = ordered->len;
2748 new->bytenr = ordered->start;
2749 new->disk_len = ordered->disk_len;
2750 new->compress_type = ordered->compress_type;
2751 new->root = RB_ROOT;
2752 INIT_LIST_HEAD(&new->head);
2753
2754 path = btrfs_alloc_path();
2755 if (!path)
2756 goto out_kfree;
2757
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002758 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002759 key.type = BTRFS_EXTENT_DATA_KEY;
2760 key.offset = new->file_pos;
2761
2762 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2763 if (ret < 0)
2764 goto out_free_path;
2765 if (ret > 0 && path->slots[0] > 0)
2766 path->slots[0]--;
2767
2768 /* find out all the old extents for the file range */
2769 while (1) {
2770 struct btrfs_file_extent_item *extent;
2771 struct extent_buffer *l;
2772 int slot;
2773 u64 num_bytes;
2774 u64 offset;
2775 u64 end;
2776 u64 disk_bytenr;
2777 u64 extent_offset;
2778
2779 l = path->nodes[0];
2780 slot = path->slots[0];
2781
2782 if (slot >= btrfs_header_nritems(l)) {
2783 ret = btrfs_next_leaf(root, path);
2784 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002785 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002786 else if (ret > 0)
2787 break;
2788 continue;
2789 }
2790
2791 btrfs_item_key_to_cpu(l, &key, slot);
2792
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002793 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002794 break;
2795 if (key.type != BTRFS_EXTENT_DATA_KEY)
2796 break;
2797 if (key.offset >= new->file_pos + new->len)
2798 break;
2799
2800 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2801
2802 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2803 if (key.offset + num_bytes < new->file_pos)
2804 goto next;
2805
2806 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2807 if (!disk_bytenr)
2808 goto next;
2809
2810 extent_offset = btrfs_file_extent_offset(l, extent);
2811
2812 old = kmalloc(sizeof(*old), GFP_NOFS);
2813 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002814 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002815
2816 offset = max(new->file_pos, key.offset);
2817 end = min(new->file_pos + new->len, key.offset + num_bytes);
2818
2819 old->bytenr = disk_bytenr;
2820 old->extent_offset = extent_offset;
2821 old->offset = offset - key.offset;
2822 old->len = end - offset;
2823 old->new = new;
2824 old->count = 0;
2825 list_add_tail(&old->list, &new->head);
2826next:
2827 path->slots[0]++;
2828 cond_resched();
2829 }
2830
2831 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002832 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002833
2834 return new;
2835
Liu Bo38c227d2013-01-29 03:18:40 +00002836out_free_path:
2837 btrfs_free_path(path);
2838out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002839 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002840 return NULL;
2841}
2842
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002843static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002844 u64 start, u64 len)
2845{
2846 struct btrfs_block_group_cache *cache;
2847
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002848 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002849 ASSERT(cache);
2850
2851 spin_lock(&cache->lock);
2852 cache->delalloc_bytes -= len;
2853 spin_unlock(&cache->lock);
2854
2855 btrfs_put_block_group(cache);
2856}
2857
Chris Masond352ac62008-09-29 15:18:18 -04002858/* as ordered data IO finishes, this gets called so we can finish
2859 * an ordered extent if the range of bytes in the file it covers are
2860 * fully written.
2861 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002862static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002863{
Josef Bacik5fd02042012-05-02 14:00:54 -04002864 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002865 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002866 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002867 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002868 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002869 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002870 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002871 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002872 int ret = 0;
2873 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002874 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002875 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002876
Liu Bo83eea1f2012-07-10 05:28:39 -06002877 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002878
Josef Bacik5fd02042012-05-02 14:00:54 -04002879 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2880 ret = -EIO;
2881 goto out;
2882 }
2883
Miao Xief6124962014-09-12 18:44:04 +08002884 btrfs_free_io_failure_record(inode, ordered_extent->file_offset,
2885 ordered_extent->file_offset +
2886 ordered_extent->len - 1);
2887
Josef Bacik77cef2e2013-08-29 13:57:21 -04002888 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2889 truncated = true;
2890 logical_len = ordered_extent->truncated_len;
2891 /* Truncated the entire extent, don't bother adding */
2892 if (!logical_len)
2893 goto out;
2894 }
2895
Yan, Zhengc2167752009-11-12 09:34:21 +00002896 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002897 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002898
2899 /*
2900 * For mwrite(mmap + memset to write) case, we still reserve
2901 * space for NOCOW range.
2902 * As NOCOW won't cause a new delayed ref, just free the space
2903 */
2904 btrfs_qgroup_free_data(inode, ordered_extent->file_offset,
2905 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002906 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2907 if (nolock)
2908 trans = btrfs_join_transaction_nolock(root);
2909 else
2910 trans = btrfs_join_transaction(root);
2911 if (IS_ERR(trans)) {
2912 ret = PTR_ERR(trans);
2913 trans = NULL;
2914 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002915 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002916 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002917 ret = btrfs_update_inode_fallback(trans, root, inode);
2918 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002919 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002920 goto out;
2921 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002922
Josef Bacik2ac55d42010-02-03 19:33:23 +00002923 lock_extent_bits(io_tree, ordered_extent->file_offset,
2924 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002925 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002926
Liu Bo38c227d2013-01-29 03:18:40 +00002927 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2928 ordered_extent->file_offset + ordered_extent->len - 1,
2929 EXTENT_DEFRAG, 1, cached_state);
2930 if (ret) {
2931 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002932 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002933 /* the inode is shared */
2934 new = record_old_file_extents(inode, ordered_extent);
2935
2936 clear_extent_bit(io_tree, ordered_extent->file_offset,
2937 ordered_extent->file_offset + ordered_extent->len - 1,
2938 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2939 }
2940
Josef Bacik0cb59c92010-07-02 12:14:14 -04002941 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002942 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002943 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002944 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002945 if (IS_ERR(trans)) {
2946 ret = PTR_ERR(trans);
2947 trans = NULL;
2948 goto out_unlock;
2949 }
Chris Masona79b7d42014-05-22 16:18:52 -07002950
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002951 trans->block_rsv = &fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002952
Chris Masonc8b97812008-10-29 14:49:59 -04002953 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002954 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002955 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002956 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002957 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002958 ordered_extent->file_offset,
2959 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002960 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002961 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002962 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002963 ret = insert_reserved_file_extent(trans, inode,
2964 ordered_extent->file_offset,
2965 ordered_extent->start,
2966 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002967 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002968 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002969 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002970 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002971 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002972 ordered_extent->start,
2973 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002974 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002975 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2976 ordered_extent->file_offset, ordered_extent->len,
2977 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002978 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002979 btrfs_abort_transaction(trans, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002980 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002981 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002982
Chris Masone6dcd2d2008-07-17 12:53:50 -04002983 add_pending_csums(trans, inode, ordered_extent->file_offset,
2984 &ordered_extent->list);
2985
Josef Bacik6c760c02012-11-09 10:53:21 -05002986 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2987 ret = btrfs_update_inode_fallback(trans, root, inode);
2988 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002989 btrfs_abort_transaction(trans, ret);
Josef Bacik6c760c02012-11-09 10:53:21 -05002990 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002991 }
2992 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002993out_unlock:
2994 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2995 ordered_extent->file_offset +
2996 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002997out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002998 if (root != fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002999 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06003000 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003001 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003002
Josef Bacik77cef2e2013-08-29 13:57:21 -04003003 if (ret || truncated) {
3004 u64 start, end;
3005
3006 if (truncated)
3007 start = ordered_extent->file_offset + logical_len;
3008 else
3009 start = ordered_extent->file_offset;
3010 end = ordered_extent->file_offset + ordered_extent->len - 1;
3011 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
3012
3013 /* Drop the cache for the part of the extent we didn't write. */
3014 btrfs_drop_extent_cache(inode, start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003015
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003016 /*
3017 * If the ordered extent had an IOERR or something else went
3018 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003019 * back to the allocator. We only free the extent in the
3020 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003021 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003022 if ((ret || !logical_len) &&
3023 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003024 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003025 btrfs_free_reserved_extent(fs_info,
3026 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003027 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003028 }
3029
3030
Josef Bacik5fd02042012-05-02 14:00:54 -04003031 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003032 * This needs to be done to make sure anybody waiting knows we are done
3033 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003034 */
3035 btrfs_remove_ordered_extent(inode, ordered_extent);
3036
Liu Bo38c227d2013-01-29 03:18:40 +00003037 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003038 if (new) {
3039 if (ret) {
3040 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003041 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003042 } else {
3043 relink_file_extents(new);
3044 }
3045 }
Liu Bo38c227d2013-01-29 03:18:40 +00003046
Chris Masone6dcd2d2008-07-17 12:53:50 -04003047 /* once for us */
3048 btrfs_put_ordered_extent(ordered_extent);
3049 /* once for the tree */
3050 btrfs_put_ordered_extent(ordered_extent);
3051
Josef Bacik5fd02042012-05-02 14:00:54 -04003052 return ret;
3053}
3054
3055static void finish_ordered_fn(struct btrfs_work *work)
3056{
3057 struct btrfs_ordered_extent *ordered_extent;
3058 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3059 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003060}
3061
Christoph Hellwigb2950862008-12-02 09:54:17 -05003062static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003063 struct extent_state *state, int uptodate)
3064{
Josef Bacik5fd02042012-05-02 14:00:54 -04003065 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003066 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003067 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003068 struct btrfs_workqueue *wq;
3069 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003070
liubo1abe9b82011-03-24 11:18:59 +00003071 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3072
Chris Mason8b62b722009-09-02 16:53:46 -04003073 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003074 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3075 end - start + 1, uptodate))
3076 return 0;
3077
Liu Bo9e0af232014-08-15 23:36:53 +08003078 if (btrfs_is_free_space_inode(inode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003079 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003080 func = btrfs_freespace_write_helper;
3081 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003082 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003083 func = btrfs_endio_write_helper;
3084 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003085
Liu Bo9e0af232014-08-15 23:36:53 +08003086 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3087 NULL);
3088 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04003089
3090 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04003091}
3092
Miao Xiedc380ae2014-09-12 18:43:55 +08003093static int __readpage_endio_check(struct inode *inode,
3094 struct btrfs_io_bio *io_bio,
3095 int icsum, struct page *page,
3096 int pgoff, u64 start, size_t len)
3097{
3098 char *kaddr;
3099 u32 csum_expected;
3100 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003101
3102 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3103
3104 kaddr = kmap_atomic(page);
3105 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003106 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003107 if (csum != csum_expected)
3108 goto zeroit;
3109
3110 kunmap_atomic(kaddr);
3111 return 0;
3112zeroit:
David Sterba94647322015-10-08 11:01:36 +02003113 btrfs_warn_rl(BTRFS_I(inode)->root->fs_info,
3114 "csum failed ino %llu off %llu csum %u expected csum %u",
David Sterbaf85b7372017-01-20 14:54:07 +01003115 btrfs_ino(BTRFS_I(inode)), start, csum, csum_expected);
Miao Xiedc380ae2014-09-12 18:43:55 +08003116 memset(kaddr + pgoff, 1, len);
3117 flush_dcache_page(page);
3118 kunmap_atomic(kaddr);
3119 if (csum_expected == 0)
3120 return 0;
3121 return -EIO;
3122}
3123
Chris Masond352ac62008-09-29 15:18:18 -04003124/*
Chris Masond352ac62008-09-29 15:18:18 -04003125 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003126 * if there's a match, we allow the bio to finish. If not, the code in
3127 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003128 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003129static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3130 u64 phy_offset, struct page *page,
3131 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003132{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003133 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003134 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003135 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003136 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003137
Chris Masond20f7042008-12-08 16:58:54 -05003138 if (PageChecked(page)) {
3139 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003140 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003141 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003142
3143 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003144 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003145
Yan Zheng17d217f2008-12-12 10:03:38 -05003146 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003147 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003148 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003149 return 0;
3150 }
3151
Miao Xiefacc8a222013-07-25 19:22:34 +08003152 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003153 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3154 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003155}
Chris Masonb888db22007-08-27 16:49:44 -04003156
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003157void btrfs_add_delayed_iput(struct inode *inode)
3158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003159 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003160 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003161
3162 if (atomic_add_unless(&inode->i_count, -1, 1))
3163 return;
3164
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003165 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003166 if (binode->delayed_iput_count == 0) {
3167 ASSERT(list_empty(&binode->delayed_iput));
3168 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
3169 } else {
3170 binode->delayed_iput_count++;
3171 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003172 spin_unlock(&fs_info->delayed_iput_lock);
3173}
3174
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003175void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003176{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003177
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003178 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003179 while (!list_empty(&fs_info->delayed_iputs)) {
3180 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003181
David Sterba8089fe62015-11-19 14:15:51 +01003182 inode = list_first_entry(&fs_info->delayed_iputs,
3183 struct btrfs_inode, delayed_iput);
3184 if (inode->delayed_iput_count) {
3185 inode->delayed_iput_count--;
3186 list_move_tail(&inode->delayed_iput,
3187 &fs_info->delayed_iputs);
3188 } else {
3189 list_del_init(&inode->delayed_iput);
3190 }
3191 spin_unlock(&fs_info->delayed_iput_lock);
3192 iput(&inode->vfs_inode);
3193 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003194 }
David Sterba8089fe62015-11-19 14:15:51 +01003195 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003196}
3197
Yan, Zhengd68fc572010-05-16 10:49:58 -04003198/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003199 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003200 * files in the subvolume, it removes orphan item and frees block_rsv
3201 * structure.
3202 */
3203void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3204 struct btrfs_root *root)
3205{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003206 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik90290e12011-12-02 15:44:12 -05003207 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003208 int ret;
3209
Josef Bacik8a35d952012-05-23 14:26:42 -04003210 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003211 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3212 return;
3213
Josef Bacik90290e12011-12-02 15:44:12 -05003214 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003215 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003216 spin_unlock(&root->orphan_lock);
3217 return;
3218 }
3219
3220 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3221 spin_unlock(&root->orphan_lock);
3222 return;
3223 }
3224
3225 block_rsv = root->orphan_block_rsv;
3226 root->orphan_block_rsv = NULL;
3227 spin_unlock(&root->orphan_lock);
3228
Miao Xie27cdeb72014-04-02 19:51:05 +08003229 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003230 btrfs_root_refs(&root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003231 ret = btrfs_del_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003232 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003233 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003234 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003235 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003236 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3237 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003238 }
3239
Josef Bacik90290e12011-12-02 15:44:12 -05003240 if (block_rsv) {
3241 WARN_ON(block_rsv->size > 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003242 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003243 }
3244}
3245
3246/*
Josef Bacik7b128762008-07-24 12:17:14 -04003247 * This creates an orphan entry for the given inode in case something goes
3248 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003249 *
3250 * NOTE: caller of this function should reserve 5 units of metadata for
3251 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003252 */
3253int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
3254{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003255 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7b128762008-07-24 12:17:14 -04003256 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003257 struct btrfs_block_rsv *block_rsv = NULL;
3258 int reserve = 0;
3259 int insert = 0;
3260 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003261
Yan, Zhengd68fc572010-05-16 10:49:58 -04003262 if (!root->orphan_block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003263 block_rsv = btrfs_alloc_block_rsv(fs_info,
3264 BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003265 if (!block_rsv)
3266 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003267 }
3268
Yan, Zhengd68fc572010-05-16 10:49:58 -04003269 spin_lock(&root->orphan_lock);
3270 if (!root->orphan_block_rsv) {
3271 root->orphan_block_rsv = block_rsv;
3272 } else if (block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003273 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003274 block_rsv = NULL;
3275 }
Josef Bacik7b128762008-07-24 12:17:14 -04003276
Josef Bacik8a35d952012-05-23 14:26:42 -04003277 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3278 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003279#if 0
3280 /*
3281 * For proper ENOSPC handling, we should do orphan
3282 * cleanup when mounting. But this introduces backward
3283 * compatibility issue.
3284 */
3285 if (!xchg(&root->orphan_item_inserted, 1))
3286 insert = 2;
3287 else
3288 insert = 1;
3289#endif
3290 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003291 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003292 }
Josef Bacik7b128762008-07-24 12:17:14 -04003293
Josef Bacik72ac3c02012-05-23 14:13:11 -04003294 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3295 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003296 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003297 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003298
Yan, Zhengd68fc572010-05-16 10:49:58 -04003299 /* grab metadata reservation from transaction handle */
3300 if (reserve) {
3301 ret = btrfs_orphan_reserve_metadata(trans, inode);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003302 ASSERT(!ret);
3303 if (ret) {
3304 atomic_dec(&root->orphan_inodes);
3305 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3306 &BTRFS_I(inode)->runtime_flags);
3307 if (insert)
3308 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3309 &BTRFS_I(inode)->runtime_flags);
3310 return ret;
3311 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003312 }
3313
3314 /* insert an orphan item to track this unlinked/truncated file */
3315 if (insert >= 1) {
David Sterbaf85b7372017-01-20 14:54:07 +01003316 ret = btrfs_insert_orphan_item(trans, root,
3317 btrfs_ino(BTRFS_I(inode)));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003318 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003319 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003320 if (reserve) {
3321 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3322 &BTRFS_I(inode)->runtime_flags);
3323 btrfs_orphan_release_metadata(inode);
3324 }
3325 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003326 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3327 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney66642832016-06-10 18:19:25 -04003328 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003329 return ret;
3330 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003331 }
3332 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003333 }
3334
3335 /* insert an orphan item to track subvolume contains orphan files */
3336 if (insert >= 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003337 ret = btrfs_insert_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003338 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003339 if (ret && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003340 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003341 return ret;
3342 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003343 }
3344 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003345}
3346
3347/*
3348 * We have done the truncate/delete so we can go ahead and remove the orphan
3349 * item for this particular inode.
3350 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003351static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3352 struct inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003353{
3354 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003355 int delete_item = 0;
3356 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003357 int ret = 0;
3358
Yan, Zhengd68fc572010-05-16 10:49:58 -04003359 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003360 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3361 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003362 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003363
Josef Bacik72ac3c02012-05-23 14:13:11 -04003364 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3365 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003366 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003367 spin_unlock(&root->orphan_lock);
3368
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003369 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003370 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003371 if (trans)
3372 ret = btrfs_del_orphan_item(trans, root,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003373 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04003374 }
Josef Bacik7b128762008-07-24 12:17:14 -04003375
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003376 if (release_rsv)
3377 btrfs_orphan_release_metadata(inode);
3378
Josef Bacik4ef31a42013-08-13 14:10:08 -04003379 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003380}
3381
3382/*
3383 * this cleans up any orphans that may be left on the list from the last use
3384 * of this root.
3385 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003386int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003387{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003388 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003389 struct btrfs_path *path;
3390 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003391 struct btrfs_key key, found_key;
3392 struct btrfs_trans_handle *trans;
3393 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003394 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003395 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3396
Yan, Zhengd68fc572010-05-16 10:49:58 -04003397 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003398 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003399
3400 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003401 if (!path) {
3402 ret = -ENOMEM;
3403 goto out;
3404 }
David Sterbae4058b52015-11-27 16:31:35 +01003405 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003406
3407 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003408 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003409 key.offset = (u64)-1;
3410
Josef Bacik7b128762008-07-24 12:17:14 -04003411 while (1) {
3412 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003413 if (ret < 0)
3414 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003415
3416 /*
3417 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003418 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003419 * find the key and see if we have stuff that matches
3420 */
3421 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003422 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003423 if (path->slots[0] == 0)
3424 break;
3425 path->slots[0]--;
3426 }
3427
3428 /* pull out the item */
3429 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003430 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3431
3432 /* make sure the item matches what we want */
3433 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3434 break;
David Sterba962a2982014-06-04 18:41:45 +02003435 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003436 break;
3437
3438 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003439 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003440
3441 /*
3442 * this is where we are basically btrfs_lookup, without the
3443 * crossing root thing. we store the inode number in the
3444 * offset of the orphan item.
3445 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003446
3447 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003448 btrfs_err(fs_info,
3449 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003450 ret = -EINVAL;
3451 goto out;
3452 }
3453
3454 last_objectid = found_key.offset;
3455
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003456 found_key.objectid = found_key.offset;
3457 found_key.type = BTRFS_INODE_ITEM_KEY;
3458 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003459 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303460 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003461 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003462 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003463
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003464 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003465 struct btrfs_root *dead_root;
3466 struct btrfs_fs_info *fs_info = root->fs_info;
3467 int is_dead_root = 0;
3468
3469 /*
3470 * this is an orphan in the tree root. Currently these
3471 * could come from 2 sources:
3472 * a) a snapshot deletion in progress
3473 * b) a free space cache inode
3474 * We need to distinguish those two, as the snapshot
3475 * orphan must not get deleted.
3476 * find_dead_roots already ran before us, so if this
3477 * is a snapshot deletion, we should find the root
3478 * in the dead_roots list
3479 */
3480 spin_lock(&fs_info->trans_lock);
3481 list_for_each_entry(dead_root, &fs_info->dead_roots,
3482 root_list) {
3483 if (dead_root->root_key.objectid ==
3484 found_key.objectid) {
3485 is_dead_root = 1;
3486 break;
3487 }
3488 }
3489 spin_unlock(&fs_info->trans_lock);
3490 if (is_dead_root) {
3491 /* prevent this orphan from being found again */
3492 key.offset = found_key.objectid - 1;
3493 continue;
3494 }
3495 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003496 /*
3497 * Inode is already gone but the orphan item is still there,
3498 * kill the orphan item.
3499 */
Filipe Manana67710892016-06-06 11:51:25 +01003500 if (ret == -ENOENT) {
Josef Bacika8c9e572011-09-21 16:55:59 -04003501 trans = btrfs_start_transaction(root, 1);
3502 if (IS_ERR(trans)) {
3503 ret = PTR_ERR(trans);
3504 goto out;
3505 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003506 btrfs_debug(fs_info, "auto deleting %Lu",
3507 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003508 ret = btrfs_del_orphan_item(trans, root,
3509 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003510 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003511 if (ret)
3512 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003513 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003514 }
Josef Bacik7b128762008-07-24 12:17:14 -04003515
Josef Bacik7b128762008-07-24 12:17:14 -04003516 /*
3517 * add this inode to the orphan list so btrfs_orphan_del does
3518 * the proper thing when we hit it
3519 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003520 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3521 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003522 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003523
Josef Bacik7b128762008-07-24 12:17:14 -04003524 /* if we have links, this was a truncate, lets do that */
3525 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303526 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003527 iput(inode);
3528 continue;
3529 }
Josef Bacik7b128762008-07-24 12:17:14 -04003530 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003531
3532 /* 1 for the orphan item deletion. */
3533 trans = btrfs_start_transaction(root, 1);
3534 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003535 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003536 ret = PTR_ERR(trans);
3537 goto out;
3538 }
3539 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003540 btrfs_end_transaction(trans);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003541 if (ret) {
3542 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003543 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003544 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003545
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003546 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003547 if (ret)
3548 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003549 } else {
3550 nr_unlink++;
3551 }
3552
3553 /* this will do delete_inode and everything for us */
3554 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003555 if (ret)
3556 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003557 }
Miao Xie3254c872011-11-10 20:45:05 -05003558 /* release the path since we're done with it */
3559 btrfs_release_path(path);
3560
Yan, Zhengd68fc572010-05-16 10:49:58 -04003561 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3562
3563 if (root->orphan_block_rsv)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003564 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003565 (u64)-1);
3566
Miao Xie27cdeb72014-04-02 19:51:05 +08003567 if (root->orphan_block_rsv ||
3568 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003569 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003570 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003571 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003572 }
Josef Bacik7b128762008-07-24 12:17:14 -04003573
3574 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003575 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003576 if (nr_truncate)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003577 btrfs_debug(fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003578
3579out:
3580 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003581 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003582 btrfs_free_path(path);
3583 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003584}
3585
Chris Masond352ac62008-09-29 15:18:18 -04003586/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003587 * very simple check to peek ahead in the leaf looking for xattrs. If we
3588 * don't find any xattrs, we know there can't be any acls.
3589 *
3590 * slot is the slot the inode is in, objectid is the objectid of the inode
3591 */
3592static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003593 int slot, u64 objectid,
3594 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003595{
3596 u32 nritems = btrfs_header_nritems(leaf);
3597 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003598 static u64 xattr_access = 0;
3599 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003600 int scanned = 0;
3601
Josef Bacikf23b5a52013-06-19 10:16:26 -04003602 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003603 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3604 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3605 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3606 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003607 }
3608
Chris Mason46a53cc2009-04-27 11:47:50 -04003609 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003610 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003611 while (slot < nritems) {
3612 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3613
3614 /* we found a different objectid, there must not be acls */
3615 if (found_key.objectid != objectid)
3616 return 0;
3617
3618 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003619 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003620 if (*first_xattr_slot == -1)
3621 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003622 if (found_key.offset == xattr_access ||
3623 found_key.offset == xattr_default)
3624 return 1;
3625 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003626
3627 /*
3628 * we found a key greater than an xattr key, there can't
3629 * be any acls later on
3630 */
3631 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3632 return 0;
3633
3634 slot++;
3635 scanned++;
3636
3637 /*
3638 * it goes inode, inode backrefs, xattrs, extents,
3639 * so if there are a ton of hard links to an inode there can
3640 * be a lot of backrefs. Don't waste time searching too hard,
3641 * this is just an optimization
3642 */
3643 if (scanned >= 8)
3644 break;
3645 }
3646 /* we hit the end of the leaf before we found an xattr or
3647 * something larger than an xattr. We have to assume the inode
3648 * has acls
3649 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003650 if (*first_xattr_slot == -1)
3651 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003652 return 1;
3653}
3654
3655/*
Chris Masond352ac62008-09-29 15:18:18 -04003656 * read an inode from the btree into the in-memory inode
3657 */
Filipe Manana67710892016-06-06 11:51:25 +01003658static int btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003659{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003660 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04003661 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003662 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003663 struct btrfs_inode_item *inode_item;
3664 struct btrfs_root *root = BTRFS_I(inode)->root;
3665 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003666 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003667 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003668 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003669 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003670 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003671 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003672
3673 ret = btrfs_fill_inode(inode, &rdev);
3674 if (!ret)
3675 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003676
3677 path = btrfs_alloc_path();
Filipe Manana67710892016-06-06 11:51:25 +01003678 if (!path) {
3679 ret = -ENOMEM;
Mark Fasheh1748f842011-07-12 11:25:31 -07003680 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003681 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003682
Chris Mason39279cc2007-06-12 06:35:45 -04003683 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003684
Chris Mason39279cc2007-06-12 06:35:45 -04003685 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003686 if (ret) {
3687 if (ret > 0)
3688 ret = -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003689 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003690 }
Chris Mason39279cc2007-06-12 06:35:45 -04003691
Chris Mason5f39d392007-10-15 16:14:19 -04003692 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003693
3694 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003695 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003696
Chris Mason5f39d392007-10-15 16:14:19 -04003697 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3698 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003699 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003700 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003701 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3702 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003703 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003704
David Sterbaa937b972014-12-12 17:39:12 +01003705 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3706 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003707
David Sterbaa937b972014-12-12 17:39:12 +01003708 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3709 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003710
David Sterbaa937b972014-12-12 17:39:12 +01003711 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3712 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003713
chandan r9cc97d62012-07-04 12:48:07 +05303714 BTRFS_I(inode)->i_otime.tv_sec =
3715 btrfs_timespec_sec(leaf, &inode_item->otime);
3716 BTRFS_I(inode)->i_otime.tv_nsec =
3717 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003718
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003719 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003720 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003721 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3722
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003723 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003724 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003725 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003726 rdev = btrfs_inode_rdev(leaf, inode_item);
3727
Josef Bacikaec74772008-07-24 12:12:38 -04003728 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003729 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003730
3731cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003732 /*
3733 * If we were modified in the current generation and evicted from memory
3734 * and then re-read we need to do a full sync since we don't have any
3735 * idea about which extents were modified before we were evicted from
3736 * cache.
3737 *
3738 * This is required for both inode re-read from disk and delayed inode
3739 * in delayed_nodes_tree.
3740 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003741 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003742 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3743 &BTRFS_I(inode)->runtime_flags);
3744
Filipe Mananabde6c242015-07-24 00:00:19 +01003745 /*
3746 * We don't persist the id of the transaction where an unlink operation
3747 * against the inode was last made. So here we assume the inode might
3748 * have been evicted, and therefore the exact value of last_unlink_trans
3749 * lost, and set it to last_trans to avoid metadata inconsistencies
3750 * between the inode and its parent if the inode is fsync'ed and the log
3751 * replayed. For example, in the scenario:
3752 *
3753 * touch mydir/foo
3754 * ln mydir/foo mydir/bar
3755 * sync
3756 * unlink mydir/bar
3757 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3758 * xfs_io -c fsync mydir/foo
3759 * <power failure>
3760 * mount fs, triggers fsync log replay
3761 *
3762 * We must make sure that when we fsync our inode foo we also log its
3763 * parent inode, otherwise after log replay the parent still has the
3764 * dentry with the "bar" name but our inode foo has a link count of 1
3765 * and doesn't have an inode ref with the name "bar" anymore.
3766 *
3767 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003768 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003769 * transaction commits on fsync if our inode is a directory, or if our
3770 * inode is not a directory, logging its parent unnecessarily.
3771 */
3772 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3773
Miao Xie67de1172013-12-26 13:07:06 +08003774 path->slots[0]++;
3775 if (inode->i_nlink != 1 ||
3776 path->slots[0] >= btrfs_header_nritems(leaf))
3777 goto cache_acl;
3778
3779 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003780 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003781 goto cache_acl;
3782
3783 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3784 if (location.type == BTRFS_INODE_REF_KEY) {
3785 struct btrfs_inode_ref *ref;
3786
3787 ref = (struct btrfs_inode_ref *)ptr;
3788 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3789 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3790 struct btrfs_inode_extref *extref;
3791
3792 extref = (struct btrfs_inode_extref *)ptr;
3793 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3794 extref);
3795 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003796cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003797 /*
3798 * try to precache a NULL acl entry for files that don't have
3799 * any xattrs or acls
3800 */
Li Zefan33345d012011-04-20 10:31:50 +08003801 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003802 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003803 if (first_xattr_slot != -1) {
3804 path->slots[0] = first_xattr_slot;
3805 ret = btrfs_load_inode_props(inode, path);
3806 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003807 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003808 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003809 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003810 root->root_key.objectid, ret);
3811 }
3812 btrfs_free_path(path);
3813
Al Viro72c04902009-06-24 16:58:48 -04003814 if (!maybe_acls)
3815 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003816
Chris Mason39279cc2007-06-12 06:35:45 -04003817 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003818 case S_IFREG:
3819 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003820 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003821 inode->i_fop = &btrfs_file_operations;
3822 inode->i_op = &btrfs_file_inode_operations;
3823 break;
3824 case S_IFDIR:
3825 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003826 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003827 break;
3828 case S_IFLNK:
3829 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003830 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003831 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3832 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003833 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003834 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003835 init_special_inode(inode, inode->i_mode, rdev);
3836 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003837 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003838
3839 btrfs_update_iflags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003840 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003841
3842make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003843 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003844 make_bad_inode(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003845 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003846}
3847
Chris Masond352ac62008-09-29 15:18:18 -04003848/*
3849 * given a leaf and an inode, copy the inode fields into the leaf
3850 */
Chris Masone02119d2008-09-05 16:13:11 -04003851static void fill_inode_item(struct btrfs_trans_handle *trans,
3852 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003853 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003854 struct inode *inode)
3855{
Liu Bo51fab692012-12-27 09:01:21 +00003856 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003857
Liu Bo51fab692012-12-27 09:01:21 +00003858 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003859
Liu Bo51fab692012-12-27 09:01:21 +00003860 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3861 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3862 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3863 &token);
3864 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3865 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003866
David Sterbaa937b972014-12-12 17:39:12 +01003867 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003868 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003869 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003870 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003871
David Sterbaa937b972014-12-12 17:39:12 +01003872 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003873 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003874 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003875 inode->i_mtime.tv_nsec, &token);
3876
David Sterbaa937b972014-12-12 17:39:12 +01003877 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003878 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003879 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003880 inode->i_ctime.tv_nsec, &token);
3881
chandan r9cc97d62012-07-04 12:48:07 +05303882 btrfs_set_token_timespec_sec(leaf, &item->otime,
3883 BTRFS_I(inode)->i_otime.tv_sec, &token);
3884 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3885 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3886
Liu Bo51fab692012-12-27 09:01:21 +00003887 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3888 &token);
3889 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3890 &token);
3891 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3892 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3893 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3894 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3895 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003896}
3897
Chris Masond352ac62008-09-29 15:18:18 -04003898/*
3899 * copy everything in the in-memory inode into the btree.
3900 */
Chris Mason21151332011-11-10 20:39:08 -05003901static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003902 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003903{
3904 struct btrfs_inode_item *inode_item;
3905 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003906 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003907 int ret;
3908
3909 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003910 if (!path)
3911 return -ENOMEM;
3912
Chris Masonb9473432009-03-13 11:00:37 -04003913 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003914 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3915 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003916 if (ret) {
3917 if (ret > 0)
3918 ret = -ENOENT;
3919 goto failed;
3920 }
3921
Chris Mason5f39d392007-10-15 16:14:19 -04003922 leaf = path->nodes[0];
3923 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003924 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003925
Chris Masone02119d2008-09-05 16:13:11 -04003926 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003927 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003928 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003929 ret = 0;
3930failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003931 btrfs_free_path(path);
3932 return ret;
3933}
3934
Chris Masond352ac62008-09-29 15:18:18 -04003935/*
Chris Mason21151332011-11-10 20:39:08 -05003936 * copy everything in the in-memory inode into the btree.
3937 */
3938noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3939 struct btrfs_root *root, struct inode *inode)
3940{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003941 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003942 int ret;
3943
3944 /*
3945 * If the inode is a free space inode, we can deadlock during commit
3946 * if we put it into the delayed code.
3947 *
3948 * The data relocation inode should also be directly updated
3949 * without delay
3950 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003951 if (!btrfs_is_free_space_inode(inode)
Josef Bacik1d52c782014-09-18 11:30:44 -04003952 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003953 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003954 btrfs_update_root_times(trans, root);
3955
Chris Mason21151332011-11-10 20:39:08 -05003956 ret = btrfs_delayed_update_inode(trans, root, inode);
3957 if (!ret)
3958 btrfs_set_inode_last_trans(trans, inode);
3959 return ret;
3960 }
3961
3962 return btrfs_update_inode_item(trans, root, inode);
3963}
3964
Josef Bacikbe6aef62012-10-22 15:43:12 -04003965noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3966 struct btrfs_root *root,
3967 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003968{
3969 int ret;
3970
3971 ret = btrfs_update_inode(trans, root, inode);
3972 if (ret == -ENOSPC)
3973 return btrfs_update_inode_item(trans, root, inode);
3974 return ret;
3975}
3976
3977/*
Chris Masond352ac62008-09-29 15:18:18 -04003978 * unlink helper that gets used here in inode.c and in the tree logging
3979 * recovery code. It remove a link in a directory with a given name, and
3980 * also drops the back refs in the inode to the directory
3981 */
Al Viro92986792011-03-04 17:14:37 +00003982static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3983 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003984 struct btrfs_inode *dir,
3985 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00003986 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003987{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003988 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003989 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003990 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003991 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003992 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003993 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003994 u64 index;
Nikolay Borisov4ec59342017-01-18 00:31:44 +02003995 u64 ino = btrfs_ino(inode);
3996 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003997
3998 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003999 if (!path) {
4000 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00004001 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04004002 }
4003
Chris Masonb9473432009-03-13 11:00:37 -04004004 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08004005 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04004006 name, name_len, -1);
4007 if (IS_ERR(di)) {
4008 ret = PTR_ERR(di);
4009 goto err;
4010 }
4011 if (!di) {
4012 ret = -ENOENT;
4013 goto err;
4014 }
Chris Mason5f39d392007-10-15 16:14:19 -04004015 leaf = path->nodes[0];
4016 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04004017 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04004018 if (ret)
4019 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02004020 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004021
Miao Xie67de1172013-12-26 13:07:06 +08004022 /*
4023 * If we don't have dir index, we have to get it by looking up
4024 * the inode ref, since we get the inode ref, remove it directly,
4025 * it is unnecessary to do delayed deletion.
4026 *
4027 * But if we have dir index, needn't search inode ref to get it.
4028 * Since the inode ref is close to the inode item, it is better
4029 * that we delay to delete it, and just do this deletion when
4030 * we update the inode item.
4031 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004032 if (inode->dir_index) {
4033 ret = btrfs_delayed_delete_inode_ref(inode);
Miao Xie67de1172013-12-26 13:07:06 +08004034 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004035 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08004036 goto skip_backref;
4037 }
4038 }
4039
Li Zefan33345d012011-04-20 10:31:50 +08004040 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
4041 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004042 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004043 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004044 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004045 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04004046 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04004047 goto err;
4048 }
Miao Xie67de1172013-12-26 13:07:06 +08004049skip_backref:
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004050 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004051 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004052 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004053 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004054 }
Chris Mason39279cc2007-06-12 06:35:45 -04004055
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004056 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
4057 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004058 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004059 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004060 goto err;
4061 }
Chris Masone02119d2008-09-05 16:13:11 -04004062
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004063 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
4064 index);
Chris Mason6418c962010-10-30 07:34:24 -04004065 if (ret == -ENOENT)
4066 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004067 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004068 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004069err:
4070 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004071 if (ret)
4072 goto out;
4073
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004074 btrfs_i_size_write(&dir->vfs_inode,
4075 dir->vfs_inode.i_size - name_len * 2);
4076 inode_inc_iversion(&inode->vfs_inode);
4077 inode_inc_iversion(&dir->vfs_inode);
4078 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
4079 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
4080 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04004081out:
Chris Mason39279cc2007-06-12 06:35:45 -04004082 return ret;
4083}
4084
Al Viro92986792011-03-04 17:14:37 +00004085int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4086 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004087 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004088 const char *name, int name_len)
4089{
4090 int ret;
4091 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4092 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004093 drop_nlink(&inode->vfs_inode);
4094 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00004095 }
4096 return ret;
4097}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004098
4099/*
4100 * helper to start transaction for unlink and rmdir.
4101 *
Josef Bacikd52be812013-05-29 14:54:47 -04004102 * unlink and rmdir are special in btrfs, they do not always free space, so
4103 * if we cannot make our reservations the normal way try and see if there is
4104 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4105 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004106 */
Josef Bacikd52be812013-05-29 14:54:47 -04004107static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004108{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004109 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004110
Josef Bacike70bea52011-10-11 14:18:24 -04004111 /*
4112 * 1 for the possible orphan item
4113 * 1 for the dir item
4114 * 1 for the dir index
4115 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004116 * 1 for the inode
4117 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004118 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004119}
4120
Chris Mason39279cc2007-06-12 06:35:45 -04004121static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4122{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004123 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004124 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004125 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004126 int ret;
4127
Josef Bacikd52be812013-05-29 14:54:47 -04004128 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004129 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004130 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004131
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004132 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4133 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004134
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004135 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4136 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4137 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004138 if (ret)
4139 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004140
Yan, Zhenga22285a2010-05-16 10:48:46 -04004141 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04004142 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004143 if (ret)
4144 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004145 }
Josef Bacik7b128762008-07-24 12:17:14 -04004146
Tsutomu Itohb5324022011-07-19 07:27:20 +00004147out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004148 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004149 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004150 return ret;
4151}
4152
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004153int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4154 struct btrfs_root *root,
4155 struct inode *dir, u64 objectid,
4156 const char *name, int name_len)
4157{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004158 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004159 struct btrfs_path *path;
4160 struct extent_buffer *leaf;
4161 struct btrfs_dir_item *di;
4162 struct btrfs_key key;
4163 u64 index;
4164 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004165 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004166
4167 path = btrfs_alloc_path();
4168 if (!path)
4169 return -ENOMEM;
4170
Li Zefan33345d012011-04-20 10:31:50 +08004171 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004172 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004173 if (IS_ERR_OR_NULL(di)) {
4174 if (!di)
4175 ret = -ENOENT;
4176 else
4177 ret = PTR_ERR(di);
4178 goto out;
4179 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004180
4181 leaf = path->nodes[0];
4182 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4183 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4184 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004185 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004186 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004187 goto out;
4188 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004189 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004190
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004191 ret = btrfs_del_root_ref(trans, fs_info, objectid,
4192 root->root_key.objectid, dir_ino,
4193 &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004194 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004195 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004196 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004197 goto out;
4198 }
Li Zefan33345d012011-04-20 10:31:50 +08004199 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004200 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004201 if (IS_ERR_OR_NULL(di)) {
4202 if (!di)
4203 ret = -ENOENT;
4204 else
4205 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004206 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004207 goto out;
4208 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004209
4210 leaf = path->nodes[0];
4211 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004212 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004213 index = key.offset;
4214 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004215 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004216
Nikolay Borisove67bbbb2017-01-10 20:35:36 +02004217 ret = btrfs_delete_delayed_dir_index(trans, fs_info, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004218 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004219 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004220 goto out;
4221 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004222
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004223 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004224 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004225 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004226 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004227 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004228 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004229out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004230 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004231 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004232}
4233
Chris Mason39279cc2007-06-12 06:35:45 -04004234static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4235{
David Howells2b0143b2015-03-17 22:25:59 +00004236 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004237 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004238 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004239 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004240 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004241
David Sterbab3ae2442012-09-13 16:04:34 -06004242 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004243 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004244 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
David Sterbab3ae2442012-09-13 16:04:34 -06004245 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004246
Josef Bacikd52be812013-05-29 14:54:47 -04004247 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004248 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004249 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004250
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004251 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004252 err = btrfs_unlink_subvol(trans, root, dir,
4253 BTRFS_I(inode)->location.objectid,
4254 dentry->d_name.name,
4255 dentry->d_name.len);
4256 goto out;
4257 }
4258
Josef Bacik7b128762008-07-24 12:17:14 -04004259 err = btrfs_orphan_add(trans, inode);
4260 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004261 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004262
Filipe Manana44f714d2016-06-06 16:11:13 +01004263 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4264
Chris Mason39279cc2007-06-12 06:35:45 -04004265 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004266 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4267 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4268 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004269 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04004270 btrfs_i_size_write(inode, 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004271 /*
4272 * Propagate the last_unlink_trans value of the deleted dir to
4273 * its parent directory. This is to prevent an unrecoverable
4274 * log tree in the case we do something like this:
4275 * 1) create dir foo
4276 * 2) create snapshot under dir foo
4277 * 3) delete the snapshot
4278 * 4) rmdir foo
4279 * 5) mkdir foo
4280 * 6) fsync foo or some file inside foo
4281 */
4282 if (last_unlink_trans >= trans->transid)
4283 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4284 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004285out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004286 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004287 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004288
Chris Mason39279cc2007-06-12 06:35:45 -04004289 return err;
4290}
4291
Chris Mason28f75a02015-02-04 06:59:29 -08004292static int truncate_space_check(struct btrfs_trans_handle *trans,
4293 struct btrfs_root *root,
4294 u64 bytes_deleted)
4295{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004296 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004297 int ret;
4298
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004299 /*
4300 * This is only used to apply pressure to the enospc system, we don't
4301 * intend to use this reservation at all.
4302 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004303 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004304 bytes_deleted *= fs_info->nodesize;
4305 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004306 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004307 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004308 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004309 trans->transid,
4310 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004311 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004312 }
Chris Mason28f75a02015-02-04 06:59:29 -08004313 return ret;
4314
4315}
4316
Filipe Manana0305cd52015-10-16 12:34:25 +01004317static int truncate_inline_extent(struct inode *inode,
4318 struct btrfs_path *path,
4319 struct btrfs_key *found_key,
4320 const u64 item_end,
4321 const u64 new_size)
4322{
4323 struct extent_buffer *leaf = path->nodes[0];
4324 int slot = path->slots[0];
4325 struct btrfs_file_extent_item *fi;
4326 u32 size = (u32)(new_size - found_key->offset);
4327 struct btrfs_root *root = BTRFS_I(inode)->root;
4328
4329 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4330
4331 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4332 loff_t offset = new_size;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004333 loff_t page_end = ALIGN(offset, PAGE_SIZE);
Filipe Manana0305cd52015-10-16 12:34:25 +01004334
4335 /*
4336 * Zero out the remaining of the last page of our inline extent,
4337 * instead of directly truncating our inline extent here - that
4338 * would be much more complex (decompressing all the data, then
4339 * compressing the truncated data, which might be bigger than
4340 * the size of the inline extent, resize the extent, etc).
4341 * We release the path because to get the page we might need to
4342 * read the extent item from disk (data not in the page cache).
4343 */
4344 btrfs_release_path(path);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304345 return btrfs_truncate_block(inode, offset, page_end - offset,
4346 0);
Filipe Manana0305cd52015-10-16 12:34:25 +01004347 }
4348
4349 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4350 size = btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004351 btrfs_truncate_item(root->fs_info, path, size, 1);
Filipe Manana0305cd52015-10-16 12:34:25 +01004352
4353 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4354 inode_sub_bytes(inode, item_end + 1 - new_size);
4355
4356 return 0;
4357}
4358
Chris Mason323ac952008-10-01 19:05:46 -04004359/*
Chris Mason39279cc2007-06-12 06:35:45 -04004360 * this can truncate away extent items, csum items and directory items.
4361 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004362 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004363 *
4364 * csum items that cross the new i_size are truncated to the new size
4365 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004366 *
4367 * min_type is the minimum key type to truncate down to. If set to 0, this
4368 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004369 */
Yan, Zheng80825102009-11-12 09:35:36 +00004370int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4371 struct btrfs_root *root,
4372 struct inode *inode,
4373 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004374{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004375 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004376 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004377 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004378 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004379 struct btrfs_key key;
4380 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004381 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004382 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004383 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004384 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004385 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004386 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004387 int found_extent;
4388 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004389 int pending_del_nr = 0;
4390 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004391 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004392 int ret;
4393 int err = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004394 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004395 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004396 bool be_nice = 0;
4397 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004398 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004399
4400 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004401
Chris Mason28ed1342014-12-17 09:41:04 -08004402 /*
4403 * for non-free space inodes and ref cows, we want to back off from
4404 * time to time
4405 */
4406 if (!btrfs_is_free_space_inode(inode) &&
4407 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4408 be_nice = 1;
4409
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004410 path = btrfs_alloc_path();
4411 if (!path)
4412 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004413 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004414
Josef Bacik5dc562c2012-08-17 13:14:17 -04004415 /*
4416 * We want to drop from the next block forward in case this new size is
4417 * not block aligned since we will be keeping the last block of the
4418 * extent just the way it is.
4419 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004420 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004421 root == fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004422 btrfs_drop_extent_cache(inode, ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004423 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004424 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004425
Miao Xie16cdcec2011-04-22 18:12:22 +08004426 /*
4427 * This function is also used to drop the items in the log tree before
4428 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4429 * it is used to drop the loged items. So we shouldn't kill the delayed
4430 * items.
4431 */
4432 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004433 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004434
Li Zefan33345d012011-04-20 10:31:50 +08004435 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004436 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004437 key.type = (u8)-1;
4438
Chris Mason85e21ba2008-01-29 15:11:36 -05004439search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004440 /*
4441 * with a 16K leaf size and 128MB extents, you can actually queue
4442 * up a huge file in a single leaf. Most of the time that
4443 * bytes_deleted is > 0, it will be huge by the time we get here
4444 */
Byongho Leeee221842015-12-15 01:42:10 +09004445 if (be_nice && bytes_deleted > SZ_32M) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004446 if (btrfs_should_end_transaction(trans)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004447 err = -EAGAIN;
4448 goto error;
4449 }
4450 }
4451
4452
Chris Masonb9473432009-03-13 11:00:37 -04004453 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004454 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004455 if (ret < 0) {
4456 err = ret;
4457 goto out;
4458 }
Chris Masond3977122009-01-05 21:25:51 -05004459
Chris Mason85e21ba2008-01-29 15:11:36 -05004460 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004461 /* there are no items in the tree for us to truncate, we're
4462 * done
4463 */
Yan, Zheng80825102009-11-12 09:35:36 +00004464 if (path->slots[0] == 0)
4465 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004466 path->slots[0]--;
4467 }
4468
Chris Masond3977122009-01-05 21:25:51 -05004469 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004470 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004471 leaf = path->nodes[0];
4472 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004473 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004474
Li Zefan33345d012011-04-20 10:31:50 +08004475 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004476 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004477
Chris Mason85e21ba2008-01-29 15:11:36 -05004478 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004479 break;
4480
Chris Mason5f39d392007-10-15 16:14:19 -04004481 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004482 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004483 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004484 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004485 extent_type = btrfs_file_extent_type(leaf, fi);
4486 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004487 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004488 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004489 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004490 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004491 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004492 }
Yan008630c2007-11-07 13:31:09 -05004493 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004494 }
Yan, Zheng80825102009-11-12 09:35:36 +00004495 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004496 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004497 } else {
Liu Bo91298ee2016-12-01 13:43:31 -08004498 if (item_end < new_size) {
4499 /*
4500 * With NO_HOLES mode, for the following mapping
4501 *
4502 * [0-4k][hole][8k-12k]
4503 *
4504 * if truncating isize down to 6k, it ends up
4505 * isize being 8k.
4506 */
4507 if (btrfs_fs_incompat(root->fs_info, NO_HOLES))
4508 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004509 break;
Liu Bo91298ee2016-12-01 13:43:31 -08004510 }
Yan, Zheng80825102009-11-12 09:35:36 +00004511 if (found_key.offset >= new_size)
4512 del_item = 1;
4513 else
4514 del_item = 0;
4515 }
Chris Mason39279cc2007-06-12 06:35:45 -04004516 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004517 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004518 if (found_type != BTRFS_EXTENT_DATA_KEY)
4519 goto delete;
4520
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004521 if (del_item)
4522 last_size = found_key.offset;
4523 else
4524 last_size = new_size;
4525
Chris Mason179e29e2007-11-01 11:28:41 -04004526 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004527 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004528 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004529 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004530 u64 orig_num_bytes =
4531 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004532 extent_num_bytes = ALIGN(new_size -
4533 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004534 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004535 btrfs_set_file_extent_num_bytes(leaf, fi,
4536 extent_num_bytes);
4537 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004538 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004539 if (test_bit(BTRFS_ROOT_REF_COWS,
4540 &root->state) &&
4541 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004542 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004543 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004544 } else {
Chris Masondb945352007-10-15 16:15:53 -04004545 extent_num_bytes =
4546 btrfs_file_extent_disk_num_bytes(leaf,
4547 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004548 extent_offset = found_key.offset -
4549 btrfs_file_extent_offset(leaf, fi);
4550
Chris Mason39279cc2007-06-12 06:35:45 -04004551 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004552 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004553 if (extent_start != 0) {
4554 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004555 if (test_bit(BTRFS_ROOT_REF_COWS,
4556 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004557 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004558 }
4559 }
Chris Mason90692182008-02-08 13:49:28 -05004560 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004561 /*
4562 * we can't truncate inline items that have had
4563 * special encodings
4564 */
4565 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004566 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4567 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004568
4569 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004570 * Need to release path in order to truncate a
4571 * compressed extent. So delete any accumulated
4572 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004573 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004574 if (btrfs_file_extent_compression(leaf, fi) !=
4575 BTRFS_COMPRESS_NONE && pending_del_nr) {
4576 err = btrfs_del_items(trans, root, path,
4577 pending_del_slot,
4578 pending_del_nr);
4579 if (err) {
4580 btrfs_abort_transaction(trans,
Filipe Manana0305cd52015-10-16 12:34:25 +01004581 err);
4582 goto error;
4583 }
4584 pending_del_nr = 0;
4585 }
4586
4587 err = truncate_inline_extent(inode, path,
4588 &found_key,
4589 item_end,
4590 new_size);
4591 if (err) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004592 btrfs_abort_transaction(trans, err);
Filipe Manana0305cd52015-10-16 12:34:25 +01004593 goto error;
4594 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004595 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4596 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004597 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004598 }
Chris Mason39279cc2007-06-12 06:35:45 -04004599 }
Chris Mason179e29e2007-11-01 11:28:41 -04004600delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004601 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004602 if (!pending_del_nr) {
4603 /* no pending yet, add ourselves */
4604 pending_del_slot = path->slots[0];
4605 pending_del_nr = 1;
4606 } else if (pending_del_nr &&
4607 path->slots[0] + 1 == pending_del_slot) {
4608 /* hop on the pending chunk */
4609 pending_del_nr++;
4610 pending_del_slot = path->slots[0];
4611 } else {
Chris Masond3977122009-01-05 21:25:51 -05004612 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004613 }
Chris Mason39279cc2007-06-12 06:35:45 -04004614 } else {
4615 break;
4616 }
Chris Mason28f75a02015-02-04 06:59:29 -08004617 should_throttle = 0;
4618
Miao Xie27cdeb72014-04-02 19:51:05 +08004619 if (found_extent &&
4620 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004621 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004622 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004623 bytes_deleted += extent_num_bytes;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004624 ret = btrfs_free_extent(trans, fs_info, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004625 extent_num_bytes, 0,
4626 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004627 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004628 BUG_ON(ret);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004629 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4630 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004631 trans->delayed_ref_updates * 2,
4632 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004633 if (be_nice) {
4634 if (truncate_space_check(trans, root,
4635 extent_num_bytes)) {
4636 should_end = 1;
4637 }
4638 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004639 fs_info))
Chris Mason28f75a02015-02-04 06:59:29 -08004640 should_throttle = 1;
Chris Mason28f75a02015-02-04 06:59:29 -08004641 }
Chris Mason39279cc2007-06-12 06:35:45 -04004642 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004643
Yan, Zheng80825102009-11-12 09:35:36 +00004644 if (found_type == BTRFS_INODE_ITEM_KEY)
4645 break;
4646
4647 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004648 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004649 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004650 if (pending_del_nr) {
4651 ret = btrfs_del_items(trans, root, path,
4652 pending_del_slot,
4653 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004654 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004655 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004656 goto error;
4657 }
Yan, Zheng80825102009-11-12 09:35:36 +00004658 pending_del_nr = 0;
4659 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004660 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004661 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004662 unsigned long updates = trans->delayed_ref_updates;
4663 if (updates) {
4664 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004665 ret = btrfs_run_delayed_refs(trans,
4666 fs_info,
4667 updates * 2);
Josef Bacik12621332015-02-03 07:50:16 -08004668 if (ret && !err)
4669 err = ret;
4670 }
4671 }
Chris Mason28f75a02015-02-04 06:59:29 -08004672 /*
4673 * if we failed to refill our space rsv, bail out
4674 * and let the transaction restart
4675 */
4676 if (should_end) {
4677 err = -EAGAIN;
4678 goto error;
4679 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004680 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004681 } else {
4682 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004683 }
Chris Mason39279cc2007-06-12 06:35:45 -04004684 }
Yan, Zheng80825102009-11-12 09:35:36 +00004685out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004686 if (pending_del_nr) {
4687 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4688 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004689 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004690 btrfs_abort_transaction(trans, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004691 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004692error:
Filipe Mananac1aa4572015-06-20 18:20:09 +01004693 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004694 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason28ed1342014-12-17 09:41:04 -08004695
Chris Mason39279cc2007-06-12 06:35:45 -04004696 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004697
Liu Bo19fd2df2016-12-01 13:01:02 -08004698 if (err == 0) {
4699 /* only inline file may have last_size != new_size */
4700 if (new_size >= fs_info->sectorsize ||
4701 new_size > fs_info->max_inline)
4702 ASSERT(last_size == new_size);
4703 }
4704
Byongho Leeee221842015-12-15 01:42:10 +09004705 if (be_nice && bytes_deleted > SZ_32M) {
Chris Mason28ed1342014-12-17 09:41:04 -08004706 unsigned long updates = trans->delayed_ref_updates;
4707 if (updates) {
4708 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004709 ret = btrfs_run_delayed_refs(trans, fs_info,
4710 updates * 2);
Chris Mason28ed1342014-12-17 09:41:04 -08004711 if (ret && !err)
4712 err = ret;
4713 }
4714 }
Yan, Zheng80825102009-11-12 09:35:36 +00004715 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004716}
4717
Chris Masona52d9a82007-08-27 16:49:44 -04004718/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304719 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004720 * @inode - inode that we're zeroing
4721 * @from - the offset to start zeroing
4722 * @len - the length to zero, 0 to zero the entire range respective to the
4723 * offset
4724 * @front - zero up to the offset instead of from the offset on
4725 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304726 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004727 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004728 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304729int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004730 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004731{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004732 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004733 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004734 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4735 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004736 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004737 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004738 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004739 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304740 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004741 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004742 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004743 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304744 u64 block_start;
4745 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004746
Josef Bacik2aaa6652012-08-29 14:27:18 -04004747 if ((offset & (blocksize - 1)) == 0 &&
4748 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004749 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304750
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004751 ret = btrfs_delalloc_reserve_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304752 round_down(from, blocksize), blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004753 if (ret)
4754 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004755
Chris Mason211c17f2008-05-15 09:13:45 -04004756again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004757 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004758 if (!page) {
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004759 btrfs_delalloc_release_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304760 round_down(from, blocksize),
4761 blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004762 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004763 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004764 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004765
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304766 block_start = round_down(from, blocksize);
4767 block_end = block_start + blocksize - 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004768
Chris Masona52d9a82007-08-27 16:49:44 -04004769 if (!PageUptodate(page)) {
4770 ret = btrfs_readpage(NULL, page);
4771 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004772 if (page->mapping != mapping) {
4773 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004774 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004775 goto again;
4776 }
Chris Masona52d9a82007-08-27 16:49:44 -04004777 if (!PageUptodate(page)) {
4778 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004779 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004780 }
4781 }
Chris Mason211c17f2008-05-15 09:13:45 -04004782 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004783
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304784 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004785 set_page_extent_mapped(page);
4786
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304787 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004788 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304789 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004790 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004791 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004792 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004793 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004794 btrfs_put_ordered_extent(ordered);
4795 goto again;
4796 }
4797
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304798 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004799 EXTENT_DIRTY | EXTENT_DELALLOC |
4800 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004801 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004802
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304803 ret = btrfs_set_extent_delalloc(inode, block_start, block_end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004804 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004805 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304806 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004807 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004808 goto out_unlock;
4809 }
4810
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304811 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004812 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304813 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004814 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004815 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304816 memset(kaddr + (block_start - page_offset(page)),
4817 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004818 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304819 memset(kaddr + (block_start - page_offset(page)) + offset,
4820 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004821 flush_dcache_page(page);
4822 kunmap(page);
4823 }
Chris Mason247e7432008-07-17 12:53:51 -04004824 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004825 set_page_dirty(page);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304826 unlock_extent_cached(io_tree, block_start, block_end, &cached_state,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004827 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004828
Chris Mason89642222008-07-24 09:41:53 -04004829out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004830 if (ret)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304831 btrfs_delalloc_release_space(inode, block_start,
4832 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004833 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004834 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004835out:
4836 return ret;
4837}
4838
Josef Bacik16e75492013-10-22 12:18:51 -04004839static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4840 u64 offset, u64 len)
4841{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004842 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004843 struct btrfs_trans_handle *trans;
4844 int ret;
4845
4846 /*
4847 * Still need to make sure the inode looks like it's been updated so
4848 * that any holes get logged if we fsync.
4849 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004850 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4851 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004852 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4853 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4854 return 0;
4855 }
4856
4857 /*
4858 * 1 - for the one we're dropping
4859 * 1 - for the one we're adding
4860 * 1 - for updating the inode.
4861 */
4862 trans = btrfs_start_transaction(root, 3);
4863 if (IS_ERR(trans))
4864 return PTR_ERR(trans);
4865
4866 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4867 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004868 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004869 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004870 return ret;
4871 }
4872
David Sterbaf85b7372017-01-20 14:54:07 +01004873 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4874 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004875 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004876 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004877 else
4878 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004879 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004880 return ret;
4881}
4882
Josef Bacik695a0d02011-03-04 15:46:53 -05004883/*
4884 * This function puts in dummy file extents for the area we're creating a hole
4885 * for. So if we are truncating this file to a larger size we need to insert
4886 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4887 * the range between oldsize and size
4888 */
Josef Bacika41ad392011-01-31 15:30:16 -05004889int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004890{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004891 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004892 struct btrfs_root *root = BTRFS_I(inode)->root;
4893 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004894 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004895 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004896 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004897 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4898 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004899 u64 last_byte;
4900 u64 cur_offset;
4901 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004902 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004903
Josef Bacika71754f2013-06-17 17:14:39 -04004904 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304905 * If our size started in the middle of a block we need to zero out the
4906 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004907 * expose stale data.
4908 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304909 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004910 if (err)
4911 return err;
4912
Yan Zheng9036c102008-10-30 14:19:41 -04004913 if (size <= hole_start)
4914 return 0;
4915
Yan Zheng9036c102008-10-30 14:19:41 -04004916 while (1) {
4917 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004918
David Sterbaff13db42015-12-03 14:30:40 +01004919 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004920 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004921 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4922 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004923 if (!ordered)
4924 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004925 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4926 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004927 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004928 btrfs_put_ordered_extent(ordered);
4929 }
4930
Yan Zheng9036c102008-10-30 14:19:41 -04004931 cur_offset = hole_start;
4932 while (1) {
4933 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4934 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004935 if (IS_ERR(em)) {
4936 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004937 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004938 break;
4939 }
Yan Zheng9036c102008-10-30 14:19:41 -04004940 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004941 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004942 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004943 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004944 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004945
Josef Bacik16e75492013-10-22 12:18:51 -04004946 err = maybe_insert_hole(root, inode, cur_offset,
4947 hole_size);
4948 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004949 break;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004950 btrfs_drop_extent_cache(inode, cur_offset,
4951 cur_offset + hole_size - 1, 0);
4952 hole_em = alloc_extent_map();
4953 if (!hole_em) {
4954 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4955 &BTRFS_I(inode)->runtime_flags);
4956 goto next;
4957 }
4958 hole_em->start = cur_offset;
4959 hole_em->len = hole_size;
4960 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004961
Josef Bacik5dc562c2012-08-17 13:14:17 -04004962 hole_em->block_start = EXTENT_MAP_HOLE;
4963 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004964 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004965 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004966 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004967 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004968 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004969
4970 while (1) {
4971 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004972 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004973 write_unlock(&em_tree->lock);
4974 if (err != -EEXIST)
4975 break;
4976 btrfs_drop_extent_cache(inode, cur_offset,
4977 cur_offset +
4978 hole_size - 1, 0);
4979 }
4980 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004981 }
Josef Bacik16e75492013-10-22 12:18:51 -04004982next:
Yan Zheng9036c102008-10-30 14:19:41 -04004983 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004984 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004985 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004986 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004987 break;
4988 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004989 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004990 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4991 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004992 return err;
4993}
4994
Eric Sandeen3972f262013-01-12 02:57:22 +00004995static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004996{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004997 struct btrfs_root *root = BTRFS_I(inode)->root;
4998 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004999 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005000 loff_t newsize = attr->ia_size;
5001 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005002 int ret;
5003
Eric Sandeen3972f262013-01-12 02:57:22 +00005004 /*
5005 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5006 * special case where we need to update the times despite not having
5007 * these flags set. For all other operations the VFS set these flags
5008 * explicitly if it wants a timestamp update.
5009 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005010 if (newsize != oldsize) {
5011 inode_inc_iversion(inode);
5012 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5013 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005014 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005015 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005016
Josef Bacika41ad392011-01-31 15:30:16 -05005017 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005018 /*
5019 * Don't do an expanding truncate while snapshoting is ongoing.
5020 * This is to ensure the snapshot captures a fully consistent
5021 * state of this file - if the snapshot captures this expanding
5022 * truncation, it must capture all writes that happened before
5023 * this truncation.
5024 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005025 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005026 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005027 if (ret) {
5028 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005029 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005030 }
Yan, Zheng80825102009-11-12 09:35:36 +00005031
Miao Xief4a2f4c2011-12-14 20:12:01 -05005032 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005033 if (IS_ERR(trans)) {
5034 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005035 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005036 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005037
5038 i_size_write(inode, newsize);
5039 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305040 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005041 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005042 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005043 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005044 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005045
Josef Bacika41ad392011-01-31 15:30:16 -05005046 /*
5047 * We're truncating a file that used to have good data down to
5048 * zero. Make sure it gets into the ordered flush list so that
5049 * any new writes get down to disk quickly.
5050 */
5051 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005052 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5053 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005054
Josef Bacikf3fe8202013-01-07 17:03:21 -05005055 /*
5056 * 1 for the orphan item we're going to add
5057 * 1 for the orphan item deletion.
5058 */
5059 trans = btrfs_start_transaction(root, 2);
5060 if (IS_ERR(trans))
5061 return PTR_ERR(trans);
5062
5063 /*
5064 * We need to do this in case we fail at _any_ point during the
5065 * actual truncate. Once we do the truncate_setsize we could
5066 * invalidate pages which forces any outstanding ordered io to
5067 * be instantly completed which will give us extents that need
5068 * to be truncated. If we fail to get an orphan inode down we
5069 * could have left over extents that were never meant to live,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005070 * so we need to guarantee from this point on that everything
Josef Bacikf3fe8202013-01-07 17:03:21 -05005071 * will be consistent.
5072 */
5073 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005074 btrfs_end_transaction(trans);
Josef Bacikf3fe8202013-01-07 17:03:21 -05005075 if (ret)
5076 return ret;
5077
Josef Bacika41ad392011-01-31 15:30:16 -05005078 /* we don't support swapfiles, so vmtruncate shouldn't fail */
5079 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005080
5081 /* Disable nonlocked read DIO to avoid the end less truncate */
5082 btrfs_inode_block_unlocked_dio(inode);
5083 inode_dio_wait(inode);
5084 btrfs_inode_resume_unlocked_dio(inode);
5085
Josef Bacika41ad392011-01-31 15:30:16 -05005086 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005087 if (ret && inode->i_nlink) {
5088 int err;
5089
Liu Bo19fd2df2016-12-01 13:01:02 -08005090 /* To get a stable disk_i_size */
5091 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
5092 if (err) {
5093 btrfs_orphan_del(NULL, inode);
5094 return err;
5095 }
5096
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005097 /*
5098 * failed to truncate, disk_i_size is only adjusted down
5099 * as we remove extents, so it should represent the true
5100 * size of the inode, so reset the in memory size and
5101 * delete our orphan entry.
5102 */
5103 trans = btrfs_join_transaction(root);
5104 if (IS_ERR(trans)) {
5105 btrfs_orphan_del(NULL, inode);
5106 return ret;
5107 }
5108 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
5109 err = btrfs_orphan_del(trans, inode);
5110 if (err)
Jeff Mahoney66642832016-06-10 18:19:25 -04005111 btrfs_abort_transaction(trans, err);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005112 btrfs_end_transaction(trans);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005113 }
Yan, Zheng80825102009-11-12 09:35:36 +00005114 }
5115
Josef Bacika41ad392011-01-31 15:30:16 -05005116 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005117}
5118
Chris Mason39279cc2007-06-12 06:35:45 -04005119static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5120{
David Howells2b0143b2015-03-17 22:25:59 +00005121 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005122 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005123 int err;
5124
Li Zefanb83cc962010-12-20 16:04:08 +08005125 if (btrfs_root_readonly(root))
5126 return -EROFS;
5127
Jan Kara31051c82016-05-26 16:55:18 +02005128 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005129 if (err)
5130 return err;
5131
Chris Mason5a3f23d2009-03-31 13:27:11 -04005132 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005133 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005134 if (err)
5135 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005136 }
Yan Zheng9036c102008-10-30 14:19:41 -04005137
Christoph Hellwig10257742010-06-04 11:30:02 +02005138 if (attr->ia_valid) {
5139 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005140 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005141 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005142
Josef Bacik22c44fe2011-11-30 10:45:38 -05005143 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005144 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005145 }
5146
Chris Mason39279cc2007-06-12 06:35:45 -04005147 return err;
5148}
Chris Mason61295eb2008-01-14 16:24:38 -05005149
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005150/*
5151 * While truncating the inode pages during eviction, we get the VFS calling
5152 * btrfs_invalidatepage() against each page of the inode. This is slow because
5153 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5154 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5155 * extent_state structures over and over, wasting lots of time.
5156 *
5157 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5158 * those expensive operations on a per page basis and do only the ordered io
5159 * finishing, while we release here the extent_map and extent_state structures,
5160 * without the excessive merging and splitting.
5161 */
5162static void evict_inode_truncate_pages(struct inode *inode)
5163{
5164 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5165 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5166 struct rb_node *node;
5167
5168 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005169 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005170
5171 write_lock(&map_tree->lock);
5172 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5173 struct extent_map *em;
5174
5175 node = rb_first(&map_tree->map);
5176 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005177 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5178 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005179 remove_extent_mapping(map_tree, em);
5180 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005181 if (need_resched()) {
5182 write_unlock(&map_tree->lock);
5183 cond_resched();
5184 write_lock(&map_tree->lock);
5185 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005186 }
5187 write_unlock(&map_tree->lock);
5188
Filipe Manana6ca07092015-05-26 00:55:42 +01005189 /*
5190 * Keep looping until we have no more ranges in the io tree.
5191 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005192 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5193 * still in progress (unlocked the pages in the bio but did not yet
5194 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005195 * ranges can still be locked and eviction started because before
5196 * submitting those bios, which are executed by a separate task (work
5197 * queue kthread), inode references (inode->i_count) were not taken
5198 * (which would be dropped in the end io callback of each bio).
5199 * Therefore here we effectively end up waiting for those bios and
5200 * anyone else holding locked ranges without having bumped the inode's
5201 * reference count - if we don't do it, when they access the inode's
5202 * io_tree to unlock a range it may be too late, leading to an
5203 * use-after-free issue.
5204 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005205 spin_lock(&io_tree->lock);
5206 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5207 struct extent_state *state;
5208 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005209 u64 start;
5210 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005211
5212 node = rb_first(&io_tree->state);
5213 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005214 start = state->start;
5215 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005216 spin_unlock(&io_tree->lock);
5217
David Sterbaff13db42015-12-03 14:30:40 +01005218 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005219
5220 /*
5221 * If still has DELALLOC flag, the extent didn't reach disk,
5222 * and its reserved space won't be freed by delayed_ref.
5223 * So we need to free its reserved space here.
5224 * (Refer to comment in btrfs_invalidatepage, case 2)
5225 *
5226 * Note, end is the bytenr of last byte, so we need + 1 here.
5227 */
5228 if (state->state & EXTENT_DELALLOC)
5229 btrfs_qgroup_free_data(inode, start, end - start + 1);
5230
Filipe Manana6ca07092015-05-26 00:55:42 +01005231 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005232 EXTENT_LOCKED | EXTENT_DIRTY |
5233 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5234 EXTENT_DEFRAG, 1, 1,
5235 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005236
Filipe Manana7064dd52014-08-08 02:47:05 +01005237 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005238 spin_lock(&io_tree->lock);
5239 }
5240 spin_unlock(&io_tree->lock);
5241}
5242
Al Virobd555972010-06-07 11:35:40 -04005243void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005244{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005245 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005246 struct btrfs_trans_handle *trans;
5247 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005248 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005249 int steal_from_global = 0;
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005250 u64 min_size;
Chris Mason39279cc2007-06-12 06:35:45 -04005251 int ret;
5252
liubo1abe9b82011-03-24 11:18:59 +00005253 trace_btrfs_inode_evict(inode);
5254
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005255 if (!root) {
5256 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5257 return;
5258 }
5259
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005260 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005261
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005262 evict_inode_truncate_pages(inode);
5263
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005264 if (inode->i_nlink &&
5265 ((btrfs_root_refs(&root->root_item) != 0 &&
5266 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
5267 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04005268 goto no_delete;
5269
Chris Mason39279cc2007-06-12 06:35:45 -04005270 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04005271 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005272 goto no_delete;
5273 }
Al Virobd555972010-06-07 11:35:40 -04005274 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005275 if (!special_file(inode->i_mode))
5276 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005277
Miao Xief6124962014-09-12 18:44:04 +08005278 btrfs_free_io_failure_record(inode, 0, (u64)-1);
5279
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005280 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Liu Bo6bf02312012-06-25 21:59:09 -06005281 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005282 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005283 goto no_delete;
5284 }
5285
Yan, Zheng76dda932009-09-21 16:00:26 -04005286 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005287 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5288 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005289 goto no_delete;
5290 }
5291
Nikolay Borisovaa790212017-01-10 20:35:40 +02005292 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005293 if (ret) {
5294 btrfs_orphan_del(NULL, inode);
5295 goto no_delete;
5296 }
5297
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005298 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005299 if (!rsv) {
5300 btrfs_orphan_del(NULL, inode);
5301 goto no_delete;
5302 }
Josef Bacik4a338542011-08-29 11:01:31 -04005303 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005304 rsv->failfast = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005305 global_rsv = &fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005306
Chris Masondbe674a2008-07-17 12:54:05 -04005307 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005308
Josef Bacik4289a662011-08-05 13:22:24 -04005309 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005310 * This is a bit simpler than btrfs_truncate since we've already
5311 * reserved our space for our orphan item in the unlink, so we just
5312 * need to reserve some slack space in case we add bytes and update
5313 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005314 */
Yan, Zheng80825102009-11-12 09:35:36 +00005315 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005316 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5317 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005318
Josef Bacik726c35f2011-09-26 15:46:06 -04005319 /*
5320 * Try and steal from the global reserve since we will
5321 * likely not use this space anyway, we want to try as
5322 * hard as possible to get this to work.
5323 */
5324 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005325 steal_from_global++;
5326 else
5327 steal_from_global = 0;
5328 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005329
Josef Bacik3bce8762015-02-24 12:35:51 -08005330 /*
5331 * steal_from_global == 0: we reserved stuff, hooray!
5332 * steal_from_global == 1: we didn't reserve stuff, boo!
5333 * steal_from_global == 2: we've committed, still not a lot of
5334 * room but maybe we'll have room in the global reserve this
5335 * time.
5336 * steal_from_global == 3: abandon all hope!
5337 */
5338 if (steal_from_global > 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005339 btrfs_warn(fs_info,
5340 "Could not get space for a delete, will truncate on mount %d",
5341 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04005342 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005343 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005344 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005345 }
5346
Miao Xie0e8c36a2012-12-19 06:59:51 +00005347 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005348 if (IS_ERR(trans)) {
5349 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005350 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005351 goto no_delete;
5352 }
5353
Josef Bacik3bce8762015-02-24 12:35:51 -08005354 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005355 * We can't just steal from the global reserve, we need to make
Josef Bacik3bce8762015-02-24 12:35:51 -08005356 * sure there is room to do it, if not we need to commit and try
5357 * again.
5358 */
5359 if (steal_from_global) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005360 if (!btrfs_check_space_for_delayed_refs(trans, fs_info))
Josef Bacik3bce8762015-02-24 12:35:51 -08005361 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04005362 min_size, 0);
Josef Bacik3bce8762015-02-24 12:35:51 -08005363 else
5364 ret = -ENOSPC;
5365 }
5366
5367 /*
5368 * Couldn't steal from the global reserve, we have too much
5369 * pending stuff built up, commit the transaction and try it
5370 * again.
5371 */
5372 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005373 ret = btrfs_commit_transaction(trans);
Josef Bacik3bce8762015-02-24 12:35:51 -08005374 if (ret) {
5375 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005376 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik3bce8762015-02-24 12:35:51 -08005377 goto no_delete;
5378 }
5379 continue;
5380 } else {
5381 steal_from_global = 0;
5382 }
5383
Josef Bacik4289a662011-08-05 13:22:24 -04005384 trans->block_rsv = rsv;
5385
Yan, Zhengd68fc572010-05-16 10:49:58 -04005386 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005387 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005388 break;
5389
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005390 trans->block_rsv = &fs_info->trans_block_rsv;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005391 btrfs_end_transaction(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00005392 trans = NULL;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005393 btrfs_btree_balance_dirty(fs_info);
Josef Bacik7b128762008-07-24 12:17:14 -04005394 }
5395
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005396 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005397
Josef Bacik4ef31a42013-08-13 14:10:08 -04005398 /*
5399 * Errors here aren't a big deal, it just means we leave orphan items
5400 * in the tree. They will be cleaned up on the next mount.
5401 */
Yan, Zheng80825102009-11-12 09:35:36 +00005402 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005403 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik4ef31a42013-08-13 14:10:08 -04005404 btrfs_orphan_del(trans, inode);
5405 } else {
5406 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005407 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005408
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005409 trans->block_rsv = &fs_info->trans_block_rsv;
5410 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005411 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005412 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005413
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005414 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005415 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04005416no_delete:
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005417 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005418 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005419}
5420
5421/*
5422 * this returns the key found in the dir entry in the location pointer.
5423 * If no dir entries were found, location->objectid is 0.
5424 */
5425static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5426 struct btrfs_key *location)
5427{
5428 const char *name = dentry->d_name.name;
5429 int namelen = dentry->d_name.len;
5430 struct btrfs_dir_item *di;
5431 struct btrfs_path *path;
5432 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005433 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005434
5435 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005436 if (!path)
5437 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005438
David Sterbaf85b7372017-01-20 14:54:07 +01005439 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5440 name, namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005441 if (IS_ERR(di))
5442 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005443
David Sterbac7040052011-04-19 18:00:01 +02005444 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005445 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005446
Chris Mason5f39d392007-10-15 16:14:19 -04005447 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005448out:
Chris Mason39279cc2007-06-12 06:35:45 -04005449 btrfs_free_path(path);
5450 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005451out_err:
5452 location->objectid = 0;
5453 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005454}
5455
5456/*
5457 * when we hit a tree root in a directory, the btrfs part of the inode
5458 * needs to be changed to reflect the root directory of the tree root. This
5459 * is kind of like crossing a mount point.
5460 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005461static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005462 struct inode *dir,
5463 struct dentry *dentry,
5464 struct btrfs_key *location,
5465 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005466{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005467 struct btrfs_path *path;
5468 struct btrfs_root *new_root;
5469 struct btrfs_root_ref *ref;
5470 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005471 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005472 int ret;
5473 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005474
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005475 path = btrfs_alloc_path();
5476 if (!path) {
5477 err = -ENOMEM;
5478 goto out;
5479 }
Chris Mason39279cc2007-06-12 06:35:45 -04005480
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005481 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005482 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5483 key.type = BTRFS_ROOT_REF_KEY;
5484 key.offset = location->objectid;
5485
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005486 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005487 if (ret) {
5488 if (ret < 0)
5489 err = ret;
5490 goto out;
5491 }
Chris Mason39279cc2007-06-12 06:35:45 -04005492
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005493 leaf = path->nodes[0];
5494 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005495 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005496 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5497 goto out;
5498
5499 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5500 (unsigned long)(ref + 1),
5501 dentry->d_name.len);
5502 if (ret)
5503 goto out;
5504
David Sterbab3b4aa72011-04-21 01:20:15 +02005505 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005506
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005507 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005508 if (IS_ERR(new_root)) {
5509 err = PTR_ERR(new_root);
5510 goto out;
5511 }
5512
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005513 *sub_root = new_root;
5514 location->objectid = btrfs_root_dirid(&new_root->root_item);
5515 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005516 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005517 err = 0;
5518out:
5519 btrfs_free_path(path);
5520 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005521}
5522
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005523static void inode_tree_add(struct inode *inode)
5524{
5525 struct btrfs_root *root = BTRFS_I(inode)->root;
5526 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005527 struct rb_node **p;
5528 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005529 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005530 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005531
Al Viro1d3382cb2010-10-23 15:19:20 -04005532 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005533 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005534 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005535 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005536 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005537 while (*p) {
5538 parent = *p;
5539 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5540
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005541 if (ino < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005542 p = &parent->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005543 else if (ino > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005544 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005545 else {
5546 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005547 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005548 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005549 RB_CLEAR_NODE(parent);
5550 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005551 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005552 }
5553 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005554 rb_link_node(new, parent, p);
5555 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005556 spin_unlock(&root->inode_lock);
5557}
5558
5559static void inode_tree_del(struct inode *inode)
5560{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005561 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005562 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005563 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005564
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005565 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005566 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005567 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005568 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005569 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005570 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005571 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005572
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005573 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005574 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005575 spin_lock(&root->inode_lock);
5576 empty = RB_EMPTY_ROOT(&root->inode_tree);
5577 spin_unlock(&root->inode_lock);
5578 if (empty)
5579 btrfs_add_dead_root(root);
5580 }
5581}
5582
Jeff Mahoney143bede2012-03-01 14:56:26 +01005583void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005584{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005585 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04005586 struct rb_node *node;
5587 struct rb_node *prev;
5588 struct btrfs_inode *entry;
5589 struct inode *inode;
5590 u64 objectid = 0;
5591
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005592 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Liu Bo7813b3d2014-02-10 17:37:25 +08005593 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005594
5595 spin_lock(&root->inode_lock);
5596again:
5597 node = root->inode_tree.rb_node;
5598 prev = NULL;
5599 while (node) {
5600 prev = node;
5601 entry = rb_entry(node, struct btrfs_inode, rb_node);
5602
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005603 if (objectid < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005604 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005605 else if (objectid > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005606 node = node->rb_right;
5607 else
5608 break;
5609 }
5610 if (!node) {
5611 while (prev) {
5612 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005613 if (objectid <= btrfs_ino(BTRFS_I(&entry->vfs_inode))) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005614 node = prev;
5615 break;
5616 }
5617 prev = rb_next(prev);
5618 }
5619 }
5620 while (node) {
5621 entry = rb_entry(node, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005622 objectid = btrfs_ino(BTRFS_I(&entry->vfs_inode)) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005623 inode = igrab(&entry->vfs_inode);
5624 if (inode) {
5625 spin_unlock(&root->inode_lock);
5626 if (atomic_read(&inode->i_count) > 1)
5627 d_prune_aliases(inode);
5628 /*
Al Viro45321ac2010-06-07 13:43:19 -04005629 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005630 * the inode cache when its usage count
5631 * hits zero.
5632 */
5633 iput(inode);
5634 cond_resched();
5635 spin_lock(&root->inode_lock);
5636 goto again;
5637 }
5638
5639 if (cond_resched_lock(&root->inode_lock))
5640 goto again;
5641
5642 node = rb_next(node);
5643 }
5644 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005645}
5646
Chris Masone02119d2008-09-05 16:13:11 -04005647static int btrfs_init_locked_inode(struct inode *inode, void *p)
5648{
5649 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005650 inode->i_ino = args->location->objectid;
5651 memcpy(&BTRFS_I(inode)->location, args->location,
5652 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005653 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005654 return 0;
5655}
5656
5657static int btrfs_find_actor(struct inode *inode, void *opaque)
5658{
5659 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005660 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005661 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005662}
5663
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005664static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005665 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005666 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005667{
5668 struct inode *inode;
5669 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005670 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005671
Chris Mason90d3e592014-01-09 17:28:00 -08005672 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005673 args.root = root;
5674
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005675 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005676 btrfs_init_locked_inode,
5677 (void *)&args);
5678 return inode;
5679}
5680
Balaji Rao1a54ef82008-07-21 02:01:04 +05305681/* Get an inode object given its location and corresponding root.
5682 * Returns in *is_new if the inode was read from disk
5683 */
5684struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005685 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305686{
5687 struct inode *inode;
5688
Chris Mason90d3e592014-01-09 17:28:00 -08005689 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305690 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005691 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305692
5693 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005694 int ret;
5695
5696 ret = btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005697 if (!is_bad_inode(inode)) {
5698 inode_tree_add(inode);
5699 unlock_new_inode(inode);
5700 if (new)
5701 *new = 1;
5702 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005703 unlock_new_inode(inode);
5704 iput(inode);
Filipe Manana67710892016-06-06 11:51:25 +01005705 ASSERT(ret < 0);
5706 inode = ERR_PTR(ret < 0 ? ret : -ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005707 }
5708 }
5709
Balaji Rao1a54ef82008-07-21 02:01:04 +05305710 return inode;
5711}
5712
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005713static struct inode *new_simple_dir(struct super_block *s,
5714 struct btrfs_key *key,
5715 struct btrfs_root *root)
5716{
5717 struct inode *inode = new_inode(s);
5718
5719 if (!inode)
5720 return ERR_PTR(-ENOMEM);
5721
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005722 BTRFS_I(inode)->root = root;
5723 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005724 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005725
5726 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005727 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005728 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005729 inode->i_fop = &simple_dir_operations;
5730 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005731 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305732 inode->i_atime = inode->i_mtime;
5733 inode->i_ctime = inode->i_mtime;
5734 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005735
5736 return inode;
5737}
5738
Chris Mason3de45862008-11-17 21:02:50 -05005739struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005740{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005741 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005742 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005743 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005744 struct btrfs_root *sub_root = root;
5745 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005746 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005747 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005748
5749 if (dentry->d_name.len > BTRFS_NAME_LEN)
5750 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005751
Jeff Layton39e3c952012-11-28 11:30:53 -05005752 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005753 if (ret < 0)
5754 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005755
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005756 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005757 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005758
5759 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005760 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005761 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005762 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005763
5764 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5765
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005766 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005767 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005768 &location, &sub_root);
5769 if (ret < 0) {
5770 if (ret != -ENOENT)
5771 inode = ERR_PTR(ret);
5772 else
5773 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5774 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005775 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005776 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005777 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005778
Julia Lawall34d19ba2011-01-24 19:55:19 +00005779 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005780 down_read(&fs_info->cleanup_work_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005781 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005782 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005783 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005784 if (ret) {
5785 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005786 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005787 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005788 }
5789
Chris Mason3de45862008-11-17 21:02:50 -05005790 return inode;
5791}
5792
Nick Pigginfe15ce42011-01-07 17:49:23 +11005793static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005794{
5795 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005796 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005797
Li Zefan848cce02012-02-21 17:04:28 +08005798 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005799 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005800
Li Zefan848cce02012-02-21 17:04:28 +08005801 if (inode) {
5802 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005803 if (btrfs_root_refs(&root->root_item) == 0)
5804 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005805
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005806 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005807 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005808 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005809 return 0;
5810}
5811
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005812static void btrfs_dentry_release(struct dentry *dentry)
5813{
Daeseok Youn944a4512014-04-14 15:37:02 +09005814 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005815}
5816
Chris Mason3de45862008-11-17 21:02:50 -05005817static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005818 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005819{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005820 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005821
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005822 inode = btrfs_lookup_dentry(dir, dentry);
5823 if (IS_ERR(inode)) {
5824 if (PTR_ERR(inode) == -ENOENT)
5825 inode = NULL;
5826 else
5827 return ERR_CAST(inode);
5828 }
5829
Al Viro41d28bc2014-10-12 22:24:21 -04005830 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005831}
5832
Miao Xie16cdcec2011-04-22 18:12:22 +08005833unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005834 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5835};
5836
Al Viro9cdda8d2013-05-22 16:48:09 -04005837static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005838{
Al Viro9cdda8d2013-05-22 16:48:09 -04005839 struct inode *inode = file_inode(file);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005840 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005841 struct btrfs_root *root = BTRFS_I(inode)->root;
5842 struct btrfs_item *item;
5843 struct btrfs_dir_item *di;
5844 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005845 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005846 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005847 struct list_head ins_list;
5848 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005849 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005850 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005851 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005852 unsigned char d_type;
5853 int over = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005854 char tmp_name[32];
5855 char *name_ptr;
5856 int name_len;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005857 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005858 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005859
Al Viro9cdda8d2013-05-22 16:48:09 -04005860 if (!dir_emit_dots(file, ctx))
5861 return 0;
5862
David Woodhouse49593bf2008-08-17 17:08:36 +01005863 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005864 if (!path)
5865 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005866
David Sterbae4058b52015-11-27 16:31:35 +01005867 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005868
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005869 INIT_LIST_HEAD(&ins_list);
5870 INIT_LIST_HEAD(&del_list);
5871 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005872
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005873 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005874 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005875 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005876
Chris Mason39279cc2007-06-12 06:35:45 -04005877 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5878 if (ret < 0)
5879 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005880
5881 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005882 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005883 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005884 if (slot >= btrfs_header_nritems(leaf)) {
5885 ret = btrfs_next_leaf(root, path);
5886 if (ret < 0)
5887 goto err;
5888 else if (ret > 0)
5889 break;
5890 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005891 }
Chris Mason3de45862008-11-17 21:02:50 -05005892
Ross Kirkdd3cc162013-09-16 15:58:09 +01005893 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005894 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5895
5896 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005897 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005898 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005899 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005900 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005901 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005902 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005903 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005904
Al Viro9cdda8d2013-05-22 16:48:09 -04005905 ctx->pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01005906
Chris Mason39279cc2007-06-12 06:35:45 -04005907 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005908 if (verify_dir_item(fs_info, leaf, di))
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005909 goto next;
David Woodhouse49593bf2008-08-17 17:08:36 +01005910
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005911 name_len = btrfs_dir_name_len(leaf, di);
5912 if (name_len <= sizeof(tmp_name)) {
5913 name_ptr = tmp_name;
5914 } else {
5915 name_ptr = kmalloc(name_len, GFP_KERNEL);
5916 if (!name_ptr) {
5917 ret = -ENOMEM;
5918 goto err;
Chris Mason5f39d392007-10-15 16:14:19 -04005919 }
Chris Mason39279cc2007-06-12 06:35:45 -04005920 }
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005921 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5922 name_len);
5923
5924 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5925 btrfs_dir_item_key_to_cpu(leaf, di, &location);
5926
5927 over = !dir_emit(ctx, name_ptr, name_len, location.objectid,
5928 d_type);
5929
5930 if (name_ptr != tmp_name)
5931 kfree(name_ptr);
5932
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005933 if (over)
5934 goto nopos;
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005935 ctx->pos++;
Li Zefanb9e03af2011-03-23 10:43:58 +08005936next:
5937 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005938 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005939
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005940 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005941 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005942 goto nopos;
5943
Zach Browndb62efb2013-07-11 16:19:42 -07005944 /*
5945 * Stop new entries from being returned after we return the last
5946 * entry.
5947 *
5948 * New directory entries are assigned a strictly increasing
5949 * offset. This means that new entries created during readdir
5950 * are *guaranteed* to be seen in the future by that readdir.
5951 * This has broken buggy programs which operate on names as
5952 * they're returned by readdir. Until we re-use freed offsets
5953 * we have this hack to stop new entries from being returned
5954 * under the assumption that they'll never reach this huge
5955 * offset.
5956 *
5957 * This is being careful not to overflow 32bit loff_t unless the
5958 * last entry requires it because doing so has broken 32bit apps
5959 * in the past.
5960 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005961 if (ctx->pos >= INT_MAX)
5962 ctx->pos = LLONG_MAX;
5963 else
5964 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005965nopos:
5966 ret = 0;
5967err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005968 if (put)
5969 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005970 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005971 return ret;
5972}
5973
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005974int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005975{
5976 struct btrfs_root *root = BTRFS_I(inode)->root;
5977 struct btrfs_trans_handle *trans;
5978 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005979 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005980
Josef Bacik72ac3c02012-05-23 14:13:11 -04005981 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005982 return 0;
5983
Liu Bo83eea1f2012-07-10 05:28:39 -06005984 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005985 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005986
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005987 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005988 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005989 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005990 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005991 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005992 if (IS_ERR(trans))
5993 return PTR_ERR(trans);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005994 ret = btrfs_commit_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005995 }
5996 return ret;
5997}
5998
5999/*
Chris Mason54aa1f42007-06-22 14:16:25 -04006000 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04006001 * inode changes. But, it is most likely to find the inode in cache.
6002 * FIXME, needs more benchmarking...there are no reasons other than performance
6003 * to keep or drop this code.
6004 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00006005static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006006{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006007 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006008 struct btrfs_root *root = BTRFS_I(inode)->root;
6009 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006010 int ret;
6011
Josef Bacik72ac3c02012-05-23 14:13:11 -04006012 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05006013 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006014
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006015 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006016 if (IS_ERR(trans))
6017 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006018
6019 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006020 if (ret && ret == -ENOSPC) {
6021 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006022 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006023 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006024 if (IS_ERR(trans))
6025 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006026
Chris Mason94b60442010-05-26 11:02:00 -04006027 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006028 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006029 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006030 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006031 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006032
6033 return ret;
6034}
6035
6036/*
6037 * This is a copy of file_update_time. We need this so we can return error on
6038 * ENOSPC for updating the inode in the case of file write and mmap writes.
6039 */
Josef Bacike41f9412012-03-26 09:46:47 -04006040static int btrfs_update_time(struct inode *inode, struct timespec *now,
6041 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006042{
Alexander Block2bc5565282012-06-15 09:49:33 +02006043 struct btrfs_root *root = BTRFS_I(inode)->root;
6044
6045 if (btrfs_root_readonly(root))
6046 return -EROFS;
6047
Josef Bacike41f9412012-03-26 09:46:47 -04006048 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006049 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04006050 if (flags & S_CTIME)
6051 inode->i_ctime = *now;
6052 if (flags & S_MTIME)
6053 inode->i_mtime = *now;
6054 if (flags & S_ATIME)
6055 inode->i_atime = *now;
6056 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006057}
6058
Chris Masond352ac62008-09-29 15:18:18 -04006059/*
6060 * find the highest existing sequence number in a directory
6061 * and then set the in-memory index_cnt variable to reflect
6062 * free sequence numbers
6063 */
Josef Bacikaec74772008-07-24 12:12:38 -04006064static int btrfs_set_inode_index_count(struct inode *inode)
6065{
6066 struct btrfs_root *root = BTRFS_I(inode)->root;
6067 struct btrfs_key key, found_key;
6068 struct btrfs_path *path;
6069 struct extent_buffer *leaf;
6070 int ret;
6071
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006072 key.objectid = btrfs_ino(BTRFS_I(inode));
David Sterba962a2982014-06-04 18:41:45 +02006073 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006074 key.offset = (u64)-1;
6075
6076 path = btrfs_alloc_path();
6077 if (!path)
6078 return -ENOMEM;
6079
6080 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6081 if (ret < 0)
6082 goto out;
6083 /* FIXME: we should be able to handle this */
6084 if (ret == 0)
6085 goto out;
6086 ret = 0;
6087
6088 /*
6089 * MAGIC NUMBER EXPLANATION:
6090 * since we search a directory based on f_pos we have to start at 2
6091 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6092 * else has to start at 2
6093 */
6094 if (path->slots[0] == 0) {
6095 BTRFS_I(inode)->index_cnt = 2;
6096 goto out;
6097 }
6098
6099 path->slots[0]--;
6100
6101 leaf = path->nodes[0];
6102 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6103
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006104 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
David Sterba962a2982014-06-04 18:41:45 +02006105 found_key.type != BTRFS_DIR_INDEX_KEY) {
Josef Bacikaec74772008-07-24 12:12:38 -04006106 BTRFS_I(inode)->index_cnt = 2;
6107 goto out;
6108 }
6109
6110 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
6111out:
6112 btrfs_free_path(path);
6113 return ret;
6114}
6115
Chris Masond352ac62008-09-29 15:18:18 -04006116/*
6117 * helper to find a free sequence number in a given directory. This current
6118 * code is very simple, later versions will do smarter things in the btree
6119 */
Chris Mason3de45862008-11-17 21:02:50 -05006120int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006121{
6122 int ret = 0;
6123
6124 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Nikolay Borisovf5cc7b82017-01-10 20:35:42 +02006125 ret = btrfs_inode_delayed_dir_index_count(BTRFS_I(dir));
Miao Xie16cdcec2011-04-22 18:12:22 +08006126 if (ret) {
6127 ret = btrfs_set_inode_index_count(dir);
6128 if (ret)
6129 return ret;
6130 }
Josef Bacikaec74772008-07-24 12:12:38 -04006131 }
6132
Chris Mason00e4e6b2008-08-05 11:18:09 -04006133 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04006134 BTRFS_I(dir)->index_cnt++;
6135
6136 return ret;
6137}
6138
Chris Masonb0d5d102014-09-08 13:08:51 -07006139static int btrfs_insert_inode_locked(struct inode *inode)
6140{
6141 struct btrfs_iget_args args;
6142 args.location = &BTRFS_I(inode)->location;
6143 args.root = BTRFS_I(inode)->root;
6144
6145 return insert_inode_locked4(inode,
6146 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6147 btrfs_find_actor, &args);
6148}
6149
Chris Mason39279cc2007-06-12 06:35:45 -04006150static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6151 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006152 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006153 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006154 u64 ref_objectid, u64 objectid,
6155 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006156{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006157 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006158 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006159 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006160 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006161 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006162 struct btrfs_inode_ref *ref;
6163 struct btrfs_key key[2];
6164 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006165 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006166 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006167 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006168
Chris Mason5f39d392007-10-15 16:14:19 -04006169 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006170 if (!path)
6171 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006172
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006173 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006174 if (!inode) {
6175 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006176 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006177 }
Chris Mason39279cc2007-06-12 06:35:45 -04006178
Li Zefan581bb052011-04-20 10:06:11 +08006179 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006180 * O_TMPFILE, set link count to 0, so that after this point,
6181 * we fill in an inode item with the correct link count.
6182 */
6183 if (!name)
6184 set_nlink(inode, 0);
6185
6186 /*
Li Zefan581bb052011-04-20 10:06:11 +08006187 * we have to initialize this early, so we can reclaim the inode
6188 * number if we fail afterwards in this function.
6189 */
6190 inode->i_ino = objectid;
6191
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006192 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006193 trace_btrfs_inode_request(dir);
6194
Chris Mason3de45862008-11-17 21:02:50 -05006195 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04006196 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006197 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006198 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006199 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006200 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006201 } else if (dir) {
6202 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006203 }
6204 /*
6205 * index_cnt is ignored for everything but a dir,
6206 * btrfs_get_inode_index_count has an explanation for the magic
6207 * number
6208 */
6209 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006210 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006211 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006212 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006213 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006214
Josef Bacik5dc562c2012-08-17 13:14:17 -04006215 /*
6216 * We could have gotten an inode number from somebody who was fsynced
6217 * and then removed in this same transaction, so let's just set full
6218 * sync since it will be a full sync anyway and this will blow away the
6219 * old info in the log.
6220 */
6221 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6222
Chris Mason9c583092008-01-29 15:15:18 -05006223 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006224 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006225 key[0].offset = 0;
6226
Chris Mason9c583092008-01-29 15:15:18 -05006227 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006228
6229 if (name) {
6230 /*
6231 * Start new inodes with an inode_ref. This is slightly more
6232 * efficient for small numbers of hard links since they will
6233 * be packed into one item. Extended refs will kick in if we
6234 * add more hard links than can fit in the ref item.
6235 */
6236 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006237 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006238 key[1].offset = ref_objectid;
6239
6240 sizes[1] = name_len + sizeof(*ref);
6241 }
Chris Mason9c583092008-01-29 15:15:18 -05006242
Chris Masonb0d5d102014-09-08 13:08:51 -07006243 location = &BTRFS_I(inode)->location;
6244 location->objectid = objectid;
6245 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006246 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006247
6248 ret = btrfs_insert_inode_locked(inode);
6249 if (ret < 0)
6250 goto fail;
6251
Chris Masonb9473432009-03-13 11:00:37 -04006252 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006253 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006254 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006255 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006256
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006257 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006258 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306259
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006260 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306261 inode->i_atime = inode->i_mtime;
6262 inode->i_ctime = inode->i_mtime;
6263 BTRFS_I(inode)->i_otime = inode->i_mtime;
6264
Chris Mason5f39d392007-10-15 16:14:19 -04006265 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6266 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006267 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006268 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006269 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006270
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006271 if (name) {
6272 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6273 struct btrfs_inode_ref);
6274 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6275 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6276 ptr = (unsigned long)(ref + 1);
6277 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6278 }
Chris Mason9c583092008-01-29 15:15:18 -05006279
Chris Mason5f39d392007-10-15 16:14:19 -04006280 btrfs_mark_buffer_dirty(path->nodes[0]);
6281 btrfs_free_path(path);
6282
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006283 btrfs_inherit_iflags(inode, dir);
6284
Al Viro569254b2011-07-24 17:08:40 -04006285 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006286 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006287 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006288 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006289 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6290 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006291 }
6292
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006293 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006294
6295 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006296 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006297
Alexander Block8ea05e32012-07-25 17:35:53 +02006298 btrfs_update_root_times(trans, root);
6299
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006300 ret = btrfs_inode_inherit_props(trans, inode, dir);
6301 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006302 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006303 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006304 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006305
Chris Mason39279cc2007-06-12 06:35:45 -04006306 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006307
6308fail_unlock:
6309 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006310fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006311 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006312 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006313 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006314 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006315 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006316}
6317
6318static inline u8 btrfs_inode_type(struct inode *inode)
6319{
6320 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6321}
6322
Chris Masond352ac62008-09-29 15:18:18 -04006323/*
6324 * utility function to add 'inode' into 'parent_inode' with
6325 * a give name and a given sequence number.
6326 * if 'add_backref' is true, also insert a backref from the
6327 * inode to the parent directory.
6328 */
Chris Masone02119d2008-09-05 16:13:11 -04006329int btrfs_add_link(struct btrfs_trans_handle *trans,
6330 struct inode *parent_inode, struct inode *inode,
6331 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006332{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006333 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006334 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006335 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04006336 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006337 u64 ino = btrfs_ino(BTRFS_I(inode));
6338 u64 parent_ino = btrfs_ino(BTRFS_I(parent_inode));
Chris Mason5f39d392007-10-15 16:14:19 -04006339
Li Zefan33345d012011-04-20 10:31:50 +08006340 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006341 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
6342 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006343 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006344 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006345 key.offset = 0;
6346 }
Chris Mason39279cc2007-06-12 06:35:45 -04006347
Li Zefan33345d012011-04-20 10:31:50 +08006348 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006349 ret = btrfs_add_root_ref(trans, fs_info, key.objectid,
6350 root->root_key.objectid, parent_ino,
6351 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006352 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006353 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6354 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006355 }
6356
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006357 /* Nothing to clean up yet */
6358 if (ret)
6359 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006360
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006361 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6362 parent_inode, &key,
6363 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006364 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006365 goto fail_dir_item;
6366 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006367 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006368 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006369 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006370
6371 btrfs_i_size_write(parent_inode, parent_inode->i_size +
6372 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006373 inode_inc_iversion(parent_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08006374 parent_inode->i_mtime = parent_inode->i_ctime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006375 current_time(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006376 ret = btrfs_update_inode(trans, root, parent_inode);
6377 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006378 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006379 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006380
6381fail_dir_item:
6382 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6383 u64 local_index;
6384 int err;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006385 err = btrfs_del_root_ref(trans, fs_info, key.objectid,
6386 root->root_key.objectid, parent_ino,
6387 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006388
6389 } else if (add_backref) {
6390 u64 local_index;
6391 int err;
6392
6393 err = btrfs_del_inode_ref(trans, root, name, name_len,
6394 ino, parent_ino, &local_index);
6395 }
6396 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006397}
6398
6399static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00006400 struct inode *dir, struct dentry *dentry,
6401 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006402{
Josef Bacika1b075d2010-11-19 20:36:11 +00006403 int err = btrfs_add_link(trans, dir, inode,
6404 dentry->d_name.name, dentry->d_name.len,
6405 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006406 if (err > 0)
6407 err = -EEXIST;
6408 return err;
6409}
6410
Josef Bacik618e21d2007-07-11 10:18:17 -04006411static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006412 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006413{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006414 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006415 struct btrfs_trans_handle *trans;
6416 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006417 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006418 int err;
6419 int drop_inode = 0;
6420 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006421 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006422
Josef Bacik9ed74f22009-09-11 16:12:44 -04006423 /*
6424 * 2 for inode item and ref
6425 * 2 for dir items
6426 * 1 for xattr if selinux is on
6427 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006428 trans = btrfs_start_transaction(root, 5);
6429 if (IS_ERR(trans))
6430 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006431
Li Zefan581bb052011-04-20 10:06:11 +08006432 err = btrfs_find_free_ino(root, &objectid);
6433 if (err)
6434 goto out_unlock;
6435
Josef Bacikaec74772008-07-24 12:12:38 -04006436 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006437 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6438 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006439 if (IS_ERR(inode)) {
6440 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006441 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006442 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006443
Casey Schauflerad19db72011-12-15 10:09:07 -05006444 /*
6445 * If the active LSM wants to access the inode during
6446 * d_instantiate it needs these. Smack checks to see
6447 * if the filesystem supports xattrs by looking at the
6448 * ops vector.
6449 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006450 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006451 init_special_inode(inode, inode->i_mode, rdev);
6452
6453 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006454 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006455 goto out_unlock_inode;
6456
6457 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
6458 if (err) {
6459 goto out_unlock_inode;
6460 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006461 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006462 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006463 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006464 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006465
Josef Bacik618e21d2007-07-11 10:18:17 -04006466out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006467 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006468 btrfs_balance_delayed_items(fs_info);
6469 btrfs_btree_balance_dirty(fs_info);
Josef Bacik618e21d2007-07-11 10:18:17 -04006470 if (drop_inode) {
6471 inode_dec_link_count(inode);
6472 iput(inode);
6473 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006474 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006475
6476out_unlock_inode:
6477 drop_inode = 1;
6478 unlock_new_inode(inode);
6479 goto out_unlock;
6480
Josef Bacik618e21d2007-07-11 10:18:17 -04006481}
6482
Chris Mason39279cc2007-06-12 06:35:45 -04006483static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006484 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006485{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006486 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006487 struct btrfs_trans_handle *trans;
6488 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006489 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006490 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006491 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006492 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006493 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006494
Josef Bacik9ed74f22009-09-11 16:12:44 -04006495 /*
6496 * 2 for inode item and ref
6497 * 2 for dir items
6498 * 1 for xattr if selinux is on
6499 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006500 trans = btrfs_start_transaction(root, 5);
6501 if (IS_ERR(trans))
6502 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006503
Li Zefan581bb052011-04-20 10:06:11 +08006504 err = btrfs_find_free_ino(root, &objectid);
6505 if (err)
6506 goto out_unlock;
6507
Josef Bacikaec74772008-07-24 12:12:38 -04006508 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006509 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6510 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006511 if (IS_ERR(inode)) {
6512 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006513 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006514 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006515 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006516 /*
6517 * If the active LSM wants to access the inode during
6518 * d_instantiate it needs these. Smack checks to see
6519 * if the filesystem supports xattrs by looking at the
6520 * ops vector.
6521 */
6522 inode->i_fop = &btrfs_file_operations;
6523 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006524 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006525
6526 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6527 if (err)
6528 goto out_unlock_inode;
6529
6530 err = btrfs_update_inode(trans, root, inode);
6531 if (err)
6532 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006533
Josef Bacika1b075d2010-11-19 20:36:11 +00006534 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006535 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006536 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006537
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006538 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006539 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006540 d_instantiate(dentry, inode);
6541
Chris Mason39279cc2007-06-12 06:35:45 -04006542out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006543 btrfs_end_transaction(trans);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006544 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006545 inode_dec_link_count(inode);
6546 iput(inode);
6547 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006548 btrfs_balance_delayed_items(fs_info);
6549 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006550 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006551
6552out_unlock_inode:
6553 unlock_new_inode(inode);
6554 goto out_unlock;
6555
Chris Mason39279cc2007-06-12 06:35:45 -04006556}
6557
6558static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6559 struct dentry *dentry)
6560{
Filipe Manana271dba452016-01-05 16:24:05 +00006561 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006562 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006563 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006564 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006565 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006566 int err;
6567 int drop_inode = 0;
6568
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006569 /* do not allow sys_link's with other subvols of the same device */
6570 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006571 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006572
Mark Fashehf1863732012-08-08 11:32:27 -07006573 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006574 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006575
Chris Mason3de45862008-11-17 21:02:50 -05006576 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006577 if (err)
6578 goto fail;
6579
Yan, Zhenga22285a2010-05-16 10:48:46 -04006580 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006581 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006582 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006583 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006584 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006585 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006586 if (IS_ERR(trans)) {
6587 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006588 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006589 goto fail;
6590 }
Chris Mason5f39d392007-10-15 16:14:19 -04006591
Miao Xie67de1172013-12-26 13:07:06 +08006592 /* There are several dir indexes for this inode, clear the cache. */
6593 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006594 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006595 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006596 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006597 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006598 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006599
Josef Bacika1b075d2010-11-19 20:36:11 +00006600 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006601
Yan, Zhenga5719522009-09-24 09:17:31 -04006602 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006603 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006604 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006605 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006606 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006607 if (err)
6608 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006609 if (inode->i_nlink == 1) {
6610 /*
6611 * If new hard link count is 1, it's a file created
6612 * with open(2) O_TMPFILE flag.
6613 */
6614 err = btrfs_orphan_del(trans, inode);
6615 if (err)
6616 goto fail;
6617 }
Al Viro08c422c2011-12-23 07:58:13 -05006618 d_instantiate(dentry, inode);
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006619 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006620 }
Chris Mason39279cc2007-06-12 06:35:45 -04006621
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006622 btrfs_balance_delayed_items(fs_info);
Chris Mason1832a6d2007-12-21 16:27:21 -05006623fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006624 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006625 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006626 if (drop_inode) {
6627 inode_dec_link_count(inode);
6628 iput(inode);
6629 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006630 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006631 return err;
6632}
6633
Al Viro18bb1db2011-07-26 01:41:39 -04006634static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006635{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006636 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006637 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006638 struct btrfs_trans_handle *trans;
6639 struct btrfs_root *root = BTRFS_I(dir)->root;
6640 int err = 0;
6641 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006642 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006643 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006644
Josef Bacik9ed74f22009-09-11 16:12:44 -04006645 /*
6646 * 2 items for inode and ref
6647 * 2 items for dir items
6648 * 1 for xattr if selinux is on
6649 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006650 trans = btrfs_start_transaction(root, 5);
6651 if (IS_ERR(trans))
6652 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006653
Li Zefan581bb052011-04-20 10:06:11 +08006654 err = btrfs_find_free_ino(root, &objectid);
6655 if (err)
6656 goto out_fail;
6657
Josef Bacikaec74772008-07-24 12:12:38 -04006658 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006659 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6660 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006661 if (IS_ERR(inode)) {
6662 err = PTR_ERR(inode);
6663 goto out_fail;
6664 }
Chris Mason5f39d392007-10-15 16:14:19 -04006665
Chris Mason39279cc2007-06-12 06:35:45 -04006666 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006667 /* these must be set before we unlock the inode */
6668 inode->i_op = &btrfs_dir_inode_operations;
6669 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006670
Eric Paris2a7dba32011-02-01 11:05:39 -05006671 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006672 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006673 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006674
Chris Masondbe674a2008-07-17 12:54:05 -04006675 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006676 err = btrfs_update_inode(trans, root, inode);
6677 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006678 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006679
Josef Bacika1b075d2010-11-19 20:36:11 +00006680 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6681 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006682 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006683 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006684
Chris Mason39279cc2007-06-12 06:35:45 -04006685 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006686 /*
6687 * mkdir is special. We're unlocking after we call d_instantiate
6688 * to avoid a race with nfsd calling d_instantiate.
6689 */
6690 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006691 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006692
6693out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006694 btrfs_end_transaction(trans);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006695 if (drop_on_err) {
6696 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006697 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006698 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006699 btrfs_balance_delayed_items(fs_info);
6700 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006701 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006702
6703out_fail_inode:
6704 unlock_new_inode(inode);
6705 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006706}
6707
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006708/* Find next extent map of a given extent map, caller needs to ensure locks */
6709static struct extent_map *next_extent_map(struct extent_map *em)
6710{
6711 struct rb_node *next;
6712
6713 next = rb_next(&em->rb_node);
6714 if (!next)
6715 return NULL;
6716 return container_of(next, struct extent_map, rb_node);
6717}
6718
6719static struct extent_map *prev_extent_map(struct extent_map *em)
6720{
6721 struct rb_node *prev;
6722
6723 prev = rb_prev(&em->rb_node);
6724 if (!prev)
6725 return NULL;
6726 return container_of(prev, struct extent_map, rb_node);
6727}
6728
Chris Masond352ac62008-09-29 15:18:18 -04006729/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006730 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006731 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006732 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006733 */
Chris Mason3b951512008-04-17 11:29:12 -04006734static int merge_extent_mapping(struct extent_map_tree *em_tree,
6735 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006736 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006737 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006738{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006739 struct extent_map *prev;
6740 struct extent_map *next;
6741 u64 start;
6742 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006743 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006744
Chris Masone6dcd2d2008-07-17 12:53:50 -04006745 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006746
6747 if (existing->start > map_start) {
6748 next = existing;
6749 prev = prev_extent_map(next);
6750 } else {
6751 prev = existing;
6752 next = next_extent_map(prev);
6753 }
6754
6755 start = prev ? extent_map_end(prev) : em->start;
6756 start = max_t(u64, start, em->start);
6757 end = next ? next->start : extent_map_end(em);
6758 end = min_t(u64, end, extent_map_end(em));
6759 start_diff = start - em->start;
6760 em->start = start;
6761 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006762 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6763 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006764 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006765 em->block_len -= start_diff;
6766 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006767 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006768}
6769
Chris Masonc8b97812008-10-29 14:49:59 -04006770static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006771 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006772 size_t pg_offset, u64 extent_offset,
6773 struct btrfs_file_extent_item *item)
6774{
6775 int ret;
6776 struct extent_buffer *leaf = path->nodes[0];
6777 char *tmp;
6778 size_t max_size;
6779 unsigned long inline_size;
6780 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006781 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006782
6783 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006784 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006785 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6786 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006787 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006788 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006789 if (!tmp)
6790 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006791 ptr = btrfs_file_extent_inline_start(item);
6792
6793 read_extent_buffer(leaf, tmp, ptr, inline_size);
6794
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006795 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006796 ret = btrfs_decompress(compress_type, tmp, page,
6797 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006798 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006799 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006800}
6801
Chris Masond352ac62008-09-29 15:18:18 -04006802/*
6803 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006804 * the ugly parts come from merging extents from the disk with the in-ram
6805 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006806 * where the in-ram extents might be locked pending data=ordered completion.
6807 *
6808 * This also copies inline extents directly into the page.
6809 */
Chris Masond3977122009-01-05 21:25:51 -05006810
Chris Masona52d9a82007-08-27 16:49:44 -04006811struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006812 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006813 int create)
6814{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006815 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masona52d9a82007-08-27 16:49:44 -04006816 int ret;
6817 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006818 u64 extent_start = 0;
6819 u64 extent_end = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006820 u64 objectid = btrfs_ino(BTRFS_I(inode));
Chris Masona52d9a82007-08-27 16:49:44 -04006821 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006822 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006823 struct btrfs_root *root = BTRFS_I(inode)->root;
6824 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006825 struct extent_buffer *leaf;
6826 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006827 struct extent_map *em = NULL;
6828 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006829 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006830 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006831 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006832
Chris Masona52d9a82007-08-27 16:49:44 -04006833again:
Chris Mason890871b2009-09-02 16:24:52 -04006834 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006835 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006836 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006837 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006838 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006839
Chris Masona52d9a82007-08-27 16:49:44 -04006840 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006841 if (em->start > start || em->start + em->len <= start)
6842 free_extent_map(em);
6843 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006844 free_extent_map(em);
6845 else
6846 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006847 }
David Sterba172ddd62011-04-21 00:48:27 +02006848 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006849 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006850 err = -ENOMEM;
6851 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006852 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006853 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006854 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006855 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006856 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006857 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006858
6859 if (!path) {
6860 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006861 if (!path) {
6862 err = -ENOMEM;
6863 goto out;
6864 }
6865 /*
6866 * Chances are we'll be called again, so go ahead and do
6867 * readahead
6868 */
David Sterbae4058b52015-11-27 16:31:35 +01006869 path->reada = READA_FORWARD;
Chris Masonf4219502008-07-22 11:18:09 -04006870 }
6871
Chris Mason179e29e2007-11-01 11:28:41 -04006872 ret = btrfs_lookup_file_extent(trans, root, path,
6873 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006874 if (ret < 0) {
6875 err = ret;
6876 goto out;
6877 }
6878
6879 if (ret != 0) {
6880 if (path->slots[0] == 0)
6881 goto not_found;
6882 path->slots[0]--;
6883 }
6884
Chris Mason5f39d392007-10-15 16:14:19 -04006885 leaf = path->nodes[0];
6886 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006887 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006888 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006889 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006890 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006891 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006892 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006893 /*
6894 * If we backup past the first extent we want to move forward
6895 * and see if there is an extent in front of us, otherwise we'll
6896 * say there is a hole for our whole search range which can
6897 * cause problems.
6898 */
6899 extent_end = start;
6900 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006901 }
6902
Chris Mason5f39d392007-10-15 16:14:19 -04006903 found_type = btrfs_file_extent_type(leaf, item);
6904 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006905 if (found_type == BTRFS_FILE_EXTENT_REG ||
6906 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006907 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006908 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006909 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6910 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006911 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006912 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006913 fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006914 }
Josef Bacik25a50342013-10-14 12:08:38 -04006915next:
Yan Zheng9036c102008-10-30 14:19:41 -04006916 if (start >= extent_end) {
6917 path->slots[0]++;
6918 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6919 ret = btrfs_next_leaf(root, path);
6920 if (ret < 0) {
6921 err = ret;
6922 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006923 }
Yan Zheng9036c102008-10-30 14:19:41 -04006924 if (ret > 0)
6925 goto not_found;
6926 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006927 }
Yan Zheng9036c102008-10-30 14:19:41 -04006928 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6929 if (found_key.objectid != objectid ||
6930 found_key.type != BTRFS_EXTENT_DATA_KEY)
6931 goto not_found;
6932 if (start + len <= found_key.offset)
6933 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006934 if (start > found_key.offset)
6935 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006936 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006937 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006938 em->len = found_key.offset - start;
6939 goto not_found_em;
6940 }
6941
Filipe Manana7ffbb592014-06-09 03:48:05 +01006942 btrfs_extent_item_to_extent_map(inode, path, item, new_inline, em);
6943
Yan Zhengd899e052008-10-30 14:25:28 -04006944 if (found_type == BTRFS_FILE_EXTENT_REG ||
6945 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006946 goto insert;
6947 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006948 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006949 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006950 size_t size;
6951 size_t extent_offset;
6952 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006953
Filipe Manana7ffbb592014-06-09 03:48:05 +01006954 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006955 goto out;
Yan689f9342007-10-29 11:41:07 -04006956
Chris Mason514ac8a2014-01-03 21:07:00 -08006957 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006958 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006959 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6960 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006961 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006962 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006963 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006964 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006965 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006966 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006967 if (btrfs_file_extent_compression(leaf, item) !=
6968 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006969 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006970 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006971 if (ret) {
6972 err = ret;
6973 goto out;
6974 }
Chris Masonc8b97812008-10-29 14:49:59 -04006975 } else {
6976 map = kmap(page);
6977 read_extent_buffer(leaf, map + pg_offset, ptr,
6978 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006979 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006980 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006981 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006982 copy_size);
6983 }
Chris Masonc8b97812008-10-29 14:49:59 -04006984 kunmap(page);
6985 }
Chris Mason179e29e2007-11-01 11:28:41 -04006986 flush_dcache_page(page);
6987 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006988 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006989 if (!trans) {
6990 kunmap(page);
6991 free_extent_map(em);
6992 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006993
David Sterbab3b4aa72011-04-21 01:20:15 +02006994 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006995 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006996
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006997 if (IS_ERR(trans))
6998 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006999 goto again;
7000 }
Chris Masonc8b97812008-10-29 14:49:59 -04007001 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05007002 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04007003 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04007004 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04007005 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04007006 }
Chris Masond1310b22008-01-24 16:13:08 -05007007 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00007008 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04007009 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04007010 }
7011not_found:
7012 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007013 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05007014 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04007015not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04007016 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04007017 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04007018insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02007019 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05007020 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007021 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007022 "bad extent! em: [%llu %llu] passed [%llu %llu]",
7023 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04007024 err = -EIO;
7025 goto out;
7026 }
Chris Masond1310b22008-01-24 16:13:08 -05007027
7028 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04007029 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007030 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04007031 /* it is possible that someone inserted the extent into the tree
7032 * while we had the lock dropped. It is also possible that
7033 * an overlapping map exists in the tree
7034 */
Chris Masona52d9a82007-08-27 16:49:44 -04007035 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04007036 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007037
7038 ret = 0;
7039
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007040 existing = search_extent_mapping(em_tree, start, len);
7041 /*
7042 * existing will always be non-NULL, since there must be
7043 * extent causing the -EEXIST.
7044 */
Chris Mason8dff9c82015-09-19 11:28:25 -07007045 if (existing->start == em->start &&
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007046 extent_map_end(existing) >= extent_map_end(em) &&
Chris Mason8dff9c82015-09-19 11:28:25 -07007047 em->block_start == existing->block_start) {
7048 /*
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007049 * The existing extent map already encompasses the
7050 * entire extent map we tried to add.
Chris Mason8dff9c82015-09-19 11:28:25 -07007051 */
7052 free_extent_map(em);
7053 em = existing;
7054 err = 0;
7055
7056 } else if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08007057 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007058 /*
7059 * The existing extent map is the one nearest to
7060 * the [start, start + len) range which overlaps
7061 */
7062 err = merge_extent_mapping(em_tree, existing,
7063 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04007064 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007065 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04007066 free_extent_map(em);
7067 em = NULL;
7068 }
7069 } else {
7070 free_extent_map(em);
7071 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007072 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007073 }
Chris Masona52d9a82007-08-27 16:49:44 -04007074 }
Chris Mason890871b2009-09-02 16:24:52 -04007075 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007076out:
liubo1abe9b82011-03-24 11:18:59 +00007077
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007078 trace_btrfs_get_extent(root, BTRFS_I(inode), em);
liubo1abe9b82011-03-24 11:18:59 +00007079
Tsutomu Itoh527afb42015-08-19 14:55:00 +09007080 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007081 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007082 ret = btrfs_end_transaction(trans);
Chris Masond3977122009-01-05 21:25:51 -05007083 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04007084 err = ret;
7085 }
Chris Masona52d9a82007-08-27 16:49:44 -04007086 if (err) {
7087 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007088 return ERR_PTR(err);
7089 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007090 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007091 return em;
7092}
7093
Chris Masonec29ed52011-02-23 16:23:20 -05007094struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
7095 size_t pg_offset, u64 start, u64 len,
7096 int create)
7097{
7098 struct extent_map *em;
7099 struct extent_map *hole_em = NULL;
7100 u64 range_start = start;
7101 u64 end;
7102 u64 found;
7103 u64 found_end;
7104 int err = 0;
7105
7106 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7107 if (IS_ERR(em))
7108 return em;
7109 if (em) {
7110 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00007111 * if our em maps to
7112 * - a hole or
7113 * - a pre-alloc extent,
7114 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05007115 */
Liu Bof9e4fb52013-01-07 10:10:12 +00007116 if (em->block_start != EXTENT_MAP_HOLE &&
7117 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05007118 return em;
7119 else
7120 hole_em = em;
7121 }
7122
7123 /* check to see if we've wrapped (len == -1 or similar) */
7124 end = start + len;
7125 if (end < start)
7126 end = (u64)-1;
7127 else
7128 end -= 1;
7129
7130 em = NULL;
7131
7132 /* ok, we didn't find anything, lets look for delalloc */
7133 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
7134 end, len, EXTENT_DELALLOC, 1);
7135 found_end = range_start + found;
7136 if (found_end < range_start)
7137 found_end = (u64)-1;
7138
7139 /*
7140 * we didn't find anything useful, return
7141 * the original results from get_extent()
7142 */
7143 if (range_start > end || found_end <= start) {
7144 em = hole_em;
7145 hole_em = NULL;
7146 goto out;
7147 }
7148
7149 /* adjust the range_start to make sure it doesn't
7150 * go backwards from the start they passed in
7151 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307152 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007153 found = found_end - range_start;
7154
7155 if (found > 0) {
7156 u64 hole_start = start;
7157 u64 hole_len = len;
7158
David Sterba172ddd62011-04-21 00:48:27 +02007159 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007160 if (!em) {
7161 err = -ENOMEM;
7162 goto out;
7163 }
7164 /*
7165 * when btrfs_get_extent can't find anything it
7166 * returns one huge hole
7167 *
7168 * make sure what it found really fits our range, and
7169 * adjust to make sure it is based on the start from
7170 * the caller
7171 */
7172 if (hole_em) {
7173 u64 calc_end = extent_map_end(hole_em);
7174
7175 if (calc_end <= start || (hole_em->start > end)) {
7176 free_extent_map(hole_em);
7177 hole_em = NULL;
7178 } else {
7179 hole_start = max(hole_em->start, start);
7180 hole_len = calc_end - hole_start;
7181 }
7182 }
7183 em->bdev = NULL;
7184 if (hole_em && range_start > hole_start) {
7185 /* our hole starts before our delalloc, so we
7186 * have to return just the parts of the hole
7187 * that go until the delalloc starts
7188 */
7189 em->len = min(hole_len,
7190 range_start - hole_start);
7191 em->start = hole_start;
7192 em->orig_start = hole_start;
7193 /*
7194 * don't adjust block start at all,
7195 * it is fixed at EXTENT_MAP_HOLE
7196 */
7197 em->block_start = hole_em->block_start;
7198 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007199 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7200 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007201 } else {
7202 em->start = range_start;
7203 em->len = found;
7204 em->orig_start = range_start;
7205 em->block_start = EXTENT_MAP_DELALLOC;
7206 em->block_len = found;
7207 }
7208 } else if (hole_em) {
7209 return hole_em;
7210 }
7211out:
7212
7213 free_extent_map(hole_em);
7214 if (err) {
7215 free_extent_map(em);
7216 return ERR_PTR(err);
7217 }
7218 return em;
7219}
7220
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007221static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7222 const u64 start,
7223 const u64 len,
7224 const u64 orig_start,
7225 const u64 block_start,
7226 const u64 block_len,
7227 const u64 orig_block_len,
7228 const u64 ram_bytes,
7229 const int type)
7230{
7231 struct extent_map *em = NULL;
7232 int ret;
7233
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007234 if (type != BTRFS_ORDERED_NOCOW) {
7235 em = create_pinned_em(inode, start, len, orig_start,
7236 block_start, block_len, orig_block_len,
7237 ram_bytes, type);
7238 if (IS_ERR(em))
7239 goto out;
7240 }
7241 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7242 len, block_len, type);
7243 if (ret) {
7244 if (em) {
7245 free_extent_map(em);
7246 btrfs_drop_extent_cache(inode, start,
7247 start + len - 1, 0);
7248 }
7249 em = ERR_PTR(ret);
7250 }
7251 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007252
7253 return em;
7254}
7255
Josef Bacik4b46fce2010-05-23 11:00:55 -04007256static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7257 u64 start, u64 len)
7258{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007259 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007260 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007261 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007262 struct btrfs_key ins;
7263 u64 alloc_hint;
7264 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007265
Josef Bacik4b46fce2010-05-23 11:00:55 -04007266 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007267 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007268 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007269 if (ret)
7270 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007271
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007272 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7273 ins.objectid, ins.offset, ins.offset,
7274 ins.offset, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007275 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007276 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007277 btrfs_free_reserved_extent(fs_info, ins.objectid,
7278 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007279
Josef Bacik4b46fce2010-05-23 11:00:55 -04007280 return em;
7281}
7282
Chris Mason46bfbb52010-05-26 11:04:10 -04007283/*
7284 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7285 * block must be cow'd
7286 */
Josef Bacik00361582013-08-14 14:02:47 -04007287noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007288 u64 *orig_start, u64 *orig_block_len,
7289 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007290{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007291 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -04007292 struct btrfs_trans_handle *trans;
Chris Mason46bfbb52010-05-26 11:04:10 -04007293 struct btrfs_path *path;
7294 int ret;
7295 struct extent_buffer *leaf;
7296 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007297 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007298 struct btrfs_file_extent_item *fi;
7299 struct btrfs_key key;
7300 u64 disk_bytenr;
7301 u64 backref_offset;
7302 u64 extent_end;
7303 u64 num_bytes;
7304 int slot;
7305 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007306 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007307
Chris Mason46bfbb52010-05-26 11:04:10 -04007308 path = btrfs_alloc_path();
7309 if (!path)
7310 return -ENOMEM;
7311
David Sterbaf85b7372017-01-20 14:54:07 +01007312 ret = btrfs_lookup_file_extent(NULL, root, path,
7313 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007314 if (ret < 0)
7315 goto out;
7316
7317 slot = path->slots[0];
7318 if (ret == 1) {
7319 if (slot == 0) {
7320 /* can't find the item, must cow */
7321 ret = 0;
7322 goto out;
7323 }
7324 slot--;
7325 }
7326 ret = 0;
7327 leaf = path->nodes[0];
7328 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007329 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007330 key.type != BTRFS_EXTENT_DATA_KEY) {
7331 /* not our file or wrong item type, must cow */
7332 goto out;
7333 }
7334
7335 if (key.offset > offset) {
7336 /* Wrong offset, must cow */
7337 goto out;
7338 }
7339
7340 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7341 found_type = btrfs_file_extent_type(leaf, fi);
7342 if (found_type != BTRFS_FILE_EXTENT_REG &&
7343 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7344 /* not a regular extent, must cow */
7345 goto out;
7346 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007347
7348 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7349 goto out;
7350
Miao Xiee77751a2013-12-27 21:11:50 +08007351 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7352 if (extent_end <= offset)
7353 goto out;
7354
Chris Mason46bfbb52010-05-26 11:04:10 -04007355 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007356 if (disk_bytenr == 0)
7357 goto out;
7358
7359 if (btrfs_file_extent_compression(leaf, fi) ||
7360 btrfs_file_extent_encryption(leaf, fi) ||
7361 btrfs_file_extent_other_encoding(leaf, fi))
7362 goto out;
7363
Chris Mason46bfbb52010-05-26 11:04:10 -04007364 backref_offset = btrfs_file_extent_offset(leaf, fi);
7365
Josef Bacik7ee9e442013-06-21 16:37:03 -04007366 if (orig_start) {
7367 *orig_start = key.offset - backref_offset;
7368 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7369 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7370 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007371
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007372 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007373 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007374
7375 num_bytes = min(offset + *len, extent_end) - offset;
7376 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7377 u64 range_end;
7378
Jeff Mahoneyda170662016-06-15 09:22:56 -04007379 range_end = round_up(offset + num_bytes,
7380 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007381 ret = test_range_bit(io_tree, offset, range_end,
7382 EXTENT_DELALLOC, 0, NULL);
7383 if (ret) {
7384 ret = -EAGAIN;
7385 goto out;
7386 }
7387 }
7388
Josef Bacik1bda19e2013-10-18 12:10:36 -04007389 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007390
7391 /*
7392 * look for other files referencing this extent, if we
7393 * find any we must cow
7394 */
Josef Bacik00361582013-08-14 14:02:47 -04007395 trans = btrfs_join_transaction(root);
7396 if (IS_ERR(trans)) {
7397 ret = 0;
Chris Mason46bfbb52010-05-26 11:04:10 -04007398 goto out;
Josef Bacik00361582013-08-14 14:02:47 -04007399 }
7400
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007401 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007402 key.offset - backref_offset, disk_bytenr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007403 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007404 if (ret) {
7405 ret = 0;
7406 goto out;
7407 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007408
7409 /*
7410 * adjust disk_bytenr and num_bytes to cover just the bytes
7411 * in this extent we are about to write. If there
7412 * are any csums in that range we have to cow in order
7413 * to keep the csums correct
7414 */
7415 disk_bytenr += backref_offset;
7416 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007417 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7418 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007419 /*
7420 * all of the above have passed, it is safe to overwrite this extent
7421 * without cow
7422 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007423 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007424 ret = 1;
7425out:
7426 btrfs_free_path(path);
7427 return ret;
7428}
7429
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007430bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7431{
7432 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7433 int found = false;
7434 void **pagep = NULL;
7435 struct page *page = NULL;
7436 int start_idx;
7437 int end_idx;
7438
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007439 start_idx = start >> PAGE_SHIFT;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007440
7441 /*
7442 * end is the last byte in the last page. end == start is legal
7443 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007444 end_idx = end >> PAGE_SHIFT;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007445
7446 rcu_read_lock();
7447
7448 /* Most of the code in this while loop is lifted from
7449 * find_get_page. It's been modified to begin searching from a
7450 * page and return just the first page found in that range. If the
7451 * found idx is less than or equal to the end idx then we know that
7452 * a page exists. If no pages are found or if those pages are
7453 * outside of the range then we're fine (yay!) */
7454 while (page == NULL &&
7455 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7456 page = radix_tree_deref_slot(pagep);
7457 if (unlikely(!page))
7458 break;
7459
7460 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007461 if (radix_tree_deref_retry(page)) {
7462 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007463 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007464 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007465 /*
7466 * Otherwise, shmem/tmpfs must be storing a swap entry
7467 * here as an exceptional entry: so return it without
7468 * attempting to raise page count.
7469 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007470 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007471 break; /* TODO: Is this relevant for this use case? */
7472 }
7473
Filipe Manana91405152014-06-05 13:22:24 +01007474 if (!page_cache_get_speculative(page)) {
7475 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007476 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007477 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007478
7479 /*
7480 * Has the page moved?
7481 * This is part of the lockless pagecache protocol. See
7482 * include/linux/pagemap.h for details.
7483 */
7484 if (unlikely(page != *pagep)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007485 put_page(page);
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007486 page = NULL;
7487 }
7488 }
7489
7490 if (page) {
7491 if (page->index <= end_idx)
7492 found = true;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007493 put_page(page);
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007494 }
7495
7496 rcu_read_unlock();
7497 return found;
7498}
7499
Josef Bacikeb838e72012-07-31 16:28:48 -04007500static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7501 struct extent_state **cached_state, int writing)
7502{
7503 struct btrfs_ordered_extent *ordered;
7504 int ret = 0;
7505
7506 while (1) {
7507 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007508 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007509 /*
7510 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007511 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007512 * extents in this range.
7513 */
7514 ordered = btrfs_lookup_ordered_range(inode, lockstart,
7515 lockend - lockstart + 1);
7516
7517 /*
7518 * We need to make sure there are no buffered pages in this
7519 * range either, we could have raced between the invalidate in
7520 * generic_file_direct_write and locking the extent. The
7521 * invalidate needs to happen so that reads after a write do not
7522 * get stale data.
7523 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007524 if (!ordered &&
7525 (!writing ||
7526 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007527 break;
7528
7529 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7530 cached_state, GFP_NOFS);
7531
7532 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007533 /*
7534 * If we are doing a DIO read and the ordered extent we
7535 * found is for a buffered write, we can not wait for it
7536 * to complete and retry, because if we do so we can
7537 * deadlock with concurrent buffered writes on page
7538 * locks. This happens only if our DIO read covers more
7539 * than one extent map, if at this point has already
7540 * created an ordered extent for a previous extent map
7541 * and locked its range in the inode's io tree, and a
7542 * concurrent write against that previous extent map's
7543 * range and this range started (we unlock the ranges
7544 * in the io tree only when the bios complete and
7545 * buffered writes always lock pages before attempting
7546 * to lock range in the io tree).
7547 */
7548 if (writing ||
7549 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7550 btrfs_start_ordered_extent(inode, ordered, 1);
7551 else
7552 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007553 btrfs_put_ordered_extent(ordered);
7554 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007555 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007556 * We could trigger writeback for this range (and wait
7557 * for it to complete) and then invalidate the pages for
7558 * this range (through invalidate_inode_pages2_range()),
7559 * but that can lead us to a deadlock with a concurrent
7560 * call to readpages() (a buffered read or a defrag call
7561 * triggered a readahead) on a page lock due to an
7562 * ordered dio extent we created before but did not have
7563 * yet a corresponding bio submitted (whence it can not
7564 * complete), which makes readpages() wait for that
7565 * ordered extent to complete while holding a lock on
7566 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007567 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007568 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007569 }
7570
Filipe Mananaade77022016-02-18 14:28:55 +00007571 if (ret)
7572 break;
7573
Josef Bacikeb838e72012-07-31 16:28:48 -04007574 cond_resched();
7575 }
7576
7577 return ret;
7578}
7579
Josef Bacik69ffb542012-09-11 15:40:07 -04007580static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
7581 u64 len, u64 orig_start,
7582 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007583 u64 orig_block_len, u64 ram_bytes,
7584 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007585{
7586 struct extent_map_tree *em_tree;
7587 struct extent_map *em;
7588 struct btrfs_root *root = BTRFS_I(inode)->root;
7589 int ret;
7590
7591 em_tree = &BTRFS_I(inode)->extent_tree;
7592 em = alloc_extent_map();
7593 if (!em)
7594 return ERR_PTR(-ENOMEM);
7595
7596 em->start = start;
7597 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04007598 em->mod_start = start;
7599 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04007600 em->len = len;
7601 em->block_len = block_len;
7602 em->block_start = block_start;
7603 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007604 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007605 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007606 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007607 set_bit(EXTENT_FLAG_PINNED, &em->flags);
7608 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05007609 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04007610
7611 do {
7612 btrfs_drop_extent_cache(inode, em->start,
7613 em->start + em->len - 1, 0);
7614 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007615 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007616 write_unlock(&em_tree->lock);
7617 } while (ret == -EEXIST);
7618
7619 if (ret) {
7620 free_extent_map(em);
7621 return ERR_PTR(ret);
7622 }
7623
7624 return em;
7625}
7626
Filipe Manana9c9464c2015-11-04 09:52:04 +00007627static void adjust_dio_outstanding_extents(struct inode *inode,
7628 struct btrfs_dio_data *dio_data,
7629 const u64 len)
7630{
David Sterba823bb202017-01-04 11:09:51 +01007631 unsigned num_extents = count_max_extents(len);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007632
Filipe Manana9c9464c2015-11-04 09:52:04 +00007633 /*
7634 * If we have an outstanding_extents count still set then we're
7635 * within our reservation, otherwise we need to adjust our inode
7636 * counter appropriately.
7637 */
Liu Boc2931662016-12-22 17:13:54 -08007638 if (dio_data->outstanding_extents >= num_extents) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007639 dio_data->outstanding_extents -= num_extents;
7640 } else {
Liu Boc2931662016-12-22 17:13:54 -08007641 /*
7642 * If dio write length has been split due to no large enough
7643 * contiguous space, we need to compensate our inode counter
7644 * appropriately.
7645 */
7646 u64 num_needed = num_extents - dio_data->outstanding_extents;
7647
Filipe Manana9c9464c2015-11-04 09:52:04 +00007648 spin_lock(&BTRFS_I(inode)->lock);
Liu Boc2931662016-12-22 17:13:54 -08007649 BTRFS_I(inode)->outstanding_extents += num_needed;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007650 spin_unlock(&BTRFS_I(inode)->lock);
7651 }
7652}
7653
Josef Bacik4b46fce2010-05-23 11:00:55 -04007654static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7655 struct buffer_head *bh_result, int create)
7656{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007657 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007658 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007659 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307660 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007661 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007662 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007663 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007664 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007665 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007666
Miao Xie172a5042013-02-21 02:48:22 -07007667 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007668 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007669 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007670 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007671
Josef Bacikc3298612012-08-03 16:49:19 -04007672 lockstart = start;
7673 lockend = start + len - 1;
7674
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007675 if (current->journal_info) {
7676 /*
7677 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007678 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007679 * confused.
7680 */
chandan50745b02015-08-28 21:10:13 +05307681 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007682 current->journal_info = NULL;
7683 }
7684
Josef Bacikeb838e72012-07-31 16:28:48 -04007685 /*
7686 * If this errors out it's because we couldn't invalidate pagecache for
7687 * this range and we need to fallback to buffered.
7688 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007689 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7690 create)) {
7691 ret = -ENOTBLK;
7692 goto err;
7693 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007694
Josef Bacik4b46fce2010-05-23 11:00:55 -04007695 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007696 if (IS_ERR(em)) {
7697 ret = PTR_ERR(em);
7698 goto unlock_err;
7699 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007700
7701 /*
7702 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7703 * io. INLINE is special, and we could probably kludge it in here, but
7704 * it's still buffered so for safety lets just fall back to the generic
7705 * buffered path.
7706 *
7707 * For COMPRESSED we _have_ to read the entire extent in so we can
7708 * decompress it, so there will be buffering required no matter what we
7709 * do, so go ahead and fallback to buffered.
7710 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007711 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007712 * to buffered IO. Don't blame me, this is the price we pay for using
7713 * the generic code.
7714 */
7715 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7716 em->block_start == EXTENT_MAP_INLINE) {
7717 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007718 ret = -ENOTBLK;
7719 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007720 }
7721
7722 /* Just a good old fashioned hole, return */
7723 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7724 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7725 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007726 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007727 }
7728
7729 /*
7730 * We don't allocate a new extent in the following cases
7731 *
7732 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7733 * existing extent.
7734 * 2) The extent is marked as PREALLOC. We're good to go here and can
7735 * just use the extent.
7736 *
7737 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007738 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007739 len = min(len, em->len - (start - em->start));
7740 lockstart = start + len;
7741 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007742 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007743
7744 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7745 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7746 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007747 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007748 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007749
7750 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7751 type = BTRFS_ORDERED_PREALLOC;
7752 else
7753 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007754 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007755 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007756
Josef Bacik00361582013-08-14 14:02:47 -04007757 if (can_nocow_extent(inode, start, &len, &orig_start,
Filipe Mananaf78c4362016-05-09 13:15:41 +01007758 &orig_block_len, &ram_bytes) == 1 &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007759 btrfs_inc_nocow_writers(fs_info, block_start)) {
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007760 struct extent_map *em2;
Filipe Manana0b901912016-05-09 13:15:27 +01007761
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007762 em2 = btrfs_create_dio_extent(inode, start, len,
7763 orig_start, block_start,
7764 len, orig_block_len,
7765 ram_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007766 btrfs_dec_nocow_writers(fs_info, block_start);
Josef Bacik69ffb542012-09-11 15:40:07 -04007767 if (type == BTRFS_ORDERED_PREALLOC) {
7768 free_extent_map(em);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007769 em = em2;
Josef Bacik69ffb542012-09-11 15:40:07 -04007770 }
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007771 if (em2 && IS_ERR(em2)) {
7772 ret = PTR_ERR(em2);
Josef Bacikeb838e72012-07-31 16:28:48 -04007773 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007774 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08007775 /*
7776 * For inode marked NODATACOW or extent marked PREALLOC,
7777 * use the existing or preallocated extent, so does not
7778 * need to adjust btrfs_space_info's bytes_may_use.
7779 */
7780 btrfs_free_reserved_data_space_noquota(inode,
7781 start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04007782 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007783 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007784 }
Josef Bacik00361582013-08-14 14:02:47 -04007785
Chris Mason46bfbb52010-05-26 11:04:10 -04007786 /*
7787 * this will cow the extent, reset the len in case we changed
7788 * it above
7789 */
7790 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007791 free_extent_map(em);
7792 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007793 if (IS_ERR(em)) {
7794 ret = PTR_ERR(em);
7795 goto unlock_err;
7796 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007797 len = min(len, em->len - (start - em->start));
7798unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007799 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7800 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007801 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007802 bh_result->b_bdev = em->bdev;
7803 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007804 if (create) {
7805 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7806 set_buffer_new(bh_result);
7807
7808 /*
7809 * Need to update the i_size under the extent lock so buffered
7810 * readers will get the updated i_size when we unlock.
7811 */
7812 if (start + len > i_size_read(inode))
7813 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007814
Filipe Manana9c9464c2015-11-04 09:52:04 +00007815 adjust_dio_outstanding_extents(inode, dio_data, len);
chandan50745b02015-08-28 21:10:13 +05307816 WARN_ON(dio_data->reserve < len);
7817 dio_data->reserve -= len;
Filipe Mananaf28a4922015-12-08 19:23:20 +00007818 dio_data->unsubmitted_oe_range_end = start + len;
chandan50745b02015-08-28 21:10:13 +05307819 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007820 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007821
Josef Bacikeb838e72012-07-31 16:28:48 -04007822 /*
7823 * In the case of write we need to clear and unlock the entire range,
7824 * in the case of read we need to unlock only the end area that we
7825 * aren't using if there is any left over space.
7826 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007827 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007828 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7829 lockend, unlock_bits, 1, 0,
7830 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007831 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007832 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007833 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007834
Josef Bacik4b46fce2010-05-23 11:00:55 -04007835 free_extent_map(em);
7836
7837 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007838
7839unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007840 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7841 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007842err:
chandan50745b02015-08-28 21:10:13 +05307843 if (dio_data)
7844 current->journal_info = dio_data;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007845 /*
7846 * Compensate the delalloc release we do in btrfs_direct_IO() when we
7847 * write less data then expected, so that we don't underflow our inode's
7848 * outstanding extents counter.
7849 */
7850 if (create && dio_data)
7851 adjust_dio_outstanding_extents(inode, dio_data, len);
7852
Josef Bacikeb838e72012-07-31 16:28:48 -04007853 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007854}
7855
Miao Xie8b110e32014-09-12 18:44:03 +08007856static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
Mike Christie81a75f672016-06-05 14:31:54 -05007857 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007858{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007859 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007860 int ret;
7861
Mike Christie37226b22016-06-05 14:31:52 -05007862 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007863
7864 bio_get(bio);
7865
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007866 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007867 if (ret)
7868 goto err;
7869
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007870 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007871err:
7872 bio_put(bio);
7873 return ret;
7874}
7875
7876static int btrfs_check_dio_repairable(struct inode *inode,
7877 struct bio *failed_bio,
7878 struct io_failure_record *failrec,
7879 int failed_mirror)
7880{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007881 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007882 int num_copies;
7883
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007884 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007885 if (num_copies == 1) {
7886 /*
7887 * we only have a single copy of the data, so don't bother with
7888 * all the retry and error correction code that follows. no
7889 * matter what the error is, it is very likely to persist.
7890 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007891 btrfs_debug(fs_info,
7892 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7893 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007894 return 0;
7895 }
7896
7897 failrec->failed_mirror = failed_mirror;
7898 failrec->this_mirror++;
7899 if (failrec->this_mirror == failed_mirror)
7900 failrec->this_mirror++;
7901
7902 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007903 btrfs_debug(fs_info,
7904 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7905 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007906 return 0;
7907 }
7908
7909 return 1;
7910}
7911
7912static int dio_read_error(struct inode *inode, struct bio *failed_bio,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307913 struct page *page, unsigned int pgoff,
7914 u64 start, u64 end, int failed_mirror,
7915 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007916{
7917 struct io_failure_record *failrec;
7918 struct bio *bio;
7919 int isector;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007920 int read_mode = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08007921 int ret;
7922
Mike Christie37226b22016-06-05 14:31:52 -05007923 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007924
7925 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7926 if (ret)
7927 return ret;
7928
7929 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7930 failed_mirror);
7931 if (!ret) {
7932 free_io_failure(inode, failrec);
7933 return -EIO;
7934 }
7935
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307936 if ((failed_bio->bi_vcnt > 1)
7937 || (failed_bio->bi_io_vec->bv_len
Jeff Mahoneyda170662016-06-15 09:22:56 -04007938 > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007939 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007940
7941 isector = start - btrfs_io_bio(failed_bio)->logical;
7942 isector >>= inode->i_sb->s_blocksize_bits;
7943 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307944 pgoff, isector, repair_endio, repair_arg);
Miao Xie8b110e32014-09-12 18:44:03 +08007945 if (!bio) {
7946 free_io_failure(inode, failrec);
7947 return -EIO;
7948 }
Mike Christie37226b22016-06-05 14:31:52 -05007949 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie8b110e32014-09-12 18:44:03 +08007950
7951 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7952 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7953 read_mode, failrec->this_mirror, failrec->in_validation);
7954
Mike Christie81a75f672016-06-05 14:31:54 -05007955 ret = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007956 if (ret) {
7957 free_io_failure(inode, failrec);
7958 bio_put(bio);
7959 }
7960
7961 return ret;
7962}
7963
7964struct btrfs_retry_complete {
7965 struct completion done;
7966 struct inode *inode;
7967 u64 start;
7968 int uptodate;
7969};
7970
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007971static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007972{
7973 struct btrfs_retry_complete *done = bio->bi_private;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307974 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007975 struct bio_vec *bvec;
7976 int i;
7977
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007978 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007979 goto end;
7980
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307981 ASSERT(bio->bi_vcnt == 1);
7982 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007983 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307984
Miao Xie8b110e32014-09-12 18:44:03 +08007985 done->uptodate = 1;
7986 bio_for_each_segment_all(bvec, bio, i)
7987 clean_io_failure(done->inode, done->start, bvec->bv_page, 0);
7988end:
7989 complete(&done->done);
7990 bio_put(bio);
7991}
7992
7993static int __btrfs_correct_data_nocsum(struct inode *inode,
7994 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007995{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307996 struct btrfs_fs_info *fs_info;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007997 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007998 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007999 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308000 unsigned int pgoff;
8001 u32 sectorsize;
8002 int nr_sectors;
Kent Overstreet2c30c712013-11-07 12:20:26 -08008003 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08008004 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08008005
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308006 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008007 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308008
Miao Xiec1dc0892014-09-12 18:43:56 +08008009 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08008010 done.inode = inode;
8011
8012 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308013 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8014 pgoff = bvec->bv_offset;
8015
8016next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08008017 done.uptodate = 0;
8018 done.start = start;
8019 init_completion(&done.done);
8020
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308021 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8022 pgoff, start, start + sectorsize - 1,
8023 io_bio->mirror_num,
8024 btrfs_retry_endio_nocsum, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008025 if (ret)
8026 return ret;
8027
8028 wait_for_completion(&done.done);
8029
8030 if (!done.uptodate) {
8031 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308032 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08008033 }
8034
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308035 start += sectorsize;
8036
8037 if (nr_sectors--) {
8038 pgoff += sectorsize;
8039 goto next_block_or_try_again;
8040 }
Miao Xie8b110e32014-09-12 18:44:03 +08008041 }
8042
8043 return 0;
8044}
8045
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008046static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08008047{
8048 struct btrfs_retry_complete *done = bio->bi_private;
8049 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308050 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08008051 struct bio_vec *bvec;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308052 u64 start;
Miao Xie8b110e32014-09-12 18:44:03 +08008053 int uptodate;
8054 int ret;
8055 int i;
8056
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008057 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08008058 goto end;
8059
8060 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308061
8062 start = done->start;
8063
8064 ASSERT(bio->bi_vcnt == 1);
8065 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008066 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308067
Miao Xie8b110e32014-09-12 18:44:03 +08008068 bio_for_each_segment_all(bvec, bio, i) {
8069 ret = __readpage_endio_check(done->inode, io_bio, i,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308070 bvec->bv_page, bvec->bv_offset,
8071 done->start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08008072 if (!ret)
8073 clean_io_failure(done->inode, done->start,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308074 bvec->bv_page, bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08008075 else
8076 uptodate = 0;
8077 }
8078
8079 done->uptodate = uptodate;
8080end:
8081 complete(&done->done);
8082 bio_put(bio);
8083}
8084
8085static int __btrfs_subio_endio_read(struct inode *inode,
8086 struct btrfs_io_bio *io_bio, int err)
8087{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308088 struct btrfs_fs_info *fs_info;
Miao Xie8b110e32014-09-12 18:44:03 +08008089 struct bio_vec *bvec;
8090 struct btrfs_retry_complete done;
8091 u64 start;
8092 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308093 u32 sectorsize;
8094 int nr_sectors;
8095 unsigned int pgoff;
8096 int csum_pos;
Miao Xie8b110e32014-09-12 18:44:03 +08008097 int i;
8098 int ret;
8099
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308100 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008101 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308102
Miao Xie8b110e32014-09-12 18:44:03 +08008103 err = 0;
8104 start = io_bio->logical;
8105 done.inode = inode;
8106
Miao Xiec1dc0892014-09-12 18:43:56 +08008107 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308108 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8109
8110 pgoff = bvec->bv_offset;
8111next_block:
8112 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
8113 ret = __readpage_endio_check(inode, io_bio, csum_pos,
8114 bvec->bv_page, pgoff, start,
8115 sectorsize);
Miao Xie8b110e32014-09-12 18:44:03 +08008116 if (likely(!ret))
8117 goto next;
8118try_again:
8119 done.uptodate = 0;
8120 done.start = start;
8121 init_completion(&done.done);
8122
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308123 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8124 pgoff, start, start + sectorsize - 1,
8125 io_bio->mirror_num,
8126 btrfs_retry_endio, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008127 if (ret) {
8128 err = ret;
8129 goto next;
8130 }
8131
8132 wait_for_completion(&done.done);
8133
8134 if (!done.uptodate) {
8135 /* We might have another mirror, so try again */
8136 goto try_again;
8137 }
8138next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308139 offset += sectorsize;
8140 start += sectorsize;
8141
8142 ASSERT(nr_sectors);
8143
8144 if (--nr_sectors) {
8145 pgoff += sectorsize;
8146 goto next_block;
8147 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008148 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008149
8150 return err;
8151}
8152
Miao Xie8b110e32014-09-12 18:44:03 +08008153static int btrfs_subio_endio_read(struct inode *inode,
8154 struct btrfs_io_bio *io_bio, int err)
8155{
8156 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8157
8158 if (skip_csum) {
8159 if (unlikely(err))
8160 return __btrfs_correct_data_nocsum(inode, io_bio);
8161 else
8162 return 0;
8163 } else {
8164 return __btrfs_subio_endio_read(inode, io_bio, err);
8165 }
8166}
8167
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008168static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008169{
8170 struct btrfs_dio_private *dip = bio->bi_private;
8171 struct inode *inode = dip->inode;
8172 struct bio *dio_bio;
8173 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008174 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08008175
Miao Xie8b110e32014-09-12 18:44:03 +08008176 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
8177 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008178
Josef Bacik4b46fce2010-05-23 11:00:55 -04008179 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008180 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008181 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008182
Josef Bacik4b46fce2010-05-23 11:00:55 -04008183 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008184
Filipe Manana1636d1d2016-02-15 16:20:26 +00008185 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008186 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08008187
8188 if (io_bio->end_io)
8189 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04008190 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008191}
8192
Filipe Manana14543772015-11-24 16:23:54 +00008193static void btrfs_endio_direct_write_update_ordered(struct inode *inode,
8194 const u64 offset,
8195 const u64 bytes,
8196 const int uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008197{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008198 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008199 struct btrfs_ordered_extent *ordered = NULL;
Filipe Manana14543772015-11-24 16:23:54 +00008200 u64 ordered_offset = offset;
8201 u64 ordered_bytes = bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008202 int ret;
8203
Chris Mason163cf092010-11-28 19:56:33 -05008204again:
8205 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8206 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008207 ordered_bytes,
Filipe Manana14543772015-11-24 16:23:54 +00008208 uptodate);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008209 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008210 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008211
Liu Bo9e0af232014-08-15 23:36:53 +08008212 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
8213 finish_ordered_fn, NULL, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008214 btrfs_queue_work(fs_info->endio_write_workers, &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008215out_test:
8216 /*
8217 * our bio might span multiple ordered extents. If we haven't
8218 * completed the accounting for the whole dio, go back and try again
8219 */
Filipe Manana14543772015-11-24 16:23:54 +00008220 if (ordered_offset < offset + bytes) {
8221 ordered_bytes = offset + bytes - ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008222 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008223 goto again;
8224 }
Filipe Manana14543772015-11-24 16:23:54 +00008225}
8226
8227static void btrfs_endio_direct_write(struct bio *bio)
8228{
8229 struct btrfs_dio_private *dip = bio->bi_private;
8230 struct bio *dio_bio = dip->dio_bio;
8231
8232 btrfs_endio_direct_write_update_ordered(dip->inode,
8233 dip->logical_offset,
8234 dip->bytes,
8235 !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008236
Josef Bacik4b46fce2010-05-23 11:00:55 -04008237 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008238
Filipe Manana1636d1d2016-02-15 16:20:26 +00008239 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008240 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04008241 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008242}
8243
Mike Christie81a75f672016-06-05 14:31:54 -05008244static int __btrfs_submit_bio_start_direct_io(struct inode *inode,
Chris Masoneaf25d92010-05-25 09:48:28 -04008245 struct bio *bio, int mirror_num,
8246 unsigned long bio_flags, u64 offset)
8247{
8248 int ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008249 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008250 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008251 return 0;
8252}
8253
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008254static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008255{
8256 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008257 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008258
Miao Xie8b110e32014-09-12 18:44:03 +08008259 if (err)
8260 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008261 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008262 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8263 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008264 (unsigned long long)bio->bi_iter.bi_sector,
8265 bio->bi_iter.bi_size, err);
8266
8267 if (dip->subio_endio)
8268 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008269
8270 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008271 dip->errors = 1;
8272
8273 /*
8274 * before atomic variable goto zero, we must make sure
8275 * dip->errors is perceived to be set.
8276 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008277 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008278 }
8279
8280 /* if there are more bios still pending for this dio, just exit */
8281 if (!atomic_dec_and_test(&dip->pending_bios))
8282 goto out;
8283
Chris Mason9be33952013-05-17 18:30:14 -04008284 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008285 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008286 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008287 dip->dio_bio->bi_error = 0;
8288 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008289 }
8290out:
8291 bio_put(bio);
8292}
8293
8294static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8295 u64 first_sector, gfp_t gfp_flags)
8296{
Chris Masonda2f0f72015-07-02 13:57:22 -07008297 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008298 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008299 if (bio)
8300 bio_associate_current(bio);
8301 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008302}
8303
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008304static inline int btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008305 struct btrfs_dio_private *dip,
8306 struct bio *bio,
8307 u64 file_offset)
8308{
8309 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8310 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8311 int ret;
8312
8313 /*
8314 * We load all the csum data we need when we submit
8315 * the first bio to reduce the csum tree search and
8316 * contention.
8317 */
8318 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008319 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008320 file_offset);
8321 if (ret)
8322 return ret;
8323 }
8324
8325 if (bio == dip->orig_bio)
8326 return 0;
8327
8328 file_offset -= dip->logical_offset;
8329 file_offset >>= inode->i_sb->s_blocksize_bits;
8330 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8331
8332 return 0;
8333}
8334
Miao Xiee65e1532010-11-22 03:04:43 +00008335static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
Mike Christie81a75f672016-06-05 14:31:54 -05008336 u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008337 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008338{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008339 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008340 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008341 bool write = bio_op(bio) == REQ_OP_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00008342 int ret;
8343
Josef Bacikb812ce22012-11-16 13:56:32 -05008344 if (async_submit)
8345 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8346
Miao Xiee65e1532010-11-22 03:04:43 +00008347 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008348
8349 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008350 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008351 if (ret)
8352 goto err;
8353 }
Miao Xiee65e1532010-11-22 03:04:43 +00008354
Josef Bacik1ae39932011-04-06 14:41:34 -04008355 if (skip_sum)
8356 goto map;
8357
8358 if (write && async_submit) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008359 ret = btrfs_wq_submit_bio(fs_info, inode, bio, 0, 0,
8360 file_offset,
8361 __btrfs_submit_bio_start_direct_io,
8362 __btrfs_submit_bio_done);
Miao Xiee65e1532010-11-22 03:04:43 +00008363 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008364 } else if (write) {
8365 /*
8366 * If we aren't doing async submit, calculate the csum of the
8367 * bio now.
8368 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008369 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008370 if (ret)
8371 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008372 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008373 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008374 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008375 if (ret)
8376 goto err;
8377 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008378map:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008379 ret = btrfs_map_bio(fs_info, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008380err:
8381 bio_put(bio);
8382 return ret;
8383}
8384
Mike Christie81a75f672016-06-05 14:31:54 -05008385static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip,
Miao Xiee65e1532010-11-22 03:04:43 +00008386 int skip_sum)
8387{
8388 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008389 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008390 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008391 struct bio *bio;
8392 struct bio *orig_bio = dip->orig_bio;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008393 struct bio_vec *bvec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008394 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008395 u64 file_offset = dip->logical_offset;
8396 u64 submit_len = 0;
8397 u64 map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008398 u32 blocksize = fs_info->sectorsize;
Josef Bacik1ae39932011-04-06 14:41:34 -04008399 int async_submit = 0;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308400 int nr_sectors;
8401 int ret;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008402 int i, j;
Miao Xiee65e1532010-11-22 03:04:43 +00008403
Kent Overstreet4f024f32013-10-11 15:44:27 -07008404 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008405 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8406 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008407 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008408 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008409
Kent Overstreet4f024f32013-10-11 15:44:27 -07008410 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008411 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008412 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008413 goto submit;
8414 }
8415
David Woodhouse53b381b2013-01-29 18:40:14 -05008416 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008417 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008418 async_submit = 0;
8419 else
8420 async_submit = 1;
8421
Josef Bacik02f57c72011-04-06 14:25:44 -04008422 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8423 if (!bio)
8424 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008425
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008426 bio->bi_opf = orig_bio->bi_opf;
Josef Bacik02f57c72011-04-06 14:25:44 -04008427 bio->bi_private = dip;
8428 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008429 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008430 atomic_inc(&dip->pending_bios);
8431
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008432 bio_for_each_segment_all(bvec, orig_bio, j) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008433 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308434 i = 0;
8435next_block:
8436 if (unlikely(map_length < submit_len + blocksize ||
8437 bio_add_page(bio, bvec->bv_page, blocksize,
8438 bvec->bv_offset + (i * blocksize)) < blocksize)) {
Miao Xiee65e1532010-11-22 03:04:43 +00008439 /*
8440 * inc the count before we submit the bio so
8441 * we know the end IO handler won't happen before
8442 * we inc the count. Otherwise, the dip might get freed
8443 * before we're done setting it up
8444 */
8445 atomic_inc(&dip->pending_bios);
Mike Christie81a75f672016-06-05 14:31:54 -05008446 ret = __btrfs_submit_dio_bio(bio, inode,
Miao Xiee65e1532010-11-22 03:04:43 +00008447 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008448 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008449 if (ret) {
8450 bio_put(bio);
8451 atomic_dec(&dip->pending_bios);
8452 goto out_err;
8453 }
8454
Miao Xiee65e1532010-11-22 03:04:43 +00008455 start_sector += submit_len >> 9;
8456 file_offset += submit_len;
8457
8458 submit_len = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008459
8460 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8461 start_sector, GFP_NOFS);
8462 if (!bio)
8463 goto out_err;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008464 bio->bi_opf = orig_bio->bi_opf;
Miao Xiee65e1532010-11-22 03:04:43 +00008465 bio->bi_private = dip;
8466 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008467 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008468
Kent Overstreet4f024f32013-10-11 15:44:27 -07008469 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008470 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008471 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008472 &map_length, NULL, 0);
8473 if (ret) {
8474 bio_put(bio);
8475 goto out_err;
8476 }
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308477
8478 goto next_block;
Miao Xiee65e1532010-11-22 03:04:43 +00008479 } else {
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308480 submit_len += blocksize;
8481 if (--nr_sectors) {
8482 i++;
8483 goto next_block;
8484 }
Miao Xiee65e1532010-11-22 03:04:43 +00008485 }
8486 }
8487
Josef Bacik02f57c72011-04-06 14:25:44 -04008488submit:
Mike Christie81a75f672016-06-05 14:31:54 -05008489 ret = __btrfs_submit_dio_bio(bio, inode, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008490 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008491 if (!ret)
8492 return 0;
8493
8494 bio_put(bio);
8495out_err:
8496 dip->errors = 1;
8497 /*
8498 * before atomic variable goto zero, we must
8499 * make sure dip->errors is perceived to be set.
8500 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008501 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008502 if (atomic_dec_and_test(&dip->pending_bios))
8503 bio_io_error(dip->orig_bio);
8504
8505 /* bio_end_io() will handle error, so we needn't return it */
8506 return 0;
8507}
8508
Mike Christie8a4c1e42016-06-05 14:31:50 -05008509static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8510 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008511{
Filipe Manana61de7182015-07-01 12:13:10 +01008512 struct btrfs_dio_private *dip = NULL;
8513 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008514 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008515 int skip_sum;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008516 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008517 int ret = 0;
8518
8519 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8520
Chris Mason9be33952013-05-17 18:30:14 -04008521 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008522 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008523 ret = -ENOMEM;
8524 goto free_ordered;
8525 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008526
Miao Xiec1dc0892014-09-12 18:43:56 +08008527 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008528 if (!dip) {
8529 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008530 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008531 }
8532
8533 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008534 dip->inode = inode;
8535 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008536 dip->bytes = dio_bio->bi_iter.bi_size;
8537 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008538 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008539 dip->orig_bio = io_bio;
8540 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008541 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008542 btrfs_bio = btrfs_io_bio(io_bio);
8543 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008544
Miao Xiec1dc0892014-09-12 18:43:56 +08008545 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008546 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008547 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008548 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008549 dip->subio_endio = btrfs_subio_endio_read;
8550 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008551
Filipe Mananaf28a4922015-12-08 19:23:20 +00008552 /*
8553 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8554 * even if we fail to submit a bio, because in such case we do the
8555 * corresponding error handling below and it must not be done a second
8556 * time by btrfs_direct_IO().
8557 */
8558 if (write) {
8559 struct btrfs_dio_data *dio_data = current->journal_info;
8560
8561 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8562 dip->bytes;
8563 dio_data->unsubmitted_oe_range_start =
8564 dio_data->unsubmitted_oe_range_end;
8565 }
8566
Mike Christie81a75f672016-06-05 14:31:54 -05008567 ret = btrfs_submit_direct_hook(dip, skip_sum);
Miao Xiee65e1532010-11-22 03:04:43 +00008568 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008569 return;
Chris Mason9be33952013-05-17 18:30:14 -04008570
Miao Xie23ea8e52014-09-12 18:43:54 +08008571 if (btrfs_bio->end_io)
8572 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008573
Josef Bacik4b46fce2010-05-23 11:00:55 -04008574free_ordered:
8575 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008576 * If we arrived here it means either we failed to submit the dip
8577 * or we either failed to clone the dio_bio or failed to allocate the
8578 * dip. If we cloned the dio_bio and allocated the dip, we can just
8579 * call bio_endio against our io_bio so that we get proper resource
8580 * cleanup if we fail to submit the dip, otherwise, we must do the
8581 * same as btrfs_endio_direct_[write|read] because we can't call these
8582 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008583 */
Filipe Manana61de7182015-07-01 12:13:10 +01008584 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008585 io_bio->bi_error = -EIO;
8586 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008587 /*
8588 * The end io callbacks free our dip, do the final put on io_bio
8589 * and all the cleanup and final put for dio_bio (through
8590 * dio_end_io()).
8591 */
8592 dip = NULL;
8593 io_bio = NULL;
8594 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008595 if (write)
8596 btrfs_endio_direct_write_update_ordered(inode,
8597 file_offset,
8598 dio_bio->bi_iter.bi_size,
8599 0);
8600 else
Filipe Manana61de7182015-07-01 12:13:10 +01008601 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8602 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008603
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008604 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008605 /*
8606 * Releases and cleans up our dio_bio, no need to bio_put()
8607 * nor bio_endio()/bio_io_error() against dio_bio.
8608 */
8609 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008610 }
Filipe Manana61de7182015-07-01 12:13:10 +01008611 if (io_bio)
8612 bio_put(io_bio);
8613 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008614}
8615
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008616static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
8617 struct kiocb *iocb,
8618 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008619{
8620 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008621 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008622 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008623 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008624
8625 if (offset & blocksize_mask)
8626 goto out;
8627
Al Viro28060d52014-03-22 05:15:17 -04008628 if (iov_iter_alignment(iter) & blocksize_mask)
8629 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008630
Al Viro28060d52014-03-22 05:15:17 -04008631 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008632 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008633 return 0;
8634 /*
8635 * Check to make sure we don't have duplicate iov_base's in this
8636 * iovec, if so return EINVAL, otherwise we'll get csum errors
8637 * when reading back.
8638 */
8639 for (seg = 0; seg < iter->nr_segs; seg++) {
8640 for (i = seg + 1; i < iter->nr_segs; i++) {
8641 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008642 goto out;
8643 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008644 }
8645 retval = 0;
8646out:
8647 return retval;
8648}
Josef Bacikeb838e72012-07-31 16:28:48 -04008649
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008650static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008651{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008652 struct file *file = iocb->ki_filp;
8653 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008654 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308655 struct btrfs_dio_data dio_data = { 0 };
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008656 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008657 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008658 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008659 bool wakeup = true;
8660 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008661 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008662
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008663 if (check_direct_IO(fs_info, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008664 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008665
Jens Axboefe0f07d2015-04-15 17:05:48 -06008666 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008667 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008668
Josef Bacik0e267c42013-07-02 10:38:02 -04008669 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008670 * The generic stuff only does filemap_write_and_wait_range, which
8671 * isn't enough if we've written compressed pages to this area, so
8672 * we need to flush the dirty pages again to make absolutely sure
8673 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008674 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008675 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008676 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8677 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008678 filemap_fdatawrite_range(inode->i_mapping, offset,
8679 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008680
Omar Sandoval6f673762015-03-16 04:33:52 -07008681 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008682 /*
8683 * If the write DIO is beyond the EOF, we need update
8684 * the isize, but it is protected by i_mutex. So we can
8685 * not unlock the i_mutex at this case.
8686 */
8687 if (offset + count <= inode->i_size) {
Al Viro59551022016-01-22 15:40:57 -05008688 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008689 relock = true;
8690 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008691 ret = btrfs_delalloc_reserve_space(inode, offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008692 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008693 goto out;
David Sterba823bb202017-01-04 11:09:51 +01008694 dio_data.outstanding_extents = count_max_extents(count);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008695
8696 /*
8697 * We need to know how many extents we reserved so that we can
8698 * do the accounting properly if we go over the number we
8699 * originally calculated. Abuse current->journal_info for this.
8700 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008701 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008702 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008703 dio_data.unsubmitted_oe_range_start = (u64)offset;
8704 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308705 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308706 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008707 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8708 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008709 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008710 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8711 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008712 }
8713
Omar Sandoval17f8c842015-03-16 04:33:50 -07008714 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008715 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008716 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008717 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008718 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308719 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008720 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008721 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308722 if (dio_data.reserve)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008723 btrfs_delalloc_release_space(inode, offset,
8724 dio_data.reserve);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008725 /*
8726 * On error we might have left some ordered extents
8727 * without submitting corresponding bios for them, so
8728 * cleanup them up to avoid other tasks getting them
8729 * and waiting for them to complete forever.
8730 */
8731 if (dio_data.unsubmitted_oe_range_start <
8732 dio_data.unsubmitted_oe_range_end)
8733 btrfs_endio_direct_write_update_ordered(inode,
8734 dio_data.unsubmitted_oe_range_start,
8735 dio_data.unsubmitted_oe_range_end -
8736 dio_data.unsubmitted_oe_range_start,
8737 0);
Liu Boddba1bf2015-06-17 16:59:58 +08008738 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008739 btrfs_delalloc_release_space(inode, offset,
8740 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008741 }
Miao Xie38851cc2013-02-08 07:04:11 +00008742out:
Miao Xie2e60a512013-02-08 07:01:08 +00008743 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008744 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008745 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008746 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008747
8748 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008749}
8750
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008751#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8752
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008753static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8754 __u64 start, __u64 len)
8755{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008756 int ret;
8757
8758 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8759 if (ret)
8760 return ret;
8761
Chris Masonec29ed52011-02-23 16:23:20 -05008762 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008763}
8764
Chris Mason9ebefb182007-06-15 13:50:00 -04008765int btrfs_readpage(struct file *file, struct page *page)
8766{
Chris Masond1310b22008-01-24 16:13:08 -05008767 struct extent_io_tree *tree;
8768 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008769 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008770}
Chris Mason1832a6d2007-12-21 16:27:21 -05008771
Chris Mason39279cc2007-06-12 06:35:45 -04008772static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8773{
Chris Masond1310b22008-01-24 16:13:08 -05008774 struct extent_io_tree *tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008775 struct inode *inode = page->mapping->host;
8776 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008777
8778 if (current->flags & PF_MEMALLOC) {
8779 redirty_page_for_writepage(wbc, page);
8780 unlock_page(page);
8781 return 0;
8782 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008783
8784 /*
8785 * If we are under memory pressure we will call this directly from the
8786 * VM, we need to make sure we have the inode referenced for the ordered
8787 * extent. If not just return like we didn't do anything.
8788 */
8789 if (!igrab(inode)) {
8790 redirty_page_for_writepage(wbc, page);
8791 return AOP_WRITEPAGE_ACTIVATE;
8792 }
Chris Masond1310b22008-01-24 16:13:08 -05008793 tree = &BTRFS_I(page->mapping->host)->io_tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008794 ret = extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8795 btrfs_add_delayed_iput(inode);
8796 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008797}
Chris Mason39279cc2007-06-12 06:35:45 -04008798
Eric Sandeen48a3b632013-04-25 20:41:01 +00008799static int btrfs_writepages(struct address_space *mapping,
8800 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008801{
Chris Masond1310b22008-01-24 16:13:08 -05008802 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008803
Chris Masond1310b22008-01-24 16:13:08 -05008804 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04008805 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8806}
8807
Chris Mason3ab2fb52007-11-08 10:59:22 -05008808static int
8809btrfs_readpages(struct file *file, struct address_space *mapping,
8810 struct list_head *pages, unsigned nr_pages)
8811{
Chris Masond1310b22008-01-24 16:13:08 -05008812 struct extent_io_tree *tree;
8813 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008814 return extent_readpages(tree, mapping, pages, nr_pages,
8815 btrfs_get_extent);
8816}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008817static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008818{
Chris Masond1310b22008-01-24 16:13:08 -05008819 struct extent_io_tree *tree;
8820 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008821 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008822
Chris Masond1310b22008-01-24 16:13:08 -05008823 tree = &BTRFS_I(page->mapping->host)->io_tree;
8824 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008825 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008826 if (ret == 1) {
8827 ClearPagePrivate(page);
8828 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008829 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008830 }
8831 return ret;
8832}
Chris Mason39279cc2007-06-12 06:35:45 -04008833
Chris Masone6dcd2d2008-07-17 12:53:50 -04008834static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8835{
Chris Mason98509cf2008-09-11 15:51:43 -04008836 if (PageWriteback(page) || PageDirty(page))
8837 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008838 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008839}
8840
Lukas Czernerd47992f2013-05-21 23:17:23 -04008841static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8842 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008843{
Josef Bacik5fd02042012-05-02 14:00:54 -04008844 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008845 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008846 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008847 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008848 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008849 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308850 u64 start;
8851 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008852 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008853
Chris Mason8b62b722009-09-02 16:53:46 -04008854 /*
8855 * we have the page locked, so new writeback can't start,
8856 * and the dirty bit won't be cleared while we are here.
8857 *
8858 * Wait for IO on this page so that we can safely clear
8859 * the PagePrivate2 bit and do ordered accounting
8860 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008861 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008862
Josef Bacik5fd02042012-05-02 14:00:54 -04008863 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008864 if (offset) {
8865 btrfs_releasepage(page, GFP_NOFS);
8866 return;
8867 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008868
8869 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008870 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308871again:
8872 start = page_start;
8873 ordered = btrfs_lookup_ordered_range(inode, start,
8874 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008875 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308876 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008877 /*
8878 * IO on this page will never be started, so we need
8879 * to account for any ordered extents now
8880 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008881 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308882 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008883 EXTENT_DIRTY | EXTENT_DELALLOC |
8884 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8885 EXTENT_DEFRAG, 1, 0, &cached_state,
8886 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008887 /*
8888 * whoever cleared the private bit is responsible
8889 * for the finish_ordered_io
8890 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008891 if (TestClearPagePrivate2(page)) {
8892 struct btrfs_ordered_inode_tree *tree;
8893 u64 new_len;
8894
8895 tree = &BTRFS_I(inode)->ordered_tree;
8896
8897 spin_lock_irq(&tree->lock);
8898 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308899 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008900 if (new_len < ordered->truncated_len)
8901 ordered->truncated_len = new_len;
8902 spin_unlock_irq(&tree->lock);
8903
8904 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308905 start,
8906 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008907 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008908 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008909 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008910 if (!inode_evicting) {
8911 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308912 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008913 &cached_state);
8914 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308915
8916 start = end + 1;
8917 if (start < page_end)
8918 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008919 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008920
Qu Wenruob9d0b382015-09-29 10:35:16 +08008921 /*
8922 * Qgroup reserved space handler
8923 * Page here will be either
8924 * 1) Already written to disk
8925 * In this case, its reserved space is released from data rsv map
8926 * and will be freed by delayed_ref handler finally.
8927 * So even we call qgroup_free_data(), it won't decrease reserved
8928 * space.
8929 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008930 * This means the reserved space should be freed here. However,
8931 * if a truncate invalidates the page (by clearing PageDirty)
8932 * and the page is accounted for while allocating extent
8933 * in btrfs_check_data_free_space() we let delayed_ref to
8934 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008935 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008936 if (PageDirty(page))
8937 btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008938 if (!inode_evicting) {
8939 clear_extent_bit(tree, page_start, page_end,
8940 EXTENT_LOCKED | EXTENT_DIRTY |
8941 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8942 EXTENT_DEFRAG, 1, 1,
8943 &cached_state, GFP_NOFS);
8944
8945 __btrfs_releasepage(page, GFP_NOFS);
8946 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008947
Chris Mason4a096752008-07-21 10:29:44 -04008948 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008949 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008950 ClearPagePrivate(page);
8951 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008952 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008953 }
Chris Mason39279cc2007-06-12 06:35:45 -04008954}
8955
Chris Mason9ebefb182007-06-15 13:50:00 -04008956/*
8957 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8958 * called from a page fault handler when a page is first dirtied. Hence we must
8959 * be careful to check for EOF conditions here. We set the page up correctly
8960 * for a written page which means we get ENOSPC checking when writing into
8961 * holes and correct delalloc and unwritten extent mapping on filesystems that
8962 * support these features.
8963 *
8964 * We are not allowed to take the i_mutex here so we have to play games to
8965 * protect against truncate races as the page could now be beyond EOF. Because
8966 * vmtruncate() writes the inode size before removing pages, once we have the
8967 * page lock we can determine safely if the page is beyond EOF. If it is not
8968 * beyond EOF, then the page is guaranteed safe against truncation until we
8969 * unlock the page.
8970 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008971int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008972{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008973 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008974 struct inode *inode = file_inode(vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008975 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008976 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8977 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008978 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008979 char *kaddr;
8980 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008981 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008982 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008983 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308984 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008985 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008986 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308987 u64 end;
8988
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008989 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008990
Jan Karab2b5ef52012-06-12 16:20:45 +02008991 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008992 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008993 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308994 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008995
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308996 /*
8997 * Reserving delalloc space after obtaining the page lock can lead to
8998 * deadlock. For example, if a dirty page is locked by this function
8999 * and the call to btrfs_delalloc_reserve_space() ends up triggering
9000 * dirty page write out, then the btrfs_writepage() function could
9001 * end up waiting indefinitely to get a lock on the page currently
9002 * being processed by btrfs_page_mkwrite() function.
9003 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08009004 ret = btrfs_delalloc_reserve_space(inode, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309005 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009006 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04009007 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05009008 reserved = 1;
9009 }
Nick Piggin56a76f82009-03-31 15:23:23 -07009010 if (ret) {
9011 if (ret == -ENOMEM)
9012 ret = VM_FAULT_OOM;
9013 else /* -ENOSPC, -EIO, etc */
9014 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05009015 if (reserved)
9016 goto out;
9017 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07009018 }
Chris Mason1832a6d2007-12-21 16:27:21 -05009019
Nick Piggin56a76f82009-03-31 15:23:23 -07009020 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04009021again:
Chris Mason9ebefb182007-06-15 13:50:00 -04009022 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04009023 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04009024
Chris Mason9ebefb182007-06-15 13:50:00 -04009025 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04009026 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04009027 /* page got truncated out from underneath us */
9028 goto out_unlock;
9029 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009030 wait_on_page_writeback(page);
9031
David Sterbaff13db42015-12-03 14:30:40 +01009032 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009033 set_page_extent_mapped(page);
9034
Chris Masoneb84ae02008-07-17 13:53:27 -04009035 /*
9036 * we can't set the delalloc bits if there are pending ordered
9037 * extents. Drop our locks and wait for them to finish
9038 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309039 ordered = btrfs_lookup_ordered_range(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009040 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009041 unlock_extent_cached(io_tree, page_start, page_end,
9042 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009043 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04009044 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009045 btrfs_put_ordered_extent(ordered);
9046 goto again;
9047 }
9048
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009049 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04009050 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009051 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009052 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309053 end = page_start + reserved_space - 1;
9054 spin_lock(&BTRFS_I(inode)->lock);
9055 BTRFS_I(inode)->outstanding_extents++;
9056 spin_unlock(&BTRFS_I(inode)->lock);
9057 btrfs_delalloc_release_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009058 PAGE_SIZE - reserved_space);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309059 }
9060 }
9061
Josef Bacikfbf19082009-10-01 17:10:23 -04009062 /*
Liu Bo54160342016-12-13 12:15:19 -08009063 * page_mkwrite gets called when the page is firstly dirtied after it's
9064 * faulted in, but write(2) could also dirty a page and set delalloc
9065 * bits, thus in this case for space account reason, we still need to
9066 * clear any delalloc bits within this page range since we have to
9067 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04009068 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309069 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06009070 EXTENT_DIRTY | EXTENT_DELALLOC |
9071 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00009072 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04009073
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309074 ret = btrfs_set_extent_delalloc(inode, page_start, end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08009075 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009076 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009077 unlock_extent_cached(io_tree, page_start, page_end,
9078 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009079 ret = VM_FAULT_SIGBUS;
9080 goto out_unlock;
9081 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009082 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04009083
9084 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009085 if (page_start + PAGE_SIZE > size)
9086 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04009087 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009088 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009089
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009090 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009091 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009092 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009093 flush_dcache_page(page);
9094 kunmap(page);
9095 }
Chris Mason247e7432008-07-17 12:53:51 -04009096 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009097 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04009098 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04009099
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009100 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04009101 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06009102 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04009103
Josef Bacik2ac55d42010-02-03 19:33:23 +00009104 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04009105
9106out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02009107 if (!ret) {
9108 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04009109 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02009110 }
Chris Mason9ebefb182007-06-15 13:50:00 -04009111 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05009112out:
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309113 btrfs_delalloc_release_space(inode, page_start, reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009114out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02009115 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04009116 return ret;
9117}
9118
Josef Bacika41ad392011-01-31 15:30:16 -05009119static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04009120{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009121 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009122 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04009123 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04009124 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05009125 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009126 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009127 u64 mask = fs_info->sectorsize - 1;
9128 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04009129
Josef Bacik0ef8b722013-10-25 16:13:35 -04009130 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
9131 (u64)-1);
9132 if (ret)
9133 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009134
Josef Bacikfcb80c22011-05-03 10:40:22 -04009135 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04009136 * Yes ladies and gentlemen, this is indeed ugly. The fact is we have
Josef Bacikfcb80c22011-05-03 10:40:22 -04009137 * 3 things going on here
9138 *
9139 * 1) We need to reserve space for our orphan item and the space to
9140 * delete our orphan item. Lord knows we don't want to have a dangling
9141 * orphan item because we didn't reserve space to remove it.
9142 *
9143 * 2) We need to reserve space to update our inode.
9144 *
9145 * 3) We need to have something to cache all the space that is going to
9146 * be free'd up by the truncate operation, but also have some slack
9147 * space reserved in case it uses space during the truncate (thank you
9148 * very much snapshotting).
9149 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04009150 * And we need these to all be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04009151 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04009152 * we will use, so we need the truncate reservation to be separate so it
Josef Bacikfcb80c22011-05-03 10:40:22 -04009153 * doesn't end up using space reserved for updating the inode or
9154 * removing the orphan item. We also need to be able to stop the
9155 * transaction and start a new one, which means we need to be able to
9156 * update the inode several times, and we have no idea of knowing how
9157 * many times that will be, so we can't just reserve 1 item for the
Nicholas D Steeves01327612016-05-19 21:18:45 -04009158 * entirety of the operation, so that has to be done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04009159 * Then there is the orphan item, which does indeed need to be held on
9160 * to for the whole operation, and we need nobody to touch this reserved
9161 * space except the orphan code.
9162 *
9163 * So that leaves us with
9164 *
9165 * 1) root->orphan_block_rsv - for the orphan deletion.
9166 * 2) rsv - for the truncate reservation, which we will steal from the
9167 * transaction reservation.
9168 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
9169 * updating the inode.
9170 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009171 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009172 if (!rsv)
9173 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04009174 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009175 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05009176
Josef Bacik907cbce2011-08-08 13:46:15 -04009177 /*
Josef Bacik07127182011-08-19 10:29:59 -04009178 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009179 * 1 for updating the inode.
9180 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009181 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009182 if (IS_ERR(trans)) {
9183 err = PTR_ERR(trans);
9184 goto out;
9185 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009186
Josef Bacik907cbce2011-08-08 13:46:15 -04009187 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009188 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009189 min_size, 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009190 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009191
Chris Mason5a3f23d2009-03-31 13:27:11 -04009192 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009193 * So if we truncate and then write and fsync we normally would just
9194 * write the extents that changed, which is a problem if we need to
9195 * first truncate that entire inode. So set this flag so we write out
9196 * all of the extents in the inode to the sync log so we're completely
9197 * safe.
9198 */
9199 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009200 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009201
Yan, Zheng80825102009-11-12 09:35:36 +00009202 while (1) {
9203 ret = btrfs_truncate_inode_items(trans, root, inode,
9204 inode->i_size,
9205 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08009206 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05009207 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009208 break;
Josef Bacik3893e332011-01-31 16:03:11 -05009209 }
Chris Mason39279cc2007-06-12 06:35:45 -04009210
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009211 trans->block_rsv = &fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009212 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009213 if (ret) {
9214 err = ret;
9215 break;
9216 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04009217
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009218 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009219 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009220
9221 trans = btrfs_start_transaction(root, 2);
9222 if (IS_ERR(trans)) {
9223 ret = err = PTR_ERR(trans);
9224 trans = NULL;
9225 break;
9226 }
9227
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009228 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009229 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009230 rsv, min_size, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009231 BUG_ON(ret); /* shouldn't happen */
9232 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009233 }
9234
9235 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04009236 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009237 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009238 if (ret)
9239 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009240 }
9241
Chris Mason917c16b2011-11-08 14:49:59 -05009242 if (trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009243 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason917c16b2011-11-08 14:49:59 -05009244 ret = btrfs_update_inode(trans, root, inode);
9245 if (ret && !err)
9246 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04009247
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009248 ret = btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009249 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009250 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009251out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009252 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009253
Josef Bacik3893e332011-01-31 16:03:11 -05009254 if (ret && !err)
9255 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05009256
Josef Bacik3893e332011-01-31 16:03:11 -05009257 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009258}
9259
Sven Wegener3b963622008-06-09 21:57:42 -04009260/*
Chris Masond352ac62008-09-29 15:18:18 -04009261 * create a new subvolume directory/inode (helper for the ioctl).
9262 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009263int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009264 struct btrfs_root *new_root,
9265 struct btrfs_root *parent_root,
9266 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009267{
Chris Mason39279cc2007-06-12 06:35:45 -04009268 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009269 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009270 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009271
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009272 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9273 new_dirid, new_dirid,
9274 S_IFDIR | (~current_umask() & S_IRWXUGO),
9275 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009276 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009277 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009278 inode->i_op = &btrfs_dir_inode_operations;
9279 inode->i_fop = &btrfs_dir_file_operations;
9280
Miklos Szeredibfe86842011-10-28 14:13:29 +02009281 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04009282 btrfs_i_size_write(inode, 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009283 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009284
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009285 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9286 if (err)
9287 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009288 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009289 new_root->root_key.objectid, err);
9290
Yan, Zheng76dda932009-09-21 16:00:26 -04009291 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009292
Yan, Zheng76dda932009-09-21 16:00:26 -04009293 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009294 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009295}
9296
Chris Mason39279cc2007-06-12 06:35:45 -04009297struct inode *btrfs_alloc_inode(struct super_block *sb)
9298{
9299 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009300 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009301
9302 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
9303 if (!ei)
9304 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009305
9306 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009307 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009308 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009309 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009310 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009311 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009312 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009313 ei->disk_i_size = 0;
9314 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009315 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009316 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009317 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009318 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009319 ei->last_log_commit = 0;
David Sterba8089fe62015-11-19 14:15:51 +01009320 ei->delayed_iput_count = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009321
Josef Bacik9e0baf62011-07-15 15:16:44 +00009322 spin_lock_init(&ei->lock);
9323 ei->outstanding_extents = 0;
9324 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009325
Josef Bacik72ac3c02012-05-23 14:13:11 -04009326 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08009327 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009328
Miao Xie16cdcec2011-04-22 18:12:22 +08009329 ei->delayed_node = NULL;
9330
chandan r9cc97d62012-07-04 12:48:07 +05309331 ei->i_otime.tv_sec = 0;
9332 ei->i_otime.tv_nsec = 0;
9333
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009334 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009335 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02009336 extent_io_tree_init(&ei->io_tree, &inode->i_data);
9337 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009338 ei->io_tree.track_uptodate = 1;
9339 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009340 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009341 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009342 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009343 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009344 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009345 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009346 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009347 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009348
9349 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009350}
9351
Josef Bacikaaedb552013-10-11 14:44:09 -04009352#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9353void btrfs_test_destroy_inode(struct inode *inode)
9354{
9355 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
9356 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9357}
9358#endif
9359
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009360static void btrfs_i_callback(struct rcu_head *head)
9361{
9362 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009363 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9364}
9365
Chris Mason39279cc2007-06-12 06:35:45 -04009366void btrfs_destroy_inode(struct inode *inode)
9367{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009368 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009369 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009370 struct btrfs_root *root = BTRFS_I(inode)->root;
9371
Al Virob3d9b7a2012-06-09 13:51:19 -04009372 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009373 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009374 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9375 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009376 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
9377 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009378 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009379
Chris Mason5a3f23d2009-03-31 13:27:11 -04009380 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009381 * This can happen where we create an inode, but somebody else also
9382 * created the same inode and we need to destroy the one we already
9383 * created.
9384 */
9385 if (!root)
9386 goto free;
9387
Josef Bacik8a35d952012-05-23 14:26:42 -04009388 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9389 &BTRFS_I(inode)->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009390 btrfs_info(fs_info, "inode %llu still on the orphan list",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009391 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04009392 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009393 }
Josef Bacik7b128762008-07-24 12:17:14 -04009394
Chris Masond3977122009-01-05 21:25:51 -05009395 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009396 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9397 if (!ordered)
9398 break;
9399 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009400 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009401 "found ordered extent %llu %llu on inode cleanup",
9402 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009403 btrfs_remove_ordered_extent(inode, ordered);
9404 btrfs_put_ordered_extent(ordered);
9405 btrfs_put_ordered_extent(ordered);
9406 }
9407 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009408 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009409 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009410 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009411free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009412 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009413}
9414
Al Viro45321ac2010-06-07 13:43:19 -04009415int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009416{
9417 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009418
Naohiro Aota6379ef92013-06-06 09:56:34 +00009419 if (root == NULL)
9420 return 1;
9421
Liu Bofa6ac872013-02-20 14:10:23 +00009422 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009423 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009424 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009425 else
Al Viro45321ac2010-06-07 13:43:19 -04009426 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009427}
9428
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009429static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009430{
9431 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9432
9433 inode_init_once(&ei->vfs_inode);
9434}
9435
9436void btrfs_destroy_cachep(void)
9437{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009438 /*
9439 * Make sure all delayed rcu free inodes are flushed before we
9440 * destroy cache.
9441 */
9442 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009443 kmem_cache_destroy(btrfs_inode_cachep);
9444 kmem_cache_destroy(btrfs_trans_handle_cachep);
9445 kmem_cache_destroy(btrfs_transaction_cachep);
9446 kmem_cache_destroy(btrfs_path_cachep);
9447 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009448}
9449
9450int btrfs_init_cachep(void)
9451{
David Sterba837e1972012-09-07 03:00:48 -06009452 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009453 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009454 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9455 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009456 if (!btrfs_inode_cachep)
9457 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009458
David Sterba837e1972012-09-07 03:00:48 -06009459 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009460 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009461 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009462 if (!btrfs_trans_handle_cachep)
9463 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009464
David Sterba837e1972012-09-07 03:00:48 -06009465 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009466 sizeof(struct btrfs_transaction), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009467 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009468 if (!btrfs_transaction_cachep)
9469 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009470
David Sterba837e1972012-09-07 03:00:48 -06009471 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009472 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009473 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009474 if (!btrfs_path_cachep)
9475 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009476
David Sterba837e1972012-09-07 03:00:48 -06009477 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009478 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009479 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009480 if (!btrfs_free_space_cachep)
9481 goto fail;
9482
Chris Mason39279cc2007-06-12 06:35:45 -04009483 return 0;
9484fail:
9485 btrfs_destroy_cachep();
9486 return -ENOMEM;
9487}
9488
9489static int btrfs_getattr(struct vfsmount *mnt,
9490 struct dentry *dentry, struct kstat *stat)
9491{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009492 u64 delalloc_bytes;
David Howells2b0143b2015-03-17 22:25:59 +00009493 struct inode *inode = d_inode(dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009494 u32 blocksize = inode->i_sb->s_blocksize;
9495
Chris Mason39279cc2007-06-12 06:35:45 -04009496 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009497 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009498
9499 spin_lock(&BTRFS_I(inode)->lock);
9500 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
9501 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009502 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009503 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009504 return 0;
9505}
9506
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009507static int btrfs_rename_exchange(struct inode *old_dir,
9508 struct dentry *old_dentry,
9509 struct inode *new_dir,
9510 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009511{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009512 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009513 struct btrfs_trans_handle *trans;
9514 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009515 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009516 struct inode *new_inode = new_dentry->d_inode;
9517 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009518 struct timespec ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009519 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009520 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9521 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009522 u64 old_idx = 0;
9523 u64 new_idx = 0;
9524 u64 root_objectid;
9525 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009526 bool root_log_pinned = false;
9527 bool dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009528
9529 /* we only allow rename subvolume link between subvolumes */
9530 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9531 return -EXDEV;
9532
9533 /* close the race window with snapshot create/destroy ioctl */
9534 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009535 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009536 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009537 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009538
9539 /*
9540 * We want to reserve the absolute worst case amount of items. So if
9541 * both inodes are subvols and we need to unlink them then that would
9542 * require 4 item modifications, but if they are both normal inodes it
9543 * would require 5 item modifications, so we'll assume their normal
9544 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9545 * should cover the worst case number of items we'll modify.
9546 */
9547 trans = btrfs_start_transaction(root, 12);
9548 if (IS_ERR(trans)) {
9549 ret = PTR_ERR(trans);
9550 goto out_notrans;
9551 }
9552
9553 /*
9554 * We need to find a free sequence number both in the source and
9555 * in the destination directory for the exchange.
9556 */
9557 ret = btrfs_set_inode_index(new_dir, &old_idx);
9558 if (ret)
9559 goto out_fail;
9560 ret = btrfs_set_inode_index(old_dir, &new_idx);
9561 if (ret)
9562 goto out_fail;
9563
9564 BTRFS_I(old_inode)->dir_index = 0ULL;
9565 BTRFS_I(new_inode)->dir_index = 0ULL;
9566
9567 /* Reference for the source. */
9568 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9569 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009570 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009571 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009572 btrfs_pin_log_trans(root);
9573 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009574 ret = btrfs_insert_inode_ref(trans, dest,
9575 new_dentry->d_name.name,
9576 new_dentry->d_name.len,
9577 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009578 btrfs_ino(BTRFS_I(new_dir)),
9579 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009580 if (ret)
9581 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009582 }
9583
9584 /* And now for the dest. */
9585 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9586 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009587 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009588 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009589 btrfs_pin_log_trans(dest);
9590 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009591 ret = btrfs_insert_inode_ref(trans, root,
9592 old_dentry->d_name.name,
9593 old_dentry->d_name.len,
9594 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009595 btrfs_ino(BTRFS_I(old_dir)),
9596 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009597 if (ret)
9598 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009599 }
9600
9601 /* Update inode version and ctime/mtime. */
9602 inode_inc_iversion(old_dir);
9603 inode_inc_iversion(new_dir);
9604 inode_inc_iversion(old_inode);
9605 inode_inc_iversion(new_inode);
9606 old_dir->i_ctime = old_dir->i_mtime = ctime;
9607 new_dir->i_ctime = new_dir->i_mtime = ctime;
9608 old_inode->i_ctime = ctime;
9609 new_inode->i_ctime = ctime;
9610
9611 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009612 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9613 BTRFS_I(old_inode), 1);
9614 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9615 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009616 }
9617
9618 /* src is a subvolume */
9619 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9620 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9621 ret = btrfs_unlink_subvol(trans, root, old_dir,
9622 root_objectid,
9623 old_dentry->d_name.name,
9624 old_dentry->d_name.len);
9625 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009626 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9627 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009628 old_dentry->d_name.name,
9629 old_dentry->d_name.len);
9630 if (!ret)
9631 ret = btrfs_update_inode(trans, root, old_inode);
9632 }
9633 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009634 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009635 goto out_fail;
9636 }
9637
9638 /* dest is a subvolume */
9639 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9640 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
9641 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9642 root_objectid,
9643 new_dentry->d_name.name,
9644 new_dentry->d_name.len);
9645 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009646 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9647 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009648 new_dentry->d_name.name,
9649 new_dentry->d_name.len);
9650 if (!ret)
9651 ret = btrfs_update_inode(trans, dest, new_inode);
9652 }
9653 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009654 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009655 goto out_fail;
9656 }
9657
9658 ret = btrfs_add_link(trans, new_dir, old_inode,
9659 new_dentry->d_name.name,
9660 new_dentry->d_name.len, 0, old_idx);
9661 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009662 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009663 goto out_fail;
9664 }
9665
9666 ret = btrfs_add_link(trans, old_dir, new_inode,
9667 old_dentry->d_name.name,
9668 old_dentry->d_name.len, 0, new_idx);
9669 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009670 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009671 goto out_fail;
9672 }
9673
9674 if (old_inode->i_nlink == 1)
9675 BTRFS_I(old_inode)->dir_index = old_idx;
9676 if (new_inode->i_nlink == 1)
9677 BTRFS_I(new_inode)->dir_index = new_idx;
9678
Filipe Manana86e8aa02016-05-05 02:02:27 +01009679 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009680 parent = new_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009681 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9682 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009683 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009684 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009685 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009686 if (dest_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009687 parent = old_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009688 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9689 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009690 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009691 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009692 }
9693out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009694 /*
9695 * If we have pinned a log and an error happened, we unpin tasks
9696 * trying to sync the log and force them to fallback to a transaction
9697 * commit if the log currently contains any of the inodes involved in
9698 * this rename operation (to ensure we do not persist a log with an
9699 * inconsistent state for any of these inodes or leading to any
9700 * inconsistencies when replayed). If the transaction was aborted, the
9701 * abortion reason is propagated to userspace when attempting to commit
9702 * the transaction. If the log does not contain any of these inodes, we
9703 * allow the tasks to sync it.
9704 */
9705 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009706 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9707 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9708 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009709 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009710 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009711 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009712
9713 if (root_log_pinned) {
9714 btrfs_end_log_trans(root);
9715 root_log_pinned = false;
9716 }
9717 if (dest_log_pinned) {
9718 btrfs_end_log_trans(dest);
9719 dest_log_pinned = false;
9720 }
9721 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009722 ret = btrfs_end_transaction(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009723out_notrans:
9724 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009725 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009726 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009727 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009728
9729 return ret;
9730}
9731
9732static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9733 struct btrfs_root *root,
9734 struct inode *dir,
9735 struct dentry *dentry)
9736{
9737 int ret;
9738 struct inode *inode;
9739 u64 objectid;
9740 u64 index;
9741
9742 ret = btrfs_find_free_ino(root, &objectid);
9743 if (ret)
9744 return ret;
9745
9746 inode = btrfs_new_inode(trans, root, dir,
9747 dentry->d_name.name,
9748 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009749 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009750 objectid,
9751 S_IFCHR | WHITEOUT_MODE,
9752 &index);
9753
9754 if (IS_ERR(inode)) {
9755 ret = PTR_ERR(inode);
9756 return ret;
9757 }
9758
9759 inode->i_op = &btrfs_special_inode_operations;
9760 init_special_inode(inode, inode->i_mode,
9761 WHITEOUT_DEV);
9762
9763 ret = btrfs_init_inode_security(trans, inode, dir,
9764 &dentry->d_name);
9765 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009766 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009767
9768 ret = btrfs_add_nondir(trans, dir, dentry,
9769 inode, 0, index);
9770 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009771 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009772
9773 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009774out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009775 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009776 if (ret)
9777 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009778 iput(inode);
9779
Filipe Mananac9901612016-05-05 01:41:57 +01009780 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009781}
9782
Chris Mason39279cc2007-06-12 06:35:45 -04009783static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009784 struct inode *new_dir, struct dentry *new_dentry,
9785 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009786{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009787 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009788 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009789 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009790 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9791 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009792 struct inode *new_inode = d_inode(new_dentry);
9793 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009794 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009795 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009796 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009797 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009798 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009799
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009800 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009801 return -EPERM;
9802
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009803 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009804 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009805 return -EXDEV;
9806
Li Zefan33345d012011-04-20 10:31:50 +08009807 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009808 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009809 return -ENOTEMPTY;
9810
Chris Mason39279cc2007-06-12 06:35:45 -04009811 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009812 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009813 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009814
9815
9816 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009817 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009818 new_dentry->d_name.name,
9819 new_dentry->d_name.len);
9820
9821 if (ret) {
9822 if (ret == -EEXIST) {
9823 /* we shouldn't get
9824 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309825 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009826 return ret;
9827 }
9828 } else {
9829 /* maybe -EOVERFLOW */
9830 return ret;
9831 }
9832 }
9833 ret = 0;
9834
Chris Mason5a3f23d2009-03-31 13:27:11 -04009835 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009836 * we're using rename to replace one file with another. Start IO on it
9837 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009838 */
Chris Mason8d875f92014-08-12 10:47:42 -07009839 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009840 filemap_flush(old_inode->i_mapping);
9841
Yan, Zheng76dda932009-09-21 16:00:26 -04009842 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009843 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009844 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009845 /*
9846 * We want to reserve the absolute worst case amount of items. So if
9847 * both inodes are subvols and we need to unlink them then that would
9848 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009849 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009850 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9851 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009852 * If our rename has the whiteout flag, we need more 5 units for the
9853 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9854 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009855 */
Filipe Manana5062af32016-05-05 10:26:26 +01009856 trans_num_items = 11;
9857 if (flags & RENAME_WHITEOUT)
9858 trans_num_items += 5;
9859 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009860 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009861 ret = PTR_ERR(trans);
9862 goto out_notrans;
9863 }
Chris Mason5f39d392007-10-15 16:14:19 -04009864
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009865 if (dest != root)
9866 btrfs_record_root_in_trans(trans, dest);
9867
Yan, Zhenga5719522009-09-24 09:17:31 -04009868 ret = btrfs_set_inode_index(new_dir, &index);
9869 if (ret)
9870 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009871
Miao Xie67de1172013-12-26 13:07:06 +08009872 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009873 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009874 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009875 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009876 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009877 btrfs_pin_log_trans(root);
9878 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009879 ret = btrfs_insert_inode_ref(trans, dest,
9880 new_dentry->d_name.name,
9881 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009882 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009883 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009884 if (ret)
9885 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009886 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009887
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009888 inode_inc_iversion(old_dir);
9889 inode_inc_iversion(new_dir);
9890 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009891 old_dir->i_ctime = old_dir->i_mtime =
9892 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009893 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009894
Chris Mason12fcfd22009-03-24 10:24:20 -04009895 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009896 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9897 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009898
Li Zefan33345d012011-04-20 10:31:50 +08009899 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009900 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9901 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9902 old_dentry->d_name.name,
9903 old_dentry->d_name.len);
9904 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009905 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9906 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009907 old_dentry->d_name.name,
9908 old_dentry->d_name.len);
9909 if (!ret)
9910 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009911 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009912 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009913 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009914 goto out_fail;
9915 }
Chris Mason39279cc2007-06-12 06:35:45 -04009916
9917 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009918 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009919 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009920 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009921 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9922 root_objectid = BTRFS_I(new_inode)->location.objectid;
9923 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9924 root_objectid,
9925 new_dentry->d_name.name,
9926 new_dentry->d_name.len);
9927 BUG_ON(new_inode->i_nlink == 0);
9928 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009929 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9930 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009931 new_dentry->d_name.name,
9932 new_dentry->d_name.len);
9933 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009934 if (!ret && new_inode->i_nlink == 0)
David Howells2b0143b2015-03-17 22:25:59 +00009935 ret = btrfs_orphan_add(trans, d_inode(new_dentry));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009936 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009937 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009938 goto out_fail;
9939 }
Chris Mason39279cc2007-06-12 06:35:45 -04009940 }
Josef Bacikaec74772008-07-24 12:12:38 -04009941
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009942 ret = btrfs_add_link(trans, new_dir, old_inode,
9943 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009944 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009945 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009946 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009947 goto out_fail;
9948 }
Chris Mason39279cc2007-06-12 06:35:45 -04009949
Miao Xie67de1172013-12-26 13:07:06 +08009950 if (old_inode->i_nlink == 1)
9951 BTRFS_I(old_inode)->dir_index = index;
9952
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009953 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009954 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009955
David Sterbaf85b7372017-01-20 14:54:07 +01009956 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9957 parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009958 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009959 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009960 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009961
9962 if (flags & RENAME_WHITEOUT) {
9963 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9964 old_dentry);
9965
9966 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009967 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009968 goto out_fail;
9969 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009970 }
Chris Mason39279cc2007-06-12 06:35:45 -04009971out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009972 /*
9973 * If we have pinned the log and an error happened, we unpin tasks
9974 * trying to sync the log and force them to fallback to a transaction
9975 * commit if the log currently contains any of the inodes involved in
9976 * this rename operation (to ensure we do not persist a log with an
9977 * inconsistent state for any of these inodes or leading to any
9978 * inconsistencies when replayed). If the transaction was aborted, the
9979 * abortion reason is propagated to userspace when attempting to commit
9980 * the transaction. If the log does not contain any of these inodes, we
9981 * allow the tasks to sync it.
9982 */
9983 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009984 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9985 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9986 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009987 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009988 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009989 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009990
9991 btrfs_end_log_trans(root);
9992 log_pinned = false;
9993 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009994 btrfs_end_transaction(trans);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009995out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009996 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009997 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009998
Chris Mason39279cc2007-06-12 06:35:45 -04009999 return ret;
10000}
10001
Miklos Szeredi80ace852014-07-23 15:15:32 +020010002static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
10003 struct inode *new_dir, struct dentry *new_dentry,
10004 unsigned int flags)
10005{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010006 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +020010007 return -EINVAL;
10008
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010009 if (flags & RENAME_EXCHANGE)
10010 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
10011 new_dentry);
10012
10013 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +020010014}
10015
Miao Xie8ccf6f192012-10-25 09:28:04 +000010016static void btrfs_run_delalloc_work(struct btrfs_work *work)
10017{
10018 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -040010019 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010020
10021 delalloc_work = container_of(work, struct btrfs_delalloc_work,
10022 work);
Josef Bacik9f23e282013-10-28 15:03:41 -040010023 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +010010024 filemap_flush(inode->i_mapping);
10025 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
10026 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -040010027 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010028
10029 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -040010030 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010031 else
Josef Bacik9f23e282013-10-28 15:03:41 -040010032 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010033 complete(&delalloc_work->completion);
10034}
10035
10036struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
David Sterba651d4942015-11-27 19:24:16 +010010037 int delay_iput)
Miao Xie8ccf6f192012-10-25 09:28:04 +000010038{
10039 struct btrfs_delalloc_work *work;
10040
David Sterba100d5702015-12-08 14:39:32 +010010041 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010042 if (!work)
10043 return NULL;
10044
10045 init_completion(&work->completion);
10046 INIT_LIST_HEAD(&work->list);
10047 work->inode = inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010048 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +080010049 WARN_ON_ONCE(!inode);
10050 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
10051 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010052
10053 return work;
10054}
10055
10056void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
10057{
10058 wait_for_completion(&work->completion);
David Sterba100d5702015-12-08 14:39:32 +010010059 kfree(work);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010060}
10061
Chris Masond352ac62008-09-29 15:18:18 -040010062/*
10063 * some fairly slow code that needs optimization. This walks the list
10064 * of all the inodes with pending delalloc and forces them to disk.
10065 */
Miao Xie6c255e62014-03-06 13:55:01 +080010066static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
10067 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -040010068{
Chris Masonea8c2812008-08-04 23:17:27 -040010069 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010070 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010071 struct btrfs_delalloc_work *work, *next;
10072 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +000010073 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010074 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -040010075
Miao Xie8ccf6f192012-10-25 09:28:04 +000010076 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010077 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +000010078
Miao Xie573bfb72014-03-06 13:55:03 +080010079 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010080 spin_lock(&root->delalloc_lock);
10081 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010082 while (!list_empty(&splice)) {
10083 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -040010084 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010085
Miao Xieeb73c1b2013-05-15 07:48:22 +000010086 list_move_tail(&binode->delalloc_inodes,
10087 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010088 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +000010089 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010090 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010091 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +000010092 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010093 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010094
David Sterba651d4942015-11-27 19:24:16 +010010095 work = btrfs_alloc_delalloc_work(inode, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +020010096 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -040010097 if (delay_iput)
10098 btrfs_add_delayed_iput(inode);
10099 else
10100 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010101 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010102 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010103 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010104 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010105 btrfs_queue_work(root->fs_info->flush_workers,
10106 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010107 ret++;
10108 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010109 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010110 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010111 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010112 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010113 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010114
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010115out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010116 list_for_each_entry_safe(work, next, &works, list) {
10117 list_del_init(&work->list);
10118 btrfs_wait_and_free_delalloc_work(work);
10119 }
10120
Miao Xieeb73c1b2013-05-15 07:48:22 +000010121 if (!list_empty_careful(&splice)) {
10122 spin_lock(&root->delalloc_lock);
10123 list_splice_tail(&splice, &root->delalloc_inodes);
10124 spin_unlock(&root->delalloc_lock);
10125 }
Miao Xie573bfb72014-03-06 13:55:03 +080010126 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010127 return ret;
10128}
10129
10130int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
10131{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010132 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010133 int ret;
10134
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010135 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010136 return -EROFS;
10137
Miao Xie6c255e62014-03-06 13:55:01 +080010138 ret = __start_delalloc_inodes(root, delay_iput, -1);
10139 if (ret > 0)
10140 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010141 /*
10142 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -040010143 * we have to make sure the IO is actually started and that
10144 * ordered extents get created before we return
10145 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010146 atomic_inc(&fs_info->async_submit_draining);
10147 while (atomic_read(&fs_info->nr_async_submits) ||
10148 atomic_read(&fs_info->async_delalloc_pages)) {
10149 wait_event(fs_info->async_submit_wait,
10150 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10151 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -040010152 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010153 atomic_dec(&fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010154 return ret;
10155}
10156
Miao Xie6c255e62014-03-06 13:55:01 +080010157int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
10158 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010159{
10160 struct btrfs_root *root;
10161 struct list_head splice;
10162 int ret;
10163
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010164 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010165 return -EROFS;
10166
10167 INIT_LIST_HEAD(&splice);
10168
Miao Xie573bfb72014-03-06 13:55:03 +080010169 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010170 spin_lock(&fs_info->delalloc_root_lock);
10171 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010172 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010173 root = list_first_entry(&splice, struct btrfs_root,
10174 delalloc_root);
10175 root = btrfs_grab_fs_root(root);
10176 BUG_ON(!root);
10177 list_move_tail(&root->delalloc_root,
10178 &fs_info->delalloc_roots);
10179 spin_unlock(&fs_info->delalloc_root_lock);
10180
Miao Xie6c255e62014-03-06 13:55:01 +080010181 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010182 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010183 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010184 goto out;
10185
Miao Xie6c255e62014-03-06 13:55:01 +080010186 if (nr != -1) {
10187 nr -= ret;
10188 WARN_ON(nr < 0);
10189 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010190 spin_lock(&fs_info->delalloc_root_lock);
10191 }
10192 spin_unlock(&fs_info->delalloc_root_lock);
10193
Miao Xie6c255e62014-03-06 13:55:01 +080010194 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010195 atomic_inc(&fs_info->async_submit_draining);
10196 while (atomic_read(&fs_info->nr_async_submits) ||
10197 atomic_read(&fs_info->async_delalloc_pages)) {
10198 wait_event(fs_info->async_submit_wait,
10199 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10200 atomic_read(&fs_info->async_delalloc_pages) == 0));
10201 }
10202 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010203out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010204 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010205 spin_lock(&fs_info->delalloc_root_lock);
10206 list_splice_tail(&splice, &fs_info->delalloc_roots);
10207 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010208 }
Miao Xie573bfb72014-03-06 13:55:03 +080010209 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010210 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010211}
10212
Chris Mason39279cc2007-06-12 06:35:45 -040010213static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10214 const char *symname)
10215{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010216 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010217 struct btrfs_trans_handle *trans;
10218 struct btrfs_root *root = BTRFS_I(dir)->root;
10219 struct btrfs_path *path;
10220 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010221 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010222 int err;
10223 int drop_inode = 0;
10224 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010225 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010226 int name_len;
10227 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010228 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010229 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010230 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010231
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010232 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010233 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010234 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010235
Josef Bacik9ed74f22009-09-11 16:12:44 -040010236 /*
10237 * 2 items for inode item and ref
10238 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010239 * 1 item for updating parent inode item
10240 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010241 * 1 item for xattr if selinux is on
10242 */
Filipe Manana9269d122015-12-31 18:16:29 +000010243 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010244 if (IS_ERR(trans))
10245 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010246
Li Zefan581bb052011-04-20 10:06:11 +080010247 err = btrfs_find_free_ino(root, &objectid);
10248 if (err)
10249 goto out_unlock;
10250
Josef Bacikaec74772008-07-24 12:12:38 -040010251 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010252 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10253 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010254 if (IS_ERR(inode)) {
10255 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010256 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010257 }
Chris Mason39279cc2007-06-12 06:35:45 -040010258
Casey Schauflerad19db72011-12-15 10:09:07 -050010259 /*
10260 * If the active LSM wants to access the inode during
10261 * d_instantiate it needs these. Smack checks to see
10262 * if the filesystem supports xattrs by looking at the
10263 * ops vector.
10264 */
10265 inode->i_fop = &btrfs_file_operations;
10266 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010267 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010268 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10269
10270 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10271 if (err)
10272 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -050010273
Chris Mason39279cc2007-06-12 06:35:45 -040010274 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010275 if (!path) {
10276 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -070010277 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010278 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010279 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010280 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010281 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010282 datasize = btrfs_file_extent_calc_inline_size(name_len);
10283 err = btrfs_insert_empty_item(trans, root, path, &key,
10284 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010285 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010286 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -070010287 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -040010288 }
Chris Mason5f39d392007-10-15 16:14:19 -040010289 leaf = path->nodes[0];
10290 ei = btrfs_item_ptr(leaf, path->slots[0],
10291 struct btrfs_file_extent_item);
10292 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10293 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010294 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010295 btrfs_set_file_extent_encryption(leaf, ei, 0);
10296 btrfs_set_file_extent_compression(leaf, ei, 0);
10297 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10298 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10299
Chris Mason39279cc2007-06-12 06:35:45 -040010300 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010301 write_extent_buffer(leaf, symname, ptr, name_len);
10302 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010303 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010304
Chris Mason39279cc2007-06-12 06:35:45 -040010305 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010306 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010307 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010308 inode_set_bytes(inode, name_len);
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010309 btrfs_i_size_write(inode, name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010310 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010311 /*
10312 * Last step, add directory indexes for our symlink inode. This is the
10313 * last step to avoid extra cleanup of these indexes if an error happens
10314 * elsewhere above.
10315 */
10316 if (!err)
10317 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -070010318 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -040010319 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -070010320 goto out_unlock_inode;
10321 }
10322
10323 unlock_new_inode(inode);
10324 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010325
10326out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010327 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -040010328 if (drop_inode) {
10329 inode_dec_link_count(inode);
10330 iput(inode);
10331 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010332 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010333 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -070010334
10335out_unlock_inode:
10336 drop_inode = 1;
10337 unlock_new_inode(inode);
10338 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -040010339}
Chris Mason16432982008-04-10 10:23:21 -040010340
Josef Bacik0af3d002010-06-21 14:48:16 -040010341static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10342 u64 start, u64 num_bytes, u64 min_size,
10343 loff_t actual_len, u64 *alloc_hint,
10344 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010345{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010346 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010347 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10348 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010349 struct btrfs_root *root = BTRFS_I(inode)->root;
10350 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010351 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010352 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010353 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010354 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010355 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010356 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010357 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010358
Josef Bacik0af3d002010-06-21 14:48:16 -040010359 if (trans)
10360 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010361 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010362 if (own_trans) {
10363 trans = btrfs_start_transaction(root, 3);
10364 if (IS_ERR(trans)) {
10365 ret = PTR_ERR(trans);
10366 break;
10367 }
Yan Zhengd899e052008-10-30 14:25:28 -040010368 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010369
Byongho Leeee221842015-12-15 01:42:10 +090010370 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010371 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010372 /*
10373 * If we are severely fragmented we could end up with really
10374 * small allocations, so if the allocator is returning small
10375 * chunks lets make its job easier by only searching for those
10376 * sized chunks.
10377 */
10378 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010379 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10380 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010381 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010382 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010383 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010384 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010385 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010386 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010387
Josef Bacik0b670dc2015-09-23 17:11:16 -040010388 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010389 ret = insert_reserved_file_extent(trans, inode,
10390 cur_offset, ins.objectid,
10391 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010392 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010393 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010394 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010395 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010396 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010397 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010398 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010399 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010400 break;
10401 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010402
Chris Masona1ed8352009-09-11 12:27:37 -040010403 btrfs_drop_extent_cache(inode, cur_offset,
10404 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010405
Josef Bacik5dc562c2012-08-17 13:14:17 -040010406 em = alloc_extent_map();
10407 if (!em) {
10408 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10409 &BTRFS_I(inode)->runtime_flags);
10410 goto next;
10411 }
10412
10413 em->start = cur_offset;
10414 em->orig_start = cur_offset;
10415 em->len = ins.offset;
10416 em->block_start = ins.objectid;
10417 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010418 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010419 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010420 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010421 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10422 em->generation = trans->transid;
10423
10424 while (1) {
10425 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010426 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010427 write_unlock(&em_tree->lock);
10428 if (ret != -EEXIST)
10429 break;
10430 btrfs_drop_extent_cache(inode, cur_offset,
10431 cur_offset + ins.offset - 1,
10432 0);
10433 }
10434 free_extent_map(em);
10435next:
Yan Zhengd899e052008-10-30 14:25:28 -040010436 num_bytes -= ins.offset;
10437 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010438 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010439
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010440 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010441 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010442 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010443 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010444 (actual_len > inode->i_size) &&
10445 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010446 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010447 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010448 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010449 i_size = cur_offset;
10450 i_size_write(inode, i_size);
10451 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010452 }
10453
Yan Zhengd899e052008-10-30 14:25:28 -040010454 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010455
10456 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010457 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010458 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010459 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010460 break;
10461 }
Yan Zhengd899e052008-10-30 14:25:28 -040010462
Josef Bacik0af3d002010-06-21 14:48:16 -040010463 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010464 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010465 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010466 if (cur_offset < end)
10467 btrfs_free_reserved_data_space(inode, cur_offset,
10468 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010469 return ret;
10470}
10471
Josef Bacik0af3d002010-06-21 14:48:16 -040010472int btrfs_prealloc_file_range(struct inode *inode, int mode,
10473 u64 start, u64 num_bytes, u64 min_size,
10474 loff_t actual_len, u64 *alloc_hint)
10475{
10476 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10477 min_size, actual_len, alloc_hint,
10478 NULL);
10479}
10480
10481int btrfs_prealloc_file_range_trans(struct inode *inode,
10482 struct btrfs_trans_handle *trans, int mode,
10483 u64 start, u64 num_bytes, u64 min_size,
10484 loff_t actual_len, u64 *alloc_hint)
10485{
10486 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10487 min_size, actual_len, alloc_hint, trans);
10488}
10489
Chris Masone6dcd2d2008-07-17 12:53:50 -040010490static int btrfs_set_page_dirty(struct page *page)
10491{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010492 return __set_page_dirty_nobuffers(page);
10493}
10494
Al Viro10556cb22011-06-20 19:28:19 -040010495static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010496{
Li Zefanb83cc962010-12-20 16:04:08 +080010497 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010498 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010499
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010500 if (mask & MAY_WRITE &&
10501 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10502 if (btrfs_root_readonly(root))
10503 return -EROFS;
10504 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10505 return -EACCES;
10506 }
Al Viro2830ba72011-06-20 19:16:29 -040010507 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010508}
Chris Mason39279cc2007-06-12 06:35:45 -040010509
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010510static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10511{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010512 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010513 struct btrfs_trans_handle *trans;
10514 struct btrfs_root *root = BTRFS_I(dir)->root;
10515 struct inode *inode = NULL;
10516 u64 objectid;
10517 u64 index;
10518 int ret = 0;
10519
10520 /*
10521 * 5 units required for adding orphan entry
10522 */
10523 trans = btrfs_start_transaction(root, 5);
10524 if (IS_ERR(trans))
10525 return PTR_ERR(trans);
10526
10527 ret = btrfs_find_free_ino(root, &objectid);
10528 if (ret)
10529 goto out;
10530
10531 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010532 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010533 if (IS_ERR(inode)) {
10534 ret = PTR_ERR(inode);
10535 inode = NULL;
10536 goto out;
10537 }
10538
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010539 inode->i_fop = &btrfs_file_operations;
10540 inode->i_op = &btrfs_file_inode_operations;
10541
10542 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010543 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10544
Chris Masonb0d5d102014-09-08 13:08:51 -070010545 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10546 if (ret)
10547 goto out_inode;
10548
10549 ret = btrfs_update_inode(trans, root, inode);
10550 if (ret)
10551 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010552 ret = btrfs_orphan_add(trans, inode);
10553 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -070010554 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010555
Filipe Manana5762b5c2014-08-01 00:10:32 +010010556 /*
10557 * We set number of links to 0 in btrfs_new_inode(), and here we set
10558 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10559 * through:
10560 *
10561 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10562 */
10563 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -070010564 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010565 d_tmpfile(dentry, inode);
10566 mark_inode_dirty(inode);
10567
10568out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010569 btrfs_end_transaction(trans);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010570 if (ret)
10571 iput(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010572 btrfs_balance_delayed_items(fs_info);
10573 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010574 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -070010575
10576out_inode:
10577 unlock_new_inode(inode);
10578 goto out;
10579
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010580}
10581
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010582static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010583 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010584 .lookup = btrfs_lookup,
10585 .create = btrfs_create,
10586 .unlink = btrfs_unlink,
10587 .link = btrfs_link,
10588 .mkdir = btrfs_mkdir,
10589 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010590 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010591 .symlink = btrfs_symlink,
10592 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010593 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010594 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010595 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010596 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010597 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010598 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010599 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010600};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010601static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010602 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010603 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010604 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010605};
Yan, Zheng76dda932009-09-21 16:00:26 -040010606
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010607static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010608 .llseek = generic_file_llseek,
10609 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010610 .iterate_shared = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010611 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010612#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010613 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010614#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010615 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010616 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010617};
10618
David Sterba20e55062015-11-19 11:42:28 +010010619static const struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -040010620 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -050010621 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -040010622 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010623 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010624 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010625 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010626 .set_bit_hook = btrfs_set_bit_hook,
10627 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010628 .merge_extent_hook = btrfs_merge_extent_hook,
10629 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010630};
10631
Chris Mason35054392009-01-21 13:11:13 -050010632/*
10633 * btrfs doesn't support the bmap operation because swapfiles
10634 * use bmap to make a mapping of extents in the file. They assume
10635 * these extents won't change over the life of the file and they
10636 * use the bmap result to do IO directly to the drive.
10637 *
10638 * the btrfs bmap call would return logical addresses that aren't
10639 * suitable for IO and they also will change frequently as COW
10640 * operations happen. So, swapfile + btrfs == corruption.
10641 *
10642 * For now we're avoiding this by dropping bmap.
10643 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010644static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010645 .readpage = btrfs_readpage,
10646 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010647 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010648 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010649 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010650 .invalidatepage = btrfs_invalidatepage,
10651 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010652 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010653 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010654};
10655
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010656static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010657 .readpage = btrfs_readpage,
10658 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010659 .invalidatepage = btrfs_invalidatepage,
10660 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010661};
10662
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010663static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010664 .getattr = btrfs_getattr,
10665 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010666 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010667 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010668 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010669 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010670 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010671 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010672};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010673static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010674 .getattr = btrfs_getattr,
10675 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010676 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010677 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010678 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010679 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010680 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010681};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010682static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010683 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010684 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010685 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010686 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010687 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010688 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010689};
Yan, Zheng76dda932009-09-21 16:00:26 -040010690
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010691const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010692 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010693 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010694};