blob: 893ea924e4405334c5021c2422aa815d3c9d2880 [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,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002185 btrfs_ino(BTRFS_I(inode)), file_pos,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002186 ram_bytes, &ins);
Qu Wenruo297d7502015-09-08 17:08:37 +08002187 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002188 * Release the reserved range from inode dirty range map, as it is
2189 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002190 */
2191 btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002192out:
Yan Zhengd899e052008-10-30 14:25:28 -04002193 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002194
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002195 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002196}
2197
Liu Bo38c227d2013-01-29 03:18:40 +00002198/* snapshot-aware defrag */
2199struct sa_defrag_extent_backref {
2200 struct rb_node node;
2201 struct old_sa_defrag_extent *old;
2202 u64 root_id;
2203 u64 inum;
2204 u64 file_pos;
2205 u64 extent_offset;
2206 u64 num_bytes;
2207 u64 generation;
2208};
2209
2210struct old_sa_defrag_extent {
2211 struct list_head list;
2212 struct new_sa_defrag_extent *new;
2213
2214 u64 extent_offset;
2215 u64 bytenr;
2216 u64 offset;
2217 u64 len;
2218 int count;
2219};
2220
2221struct new_sa_defrag_extent {
2222 struct rb_root root;
2223 struct list_head head;
2224 struct btrfs_path *path;
2225 struct inode *inode;
2226 u64 file_pos;
2227 u64 len;
2228 u64 bytenr;
2229 u64 disk_len;
2230 u8 compress_type;
2231};
2232
2233static int backref_comp(struct sa_defrag_extent_backref *b1,
2234 struct sa_defrag_extent_backref *b2)
2235{
2236 if (b1->root_id < b2->root_id)
2237 return -1;
2238 else if (b1->root_id > b2->root_id)
2239 return 1;
2240
2241 if (b1->inum < b2->inum)
2242 return -1;
2243 else if (b1->inum > b2->inum)
2244 return 1;
2245
2246 if (b1->file_pos < b2->file_pos)
2247 return -1;
2248 else if (b1->file_pos > b2->file_pos)
2249 return 1;
2250
2251 /*
2252 * [------------------------------] ===> (a range of space)
2253 * |<--->| |<---->| =============> (fs/file tree A)
2254 * |<---------------------------->| ===> (fs/file tree B)
2255 *
2256 * A range of space can refer to two file extents in one tree while
2257 * refer to only one file extent in another tree.
2258 *
2259 * So we may process a disk offset more than one time(two extents in A)
2260 * and locate at the same extent(one extent in B), then insert two same
2261 * backrefs(both refer to the extent in B).
2262 */
2263 return 0;
2264}
2265
2266static void backref_insert(struct rb_root *root,
2267 struct sa_defrag_extent_backref *backref)
2268{
2269 struct rb_node **p = &root->rb_node;
2270 struct rb_node *parent = NULL;
2271 struct sa_defrag_extent_backref *entry;
2272 int ret;
2273
2274 while (*p) {
2275 parent = *p;
2276 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2277
2278 ret = backref_comp(backref, entry);
2279 if (ret < 0)
2280 p = &(*p)->rb_left;
2281 else
2282 p = &(*p)->rb_right;
2283 }
2284
2285 rb_link_node(&backref->node, parent, p);
2286 rb_insert_color(&backref->node, root);
2287}
2288
2289/*
2290 * Note the backref might has changed, and in this case we just return 0.
2291 */
2292static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2293 void *ctx)
2294{
2295 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002296 struct old_sa_defrag_extent *old = ctx;
2297 struct new_sa_defrag_extent *new = old->new;
2298 struct btrfs_path *path = new->path;
2299 struct btrfs_key key;
2300 struct btrfs_root *root;
2301 struct sa_defrag_extent_backref *backref;
2302 struct extent_buffer *leaf;
2303 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002304 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002305 int slot;
2306 int ret;
2307 u64 extent_offset;
2308 u64 num_bytes;
2309
2310 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002311 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002312 return 0;
2313
2314 key.objectid = root_id;
2315 key.type = BTRFS_ROOT_ITEM_KEY;
2316 key.offset = (u64)-1;
2317
Liu Bo38c227d2013-01-29 03:18:40 +00002318 root = btrfs_read_fs_root_no_name(fs_info, &key);
2319 if (IS_ERR(root)) {
2320 if (PTR_ERR(root) == -ENOENT)
2321 return 0;
2322 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002323 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002324 inum, offset, root_id);
2325 return PTR_ERR(root);
2326 }
2327
2328 key.objectid = inum;
2329 key.type = BTRFS_EXTENT_DATA_KEY;
2330 if (offset > (u64)-1 << 32)
2331 key.offset = 0;
2332 else
2333 key.offset = offset;
2334
2335 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302336 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002337 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002338 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002339
2340 while (1) {
2341 cond_resched();
2342
2343 leaf = path->nodes[0];
2344 slot = path->slots[0];
2345
2346 if (slot >= btrfs_header_nritems(leaf)) {
2347 ret = btrfs_next_leaf(root, path);
2348 if (ret < 0) {
2349 goto out;
2350 } else if (ret > 0) {
2351 ret = 0;
2352 goto out;
2353 }
2354 continue;
2355 }
2356
2357 path->slots[0]++;
2358
2359 btrfs_item_key_to_cpu(leaf, &key, slot);
2360
2361 if (key.objectid > inum)
2362 goto out;
2363
2364 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2365 continue;
2366
2367 extent = btrfs_item_ptr(leaf, slot,
2368 struct btrfs_file_extent_item);
2369
2370 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2371 continue;
2372
Liu Boe68afa42013-07-01 22:13:26 +08002373 /*
2374 * 'offset' refers to the exact key.offset,
2375 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2376 * (key.offset - extent_offset).
2377 */
2378 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002379 continue;
2380
Liu Boe68afa42013-07-01 22:13:26 +08002381 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002382 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002383
Liu Bo38c227d2013-01-29 03:18:40 +00002384 if (extent_offset >= old->extent_offset + old->offset +
2385 old->len || extent_offset + num_bytes <=
2386 old->extent_offset + old->offset)
2387 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002388 break;
2389 }
2390
2391 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2392 if (!backref) {
2393 ret = -ENOENT;
2394 goto out;
2395 }
2396
2397 backref->root_id = root_id;
2398 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002399 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002400 backref->num_bytes = num_bytes;
2401 backref->extent_offset = extent_offset;
2402 backref->generation = btrfs_file_extent_generation(leaf, extent);
2403 backref->old = old;
2404 backref_insert(&new->root, backref);
2405 old->count++;
2406out:
2407 btrfs_release_path(path);
2408 WARN_ON(ret);
2409 return ret;
2410}
2411
2412static noinline bool record_extent_backrefs(struct btrfs_path *path,
2413 struct new_sa_defrag_extent *new)
2414{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002415 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002416 struct old_sa_defrag_extent *old, *tmp;
2417 int ret;
2418
2419 new->path = path;
2420
2421 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002422 ret = iterate_inodes_from_logical(old->bytenr +
2423 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002424 path, record_one_backref,
2425 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002426 if (ret < 0 && ret != -ENOENT)
2427 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002428
2429 /* no backref to be processed for this extent */
2430 if (!old->count) {
2431 list_del(&old->list);
2432 kfree(old);
2433 }
2434 }
2435
2436 if (list_empty(&new->head))
2437 return false;
2438
2439 return true;
2440}
2441
2442static int relink_is_mergable(struct extent_buffer *leaf,
2443 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002444 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002445{
Liu Bo116e0022013-08-02 16:30:40 +08002446 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002447 return 0;
2448
2449 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2450 return 0;
2451
Liu Bo116e0022013-08-02 16:30:40 +08002452 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2453 return 0;
2454
2455 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002456 btrfs_file_extent_other_encoding(leaf, fi))
2457 return 0;
2458
2459 return 1;
2460}
2461
2462/*
2463 * Note the backref might has changed, and in this case we just return 0.
2464 */
2465static noinline int relink_extent_backref(struct btrfs_path *path,
2466 struct sa_defrag_extent_backref *prev,
2467 struct sa_defrag_extent_backref *backref)
2468{
2469 struct btrfs_file_extent_item *extent;
2470 struct btrfs_file_extent_item *item;
2471 struct btrfs_ordered_extent *ordered;
2472 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002473 struct btrfs_root *root;
2474 struct btrfs_key key;
2475 struct extent_buffer *leaf;
2476 struct old_sa_defrag_extent *old = backref->old;
2477 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002478 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002479 struct inode *inode;
2480 struct extent_state *cached = NULL;
2481 int ret = 0;
2482 u64 start;
2483 u64 len;
2484 u64 lock_start;
2485 u64 lock_end;
2486 bool merge = false;
2487 int index;
2488
2489 if (prev && prev->root_id == backref->root_id &&
2490 prev->inum == backref->inum &&
2491 prev->file_pos + prev->num_bytes == backref->file_pos)
2492 merge = true;
2493
2494 /* step 1: get root */
2495 key.objectid = backref->root_id;
2496 key.type = BTRFS_ROOT_ITEM_KEY;
2497 key.offset = (u64)-1;
2498
Liu Bo38c227d2013-01-29 03:18:40 +00002499 index = srcu_read_lock(&fs_info->subvol_srcu);
2500
2501 root = btrfs_read_fs_root_no_name(fs_info, &key);
2502 if (IS_ERR(root)) {
2503 srcu_read_unlock(&fs_info->subvol_srcu, index);
2504 if (PTR_ERR(root) == -ENOENT)
2505 return 0;
2506 return PTR_ERR(root);
2507 }
Liu Bo38c227d2013-01-29 03:18:40 +00002508
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002509 if (btrfs_root_readonly(root)) {
2510 srcu_read_unlock(&fs_info->subvol_srcu, index);
2511 return 0;
2512 }
2513
Liu Bo38c227d2013-01-29 03:18:40 +00002514 /* step 2: get inode */
2515 key.objectid = backref->inum;
2516 key.type = BTRFS_INODE_ITEM_KEY;
2517 key.offset = 0;
2518
2519 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2520 if (IS_ERR(inode)) {
2521 srcu_read_unlock(&fs_info->subvol_srcu, index);
2522 return 0;
2523 }
2524
2525 srcu_read_unlock(&fs_info->subvol_srcu, index);
2526
2527 /* step 3: relink backref */
2528 lock_start = backref->file_pos;
2529 lock_end = backref->file_pos + backref->num_bytes - 1;
2530 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002531 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002532
2533 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2534 if (ordered) {
2535 btrfs_put_ordered_extent(ordered);
2536 goto out_unlock;
2537 }
2538
2539 trans = btrfs_join_transaction(root);
2540 if (IS_ERR(trans)) {
2541 ret = PTR_ERR(trans);
2542 goto out_unlock;
2543 }
2544
2545 key.objectid = backref->inum;
2546 key.type = BTRFS_EXTENT_DATA_KEY;
2547 key.offset = backref->file_pos;
2548
2549 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2550 if (ret < 0) {
2551 goto out_free_path;
2552 } else if (ret > 0) {
2553 ret = 0;
2554 goto out_free_path;
2555 }
2556
2557 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2558 struct btrfs_file_extent_item);
2559
2560 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2561 backref->generation)
2562 goto out_free_path;
2563
2564 btrfs_release_path(path);
2565
2566 start = backref->file_pos;
2567 if (backref->extent_offset < old->extent_offset + old->offset)
2568 start += old->extent_offset + old->offset -
2569 backref->extent_offset;
2570
2571 len = min(backref->extent_offset + backref->num_bytes,
2572 old->extent_offset + old->offset + old->len);
2573 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2574
2575 ret = btrfs_drop_extents(trans, root, inode, start,
2576 start + len, 1);
2577 if (ret)
2578 goto out_free_path;
2579again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002580 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002581 key.type = BTRFS_EXTENT_DATA_KEY;
2582 key.offset = start;
2583
Liu Boa09a0a72013-03-11 09:20:58 +00002584 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002585 if (merge) {
2586 struct btrfs_file_extent_item *fi;
2587 u64 extent_len;
2588 struct btrfs_key found_key;
2589
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002590 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002591 if (ret < 0)
2592 goto out_free_path;
2593
2594 path->slots[0]--;
2595 leaf = path->nodes[0];
2596 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2597
2598 fi = btrfs_item_ptr(leaf, path->slots[0],
2599 struct btrfs_file_extent_item);
2600 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2601
Liu Bo116e0022013-08-02 16:30:40 +08002602 if (extent_len + found_key.offset == start &&
2603 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002604 btrfs_set_file_extent_num_bytes(leaf, fi,
2605 extent_len + len);
2606 btrfs_mark_buffer_dirty(leaf);
2607 inode_add_bytes(inode, len);
2608
2609 ret = 1;
2610 goto out_free_path;
2611 } else {
2612 merge = false;
2613 btrfs_release_path(path);
2614 goto again;
2615 }
2616 }
2617
2618 ret = btrfs_insert_empty_item(trans, root, path, &key,
2619 sizeof(*extent));
2620 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002621 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002622 goto out_free_path;
2623 }
2624
2625 leaf = path->nodes[0];
2626 item = btrfs_item_ptr(leaf, path->slots[0],
2627 struct btrfs_file_extent_item);
2628 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2629 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2630 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2631 btrfs_set_file_extent_num_bytes(leaf, item, len);
2632 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2633 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2634 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2635 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2636 btrfs_set_file_extent_encryption(leaf, item, 0);
2637 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2638
2639 btrfs_mark_buffer_dirty(leaf);
2640 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002641 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002642
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002643 ret = btrfs_inc_extent_ref(trans, fs_info, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002644 new->disk_len, 0,
2645 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002646 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002647 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002648 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002649 goto out_free_path;
2650 }
2651
2652 ret = 1;
2653out_free_path:
2654 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002655 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002656 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002657out_unlock:
2658 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2659 &cached, GFP_NOFS);
2660 iput(inode);
2661 return ret;
2662}
2663
Liu Bo6f519562013-10-29 10:45:05 +08002664static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2665{
2666 struct old_sa_defrag_extent *old, *tmp;
2667
2668 if (!new)
2669 return;
2670
2671 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002672 kfree(old);
2673 }
2674 kfree(new);
2675}
2676
Liu Bo38c227d2013-01-29 03:18:40 +00002677static void relink_file_extents(struct new_sa_defrag_extent *new)
2678{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002679 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002680 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002681 struct sa_defrag_extent_backref *backref;
2682 struct sa_defrag_extent_backref *prev = NULL;
2683 struct inode *inode;
2684 struct btrfs_root *root;
2685 struct rb_node *node;
2686 int ret;
2687
2688 inode = new->inode;
2689 root = BTRFS_I(inode)->root;
2690
2691 path = btrfs_alloc_path();
2692 if (!path)
2693 return;
2694
2695 if (!record_extent_backrefs(path, new)) {
2696 btrfs_free_path(path);
2697 goto out;
2698 }
2699 btrfs_release_path(path);
2700
2701 while (1) {
2702 node = rb_first(&new->root);
2703 if (!node)
2704 break;
2705 rb_erase(node, &new->root);
2706
2707 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2708
2709 ret = relink_extent_backref(path, prev, backref);
2710 WARN_ON(ret < 0);
2711
2712 kfree(prev);
2713
2714 if (ret == 1)
2715 prev = backref;
2716 else
2717 prev = NULL;
2718 cond_resched();
2719 }
2720 kfree(prev);
2721
2722 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002723out:
Liu Bo6f519562013-10-29 10:45:05 +08002724 free_sa_defrag_extent(new);
2725
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002726 atomic_dec(&fs_info->defrag_running);
2727 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002728}
2729
2730static struct new_sa_defrag_extent *
2731record_old_file_extents(struct inode *inode,
2732 struct btrfs_ordered_extent *ordered)
2733{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002734 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002735 struct btrfs_root *root = BTRFS_I(inode)->root;
2736 struct btrfs_path *path;
2737 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002738 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002739 struct new_sa_defrag_extent *new;
2740 int ret;
2741
2742 new = kmalloc(sizeof(*new), GFP_NOFS);
2743 if (!new)
2744 return NULL;
2745
2746 new->inode = inode;
2747 new->file_pos = ordered->file_offset;
2748 new->len = ordered->len;
2749 new->bytenr = ordered->start;
2750 new->disk_len = ordered->disk_len;
2751 new->compress_type = ordered->compress_type;
2752 new->root = RB_ROOT;
2753 INIT_LIST_HEAD(&new->head);
2754
2755 path = btrfs_alloc_path();
2756 if (!path)
2757 goto out_kfree;
2758
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002759 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002760 key.type = BTRFS_EXTENT_DATA_KEY;
2761 key.offset = new->file_pos;
2762
2763 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2764 if (ret < 0)
2765 goto out_free_path;
2766 if (ret > 0 && path->slots[0] > 0)
2767 path->slots[0]--;
2768
2769 /* find out all the old extents for the file range */
2770 while (1) {
2771 struct btrfs_file_extent_item *extent;
2772 struct extent_buffer *l;
2773 int slot;
2774 u64 num_bytes;
2775 u64 offset;
2776 u64 end;
2777 u64 disk_bytenr;
2778 u64 extent_offset;
2779
2780 l = path->nodes[0];
2781 slot = path->slots[0];
2782
2783 if (slot >= btrfs_header_nritems(l)) {
2784 ret = btrfs_next_leaf(root, path);
2785 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002786 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002787 else if (ret > 0)
2788 break;
2789 continue;
2790 }
2791
2792 btrfs_item_key_to_cpu(l, &key, slot);
2793
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002794 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002795 break;
2796 if (key.type != BTRFS_EXTENT_DATA_KEY)
2797 break;
2798 if (key.offset >= new->file_pos + new->len)
2799 break;
2800
2801 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2802
2803 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2804 if (key.offset + num_bytes < new->file_pos)
2805 goto next;
2806
2807 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2808 if (!disk_bytenr)
2809 goto next;
2810
2811 extent_offset = btrfs_file_extent_offset(l, extent);
2812
2813 old = kmalloc(sizeof(*old), GFP_NOFS);
2814 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002815 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002816
2817 offset = max(new->file_pos, key.offset);
2818 end = min(new->file_pos + new->len, key.offset + num_bytes);
2819
2820 old->bytenr = disk_bytenr;
2821 old->extent_offset = extent_offset;
2822 old->offset = offset - key.offset;
2823 old->len = end - offset;
2824 old->new = new;
2825 old->count = 0;
2826 list_add_tail(&old->list, &new->head);
2827next:
2828 path->slots[0]++;
2829 cond_resched();
2830 }
2831
2832 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002833 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002834
2835 return new;
2836
Liu Bo38c227d2013-01-29 03:18:40 +00002837out_free_path:
2838 btrfs_free_path(path);
2839out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002840 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002841 return NULL;
2842}
2843
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002844static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002845 u64 start, u64 len)
2846{
2847 struct btrfs_block_group_cache *cache;
2848
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002849 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002850 ASSERT(cache);
2851
2852 spin_lock(&cache->lock);
2853 cache->delalloc_bytes -= len;
2854 spin_unlock(&cache->lock);
2855
2856 btrfs_put_block_group(cache);
2857}
2858
Chris Masond352ac62008-09-29 15:18:18 -04002859/* as ordered data IO finishes, this gets called so we can finish
2860 * an ordered extent if the range of bytes in the file it covers are
2861 * fully written.
2862 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002863static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002864{
Josef Bacik5fd02042012-05-02 14:00:54 -04002865 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002866 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002867 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002868 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002869 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002870 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002871 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002872 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002873 int ret = 0;
2874 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002875 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002876 bool truncated = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002877
Liu Bo83eea1f2012-07-10 05:28:39 -06002878 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002879
Josef Bacik5fd02042012-05-02 14:00:54 -04002880 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2881 ret = -EIO;
2882 goto out;
2883 }
2884
Miao Xief6124962014-09-12 18:44:04 +08002885 btrfs_free_io_failure_record(inode, ordered_extent->file_offset,
2886 ordered_extent->file_offset +
2887 ordered_extent->len - 1);
2888
Josef Bacik77cef2e2013-08-29 13:57:21 -04002889 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2890 truncated = true;
2891 logical_len = ordered_extent->truncated_len;
2892 /* Truncated the entire extent, don't bother adding */
2893 if (!logical_len)
2894 goto out;
2895 }
2896
Yan, Zhengc2167752009-11-12 09:34:21 +00002897 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002898 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002899
2900 /*
2901 * For mwrite(mmap + memset to write) case, we still reserve
2902 * space for NOCOW range.
2903 * As NOCOW won't cause a new delayed ref, just free the space
2904 */
2905 btrfs_qgroup_free_data(inode, ordered_extent->file_offset,
2906 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002907 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2908 if (nolock)
2909 trans = btrfs_join_transaction_nolock(root);
2910 else
2911 trans = btrfs_join_transaction(root);
2912 if (IS_ERR(trans)) {
2913 ret = PTR_ERR(trans);
2914 trans = NULL;
2915 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002916 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002917 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002918 ret = btrfs_update_inode_fallback(trans, root, inode);
2919 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002920 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002921 goto out;
2922 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002923
Josef Bacik2ac55d42010-02-03 19:33:23 +00002924 lock_extent_bits(io_tree, ordered_extent->file_offset,
2925 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002926 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002927
Liu Bo38c227d2013-01-29 03:18:40 +00002928 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2929 ordered_extent->file_offset + ordered_extent->len - 1,
2930 EXTENT_DEFRAG, 1, cached_state);
2931 if (ret) {
2932 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002933 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002934 /* the inode is shared */
2935 new = record_old_file_extents(inode, ordered_extent);
2936
2937 clear_extent_bit(io_tree, ordered_extent->file_offset,
2938 ordered_extent->file_offset + ordered_extent->len - 1,
2939 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2940 }
2941
Josef Bacik0cb59c92010-07-02 12:14:14 -04002942 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002943 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002944 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002945 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002946 if (IS_ERR(trans)) {
2947 ret = PTR_ERR(trans);
2948 trans = NULL;
2949 goto out_unlock;
2950 }
Chris Masona79b7d42014-05-22 16:18:52 -07002951
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002952 trans->block_rsv = &fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002953
Chris Masonc8b97812008-10-29 14:49:59 -04002954 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002955 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002956 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002957 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002958 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002959 ordered_extent->file_offset,
2960 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002961 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002962 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002963 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002964 ret = insert_reserved_file_extent(trans, inode,
2965 ordered_extent->file_offset,
2966 ordered_extent->start,
2967 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002968 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002969 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002970 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002971 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002972 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002973 ordered_extent->start,
2974 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002975 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002976 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2977 ordered_extent->file_offset, ordered_extent->len,
2978 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002979 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002980 btrfs_abort_transaction(trans, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002981 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002982 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002983
Chris Masone6dcd2d2008-07-17 12:53:50 -04002984 add_pending_csums(trans, inode, ordered_extent->file_offset,
2985 &ordered_extent->list);
2986
Josef Bacik6c760c02012-11-09 10:53:21 -05002987 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2988 ret = btrfs_update_inode_fallback(trans, root, inode);
2989 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002990 btrfs_abort_transaction(trans, ret);
Josef Bacik6c760c02012-11-09 10:53:21 -05002991 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002992 }
2993 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002994out_unlock:
2995 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2996 ordered_extent->file_offset +
2997 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002998out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002999 if (root != fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003000 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06003001 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003002 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003003
Josef Bacik77cef2e2013-08-29 13:57:21 -04003004 if (ret || truncated) {
3005 u64 start, end;
3006
3007 if (truncated)
3008 start = ordered_extent->file_offset + logical_len;
3009 else
3010 start = ordered_extent->file_offset;
3011 end = ordered_extent->file_offset + ordered_extent->len - 1;
3012 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
3013
3014 /* Drop the cache for the part of the extent we didn't write. */
3015 btrfs_drop_extent_cache(inode, start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003016
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003017 /*
3018 * If the ordered extent had an IOERR or something else went
3019 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003020 * back to the allocator. We only free the extent in the
3021 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003022 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003023 if ((ret || !logical_len) &&
3024 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003025 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003026 btrfs_free_reserved_extent(fs_info,
3027 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003028 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003029 }
3030
3031
Josef Bacik5fd02042012-05-02 14:00:54 -04003032 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003033 * This needs to be done to make sure anybody waiting knows we are done
3034 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003035 */
3036 btrfs_remove_ordered_extent(inode, ordered_extent);
3037
Liu Bo38c227d2013-01-29 03:18:40 +00003038 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003039 if (new) {
3040 if (ret) {
3041 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003042 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003043 } else {
3044 relink_file_extents(new);
3045 }
3046 }
Liu Bo38c227d2013-01-29 03:18:40 +00003047
Chris Masone6dcd2d2008-07-17 12:53:50 -04003048 /* once for us */
3049 btrfs_put_ordered_extent(ordered_extent);
3050 /* once for the tree */
3051 btrfs_put_ordered_extent(ordered_extent);
3052
Josef Bacik5fd02042012-05-02 14:00:54 -04003053 return ret;
3054}
3055
3056static void finish_ordered_fn(struct btrfs_work *work)
3057{
3058 struct btrfs_ordered_extent *ordered_extent;
3059 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3060 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003061}
3062
Christoph Hellwigb2950862008-12-02 09:54:17 -05003063static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003064 struct extent_state *state, int uptodate)
3065{
Josef Bacik5fd02042012-05-02 14:00:54 -04003066 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003067 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003068 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003069 struct btrfs_workqueue *wq;
3070 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003071
liubo1abe9b82011-03-24 11:18:59 +00003072 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3073
Chris Mason8b62b722009-09-02 16:53:46 -04003074 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003075 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3076 end - start + 1, uptodate))
3077 return 0;
3078
Liu Bo9e0af232014-08-15 23:36:53 +08003079 if (btrfs_is_free_space_inode(inode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003080 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003081 func = btrfs_freespace_write_helper;
3082 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003083 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003084 func = btrfs_endio_write_helper;
3085 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003086
Liu Bo9e0af232014-08-15 23:36:53 +08003087 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3088 NULL);
3089 btrfs_queue_work(wq, &ordered_extent->work);
Josef Bacik5fd02042012-05-02 14:00:54 -04003090
3091 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04003092}
3093
Miao Xiedc380ae2014-09-12 18:43:55 +08003094static int __readpage_endio_check(struct inode *inode,
3095 struct btrfs_io_bio *io_bio,
3096 int icsum, struct page *page,
3097 int pgoff, u64 start, size_t len)
3098{
3099 char *kaddr;
3100 u32 csum_expected;
3101 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003102
3103 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3104
3105 kaddr = kmap_atomic(page);
3106 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003107 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003108 if (csum != csum_expected)
3109 goto zeroit;
3110
3111 kunmap_atomic(kaddr);
3112 return 0;
3113zeroit:
David Sterba94647322015-10-08 11:01:36 +02003114 btrfs_warn_rl(BTRFS_I(inode)->root->fs_info,
3115 "csum failed ino %llu off %llu csum %u expected csum %u",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003116 btrfs_ino(BTRFS_I(inode)), start, csum, csum_expected);
Miao Xiedc380ae2014-09-12 18:43:55 +08003117 memset(kaddr + pgoff, 1, len);
3118 flush_dcache_page(page);
3119 kunmap_atomic(kaddr);
3120 if (csum_expected == 0)
3121 return 0;
3122 return -EIO;
3123}
3124
Chris Masond352ac62008-09-29 15:18:18 -04003125/*
Chris Masond352ac62008-09-29 15:18:18 -04003126 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003127 * if there's a match, we allow the bio to finish. If not, the code in
3128 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003129 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003130static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3131 u64 phy_offset, struct page *page,
3132 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003133{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003134 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003135 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003136 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003137 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003138
Chris Masond20f7042008-12-08 16:58:54 -05003139 if (PageChecked(page)) {
3140 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003141 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003142 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003143
3144 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003145 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003146
Yan Zheng17d217f2008-12-12 10:03:38 -05003147 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003148 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003149 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003150 return 0;
3151 }
3152
Miao Xiefacc8a222013-07-25 19:22:34 +08003153 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003154 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3155 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003156}
Chris Masonb888db22007-08-27 16:49:44 -04003157
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003158void btrfs_add_delayed_iput(struct inode *inode)
3159{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003160 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003161 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003162
3163 if (atomic_add_unless(&inode->i_count, -1, 1))
3164 return;
3165
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003166 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003167 if (binode->delayed_iput_count == 0) {
3168 ASSERT(list_empty(&binode->delayed_iput));
3169 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
3170 } else {
3171 binode->delayed_iput_count++;
3172 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003173 spin_unlock(&fs_info->delayed_iput_lock);
3174}
3175
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003176void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003177{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003178
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003179 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003180 while (!list_empty(&fs_info->delayed_iputs)) {
3181 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003182
David Sterba8089fe62015-11-19 14:15:51 +01003183 inode = list_first_entry(&fs_info->delayed_iputs,
3184 struct btrfs_inode, delayed_iput);
3185 if (inode->delayed_iput_count) {
3186 inode->delayed_iput_count--;
3187 list_move_tail(&inode->delayed_iput,
3188 &fs_info->delayed_iputs);
3189 } else {
3190 list_del_init(&inode->delayed_iput);
3191 }
3192 spin_unlock(&fs_info->delayed_iput_lock);
3193 iput(&inode->vfs_inode);
3194 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003195 }
David Sterba8089fe62015-11-19 14:15:51 +01003196 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003197}
3198
Yan, Zhengd68fc572010-05-16 10:49:58 -04003199/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003200 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003201 * files in the subvolume, it removes orphan item and frees block_rsv
3202 * structure.
3203 */
3204void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3205 struct btrfs_root *root)
3206{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003207 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik90290e12011-12-02 15:44:12 -05003208 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003209 int ret;
3210
Josef Bacik8a35d952012-05-23 14:26:42 -04003211 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003212 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3213 return;
3214
Josef Bacik90290e12011-12-02 15:44:12 -05003215 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003216 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003217 spin_unlock(&root->orphan_lock);
3218 return;
3219 }
3220
3221 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3222 spin_unlock(&root->orphan_lock);
3223 return;
3224 }
3225
3226 block_rsv = root->orphan_block_rsv;
3227 root->orphan_block_rsv = NULL;
3228 spin_unlock(&root->orphan_lock);
3229
Miao Xie27cdeb72014-04-02 19:51:05 +08003230 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003231 btrfs_root_refs(&root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003232 ret = btrfs_del_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003233 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003234 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003235 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003236 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003237 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3238 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003239 }
3240
Josef Bacik90290e12011-12-02 15:44:12 -05003241 if (block_rsv) {
3242 WARN_ON(block_rsv->size > 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003243 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003244 }
3245}
3246
3247/*
Josef Bacik7b128762008-07-24 12:17:14 -04003248 * This creates an orphan entry for the given inode in case something goes
3249 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003250 *
3251 * NOTE: caller of this function should reserve 5 units of metadata for
3252 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003253 */
3254int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
3255{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003256 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik7b128762008-07-24 12:17:14 -04003257 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003258 struct btrfs_block_rsv *block_rsv = NULL;
3259 int reserve = 0;
3260 int insert = 0;
3261 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003262
Yan, Zhengd68fc572010-05-16 10:49:58 -04003263 if (!root->orphan_block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003264 block_rsv = btrfs_alloc_block_rsv(fs_info,
3265 BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003266 if (!block_rsv)
3267 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003268 }
3269
Yan, Zhengd68fc572010-05-16 10:49:58 -04003270 spin_lock(&root->orphan_lock);
3271 if (!root->orphan_block_rsv) {
3272 root->orphan_block_rsv = block_rsv;
3273 } else if (block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003274 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003275 block_rsv = NULL;
3276 }
Josef Bacik7b128762008-07-24 12:17:14 -04003277
Josef Bacik8a35d952012-05-23 14:26:42 -04003278 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3279 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003280#if 0
3281 /*
3282 * For proper ENOSPC handling, we should do orphan
3283 * cleanup when mounting. But this introduces backward
3284 * compatibility issue.
3285 */
3286 if (!xchg(&root->orphan_item_inserted, 1))
3287 insert = 2;
3288 else
3289 insert = 1;
3290#endif
3291 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003292 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003293 }
Josef Bacik7b128762008-07-24 12:17:14 -04003294
Josef Bacik72ac3c02012-05-23 14:13:11 -04003295 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3296 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003297 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003298 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003299
Yan, Zhengd68fc572010-05-16 10:49:58 -04003300 /* grab metadata reservation from transaction handle */
3301 if (reserve) {
3302 ret = btrfs_orphan_reserve_metadata(trans, inode);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003303 ASSERT(!ret);
3304 if (ret) {
3305 atomic_dec(&root->orphan_inodes);
3306 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3307 &BTRFS_I(inode)->runtime_flags);
3308 if (insert)
3309 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3310 &BTRFS_I(inode)->runtime_flags);
3311 return ret;
3312 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003313 }
3314
3315 /* insert an orphan item to track this unlinked/truncated file */
3316 if (insert >= 1) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003317 ret = btrfs_insert_orphan_item(trans, root, 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],
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003802 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,
3984 struct inode *dir, struct inode *inode,
3985 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003986{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003987 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04003988 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003989 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003990 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003991 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003992 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003993 u64 index;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003994 u64 ino = btrfs_ino(BTRFS_I(inode));
3995 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Chris Mason39279cc2007-06-12 06:35:45 -04003996
3997 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003998 if (!path) {
3999 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00004000 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04004001 }
4002
Chris Masonb9473432009-03-13 11:00:37 -04004003 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08004004 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04004005 name, name_len, -1);
4006 if (IS_ERR(di)) {
4007 ret = PTR_ERR(di);
4008 goto err;
4009 }
4010 if (!di) {
4011 ret = -ENOENT;
4012 goto err;
4013 }
Chris Mason5f39d392007-10-15 16:14:19 -04004014 leaf = path->nodes[0];
4015 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04004016 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04004017 if (ret)
4018 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02004019 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004020
Miao Xie67de1172013-12-26 13:07:06 +08004021 /*
4022 * If we don't have dir index, we have to get it by looking up
4023 * the inode ref, since we get the inode ref, remove it directly,
4024 * it is unnecessary to do delayed deletion.
4025 *
4026 * But if we have dir index, needn't search inode ref to get it.
4027 * Since the inode ref is close to the inode item, it is better
4028 * that we delay to delete it, and just do this deletion when
4029 * we update the inode item.
4030 */
4031 if (BTRFS_I(inode)->dir_index) {
4032 ret = btrfs_delayed_delete_inode_ref(inode);
4033 if (!ret) {
4034 index = BTRFS_I(inode)->dir_index;
4035 goto skip_backref;
4036 }
4037 }
4038
Li Zefan33345d012011-04-20 10:31:50 +08004039 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
4040 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004041 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004042 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004043 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004044 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04004045 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04004046 goto err;
4047 }
Miao Xie67de1172013-12-26 13:07:06 +08004048skip_backref:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004049 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004050 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004051 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004052 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004053 }
Chris Mason39279cc2007-06-12 06:35:45 -04004054
Chris Masone02119d2008-09-05 16:13:11 -04004055 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08004056 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004057 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004058 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004059 goto err;
4060 }
Chris Masone02119d2008-09-05 16:13:11 -04004061
4062 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
4063 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04004064 if (ret == -ENOENT)
4065 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004066 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004067 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004068err:
4069 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004070 if (ret)
4071 goto out;
4072
4073 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004074 inode_inc_iversion(inode);
4075 inode_inc_iversion(dir);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08004076 inode->i_ctime = dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004077 dir->i_ctime = current_time(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06004078 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04004079out:
Chris Mason39279cc2007-06-12 06:35:45 -04004080 return ret;
4081}
4082
Al Viro92986792011-03-04 17:14:37 +00004083int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4084 struct btrfs_root *root,
4085 struct inode *dir, struct inode *inode,
4086 const char *name, int name_len)
4087{
4088 int ret;
4089 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4090 if (!ret) {
Zach Brown8b558c52013-10-16 12:10:34 -07004091 drop_nlink(inode);
Al Viro92986792011-03-04 17:14:37 +00004092 ret = btrfs_update_inode(trans, root, inode);
4093 }
4094 return ret;
4095}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004096
4097/*
4098 * helper to start transaction for unlink and rmdir.
4099 *
Josef Bacikd52be812013-05-29 14:54:47 -04004100 * unlink and rmdir are special in btrfs, they do not always free space, so
4101 * if we cannot make our reservations the normal way try and see if there is
4102 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4103 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004104 */
Josef Bacikd52be812013-05-29 14:54:47 -04004105static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004106{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004107 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004108
Josef Bacike70bea52011-10-11 14:18:24 -04004109 /*
4110 * 1 for the possible orphan item
4111 * 1 for the dir item
4112 * 1 for the dir index
4113 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004114 * 1 for the inode
4115 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004116 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004117}
4118
Chris Mason39279cc2007-06-12 06:35:45 -04004119static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4120{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004121 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004122 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004123 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004124 int ret;
4125
Josef Bacikd52be812013-05-29 14:54:47 -04004126 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004127 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004128 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004129
David Howells2b0143b2015-03-17 22:25:59 +00004130 btrfs_record_unlink_dir(trans, dir, d_inode(dentry), 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004131
David Howells2b0143b2015-03-17 22:25:59 +00004132 ret = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004133 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004134 if (ret)
4135 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004136
Yan, Zhenga22285a2010-05-16 10:48:46 -04004137 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04004138 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004139 if (ret)
4140 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004141 }
Josef Bacik7b128762008-07-24 12:17:14 -04004142
Tsutomu Itohb5324022011-07-19 07:27:20 +00004143out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004144 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004145 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004146 return ret;
4147}
4148
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004149int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4150 struct btrfs_root *root,
4151 struct inode *dir, u64 objectid,
4152 const char *name, int name_len)
4153{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004154 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004155 struct btrfs_path *path;
4156 struct extent_buffer *leaf;
4157 struct btrfs_dir_item *di;
4158 struct btrfs_key key;
4159 u64 index;
4160 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004161 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004162
4163 path = btrfs_alloc_path();
4164 if (!path)
4165 return -ENOMEM;
4166
Li Zefan33345d012011-04-20 10:31:50 +08004167 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004168 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004169 if (IS_ERR_OR_NULL(di)) {
4170 if (!di)
4171 ret = -ENOENT;
4172 else
4173 ret = PTR_ERR(di);
4174 goto out;
4175 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004176
4177 leaf = path->nodes[0];
4178 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4179 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4180 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004181 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004182 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004183 goto out;
4184 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004185 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004186
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004187 ret = btrfs_del_root_ref(trans, fs_info, objectid,
4188 root->root_key.objectid, dir_ino,
4189 &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004190 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004191 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004192 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004193 goto out;
4194 }
Li Zefan33345d012011-04-20 10:31:50 +08004195 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004196 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004197 if (IS_ERR_OR_NULL(di)) {
4198 if (!di)
4199 ret = -ENOENT;
4200 else
4201 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004202 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004203 goto out;
4204 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004205
4206 leaf = path->nodes[0];
4207 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004208 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004209 index = key.offset;
4210 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004211 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004212
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004213 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004214 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004215 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004216 goto out;
4217 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004218
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004219 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004220 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004221 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004222 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004223 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004224 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004225out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004226 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004227 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004228}
4229
Chris Mason39279cc2007-06-12 06:35:45 -04004230static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4231{
David Howells2b0143b2015-03-17 22:25:59 +00004232 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004233 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004234 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004235 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004236 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004237
David Sterbab3ae2442012-09-13 16:04:34 -06004238 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004239 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004240 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
David Sterbab3ae2442012-09-13 16:04:34 -06004241 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004242
Josef Bacikd52be812013-05-29 14:54:47 -04004243 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004244 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004245 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004246
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004247 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004248 err = btrfs_unlink_subvol(trans, root, dir,
4249 BTRFS_I(inode)->location.objectid,
4250 dentry->d_name.name,
4251 dentry->d_name.len);
4252 goto out;
4253 }
4254
Josef Bacik7b128762008-07-24 12:17:14 -04004255 err = btrfs_orphan_add(trans, inode);
4256 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004257 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004258
Filipe Manana44f714d2016-06-06 16:11:13 +01004259 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4260
Chris Mason39279cc2007-06-12 06:35:45 -04004261 /* now the directory is empty */
David Howells2b0143b2015-03-17 22:25:59 +00004262 err = btrfs_unlink_inode(trans, root, dir, d_inode(dentry),
Chris Masone02119d2008-09-05 16:13:11 -04004263 dentry->d_name.name, dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004264 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04004265 btrfs_i_size_write(inode, 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004266 /*
4267 * Propagate the last_unlink_trans value of the deleted dir to
4268 * its parent directory. This is to prevent an unrecoverable
4269 * log tree in the case we do something like this:
4270 * 1) create dir foo
4271 * 2) create snapshot under dir foo
4272 * 3) delete the snapshot
4273 * 4) rmdir foo
4274 * 5) mkdir foo
4275 * 6) fsync foo or some file inside foo
4276 */
4277 if (last_unlink_trans >= trans->transid)
4278 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4279 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004280out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004281 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004282 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004283
Chris Mason39279cc2007-06-12 06:35:45 -04004284 return err;
4285}
4286
Chris Mason28f75a02015-02-04 06:59:29 -08004287static int truncate_space_check(struct btrfs_trans_handle *trans,
4288 struct btrfs_root *root,
4289 u64 bytes_deleted)
4290{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004291 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004292 int ret;
4293
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004294 /*
4295 * This is only used to apply pressure to the enospc system, we don't
4296 * intend to use this reservation at all.
4297 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004298 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004299 bytes_deleted *= fs_info->nodesize;
4300 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004301 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004302 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004303 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004304 trans->transid,
4305 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004306 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004307 }
Chris Mason28f75a02015-02-04 06:59:29 -08004308 return ret;
4309
4310}
4311
Filipe Manana0305cd52015-10-16 12:34:25 +01004312static int truncate_inline_extent(struct inode *inode,
4313 struct btrfs_path *path,
4314 struct btrfs_key *found_key,
4315 const u64 item_end,
4316 const u64 new_size)
4317{
4318 struct extent_buffer *leaf = path->nodes[0];
4319 int slot = path->slots[0];
4320 struct btrfs_file_extent_item *fi;
4321 u32 size = (u32)(new_size - found_key->offset);
4322 struct btrfs_root *root = BTRFS_I(inode)->root;
4323
4324 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4325
4326 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4327 loff_t offset = new_size;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004328 loff_t page_end = ALIGN(offset, PAGE_SIZE);
Filipe Manana0305cd52015-10-16 12:34:25 +01004329
4330 /*
4331 * Zero out the remaining of the last page of our inline extent,
4332 * instead of directly truncating our inline extent here - that
4333 * would be much more complex (decompressing all the data, then
4334 * compressing the truncated data, which might be bigger than
4335 * the size of the inline extent, resize the extent, etc).
4336 * We release the path because to get the page we might need to
4337 * read the extent item from disk (data not in the page cache).
4338 */
4339 btrfs_release_path(path);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304340 return btrfs_truncate_block(inode, offset, page_end - offset,
4341 0);
Filipe Manana0305cd52015-10-16 12:34:25 +01004342 }
4343
4344 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4345 size = btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004346 btrfs_truncate_item(root->fs_info, path, size, 1);
Filipe Manana0305cd52015-10-16 12:34:25 +01004347
4348 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4349 inode_sub_bytes(inode, item_end + 1 - new_size);
4350
4351 return 0;
4352}
4353
Chris Mason323ac952008-10-01 19:05:46 -04004354/*
Chris Mason39279cc2007-06-12 06:35:45 -04004355 * this can truncate away extent items, csum items and directory items.
4356 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004357 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004358 *
4359 * csum items that cross the new i_size are truncated to the new size
4360 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004361 *
4362 * min_type is the minimum key type to truncate down to. If set to 0, this
4363 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004364 */
Yan, Zheng80825102009-11-12 09:35:36 +00004365int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4366 struct btrfs_root *root,
4367 struct inode *inode,
4368 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004369{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004370 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004371 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004372 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004373 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004374 struct btrfs_key key;
4375 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004376 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004377 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004378 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004379 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004380 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004381 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004382 int found_extent;
4383 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004384 int pending_del_nr = 0;
4385 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004386 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004387 int ret;
4388 int err = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004389 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004390 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004391 bool be_nice = 0;
4392 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004393 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004394
4395 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004396
Chris Mason28ed1342014-12-17 09:41:04 -08004397 /*
4398 * for non-free space inodes and ref cows, we want to back off from
4399 * time to time
4400 */
4401 if (!btrfs_is_free_space_inode(inode) &&
4402 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4403 be_nice = 1;
4404
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004405 path = btrfs_alloc_path();
4406 if (!path)
4407 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004408 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004409
Josef Bacik5dc562c2012-08-17 13:14:17 -04004410 /*
4411 * We want to drop from the next block forward in case this new size is
4412 * not block aligned since we will be keeping the last block of the
4413 * extent just the way it is.
4414 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004415 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004416 root == fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004417 btrfs_drop_extent_cache(inode, ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004418 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004419 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004420
Miao Xie16cdcec2011-04-22 18:12:22 +08004421 /*
4422 * This function is also used to drop the items in the log tree before
4423 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4424 * it is used to drop the loged items. So we shouldn't kill the delayed
4425 * items.
4426 */
4427 if (min_type == 0 && root == BTRFS_I(inode)->root)
4428 btrfs_kill_delayed_inode_items(inode);
4429
Li Zefan33345d012011-04-20 10:31:50 +08004430 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004431 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004432 key.type = (u8)-1;
4433
Chris Mason85e21ba2008-01-29 15:11:36 -05004434search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004435 /*
4436 * with a 16K leaf size and 128MB extents, you can actually queue
4437 * up a huge file in a single leaf. Most of the time that
4438 * bytes_deleted is > 0, it will be huge by the time we get here
4439 */
Byongho Leeee221842015-12-15 01:42:10 +09004440 if (be_nice && bytes_deleted > SZ_32M) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004441 if (btrfs_should_end_transaction(trans)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004442 err = -EAGAIN;
4443 goto error;
4444 }
4445 }
4446
4447
Chris Masonb9473432009-03-13 11:00:37 -04004448 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004449 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004450 if (ret < 0) {
4451 err = ret;
4452 goto out;
4453 }
Chris Masond3977122009-01-05 21:25:51 -05004454
Chris Mason85e21ba2008-01-29 15:11:36 -05004455 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004456 /* there are no items in the tree for us to truncate, we're
4457 * done
4458 */
Yan, Zheng80825102009-11-12 09:35:36 +00004459 if (path->slots[0] == 0)
4460 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004461 path->slots[0]--;
4462 }
4463
Chris Masond3977122009-01-05 21:25:51 -05004464 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004465 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004466 leaf = path->nodes[0];
4467 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004468 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004469
Li Zefan33345d012011-04-20 10:31:50 +08004470 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004471 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004472
Chris Mason85e21ba2008-01-29 15:11:36 -05004473 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004474 break;
4475
Chris Mason5f39d392007-10-15 16:14:19 -04004476 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004477 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004478 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004479 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004480 extent_type = btrfs_file_extent_type(leaf, fi);
4481 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004482 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004483 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004484 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004485 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004486 path->slots[0], fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004487 }
Yan008630c2007-11-07 13:31:09 -05004488 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004489 }
Yan, Zheng80825102009-11-12 09:35:36 +00004490 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004491 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004492 } else {
Liu Bo91298ee2016-12-01 13:43:31 -08004493 if (item_end < new_size) {
4494 /*
4495 * With NO_HOLES mode, for the following mapping
4496 *
4497 * [0-4k][hole][8k-12k]
4498 *
4499 * if truncating isize down to 6k, it ends up
4500 * isize being 8k.
4501 */
4502 if (btrfs_fs_incompat(root->fs_info, NO_HOLES))
4503 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004504 break;
Liu Bo91298ee2016-12-01 13:43:31 -08004505 }
Yan, Zheng80825102009-11-12 09:35:36 +00004506 if (found_key.offset >= new_size)
4507 del_item = 1;
4508 else
4509 del_item = 0;
4510 }
Chris Mason39279cc2007-06-12 06:35:45 -04004511 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004512 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004513 if (found_type != BTRFS_EXTENT_DATA_KEY)
4514 goto delete;
4515
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004516 if (del_item)
4517 last_size = found_key.offset;
4518 else
4519 last_size = new_size;
4520
Chris Mason179e29e2007-11-01 11:28:41 -04004521 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004522 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004523 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004524 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004525 u64 orig_num_bytes =
4526 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004527 extent_num_bytes = ALIGN(new_size -
4528 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004529 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004530 btrfs_set_file_extent_num_bytes(leaf, fi,
4531 extent_num_bytes);
4532 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004533 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004534 if (test_bit(BTRFS_ROOT_REF_COWS,
4535 &root->state) &&
4536 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004537 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004538 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004539 } else {
Chris Masondb945352007-10-15 16:15:53 -04004540 extent_num_bytes =
4541 btrfs_file_extent_disk_num_bytes(leaf,
4542 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004543 extent_offset = found_key.offset -
4544 btrfs_file_extent_offset(leaf, fi);
4545
Chris Mason39279cc2007-06-12 06:35:45 -04004546 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004547 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004548 if (extent_start != 0) {
4549 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004550 if (test_bit(BTRFS_ROOT_REF_COWS,
4551 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004552 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004553 }
4554 }
Chris Mason90692182008-02-08 13:49:28 -05004555 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004556 /*
4557 * we can't truncate inline items that have had
4558 * special encodings
4559 */
4560 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004561 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4562 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004563
4564 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004565 * Need to release path in order to truncate a
4566 * compressed extent. So delete any accumulated
4567 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004568 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004569 if (btrfs_file_extent_compression(leaf, fi) !=
4570 BTRFS_COMPRESS_NONE && pending_del_nr) {
4571 err = btrfs_del_items(trans, root, path,
4572 pending_del_slot,
4573 pending_del_nr);
4574 if (err) {
4575 btrfs_abort_transaction(trans,
Filipe Manana0305cd52015-10-16 12:34:25 +01004576 err);
4577 goto error;
4578 }
4579 pending_del_nr = 0;
4580 }
4581
4582 err = truncate_inline_extent(inode, path,
4583 &found_key,
4584 item_end,
4585 new_size);
4586 if (err) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004587 btrfs_abort_transaction(trans, err);
Filipe Manana0305cd52015-10-16 12:34:25 +01004588 goto error;
4589 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004590 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4591 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004592 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004593 }
Chris Mason39279cc2007-06-12 06:35:45 -04004594 }
Chris Mason179e29e2007-11-01 11:28:41 -04004595delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004596 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004597 if (!pending_del_nr) {
4598 /* no pending yet, add ourselves */
4599 pending_del_slot = path->slots[0];
4600 pending_del_nr = 1;
4601 } else if (pending_del_nr &&
4602 path->slots[0] + 1 == pending_del_slot) {
4603 /* hop on the pending chunk */
4604 pending_del_nr++;
4605 pending_del_slot = path->slots[0];
4606 } else {
Chris Masond3977122009-01-05 21:25:51 -05004607 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004608 }
Chris Mason39279cc2007-06-12 06:35:45 -04004609 } else {
4610 break;
4611 }
Chris Mason28f75a02015-02-04 06:59:29 -08004612 should_throttle = 0;
4613
Miao Xie27cdeb72014-04-02 19:51:05 +08004614 if (found_extent &&
4615 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004616 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004617 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004618 bytes_deleted += extent_num_bytes;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004619 ret = btrfs_free_extent(trans, fs_info, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004620 extent_num_bytes, 0,
4621 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004622 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004623 BUG_ON(ret);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004624 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4625 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004626 trans->delayed_ref_updates * 2,
4627 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004628 if (be_nice) {
4629 if (truncate_space_check(trans, root,
4630 extent_num_bytes)) {
4631 should_end = 1;
4632 }
4633 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004634 fs_info))
Chris Mason28f75a02015-02-04 06:59:29 -08004635 should_throttle = 1;
Chris Mason28f75a02015-02-04 06:59:29 -08004636 }
Chris Mason39279cc2007-06-12 06:35:45 -04004637 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004638
Yan, Zheng80825102009-11-12 09:35:36 +00004639 if (found_type == BTRFS_INODE_ITEM_KEY)
4640 break;
4641
4642 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004643 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004644 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004645 if (pending_del_nr) {
4646 ret = btrfs_del_items(trans, root, path,
4647 pending_del_slot,
4648 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004649 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004650 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004651 goto error;
4652 }
Yan, Zheng80825102009-11-12 09:35:36 +00004653 pending_del_nr = 0;
4654 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004655 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004656 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004657 unsigned long updates = trans->delayed_ref_updates;
4658 if (updates) {
4659 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004660 ret = btrfs_run_delayed_refs(trans,
4661 fs_info,
4662 updates * 2);
Josef Bacik12621332015-02-03 07:50:16 -08004663 if (ret && !err)
4664 err = ret;
4665 }
4666 }
Chris Mason28f75a02015-02-04 06:59:29 -08004667 /*
4668 * if we failed to refill our space rsv, bail out
4669 * and let the transaction restart
4670 */
4671 if (should_end) {
4672 err = -EAGAIN;
4673 goto error;
4674 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004675 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004676 } else {
4677 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004678 }
Chris Mason39279cc2007-06-12 06:35:45 -04004679 }
Yan, Zheng80825102009-11-12 09:35:36 +00004680out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004681 if (pending_del_nr) {
4682 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4683 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004684 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004685 btrfs_abort_transaction(trans, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004686 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004687error:
Filipe Mananac1aa4572015-06-20 18:20:09 +01004688 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004689 btrfs_ordered_update_i_size(inode, last_size, NULL);
Chris Mason28ed1342014-12-17 09:41:04 -08004690
Chris Mason39279cc2007-06-12 06:35:45 -04004691 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004692
Byongho Leeee221842015-12-15 01:42:10 +09004693 if (be_nice && bytes_deleted > SZ_32M) {
Chris Mason28ed1342014-12-17 09:41:04 -08004694 unsigned long updates = trans->delayed_ref_updates;
4695 if (updates) {
4696 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004697 ret = btrfs_run_delayed_refs(trans, fs_info,
4698 updates * 2);
Chris Mason28ed1342014-12-17 09:41:04 -08004699 if (ret && !err)
4700 err = ret;
4701 }
4702 }
Yan, Zheng80825102009-11-12 09:35:36 +00004703 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004704}
4705
Chris Masona52d9a82007-08-27 16:49:44 -04004706/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304707 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004708 * @inode - inode that we're zeroing
4709 * @from - the offset to start zeroing
4710 * @len - the length to zero, 0 to zero the entire range respective to the
4711 * offset
4712 * @front - zero up to the offset instead of from the offset on
4713 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304714 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004715 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004716 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304717int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004718 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004720 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004721 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004722 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4723 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004724 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004725 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004726 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004727 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304728 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004729 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004730 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004731 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304732 u64 block_start;
4733 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004734
Josef Bacik2aaa6652012-08-29 14:27:18 -04004735 if ((offset & (blocksize - 1)) == 0 &&
4736 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004737 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304738
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004739 ret = btrfs_delalloc_reserve_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304740 round_down(from, blocksize), blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004741 if (ret)
4742 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004743
Chris Mason211c17f2008-05-15 09:13:45 -04004744again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004745 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004746 if (!page) {
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004747 btrfs_delalloc_release_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304748 round_down(from, blocksize),
4749 blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004750 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004751 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004752 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004753
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304754 block_start = round_down(from, blocksize);
4755 block_end = block_start + blocksize - 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004756
Chris Masona52d9a82007-08-27 16:49:44 -04004757 if (!PageUptodate(page)) {
4758 ret = btrfs_readpage(NULL, page);
4759 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004760 if (page->mapping != mapping) {
4761 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004762 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004763 goto again;
4764 }
Chris Masona52d9a82007-08-27 16:49:44 -04004765 if (!PageUptodate(page)) {
4766 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004767 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004768 }
4769 }
Chris Mason211c17f2008-05-15 09:13:45 -04004770 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004771
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304772 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004773 set_page_extent_mapped(page);
4774
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304775 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004776 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304777 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004778 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004779 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004780 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004781 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004782 btrfs_put_ordered_extent(ordered);
4783 goto again;
4784 }
4785
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304786 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004787 EXTENT_DIRTY | EXTENT_DELALLOC |
4788 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004789 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004790
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304791 ret = btrfs_set_extent_delalloc(inode, block_start, block_end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004792 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004793 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304794 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004795 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004796 goto out_unlock;
4797 }
4798
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304799 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004800 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304801 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004802 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004803 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304804 memset(kaddr + (block_start - page_offset(page)),
4805 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004806 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304807 memset(kaddr + (block_start - page_offset(page)) + offset,
4808 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004809 flush_dcache_page(page);
4810 kunmap(page);
4811 }
Chris Mason247e7432008-07-17 12:53:51 -04004812 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004813 set_page_dirty(page);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304814 unlock_extent_cached(io_tree, block_start, block_end, &cached_state,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004815 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004816
Chris Mason89642222008-07-24 09:41:53 -04004817out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004818 if (ret)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304819 btrfs_delalloc_release_space(inode, block_start,
4820 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004821 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004822 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004823out:
4824 return ret;
4825}
4826
Josef Bacik16e75492013-10-22 12:18:51 -04004827static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4828 u64 offset, u64 len)
4829{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004830 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004831 struct btrfs_trans_handle *trans;
4832 int ret;
4833
4834 /*
4835 * Still need to make sure the inode looks like it's been updated so
4836 * that any holes get logged if we fsync.
4837 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004838 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4839 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004840 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4841 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4842 return 0;
4843 }
4844
4845 /*
4846 * 1 - for the one we're dropping
4847 * 1 - for the one we're adding
4848 * 1 - for updating the inode.
4849 */
4850 trans = btrfs_start_transaction(root, 3);
4851 if (IS_ERR(trans))
4852 return PTR_ERR(trans);
4853
4854 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4855 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004856 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004857 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004858 return ret;
4859 }
4860
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004861 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)), offset,
Josef Bacik16e75492013-10-22 12:18:51 -04004862 0, 0, len, 0, len, 0, 0, 0);
4863 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004864 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004865 else
4866 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004867 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004868 return ret;
4869}
4870
Josef Bacik695a0d02011-03-04 15:46:53 -05004871/*
4872 * This function puts in dummy file extents for the area we're creating a hole
4873 * for. So if we are truncating this file to a larger size we need to insert
4874 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4875 * the range between oldsize and size
4876 */
Josef Bacika41ad392011-01-31 15:30:16 -05004877int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004878{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004879 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004880 struct btrfs_root *root = BTRFS_I(inode)->root;
4881 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004882 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004883 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004884 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004885 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4886 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004887 u64 last_byte;
4888 u64 cur_offset;
4889 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004890 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004891
Josef Bacika71754f2013-06-17 17:14:39 -04004892 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304893 * If our size started in the middle of a block we need to zero out the
4894 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004895 * expose stale data.
4896 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304897 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004898 if (err)
4899 return err;
4900
Yan Zheng9036c102008-10-30 14:19:41 -04004901 if (size <= hole_start)
4902 return 0;
4903
Yan Zheng9036c102008-10-30 14:19:41 -04004904 while (1) {
4905 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004906
David Sterbaff13db42015-12-03 14:30:40 +01004907 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004908 &cached_state);
Miao Xiefa7c1492013-09-26 13:15:27 +08004909 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4910 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004911 if (!ordered)
4912 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004913 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4914 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004915 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004916 btrfs_put_ordered_extent(ordered);
4917 }
4918
Yan Zheng9036c102008-10-30 14:19:41 -04004919 cur_offset = hole_start;
4920 while (1) {
4921 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4922 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004923 if (IS_ERR(em)) {
4924 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004925 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004926 break;
4927 }
Yan Zheng9036c102008-10-30 14:19:41 -04004928 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004929 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004930 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004931 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004932 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004933
Josef Bacik16e75492013-10-22 12:18:51 -04004934 err = maybe_insert_hole(root, inode, cur_offset,
4935 hole_size);
4936 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004937 break;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004938 btrfs_drop_extent_cache(inode, cur_offset,
4939 cur_offset + hole_size - 1, 0);
4940 hole_em = alloc_extent_map();
4941 if (!hole_em) {
4942 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4943 &BTRFS_I(inode)->runtime_flags);
4944 goto next;
4945 }
4946 hole_em->start = cur_offset;
4947 hole_em->len = hole_size;
4948 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004949
Josef Bacik5dc562c2012-08-17 13:14:17 -04004950 hole_em->block_start = EXTENT_MAP_HOLE;
4951 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004952 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004953 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004954 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004955 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004956 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004957
4958 while (1) {
4959 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004960 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004961 write_unlock(&em_tree->lock);
4962 if (err != -EEXIST)
4963 break;
4964 btrfs_drop_extent_cache(inode, cur_offset,
4965 cur_offset +
4966 hole_size - 1, 0);
4967 }
4968 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04004969 }
Josef Bacik16e75492013-10-22 12:18:51 -04004970next:
Yan Zheng9036c102008-10-30 14:19:41 -04004971 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004972 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004973 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004974 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004975 break;
4976 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04004977 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004978 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4979 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004980 return err;
4981}
4982
Eric Sandeen3972f262013-01-12 02:57:22 +00004983static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004984{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004985 struct btrfs_root *root = BTRFS_I(inode)->root;
4986 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004987 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004988 loff_t newsize = attr->ia_size;
4989 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004990 int ret;
4991
Eric Sandeen3972f262013-01-12 02:57:22 +00004992 /*
4993 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4994 * special case where we need to update the times despite not having
4995 * these flags set. For all other operations the VFS set these flags
4996 * explicitly if it wants a timestamp update.
4997 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004998 if (newsize != oldsize) {
4999 inode_inc_iversion(inode);
5000 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5001 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005002 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005003 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005004
Josef Bacika41ad392011-01-31 15:30:16 -05005005 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005006 /*
5007 * Don't do an expanding truncate while snapshoting is ongoing.
5008 * This is to ensure the snapshot captures a fully consistent
5009 * state of this file - if the snapshot captures this expanding
5010 * truncation, it must capture all writes that happened before
5011 * this truncation.
5012 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005013 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005014 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005015 if (ret) {
5016 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005017 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005018 }
Yan, Zheng80825102009-11-12 09:35:36 +00005019
Miao Xief4a2f4c2011-12-14 20:12:01 -05005020 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005021 if (IS_ERR(trans)) {
5022 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005023 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005024 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005025
5026 i_size_write(inode, newsize);
5027 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305028 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005029 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005030 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005031 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005032 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005033
Josef Bacika41ad392011-01-31 15:30:16 -05005034 /*
5035 * We're truncating a file that used to have good data down to
5036 * zero. Make sure it gets into the ordered flush list so that
5037 * any new writes get down to disk quickly.
5038 */
5039 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005040 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5041 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005042
Josef Bacikf3fe8202013-01-07 17:03:21 -05005043 /*
5044 * 1 for the orphan item we're going to add
5045 * 1 for the orphan item deletion.
5046 */
5047 trans = btrfs_start_transaction(root, 2);
5048 if (IS_ERR(trans))
5049 return PTR_ERR(trans);
5050
5051 /*
5052 * We need to do this in case we fail at _any_ point during the
5053 * actual truncate. Once we do the truncate_setsize we could
5054 * invalidate pages which forces any outstanding ordered io to
5055 * be instantly completed which will give us extents that need
5056 * to be truncated. If we fail to get an orphan inode down we
5057 * could have left over extents that were never meant to live,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005058 * so we need to guarantee from this point on that everything
Josef Bacikf3fe8202013-01-07 17:03:21 -05005059 * will be consistent.
5060 */
5061 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005062 btrfs_end_transaction(trans);
Josef Bacikf3fe8202013-01-07 17:03:21 -05005063 if (ret)
5064 return ret;
5065
Josef Bacika41ad392011-01-31 15:30:16 -05005066 /* we don't support swapfiles, so vmtruncate shouldn't fail */
5067 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005068
5069 /* Disable nonlocked read DIO to avoid the end less truncate */
5070 btrfs_inode_block_unlocked_dio(inode);
5071 inode_dio_wait(inode);
5072 btrfs_inode_resume_unlocked_dio(inode);
5073
Josef Bacika41ad392011-01-31 15:30:16 -05005074 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005075 if (ret && inode->i_nlink) {
5076 int err;
5077
5078 /*
5079 * failed to truncate, disk_i_size is only adjusted down
5080 * as we remove extents, so it should represent the true
5081 * size of the inode, so reset the in memory size and
5082 * delete our orphan entry.
5083 */
5084 trans = btrfs_join_transaction(root);
5085 if (IS_ERR(trans)) {
5086 btrfs_orphan_del(NULL, inode);
5087 return ret;
5088 }
5089 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
5090 err = btrfs_orphan_del(trans, inode);
5091 if (err)
Jeff Mahoney66642832016-06-10 18:19:25 -04005092 btrfs_abort_transaction(trans, err);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005093 btrfs_end_transaction(trans);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005094 }
Yan, Zheng80825102009-11-12 09:35:36 +00005095 }
5096
Josef Bacika41ad392011-01-31 15:30:16 -05005097 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005098}
5099
Chris Mason39279cc2007-06-12 06:35:45 -04005100static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5101{
David Howells2b0143b2015-03-17 22:25:59 +00005102 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005103 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005104 int err;
5105
Li Zefanb83cc962010-12-20 16:04:08 +08005106 if (btrfs_root_readonly(root))
5107 return -EROFS;
5108
Jan Kara31051c82016-05-26 16:55:18 +02005109 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005110 if (err)
5111 return err;
5112
Chris Mason5a3f23d2009-03-31 13:27:11 -04005113 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005114 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005115 if (err)
5116 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005117 }
Yan Zheng9036c102008-10-30 14:19:41 -04005118
Christoph Hellwig10257742010-06-04 11:30:02 +02005119 if (attr->ia_valid) {
5120 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005121 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005122 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005123
Josef Bacik22c44fe2011-11-30 10:45:38 -05005124 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005125 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005126 }
5127
Chris Mason39279cc2007-06-12 06:35:45 -04005128 return err;
5129}
Chris Mason61295eb2008-01-14 16:24:38 -05005130
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005131/*
5132 * While truncating the inode pages during eviction, we get the VFS calling
5133 * btrfs_invalidatepage() against each page of the inode. This is slow because
5134 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5135 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5136 * extent_state structures over and over, wasting lots of time.
5137 *
5138 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5139 * those expensive operations on a per page basis and do only the ordered io
5140 * finishing, while we release here the extent_map and extent_state structures,
5141 * without the excessive merging and splitting.
5142 */
5143static void evict_inode_truncate_pages(struct inode *inode)
5144{
5145 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5146 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5147 struct rb_node *node;
5148
5149 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005150 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005151
5152 write_lock(&map_tree->lock);
5153 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5154 struct extent_map *em;
5155
5156 node = rb_first(&map_tree->map);
5157 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005158 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5159 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005160 remove_extent_mapping(map_tree, em);
5161 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005162 if (need_resched()) {
5163 write_unlock(&map_tree->lock);
5164 cond_resched();
5165 write_lock(&map_tree->lock);
5166 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005167 }
5168 write_unlock(&map_tree->lock);
5169
Filipe Manana6ca07092015-05-26 00:55:42 +01005170 /*
5171 * Keep looping until we have no more ranges in the io tree.
5172 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005173 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5174 * still in progress (unlocked the pages in the bio but did not yet
5175 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005176 * ranges can still be locked and eviction started because before
5177 * submitting those bios, which are executed by a separate task (work
5178 * queue kthread), inode references (inode->i_count) were not taken
5179 * (which would be dropped in the end io callback of each bio).
5180 * Therefore here we effectively end up waiting for those bios and
5181 * anyone else holding locked ranges without having bumped the inode's
5182 * reference count - if we don't do it, when they access the inode's
5183 * io_tree to unlock a range it may be too late, leading to an
5184 * use-after-free issue.
5185 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005186 spin_lock(&io_tree->lock);
5187 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5188 struct extent_state *state;
5189 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005190 u64 start;
5191 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005192
5193 node = rb_first(&io_tree->state);
5194 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005195 start = state->start;
5196 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005197 spin_unlock(&io_tree->lock);
5198
David Sterbaff13db42015-12-03 14:30:40 +01005199 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005200
5201 /*
5202 * If still has DELALLOC flag, the extent didn't reach disk,
5203 * and its reserved space won't be freed by delayed_ref.
5204 * So we need to free its reserved space here.
5205 * (Refer to comment in btrfs_invalidatepage, case 2)
5206 *
5207 * Note, end is the bytenr of last byte, so we need + 1 here.
5208 */
5209 if (state->state & EXTENT_DELALLOC)
5210 btrfs_qgroup_free_data(inode, start, end - start + 1);
5211
Filipe Manana6ca07092015-05-26 00:55:42 +01005212 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005213 EXTENT_LOCKED | EXTENT_DIRTY |
5214 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5215 EXTENT_DEFRAG, 1, 1,
5216 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005217
Filipe Manana7064dd52014-08-08 02:47:05 +01005218 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005219 spin_lock(&io_tree->lock);
5220 }
5221 spin_unlock(&io_tree->lock);
5222}
5223
Al Virobd555972010-06-07 11:35:40 -04005224void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005225{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005226 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005227 struct btrfs_trans_handle *trans;
5228 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005229 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005230 int steal_from_global = 0;
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005231 u64 min_size;
Chris Mason39279cc2007-06-12 06:35:45 -04005232 int ret;
5233
liubo1abe9b82011-03-24 11:18:59 +00005234 trace_btrfs_inode_evict(inode);
5235
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005236 if (!root) {
5237 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5238 return;
5239 }
5240
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005241 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005242
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005243 evict_inode_truncate_pages(inode);
5244
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005245 if (inode->i_nlink &&
5246 ((btrfs_root_refs(&root->root_item) != 0 &&
5247 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
5248 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04005249 goto no_delete;
5250
Chris Mason39279cc2007-06-12 06:35:45 -04005251 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04005252 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005253 goto no_delete;
5254 }
Al Virobd555972010-06-07 11:35:40 -04005255 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005256 if (!special_file(inode->i_mode))
5257 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005258
Miao Xief6124962014-09-12 18:44:04 +08005259 btrfs_free_io_failure_record(inode, 0, (u64)-1);
5260
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005261 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Liu Bo6bf02312012-06-25 21:59:09 -06005262 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005263 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005264 goto no_delete;
5265 }
5266
Yan, Zheng76dda932009-09-21 16:00:26 -04005267 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005268 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5269 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005270 goto no_delete;
5271 }
5272
Miao Xie0e8c36a2012-12-19 06:59:51 +00005273 ret = btrfs_commit_inode_delayed_inode(inode);
5274 if (ret) {
5275 btrfs_orphan_del(NULL, inode);
5276 goto no_delete;
5277 }
5278
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005279 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005280 if (!rsv) {
5281 btrfs_orphan_del(NULL, inode);
5282 goto no_delete;
5283 }
Josef Bacik4a338542011-08-29 11:01:31 -04005284 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005285 rsv->failfast = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005286 global_rsv = &fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005287
Chris Masondbe674a2008-07-17 12:54:05 -04005288 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005289
Josef Bacik4289a662011-08-05 13:22:24 -04005290 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005291 * This is a bit simpler than btrfs_truncate since we've already
5292 * reserved our space for our orphan item in the unlink, so we just
5293 * need to reserve some slack space in case we add bytes and update
5294 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005295 */
Yan, Zheng80825102009-11-12 09:35:36 +00005296 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005297 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5298 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005299
Josef Bacik726c35f2011-09-26 15:46:06 -04005300 /*
5301 * Try and steal from the global reserve since we will
5302 * likely not use this space anyway, we want to try as
5303 * hard as possible to get this to work.
5304 */
5305 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005306 steal_from_global++;
5307 else
5308 steal_from_global = 0;
5309 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005310
Josef Bacik3bce8762015-02-24 12:35:51 -08005311 /*
5312 * steal_from_global == 0: we reserved stuff, hooray!
5313 * steal_from_global == 1: we didn't reserve stuff, boo!
5314 * steal_from_global == 2: we've committed, still not a lot of
5315 * room but maybe we'll have room in the global reserve this
5316 * time.
5317 * steal_from_global == 3: abandon all hope!
5318 */
5319 if (steal_from_global > 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005320 btrfs_warn(fs_info,
5321 "Could not get space for a delete, will truncate on mount %d",
5322 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04005323 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005324 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005325 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005326 }
5327
Miao Xie0e8c36a2012-12-19 06:59:51 +00005328 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005329 if (IS_ERR(trans)) {
5330 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005331 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005332 goto no_delete;
5333 }
5334
Josef Bacik3bce8762015-02-24 12:35:51 -08005335 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005336 * We can't just steal from the global reserve, we need to make
Josef Bacik3bce8762015-02-24 12:35:51 -08005337 * sure there is room to do it, if not we need to commit and try
5338 * again.
5339 */
5340 if (steal_from_global) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005341 if (!btrfs_check_space_for_delayed_refs(trans, fs_info))
Josef Bacik3bce8762015-02-24 12:35:51 -08005342 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04005343 min_size, 0);
Josef Bacik3bce8762015-02-24 12:35:51 -08005344 else
5345 ret = -ENOSPC;
5346 }
5347
5348 /*
5349 * Couldn't steal from the global reserve, we have too much
5350 * pending stuff built up, commit the transaction and try it
5351 * again.
5352 */
5353 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005354 ret = btrfs_commit_transaction(trans);
Josef Bacik3bce8762015-02-24 12:35:51 -08005355 if (ret) {
5356 btrfs_orphan_del(NULL, inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005357 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik3bce8762015-02-24 12:35:51 -08005358 goto no_delete;
5359 }
5360 continue;
5361 } else {
5362 steal_from_global = 0;
5363 }
5364
Josef Bacik4289a662011-08-05 13:22:24 -04005365 trans->block_rsv = rsv;
5366
Yan, Zhengd68fc572010-05-16 10:49:58 -04005367 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005368 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005369 break;
5370
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005371 trans->block_rsv = &fs_info->trans_block_rsv;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005372 btrfs_end_transaction(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00005373 trans = NULL;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005374 btrfs_btree_balance_dirty(fs_info);
Josef Bacik7b128762008-07-24 12:17:14 -04005375 }
5376
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005377 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005378
Josef Bacik4ef31a42013-08-13 14:10:08 -04005379 /*
5380 * Errors here aren't a big deal, it just means we leave orphan items
5381 * in the tree. They will be cleaned up on the next mount.
5382 */
Yan, Zheng80825102009-11-12 09:35:36 +00005383 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005384 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik4ef31a42013-08-13 14:10:08 -04005385 btrfs_orphan_del(trans, inode);
5386 } else {
5387 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00005388 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005389
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005390 trans->block_rsv = &fs_info->trans_block_rsv;
5391 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005392 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005393 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005394
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005395 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005396 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04005397no_delete:
Miao Xie89042e52013-05-15 07:48:15 +00005398 btrfs_remove_delayed_node(inode);
Jan Karadbd57682012-05-03 14:48:02 +02005399 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005400}
5401
5402/*
5403 * this returns the key found in the dir entry in the location pointer.
5404 * If no dir entries were found, location->objectid is 0.
5405 */
5406static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5407 struct btrfs_key *location)
5408{
5409 const char *name = dentry->d_name.name;
5410 int namelen = dentry->d_name.len;
5411 struct btrfs_dir_item *di;
5412 struct btrfs_path *path;
5413 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005414 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005415
5416 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005417 if (!path)
5418 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005419
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005420 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)), name,
Chris Mason39279cc2007-06-12 06:35:45 -04005421 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005422 if (IS_ERR(di))
5423 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005424
David Sterbac7040052011-04-19 18:00:01 +02005425 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005426 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005427
Chris Mason5f39d392007-10-15 16:14:19 -04005428 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005429out:
Chris Mason39279cc2007-06-12 06:35:45 -04005430 btrfs_free_path(path);
5431 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005432out_err:
5433 location->objectid = 0;
5434 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005435}
5436
5437/*
5438 * when we hit a tree root in a directory, the btrfs part of the inode
5439 * needs to be changed to reflect the root directory of the tree root. This
5440 * is kind of like crossing a mount point.
5441 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005442static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005443 struct inode *dir,
5444 struct dentry *dentry,
5445 struct btrfs_key *location,
5446 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005447{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005448 struct btrfs_path *path;
5449 struct btrfs_root *new_root;
5450 struct btrfs_root_ref *ref;
5451 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005452 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005453 int ret;
5454 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005455
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005456 path = btrfs_alloc_path();
5457 if (!path) {
5458 err = -ENOMEM;
5459 goto out;
5460 }
Chris Mason39279cc2007-06-12 06:35:45 -04005461
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005462 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005463 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5464 key.type = BTRFS_ROOT_REF_KEY;
5465 key.offset = location->objectid;
5466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005467 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005468 if (ret) {
5469 if (ret < 0)
5470 err = ret;
5471 goto out;
5472 }
Chris Mason39279cc2007-06-12 06:35:45 -04005473
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005474 leaf = path->nodes[0];
5475 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005476 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005477 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5478 goto out;
5479
5480 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5481 (unsigned long)(ref + 1),
5482 dentry->d_name.len);
5483 if (ret)
5484 goto out;
5485
David Sterbab3b4aa72011-04-21 01:20:15 +02005486 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005487
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005488 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005489 if (IS_ERR(new_root)) {
5490 err = PTR_ERR(new_root);
5491 goto out;
5492 }
5493
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005494 *sub_root = new_root;
5495 location->objectid = btrfs_root_dirid(&new_root->root_item);
5496 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005497 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005498 err = 0;
5499out:
5500 btrfs_free_path(path);
5501 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005502}
5503
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005504static void inode_tree_add(struct inode *inode)
5505{
5506 struct btrfs_root *root = BTRFS_I(inode)->root;
5507 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005508 struct rb_node **p;
5509 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005510 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005511 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005512
Al Viro1d3382cb2010-10-23 15:19:20 -04005513 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005514 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005515 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005516 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005517 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005518 while (*p) {
5519 parent = *p;
5520 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5521
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005522 if (ino < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005523 p = &parent->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005524 else if (ino > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005525 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005526 else {
5527 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005528 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005529 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005530 RB_CLEAR_NODE(parent);
5531 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005532 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005533 }
5534 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005535 rb_link_node(new, parent, p);
5536 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005537 spin_unlock(&root->inode_lock);
5538}
5539
5540static void inode_tree_del(struct inode *inode)
5541{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005542 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005543 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005544 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005545
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005546 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005547 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005548 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005549 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005550 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005551 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005552 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005553
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005554 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005555 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005556 spin_lock(&root->inode_lock);
5557 empty = RB_EMPTY_ROOT(&root->inode_tree);
5558 spin_unlock(&root->inode_lock);
5559 if (empty)
5560 btrfs_add_dead_root(root);
5561 }
5562}
5563
Jeff Mahoney143bede2012-03-01 14:56:26 +01005564void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005565{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005566 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04005567 struct rb_node *node;
5568 struct rb_node *prev;
5569 struct btrfs_inode *entry;
5570 struct inode *inode;
5571 u64 objectid = 0;
5572
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005573 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Liu Bo7813b3d2014-02-10 17:37:25 +08005574 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005575
5576 spin_lock(&root->inode_lock);
5577again:
5578 node = root->inode_tree.rb_node;
5579 prev = NULL;
5580 while (node) {
5581 prev = node;
5582 entry = rb_entry(node, struct btrfs_inode, rb_node);
5583
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005584 if (objectid < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005585 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005586 else if (objectid > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005587 node = node->rb_right;
5588 else
5589 break;
5590 }
5591 if (!node) {
5592 while (prev) {
5593 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005594 if (objectid <= btrfs_ino(BTRFS_I(&entry->vfs_inode))) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005595 node = prev;
5596 break;
5597 }
5598 prev = rb_next(prev);
5599 }
5600 }
5601 while (node) {
5602 entry = rb_entry(node, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005603 objectid = btrfs_ino(BTRFS_I(&entry->vfs_inode)) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005604 inode = igrab(&entry->vfs_inode);
5605 if (inode) {
5606 spin_unlock(&root->inode_lock);
5607 if (atomic_read(&inode->i_count) > 1)
5608 d_prune_aliases(inode);
5609 /*
Al Viro45321ac2010-06-07 13:43:19 -04005610 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005611 * the inode cache when its usage count
5612 * hits zero.
5613 */
5614 iput(inode);
5615 cond_resched();
5616 spin_lock(&root->inode_lock);
5617 goto again;
5618 }
5619
5620 if (cond_resched_lock(&root->inode_lock))
5621 goto again;
5622
5623 node = rb_next(node);
5624 }
5625 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005626}
5627
Chris Masone02119d2008-09-05 16:13:11 -04005628static int btrfs_init_locked_inode(struct inode *inode, void *p)
5629{
5630 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005631 inode->i_ino = args->location->objectid;
5632 memcpy(&BTRFS_I(inode)->location, args->location,
5633 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005634 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005635 return 0;
5636}
5637
5638static int btrfs_find_actor(struct inode *inode, void *opaque)
5639{
5640 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005641 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005642 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005643}
5644
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005645static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005646 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005647 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005648{
5649 struct inode *inode;
5650 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005651 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005652
Chris Mason90d3e592014-01-09 17:28:00 -08005653 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005654 args.root = root;
5655
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005656 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005657 btrfs_init_locked_inode,
5658 (void *)&args);
5659 return inode;
5660}
5661
Balaji Rao1a54ef82008-07-21 02:01:04 +05305662/* Get an inode object given its location and corresponding root.
5663 * Returns in *is_new if the inode was read from disk
5664 */
5665struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005666 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305667{
5668 struct inode *inode;
5669
Chris Mason90d3e592014-01-09 17:28:00 -08005670 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305671 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005672 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305673
5674 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005675 int ret;
5676
5677 ret = btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005678 if (!is_bad_inode(inode)) {
5679 inode_tree_add(inode);
5680 unlock_new_inode(inode);
5681 if (new)
5682 *new = 1;
5683 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005684 unlock_new_inode(inode);
5685 iput(inode);
Filipe Manana67710892016-06-06 11:51:25 +01005686 ASSERT(ret < 0);
5687 inode = ERR_PTR(ret < 0 ? ret : -ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005688 }
5689 }
5690
Balaji Rao1a54ef82008-07-21 02:01:04 +05305691 return inode;
5692}
5693
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005694static struct inode *new_simple_dir(struct super_block *s,
5695 struct btrfs_key *key,
5696 struct btrfs_root *root)
5697{
5698 struct inode *inode = new_inode(s);
5699
5700 if (!inode)
5701 return ERR_PTR(-ENOMEM);
5702
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005703 BTRFS_I(inode)->root = root;
5704 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005705 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005706
5707 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005708 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005709 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005710 inode->i_fop = &simple_dir_operations;
5711 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005712 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305713 inode->i_atime = inode->i_mtime;
5714 inode->i_ctime = inode->i_mtime;
5715 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005716
5717 return inode;
5718}
5719
Chris Mason3de45862008-11-17 21:02:50 -05005720struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005721{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005722 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005723 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005724 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005725 struct btrfs_root *sub_root = root;
5726 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005727 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005728 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005729
5730 if (dentry->d_name.len > BTRFS_NAME_LEN)
5731 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005732
Jeff Layton39e3c952012-11-28 11:30:53 -05005733 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005734 if (ret < 0)
5735 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005736
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005737 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005738 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005739
5740 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005741 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005742 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005743 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005744
5745 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5746
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005747 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005748 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005749 &location, &sub_root);
5750 if (ret < 0) {
5751 if (ret != -ENOENT)
5752 inode = ERR_PTR(ret);
5753 else
5754 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5755 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005756 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005757 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005758 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005759
Julia Lawall34d19ba2011-01-24 19:55:19 +00005760 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005761 down_read(&fs_info->cleanup_work_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005762 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005763 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005764 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005765 if (ret) {
5766 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005767 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005768 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005769 }
5770
Chris Mason3de45862008-11-17 21:02:50 -05005771 return inode;
5772}
5773
Nick Pigginfe15ce42011-01-07 17:49:23 +11005774static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005775{
5776 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005777 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005778
Li Zefan848cce02012-02-21 17:04:28 +08005779 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005780 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005781
Li Zefan848cce02012-02-21 17:04:28 +08005782 if (inode) {
5783 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005784 if (btrfs_root_refs(&root->root_item) == 0)
5785 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005786
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005787 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005788 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005789 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005790 return 0;
5791}
5792
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005793static void btrfs_dentry_release(struct dentry *dentry)
5794{
Daeseok Youn944a4512014-04-14 15:37:02 +09005795 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005796}
5797
Chris Mason3de45862008-11-17 21:02:50 -05005798static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005799 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005800{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005801 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005802
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005803 inode = btrfs_lookup_dentry(dir, dentry);
5804 if (IS_ERR(inode)) {
5805 if (PTR_ERR(inode) == -ENOENT)
5806 inode = NULL;
5807 else
5808 return ERR_CAST(inode);
5809 }
5810
Al Viro41d28bc2014-10-12 22:24:21 -04005811 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005812}
5813
Miao Xie16cdcec2011-04-22 18:12:22 +08005814unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005815 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5816};
5817
Al Viro9cdda8d2013-05-22 16:48:09 -04005818static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005819{
Al Viro9cdda8d2013-05-22 16:48:09 -04005820 struct inode *inode = file_inode(file);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005821 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005822 struct btrfs_root *root = BTRFS_I(inode)->root;
5823 struct btrfs_item *item;
5824 struct btrfs_dir_item *di;
5825 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005826 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005827 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005828 struct list_head ins_list;
5829 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005830 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005831 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005832 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005833 unsigned char d_type;
5834 int over = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005835 char tmp_name[32];
5836 char *name_ptr;
5837 int name_len;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005838 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005839 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005840
Al Viro9cdda8d2013-05-22 16:48:09 -04005841 if (!dir_emit_dots(file, ctx))
5842 return 0;
5843
David Woodhouse49593bf2008-08-17 17:08:36 +01005844 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005845 if (!path)
5846 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005847
David Sterbae4058b52015-11-27 16:31:35 +01005848 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005849
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005850 INIT_LIST_HEAD(&ins_list);
5851 INIT_LIST_HEAD(&del_list);
5852 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005853
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005854 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005855 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005856 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005857
Chris Mason39279cc2007-06-12 06:35:45 -04005858 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5859 if (ret < 0)
5860 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005861
5862 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005863 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005864 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005865 if (slot >= btrfs_header_nritems(leaf)) {
5866 ret = btrfs_next_leaf(root, path);
5867 if (ret < 0)
5868 goto err;
5869 else if (ret > 0)
5870 break;
5871 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005872 }
Chris Mason3de45862008-11-17 21:02:50 -05005873
Ross Kirkdd3cc162013-09-16 15:58:09 +01005874 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005875 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5876
5877 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005878 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005879 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005880 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005881 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005882 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005883 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005884 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005885
Al Viro9cdda8d2013-05-22 16:48:09 -04005886 ctx->pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01005887
Chris Mason39279cc2007-06-12 06:35:45 -04005888 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005889 if (verify_dir_item(fs_info, leaf, di))
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005890 goto next;
David Woodhouse49593bf2008-08-17 17:08:36 +01005891
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005892 name_len = btrfs_dir_name_len(leaf, di);
5893 if (name_len <= sizeof(tmp_name)) {
5894 name_ptr = tmp_name;
5895 } else {
5896 name_ptr = kmalloc(name_len, GFP_KERNEL);
5897 if (!name_ptr) {
5898 ret = -ENOMEM;
5899 goto err;
Chris Mason5f39d392007-10-15 16:14:19 -04005900 }
Chris Mason39279cc2007-06-12 06:35:45 -04005901 }
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005902 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5903 name_len);
5904
5905 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5906 btrfs_dir_item_key_to_cpu(leaf, di, &location);
5907
5908 over = !dir_emit(ctx, name_ptr, name_len, location.objectid,
5909 d_type);
5910
5911 if (name_ptr != tmp_name)
5912 kfree(name_ptr);
5913
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005914 if (over)
5915 goto nopos;
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005916 ctx->pos++;
Li Zefanb9e03af2011-03-23 10:43:58 +08005917next:
5918 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005919 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005920
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005921 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005922 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005923 goto nopos;
5924
Zach Browndb62efb2013-07-11 16:19:42 -07005925 /*
5926 * Stop new entries from being returned after we return the last
5927 * entry.
5928 *
5929 * New directory entries are assigned a strictly increasing
5930 * offset. This means that new entries created during readdir
5931 * are *guaranteed* to be seen in the future by that readdir.
5932 * This has broken buggy programs which operate on names as
5933 * they're returned by readdir. Until we re-use freed offsets
5934 * we have this hack to stop new entries from being returned
5935 * under the assumption that they'll never reach this huge
5936 * offset.
5937 *
5938 * This is being careful not to overflow 32bit loff_t unless the
5939 * last entry requires it because doing so has broken 32bit apps
5940 * in the past.
5941 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005942 if (ctx->pos >= INT_MAX)
5943 ctx->pos = LLONG_MAX;
5944 else
5945 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005946nopos:
5947 ret = 0;
5948err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005949 if (put)
5950 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005951 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005952 return ret;
5953}
5954
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005955int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005956{
5957 struct btrfs_root *root = BTRFS_I(inode)->root;
5958 struct btrfs_trans_handle *trans;
5959 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005960 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005961
Josef Bacik72ac3c02012-05-23 14:13:11 -04005962 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005963 return 0;
5964
Liu Bo83eea1f2012-07-10 05:28:39 -06005965 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005966 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005967
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005968 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005969 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005970 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005971 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005972 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005973 if (IS_ERR(trans))
5974 return PTR_ERR(trans);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005975 ret = btrfs_commit_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005976 }
5977 return ret;
5978}
5979
5980/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005981 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005982 * inode changes. But, it is most likely to find the inode in cache.
5983 * FIXME, needs more benchmarking...there are no reasons other than performance
5984 * to keep or drop this code.
5985 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005986static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005987{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005988 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005989 struct btrfs_root *root = BTRFS_I(inode)->root;
5990 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005991 int ret;
5992
Josef Bacik72ac3c02012-05-23 14:13:11 -04005993 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005994 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005995
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005996 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005997 if (IS_ERR(trans))
5998 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005999
6000 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006001 if (ret && ret == -ENOSPC) {
6002 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006003 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006004 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006005 if (IS_ERR(trans))
6006 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006007
Chris Mason94b60442010-05-26 11:02:00 -04006008 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006009 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006010 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006011 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006012 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006013
6014 return ret;
6015}
6016
6017/*
6018 * This is a copy of file_update_time. We need this so we can return error on
6019 * ENOSPC for updating the inode in the case of file write and mmap writes.
6020 */
Josef Bacike41f9412012-03-26 09:46:47 -04006021static int btrfs_update_time(struct inode *inode, struct timespec *now,
6022 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006023{
Alexander Block2bc5565282012-06-15 09:49:33 +02006024 struct btrfs_root *root = BTRFS_I(inode)->root;
6025
6026 if (btrfs_root_readonly(root))
6027 return -EROFS;
6028
Josef Bacike41f9412012-03-26 09:46:47 -04006029 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006030 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04006031 if (flags & S_CTIME)
6032 inode->i_ctime = *now;
6033 if (flags & S_MTIME)
6034 inode->i_mtime = *now;
6035 if (flags & S_ATIME)
6036 inode->i_atime = *now;
6037 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006038}
6039
Chris Masond352ac62008-09-29 15:18:18 -04006040/*
6041 * find the highest existing sequence number in a directory
6042 * and then set the in-memory index_cnt variable to reflect
6043 * free sequence numbers
6044 */
Josef Bacikaec74772008-07-24 12:12:38 -04006045static int btrfs_set_inode_index_count(struct inode *inode)
6046{
6047 struct btrfs_root *root = BTRFS_I(inode)->root;
6048 struct btrfs_key key, found_key;
6049 struct btrfs_path *path;
6050 struct extent_buffer *leaf;
6051 int ret;
6052
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006053 key.objectid = btrfs_ino(BTRFS_I(inode));
David Sterba962a2982014-06-04 18:41:45 +02006054 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006055 key.offset = (u64)-1;
6056
6057 path = btrfs_alloc_path();
6058 if (!path)
6059 return -ENOMEM;
6060
6061 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6062 if (ret < 0)
6063 goto out;
6064 /* FIXME: we should be able to handle this */
6065 if (ret == 0)
6066 goto out;
6067 ret = 0;
6068
6069 /*
6070 * MAGIC NUMBER EXPLANATION:
6071 * since we search a directory based on f_pos we have to start at 2
6072 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6073 * else has to start at 2
6074 */
6075 if (path->slots[0] == 0) {
6076 BTRFS_I(inode)->index_cnt = 2;
6077 goto out;
6078 }
6079
6080 path->slots[0]--;
6081
6082 leaf = path->nodes[0];
6083 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6084
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006085 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
David Sterba962a2982014-06-04 18:41:45 +02006086 found_key.type != BTRFS_DIR_INDEX_KEY) {
Josef Bacikaec74772008-07-24 12:12:38 -04006087 BTRFS_I(inode)->index_cnt = 2;
6088 goto out;
6089 }
6090
6091 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
6092out:
6093 btrfs_free_path(path);
6094 return ret;
6095}
6096
Chris Masond352ac62008-09-29 15:18:18 -04006097/*
6098 * helper to find a free sequence number in a given directory. This current
6099 * code is very simple, later versions will do smarter things in the btree
6100 */
Chris Mason3de45862008-11-17 21:02:50 -05006101int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006102{
6103 int ret = 0;
6104
6105 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08006106 ret = btrfs_inode_delayed_dir_index_count(dir);
6107 if (ret) {
6108 ret = btrfs_set_inode_index_count(dir);
6109 if (ret)
6110 return ret;
6111 }
Josef Bacikaec74772008-07-24 12:12:38 -04006112 }
6113
Chris Mason00e4e6b2008-08-05 11:18:09 -04006114 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04006115 BTRFS_I(dir)->index_cnt++;
6116
6117 return ret;
6118}
6119
Chris Masonb0d5d102014-09-08 13:08:51 -07006120static int btrfs_insert_inode_locked(struct inode *inode)
6121{
6122 struct btrfs_iget_args args;
6123 args.location = &BTRFS_I(inode)->location;
6124 args.root = BTRFS_I(inode)->root;
6125
6126 return insert_inode_locked4(inode,
6127 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6128 btrfs_find_actor, &args);
6129}
6130
Chris Mason39279cc2007-06-12 06:35:45 -04006131static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6132 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006133 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006134 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006135 u64 ref_objectid, u64 objectid,
6136 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006137{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006138 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006139 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006140 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006141 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006142 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006143 struct btrfs_inode_ref *ref;
6144 struct btrfs_key key[2];
6145 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006146 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006147 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006148 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006149
Chris Mason5f39d392007-10-15 16:14:19 -04006150 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006151 if (!path)
6152 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006153
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006154 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006155 if (!inode) {
6156 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006157 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006158 }
Chris Mason39279cc2007-06-12 06:35:45 -04006159
Li Zefan581bb052011-04-20 10:06:11 +08006160 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006161 * O_TMPFILE, set link count to 0, so that after this point,
6162 * we fill in an inode item with the correct link count.
6163 */
6164 if (!name)
6165 set_nlink(inode, 0);
6166
6167 /*
Li Zefan581bb052011-04-20 10:06:11 +08006168 * we have to initialize this early, so we can reclaim the inode
6169 * number if we fail afterwards in this function.
6170 */
6171 inode->i_ino = objectid;
6172
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006173 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006174 trace_btrfs_inode_request(dir);
6175
Chris Mason3de45862008-11-17 21:02:50 -05006176 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04006177 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006178 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006179 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006180 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006181 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006182 } else if (dir) {
6183 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006184 }
6185 /*
6186 * index_cnt is ignored for everything but a dir,
6187 * btrfs_get_inode_index_count has an explanation for the magic
6188 * number
6189 */
6190 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006191 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006192 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006193 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006194 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006195
Josef Bacik5dc562c2012-08-17 13:14:17 -04006196 /*
6197 * We could have gotten an inode number from somebody who was fsynced
6198 * and then removed in this same transaction, so let's just set full
6199 * sync since it will be a full sync anyway and this will blow away the
6200 * old info in the log.
6201 */
6202 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6203
Chris Mason9c583092008-01-29 15:15:18 -05006204 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006205 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006206 key[0].offset = 0;
6207
Chris Mason9c583092008-01-29 15:15:18 -05006208 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006209
6210 if (name) {
6211 /*
6212 * Start new inodes with an inode_ref. This is slightly more
6213 * efficient for small numbers of hard links since they will
6214 * be packed into one item. Extended refs will kick in if we
6215 * add more hard links than can fit in the ref item.
6216 */
6217 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006218 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006219 key[1].offset = ref_objectid;
6220
6221 sizes[1] = name_len + sizeof(*ref);
6222 }
Chris Mason9c583092008-01-29 15:15:18 -05006223
Chris Masonb0d5d102014-09-08 13:08:51 -07006224 location = &BTRFS_I(inode)->location;
6225 location->objectid = objectid;
6226 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006227 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006228
6229 ret = btrfs_insert_inode_locked(inode);
6230 if (ret < 0)
6231 goto fail;
6232
Chris Masonb9473432009-03-13 11:00:37 -04006233 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006234 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006235 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006236 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006237
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006238 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006239 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306240
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006241 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306242 inode->i_atime = inode->i_mtime;
6243 inode->i_ctime = inode->i_mtime;
6244 BTRFS_I(inode)->i_otime = inode->i_mtime;
6245
Chris Mason5f39d392007-10-15 16:14:19 -04006246 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6247 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006248 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006249 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006250 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006251
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006252 if (name) {
6253 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6254 struct btrfs_inode_ref);
6255 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6256 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6257 ptr = (unsigned long)(ref + 1);
6258 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6259 }
Chris Mason9c583092008-01-29 15:15:18 -05006260
Chris Mason5f39d392007-10-15 16:14:19 -04006261 btrfs_mark_buffer_dirty(path->nodes[0]);
6262 btrfs_free_path(path);
6263
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006264 btrfs_inherit_iflags(inode, dir);
6265
Al Viro569254b2011-07-24 17:08:40 -04006266 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006267 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006268 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006269 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006270 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6271 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006272 }
6273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006274 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006275
6276 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006277 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006278
Alexander Block8ea05e32012-07-25 17:35:53 +02006279 btrfs_update_root_times(trans, root);
6280
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006281 ret = btrfs_inode_inherit_props(trans, inode, dir);
6282 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006283 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006284 "error inheriting props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006285 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006286
Chris Mason39279cc2007-06-12 06:35:45 -04006287 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006288
6289fail_unlock:
6290 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006291fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006292 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006293 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006294 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006295 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006296 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006297}
6298
6299static inline u8 btrfs_inode_type(struct inode *inode)
6300{
6301 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6302}
6303
Chris Masond352ac62008-09-29 15:18:18 -04006304/*
6305 * utility function to add 'inode' into 'parent_inode' with
6306 * a give name and a given sequence number.
6307 * if 'add_backref' is true, also insert a backref from the
6308 * inode to the parent directory.
6309 */
Chris Masone02119d2008-09-05 16:13:11 -04006310int btrfs_add_link(struct btrfs_trans_handle *trans,
6311 struct inode *parent_inode, struct inode *inode,
6312 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006313{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006314 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006315 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006316 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04006317 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006318 u64 ino = btrfs_ino(BTRFS_I(inode));
6319 u64 parent_ino = btrfs_ino(BTRFS_I(parent_inode));
Chris Mason5f39d392007-10-15 16:14:19 -04006320
Li Zefan33345d012011-04-20 10:31:50 +08006321 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006322 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
6323 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006324 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006325 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006326 key.offset = 0;
6327 }
Chris Mason39279cc2007-06-12 06:35:45 -04006328
Li Zefan33345d012011-04-20 10:31:50 +08006329 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006330 ret = btrfs_add_root_ref(trans, fs_info, key.objectid,
6331 root->root_key.objectid, parent_ino,
6332 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006333 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006334 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6335 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006336 }
6337
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006338 /* Nothing to clean up yet */
6339 if (ret)
6340 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006341
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006342 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6343 parent_inode, &key,
6344 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006345 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006346 goto fail_dir_item;
6347 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006348 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006349 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006350 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006351
6352 btrfs_i_size_write(parent_inode, parent_inode->i_size +
6353 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006354 inode_inc_iversion(parent_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08006355 parent_inode->i_mtime = parent_inode->i_ctime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006356 current_time(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006357 ret = btrfs_update_inode(trans, root, parent_inode);
6358 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006359 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006360 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006361
6362fail_dir_item:
6363 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6364 u64 local_index;
6365 int err;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006366 err = btrfs_del_root_ref(trans, fs_info, key.objectid,
6367 root->root_key.objectid, parent_ino,
6368 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006369
6370 } else if (add_backref) {
6371 u64 local_index;
6372 int err;
6373
6374 err = btrfs_del_inode_ref(trans, root, name, name_len,
6375 ino, parent_ino, &local_index);
6376 }
6377 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006378}
6379
6380static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00006381 struct inode *dir, struct dentry *dentry,
6382 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006383{
Josef Bacika1b075d2010-11-19 20:36:11 +00006384 int err = btrfs_add_link(trans, dir, inode,
6385 dentry->d_name.name, dentry->d_name.len,
6386 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006387 if (err > 0)
6388 err = -EEXIST;
6389 return err;
6390}
6391
Josef Bacik618e21d2007-07-11 10:18:17 -04006392static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006393 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006394{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006395 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006396 struct btrfs_trans_handle *trans;
6397 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006398 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006399 int err;
6400 int drop_inode = 0;
6401 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006402 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006403
Josef Bacik9ed74f22009-09-11 16:12:44 -04006404 /*
6405 * 2 for inode item and ref
6406 * 2 for dir items
6407 * 1 for xattr if selinux is on
6408 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006409 trans = btrfs_start_transaction(root, 5);
6410 if (IS_ERR(trans))
6411 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006412
Li Zefan581bb052011-04-20 10:06:11 +08006413 err = btrfs_find_free_ino(root, &objectid);
6414 if (err)
6415 goto out_unlock;
6416
Josef Bacikaec74772008-07-24 12:12:38 -04006417 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006418 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006419 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006420 if (IS_ERR(inode)) {
6421 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006422 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006423 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006424
Casey Schauflerad19db72011-12-15 10:09:07 -05006425 /*
6426 * If the active LSM wants to access the inode during
6427 * d_instantiate it needs these. Smack checks to see
6428 * if the filesystem supports xattrs by looking at the
6429 * ops vector.
6430 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006431 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006432 init_special_inode(inode, inode->i_mode, rdev);
6433
6434 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006435 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006436 goto out_unlock_inode;
6437
6438 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
6439 if (err) {
6440 goto out_unlock_inode;
6441 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006442 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006443 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006444 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006445 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006446
Josef Bacik618e21d2007-07-11 10:18:17 -04006447out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006448 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006449 btrfs_balance_delayed_items(fs_info);
6450 btrfs_btree_balance_dirty(fs_info);
Josef Bacik618e21d2007-07-11 10:18:17 -04006451 if (drop_inode) {
6452 inode_dec_link_count(inode);
6453 iput(inode);
6454 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006455 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006456
6457out_unlock_inode:
6458 drop_inode = 1;
6459 unlock_new_inode(inode);
6460 goto out_unlock;
6461
Josef Bacik618e21d2007-07-11 10:18:17 -04006462}
6463
Chris Mason39279cc2007-06-12 06:35:45 -04006464static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006465 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006466{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006467 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006468 struct btrfs_trans_handle *trans;
6469 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006470 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006471 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006472 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006473 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006474 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006475
Josef Bacik9ed74f22009-09-11 16:12:44 -04006476 /*
6477 * 2 for inode item and ref
6478 * 2 for dir items
6479 * 1 for xattr if selinux is on
6480 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006481 trans = btrfs_start_transaction(root, 5);
6482 if (IS_ERR(trans))
6483 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006484
Li Zefan581bb052011-04-20 10:06:11 +08006485 err = btrfs_find_free_ino(root, &objectid);
6486 if (err)
6487 goto out_unlock;
6488
Josef Bacikaec74772008-07-24 12:12:38 -04006489 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006490 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006491 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006492 if (IS_ERR(inode)) {
6493 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006494 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006495 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006496 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006497 /*
6498 * If the active LSM wants to access the inode during
6499 * d_instantiate it needs these. Smack checks to see
6500 * if the filesystem supports xattrs by looking at the
6501 * ops vector.
6502 */
6503 inode->i_fop = &btrfs_file_operations;
6504 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006505 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006506
6507 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6508 if (err)
6509 goto out_unlock_inode;
6510
6511 err = btrfs_update_inode(trans, root, inode);
6512 if (err)
6513 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006514
Josef Bacika1b075d2010-11-19 20:36:11 +00006515 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006516 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006517 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006518
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006519 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006520 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006521 d_instantiate(dentry, inode);
6522
Chris Mason39279cc2007-06-12 06:35:45 -04006523out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006524 btrfs_end_transaction(trans);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006525 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006526 inode_dec_link_count(inode);
6527 iput(inode);
6528 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006529 btrfs_balance_delayed_items(fs_info);
6530 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006531 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006532
6533out_unlock_inode:
6534 unlock_new_inode(inode);
6535 goto out_unlock;
6536
Chris Mason39279cc2007-06-12 06:35:45 -04006537}
6538
6539static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6540 struct dentry *dentry)
6541{
Filipe Manana271dba452016-01-05 16:24:05 +00006542 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006543 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006544 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006545 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006546 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006547 int err;
6548 int drop_inode = 0;
6549
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006550 /* do not allow sys_link's with other subvols of the same device */
6551 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006552 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006553
Mark Fashehf1863732012-08-08 11:32:27 -07006554 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006555 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006556
Chris Mason3de45862008-11-17 21:02:50 -05006557 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006558 if (err)
6559 goto fail;
6560
Yan, Zhenga22285a2010-05-16 10:48:46 -04006561 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006562 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006563 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006564 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006565 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006566 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006567 if (IS_ERR(trans)) {
6568 err = PTR_ERR(trans);
Filipe Manana271dba452016-01-05 16:24:05 +00006569 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006570 goto fail;
6571 }
Chris Mason5f39d392007-10-15 16:14:19 -04006572
Miao Xie67de1172013-12-26 13:07:06 +08006573 /* There are several dir indexes for this inode, clear the cache. */
6574 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006575 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006576 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006577 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006578 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006579 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006580
Josef Bacika1b075d2010-11-19 20:36:11 +00006581 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006582
Yan, Zhenga5719522009-09-24 09:17:31 -04006583 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006584 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006585 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006586 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006587 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006588 if (err)
6589 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006590 if (inode->i_nlink == 1) {
6591 /*
6592 * If new hard link count is 1, it's a file created
6593 * with open(2) O_TMPFILE flag.
6594 */
6595 err = btrfs_orphan_del(trans, inode);
6596 if (err)
6597 goto fail;
6598 }
Al Viro08c422c2011-12-23 07:58:13 -05006599 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00006600 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006601 }
Chris Mason39279cc2007-06-12 06:35:45 -04006602
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006603 btrfs_balance_delayed_items(fs_info);
Chris Mason1832a6d2007-12-21 16:27:21 -05006604fail:
Filipe Manana271dba452016-01-05 16:24:05 +00006605 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006606 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006607 if (drop_inode) {
6608 inode_dec_link_count(inode);
6609 iput(inode);
6610 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006611 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006612 return err;
6613}
6614
Al Viro18bb1db2011-07-26 01:41:39 -04006615static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006616{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006617 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006618 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006619 struct btrfs_trans_handle *trans;
6620 struct btrfs_root *root = BTRFS_I(dir)->root;
6621 int err = 0;
6622 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006623 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006624 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006625
Josef Bacik9ed74f22009-09-11 16:12:44 -04006626 /*
6627 * 2 items for inode and ref
6628 * 2 items for dir items
6629 * 1 for xattr if selinux is on
6630 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006631 trans = btrfs_start_transaction(root, 5);
6632 if (IS_ERR(trans))
6633 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006634
Li Zefan581bb052011-04-20 10:06:11 +08006635 err = btrfs_find_free_ino(root, &objectid);
6636 if (err)
6637 goto out_fail;
6638
Josef Bacikaec74772008-07-24 12:12:38 -04006639 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006640 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006641 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006642 if (IS_ERR(inode)) {
6643 err = PTR_ERR(inode);
6644 goto out_fail;
6645 }
Chris Mason5f39d392007-10-15 16:14:19 -04006646
Chris Mason39279cc2007-06-12 06:35:45 -04006647 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006648 /* these must be set before we unlock the inode */
6649 inode->i_op = &btrfs_dir_inode_operations;
6650 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006651
Eric Paris2a7dba32011-02-01 11:05:39 -05006652 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006653 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006654 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006655
Chris Masondbe674a2008-07-17 12:54:05 -04006656 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006657 err = btrfs_update_inode(trans, root, inode);
6658 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006659 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006660
Josef Bacika1b075d2010-11-19 20:36:11 +00006661 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6662 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006663 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006664 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006665
Chris Mason39279cc2007-06-12 06:35:45 -04006666 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006667 /*
6668 * mkdir is special. We're unlocking after we call d_instantiate
6669 * to avoid a race with nfsd calling d_instantiate.
6670 */
6671 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006672 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006673
6674out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006675 btrfs_end_transaction(trans);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006676 if (drop_on_err) {
6677 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006678 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006679 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006680 btrfs_balance_delayed_items(fs_info);
6681 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006682 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006683
6684out_fail_inode:
6685 unlock_new_inode(inode);
6686 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006687}
6688
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006689/* Find next extent map of a given extent map, caller needs to ensure locks */
6690static struct extent_map *next_extent_map(struct extent_map *em)
6691{
6692 struct rb_node *next;
6693
6694 next = rb_next(&em->rb_node);
6695 if (!next)
6696 return NULL;
6697 return container_of(next, struct extent_map, rb_node);
6698}
6699
6700static struct extent_map *prev_extent_map(struct extent_map *em)
6701{
6702 struct rb_node *prev;
6703
6704 prev = rb_prev(&em->rb_node);
6705 if (!prev)
6706 return NULL;
6707 return container_of(prev, struct extent_map, rb_node);
6708}
6709
Chris Masond352ac62008-09-29 15:18:18 -04006710/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006711 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006712 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006713 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006714 */
Chris Mason3b951512008-04-17 11:29:12 -04006715static int merge_extent_mapping(struct extent_map_tree *em_tree,
6716 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006717 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006718 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006719{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006720 struct extent_map *prev;
6721 struct extent_map *next;
6722 u64 start;
6723 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006724 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006725
Chris Masone6dcd2d2008-07-17 12:53:50 -04006726 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006727
6728 if (existing->start > map_start) {
6729 next = existing;
6730 prev = prev_extent_map(next);
6731 } else {
6732 prev = existing;
6733 next = next_extent_map(prev);
6734 }
6735
6736 start = prev ? extent_map_end(prev) : em->start;
6737 start = max_t(u64, start, em->start);
6738 end = next ? next->start : extent_map_end(em);
6739 end = min_t(u64, end, extent_map_end(em));
6740 start_diff = start - em->start;
6741 em->start = start;
6742 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006743 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6744 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006745 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006746 em->block_len -= start_diff;
6747 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006748 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006749}
6750
Chris Masonc8b97812008-10-29 14:49:59 -04006751static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006752 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006753 size_t pg_offset, u64 extent_offset,
6754 struct btrfs_file_extent_item *item)
6755{
6756 int ret;
6757 struct extent_buffer *leaf = path->nodes[0];
6758 char *tmp;
6759 size_t max_size;
6760 unsigned long inline_size;
6761 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006762 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006763
6764 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006765 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006766 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6767 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006768 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006769 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006770 if (!tmp)
6771 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006772 ptr = btrfs_file_extent_inline_start(item);
6773
6774 read_extent_buffer(leaf, tmp, ptr, inline_size);
6775
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006776 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006777 ret = btrfs_decompress(compress_type, tmp, page,
6778 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006779 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006780 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006781}
6782
Chris Masond352ac62008-09-29 15:18:18 -04006783/*
6784 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006785 * the ugly parts come from merging extents from the disk with the in-ram
6786 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006787 * where the in-ram extents might be locked pending data=ordered completion.
6788 *
6789 * This also copies inline extents directly into the page.
6790 */
Chris Masond3977122009-01-05 21:25:51 -05006791
Chris Masona52d9a82007-08-27 16:49:44 -04006792struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006793 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006794 int create)
6795{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006796 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masona52d9a82007-08-27 16:49:44 -04006797 int ret;
6798 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006799 u64 extent_start = 0;
6800 u64 extent_end = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02006801 u64 objectid = btrfs_ino(BTRFS_I(inode));
Chris Masona52d9a82007-08-27 16:49:44 -04006802 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006803 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006804 struct btrfs_root *root = BTRFS_I(inode)->root;
6805 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006806 struct extent_buffer *leaf;
6807 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006808 struct extent_map *em = NULL;
6809 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006810 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006811 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006812 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006813
Chris Masona52d9a82007-08-27 16:49:44 -04006814again:
Chris Mason890871b2009-09-02 16:24:52 -04006815 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006816 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006817 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006818 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006819 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006820
Chris Masona52d9a82007-08-27 16:49:44 -04006821 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006822 if (em->start > start || em->start + em->len <= start)
6823 free_extent_map(em);
6824 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006825 free_extent_map(em);
6826 else
6827 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006828 }
David Sterba172ddd62011-04-21 00:48:27 +02006829 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006830 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006831 err = -ENOMEM;
6832 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006833 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006834 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006835 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006836 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006837 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006838 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006839
6840 if (!path) {
6841 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006842 if (!path) {
6843 err = -ENOMEM;
6844 goto out;
6845 }
6846 /*
6847 * Chances are we'll be called again, so go ahead and do
6848 * readahead
6849 */
David Sterbae4058b52015-11-27 16:31:35 +01006850 path->reada = READA_FORWARD;
Chris Masonf4219502008-07-22 11:18:09 -04006851 }
6852
Chris Mason179e29e2007-11-01 11:28:41 -04006853 ret = btrfs_lookup_file_extent(trans, root, path,
6854 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006855 if (ret < 0) {
6856 err = ret;
6857 goto out;
6858 }
6859
6860 if (ret != 0) {
6861 if (path->slots[0] == 0)
6862 goto not_found;
6863 path->slots[0]--;
6864 }
6865
Chris Mason5f39d392007-10-15 16:14:19 -04006866 leaf = path->nodes[0];
6867 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006868 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006869 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006870 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006871 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006872 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006873 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006874 /*
6875 * If we backup past the first extent we want to move forward
6876 * and see if there is an extent in front of us, otherwise we'll
6877 * say there is a hole for our whole search range which can
6878 * cause problems.
6879 */
6880 extent_end = start;
6881 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006882 }
6883
Chris Mason5f39d392007-10-15 16:14:19 -04006884 found_type = btrfs_file_extent_type(leaf, item);
6885 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006886 if (found_type == BTRFS_FILE_EXTENT_REG ||
6887 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006888 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006889 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006890 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6891 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006892 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006893 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006894 fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006895 }
Josef Bacik25a50342013-10-14 12:08:38 -04006896next:
Yan Zheng9036c102008-10-30 14:19:41 -04006897 if (start >= extent_end) {
6898 path->slots[0]++;
6899 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6900 ret = btrfs_next_leaf(root, path);
6901 if (ret < 0) {
6902 err = ret;
6903 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006904 }
Yan Zheng9036c102008-10-30 14:19:41 -04006905 if (ret > 0)
6906 goto not_found;
6907 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006908 }
Yan Zheng9036c102008-10-30 14:19:41 -04006909 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6910 if (found_key.objectid != objectid ||
6911 found_key.type != BTRFS_EXTENT_DATA_KEY)
6912 goto not_found;
6913 if (start + len <= found_key.offset)
6914 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006915 if (start > found_key.offset)
6916 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006917 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006918 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006919 em->len = found_key.offset - start;
6920 goto not_found_em;
6921 }
6922
Filipe Manana7ffbb592014-06-09 03:48:05 +01006923 btrfs_extent_item_to_extent_map(inode, path, item, new_inline, em);
6924
Yan Zhengd899e052008-10-30 14:25:28 -04006925 if (found_type == BTRFS_FILE_EXTENT_REG ||
6926 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006927 goto insert;
6928 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006929 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006930 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006931 size_t size;
6932 size_t extent_offset;
6933 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006934
Filipe Manana7ffbb592014-06-09 03:48:05 +01006935 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04006936 goto out;
Yan689f9342007-10-29 11:41:07 -04006937
Chris Mason514ac8a2014-01-03 21:07:00 -08006938 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04006939 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006940 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
6941 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006942 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006943 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006944 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006945 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04006946 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006947 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006948 if (btrfs_file_extent_compression(leaf, item) !=
6949 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09006950 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04006951 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04006952 if (ret) {
6953 err = ret;
6954 goto out;
6955 }
Chris Masonc8b97812008-10-29 14:49:59 -04006956 } else {
6957 map = kmap(page);
6958 read_extent_buffer(leaf, map + pg_offset, ptr,
6959 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006960 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04006961 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006962 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04006963 copy_size);
6964 }
Chris Masonc8b97812008-10-29 14:49:59 -04006965 kunmap(page);
6966 }
Chris Mason179e29e2007-11-01 11:28:41 -04006967 flush_dcache_page(page);
6968 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006969 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006970 if (!trans) {
6971 kunmap(page);
6972 free_extent_map(em);
6973 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006974
David Sterbab3b4aa72011-04-21 01:20:15 +02006975 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006976 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006977
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006978 if (IS_ERR(trans))
6979 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006980 goto again;
6981 }
Chris Masonc8b97812008-10-29 14:49:59 -04006982 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006983 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006984 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006985 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006986 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006987 }
Chris Masond1310b22008-01-24 16:13:08 -05006988 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006989 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006990 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04006991 }
6992not_found:
6993 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006994 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006995 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006996not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006997 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006998 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006999insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02007000 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05007001 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007002 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007003 "bad extent! em: [%llu %llu] passed [%llu %llu]",
7004 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04007005 err = -EIO;
7006 goto out;
7007 }
Chris Masond1310b22008-01-24 16:13:08 -05007008
7009 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04007010 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007011 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04007012 /* it is possible that someone inserted the extent into the tree
7013 * while we had the lock dropped. It is also possible that
7014 * an overlapping map exists in the tree
7015 */
Chris Masona52d9a82007-08-27 16:49:44 -04007016 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04007017 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007018
7019 ret = 0;
7020
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007021 existing = search_extent_mapping(em_tree, start, len);
7022 /*
7023 * existing will always be non-NULL, since there must be
7024 * extent causing the -EEXIST.
7025 */
Chris Mason8dff9c82015-09-19 11:28:25 -07007026 if (existing->start == em->start &&
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007027 extent_map_end(existing) >= extent_map_end(em) &&
Chris Mason8dff9c82015-09-19 11:28:25 -07007028 em->block_start == existing->block_start) {
7029 /*
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007030 * The existing extent map already encompasses the
7031 * entire extent map we tried to add.
Chris Mason8dff9c82015-09-19 11:28:25 -07007032 */
7033 free_extent_map(em);
7034 em = existing;
7035 err = 0;
7036
7037 } else if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08007038 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007039 /*
7040 * The existing extent map is the one nearest to
7041 * the [start, start + len) range which overlaps
7042 */
7043 err = merge_extent_mapping(em_tree, existing,
7044 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04007045 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007046 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04007047 free_extent_map(em);
7048 em = NULL;
7049 }
7050 } else {
7051 free_extent_map(em);
7052 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007053 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007054 }
Chris Masona52d9a82007-08-27 16:49:44 -04007055 }
Chris Mason890871b2009-09-02 16:24:52 -04007056 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007057out:
liubo1abe9b82011-03-24 11:18:59 +00007058
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007059 trace_btrfs_get_extent(root, BTRFS_I(inode), em);
liubo1abe9b82011-03-24 11:18:59 +00007060
Tsutomu Itoh527afb42015-08-19 14:55:00 +09007061 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007062 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007063 ret = btrfs_end_transaction(trans);
Chris Masond3977122009-01-05 21:25:51 -05007064 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04007065 err = ret;
7066 }
Chris Masona52d9a82007-08-27 16:49:44 -04007067 if (err) {
7068 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007069 return ERR_PTR(err);
7070 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007071 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007072 return em;
7073}
7074
Chris Masonec29ed52011-02-23 16:23:20 -05007075struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
7076 size_t pg_offset, u64 start, u64 len,
7077 int create)
7078{
7079 struct extent_map *em;
7080 struct extent_map *hole_em = NULL;
7081 u64 range_start = start;
7082 u64 end;
7083 u64 found;
7084 u64 found_end;
7085 int err = 0;
7086
7087 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7088 if (IS_ERR(em))
7089 return em;
7090 if (em) {
7091 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00007092 * if our em maps to
7093 * - a hole or
7094 * - a pre-alloc extent,
7095 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05007096 */
Liu Bof9e4fb52013-01-07 10:10:12 +00007097 if (em->block_start != EXTENT_MAP_HOLE &&
7098 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05007099 return em;
7100 else
7101 hole_em = em;
7102 }
7103
7104 /* check to see if we've wrapped (len == -1 or similar) */
7105 end = start + len;
7106 if (end < start)
7107 end = (u64)-1;
7108 else
7109 end -= 1;
7110
7111 em = NULL;
7112
7113 /* ok, we didn't find anything, lets look for delalloc */
7114 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
7115 end, len, EXTENT_DELALLOC, 1);
7116 found_end = range_start + found;
7117 if (found_end < range_start)
7118 found_end = (u64)-1;
7119
7120 /*
7121 * we didn't find anything useful, return
7122 * the original results from get_extent()
7123 */
7124 if (range_start > end || found_end <= start) {
7125 em = hole_em;
7126 hole_em = NULL;
7127 goto out;
7128 }
7129
7130 /* adjust the range_start to make sure it doesn't
7131 * go backwards from the start they passed in
7132 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307133 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007134 found = found_end - range_start;
7135
7136 if (found > 0) {
7137 u64 hole_start = start;
7138 u64 hole_len = len;
7139
David Sterba172ddd62011-04-21 00:48:27 +02007140 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007141 if (!em) {
7142 err = -ENOMEM;
7143 goto out;
7144 }
7145 /*
7146 * when btrfs_get_extent can't find anything it
7147 * returns one huge hole
7148 *
7149 * make sure what it found really fits our range, and
7150 * adjust to make sure it is based on the start from
7151 * the caller
7152 */
7153 if (hole_em) {
7154 u64 calc_end = extent_map_end(hole_em);
7155
7156 if (calc_end <= start || (hole_em->start > end)) {
7157 free_extent_map(hole_em);
7158 hole_em = NULL;
7159 } else {
7160 hole_start = max(hole_em->start, start);
7161 hole_len = calc_end - hole_start;
7162 }
7163 }
7164 em->bdev = NULL;
7165 if (hole_em && range_start > hole_start) {
7166 /* our hole starts before our delalloc, so we
7167 * have to return just the parts of the hole
7168 * that go until the delalloc starts
7169 */
7170 em->len = min(hole_len,
7171 range_start - hole_start);
7172 em->start = hole_start;
7173 em->orig_start = hole_start;
7174 /*
7175 * don't adjust block start at all,
7176 * it is fixed at EXTENT_MAP_HOLE
7177 */
7178 em->block_start = hole_em->block_start;
7179 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007180 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7181 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007182 } else {
7183 em->start = range_start;
7184 em->len = found;
7185 em->orig_start = range_start;
7186 em->block_start = EXTENT_MAP_DELALLOC;
7187 em->block_len = found;
7188 }
7189 } else if (hole_em) {
7190 return hole_em;
7191 }
7192out:
7193
7194 free_extent_map(hole_em);
7195 if (err) {
7196 free_extent_map(em);
7197 return ERR_PTR(err);
7198 }
7199 return em;
7200}
7201
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007202static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7203 const u64 start,
7204 const u64 len,
7205 const u64 orig_start,
7206 const u64 block_start,
7207 const u64 block_len,
7208 const u64 orig_block_len,
7209 const u64 ram_bytes,
7210 const int type)
7211{
7212 struct extent_map *em = NULL;
7213 int ret;
7214
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007215 if (type != BTRFS_ORDERED_NOCOW) {
7216 em = create_pinned_em(inode, start, len, orig_start,
7217 block_start, block_len, orig_block_len,
7218 ram_bytes, type);
7219 if (IS_ERR(em))
7220 goto out;
7221 }
7222 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7223 len, block_len, type);
7224 if (ret) {
7225 if (em) {
7226 free_extent_map(em);
7227 btrfs_drop_extent_cache(inode, start,
7228 start + len - 1, 0);
7229 }
7230 em = ERR_PTR(ret);
7231 }
7232 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007233
7234 return em;
7235}
7236
Josef Bacik4b46fce2010-05-23 11:00:55 -04007237static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7238 u64 start, u64 len)
7239{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007240 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007241 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007242 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007243 struct btrfs_key ins;
7244 u64 alloc_hint;
7245 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007246
Josef Bacik4b46fce2010-05-23 11:00:55 -04007247 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007248 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007249 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007250 if (ret)
7251 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007252
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007253 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7254 ins.objectid, ins.offset, ins.offset,
7255 ins.offset, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007256 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007257 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007258 btrfs_free_reserved_extent(fs_info, ins.objectid,
7259 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007260
Josef Bacik4b46fce2010-05-23 11:00:55 -04007261 return em;
7262}
7263
Chris Mason46bfbb52010-05-26 11:04:10 -04007264/*
7265 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7266 * block must be cow'd
7267 */
Josef Bacik00361582013-08-14 14:02:47 -04007268noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007269 u64 *orig_start, u64 *orig_block_len,
7270 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007271{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007272 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -04007273 struct btrfs_trans_handle *trans;
Chris Mason46bfbb52010-05-26 11:04:10 -04007274 struct btrfs_path *path;
7275 int ret;
7276 struct extent_buffer *leaf;
7277 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007278 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007279 struct btrfs_file_extent_item *fi;
7280 struct btrfs_key key;
7281 u64 disk_bytenr;
7282 u64 backref_offset;
7283 u64 extent_end;
7284 u64 num_bytes;
7285 int slot;
7286 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007287 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007288
Chris Mason46bfbb52010-05-26 11:04:10 -04007289 path = btrfs_alloc_path();
7290 if (!path)
7291 return -ENOMEM;
7292
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007293 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(BTRFS_I(inode)),
Chris Mason46bfbb52010-05-26 11:04:10 -04007294 offset, 0);
7295 if (ret < 0)
7296 goto out;
7297
7298 slot = path->slots[0];
7299 if (ret == 1) {
7300 if (slot == 0) {
7301 /* can't find the item, must cow */
7302 ret = 0;
7303 goto out;
7304 }
7305 slot--;
7306 }
7307 ret = 0;
7308 leaf = path->nodes[0];
7309 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007310 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007311 key.type != BTRFS_EXTENT_DATA_KEY) {
7312 /* not our file or wrong item type, must cow */
7313 goto out;
7314 }
7315
7316 if (key.offset > offset) {
7317 /* Wrong offset, must cow */
7318 goto out;
7319 }
7320
7321 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7322 found_type = btrfs_file_extent_type(leaf, fi);
7323 if (found_type != BTRFS_FILE_EXTENT_REG &&
7324 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7325 /* not a regular extent, must cow */
7326 goto out;
7327 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007328
7329 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7330 goto out;
7331
Miao Xiee77751a2013-12-27 21:11:50 +08007332 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7333 if (extent_end <= offset)
7334 goto out;
7335
Chris Mason46bfbb52010-05-26 11:04:10 -04007336 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007337 if (disk_bytenr == 0)
7338 goto out;
7339
7340 if (btrfs_file_extent_compression(leaf, fi) ||
7341 btrfs_file_extent_encryption(leaf, fi) ||
7342 btrfs_file_extent_other_encoding(leaf, fi))
7343 goto out;
7344
Chris Mason46bfbb52010-05-26 11:04:10 -04007345 backref_offset = btrfs_file_extent_offset(leaf, fi);
7346
Josef Bacik7ee9e442013-06-21 16:37:03 -04007347 if (orig_start) {
7348 *orig_start = key.offset - backref_offset;
7349 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7350 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7351 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007352
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007353 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007354 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007355
7356 num_bytes = min(offset + *len, extent_end) - offset;
7357 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7358 u64 range_end;
7359
Jeff Mahoneyda170662016-06-15 09:22:56 -04007360 range_end = round_up(offset + num_bytes,
7361 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007362 ret = test_range_bit(io_tree, offset, range_end,
7363 EXTENT_DELALLOC, 0, NULL);
7364 if (ret) {
7365 ret = -EAGAIN;
7366 goto out;
7367 }
7368 }
7369
Josef Bacik1bda19e2013-10-18 12:10:36 -04007370 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007371
7372 /*
7373 * look for other files referencing this extent, if we
7374 * find any we must cow
7375 */
Josef Bacik00361582013-08-14 14:02:47 -04007376 trans = btrfs_join_transaction(root);
7377 if (IS_ERR(trans)) {
7378 ret = 0;
Chris Mason46bfbb52010-05-26 11:04:10 -04007379 goto out;
Josef Bacik00361582013-08-14 14:02:47 -04007380 }
7381
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007382 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007383 key.offset - backref_offset, disk_bytenr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007384 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007385 if (ret) {
7386 ret = 0;
7387 goto out;
7388 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007389
7390 /*
7391 * adjust disk_bytenr and num_bytes to cover just the bytes
7392 * in this extent we are about to write. If there
7393 * are any csums in that range we have to cow in order
7394 * to keep the csums correct
7395 */
7396 disk_bytenr += backref_offset;
7397 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007398 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7399 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007400 /*
7401 * all of the above have passed, it is safe to overwrite this extent
7402 * without cow
7403 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007404 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007405 ret = 1;
7406out:
7407 btrfs_free_path(path);
7408 return ret;
7409}
7410
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007411bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7412{
7413 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7414 int found = false;
7415 void **pagep = NULL;
7416 struct page *page = NULL;
7417 int start_idx;
7418 int end_idx;
7419
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007420 start_idx = start >> PAGE_SHIFT;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007421
7422 /*
7423 * end is the last byte in the last page. end == start is legal
7424 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007425 end_idx = end >> PAGE_SHIFT;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007426
7427 rcu_read_lock();
7428
7429 /* Most of the code in this while loop is lifted from
7430 * find_get_page. It's been modified to begin searching from a
7431 * page and return just the first page found in that range. If the
7432 * found idx is less than or equal to the end idx then we know that
7433 * a page exists. If no pages are found or if those pages are
7434 * outside of the range then we're fine (yay!) */
7435 while (page == NULL &&
7436 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7437 page = radix_tree_deref_slot(pagep);
7438 if (unlikely(!page))
7439 break;
7440
7441 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007442 if (radix_tree_deref_retry(page)) {
7443 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007444 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007445 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007446 /*
7447 * Otherwise, shmem/tmpfs must be storing a swap entry
7448 * here as an exceptional entry: so return it without
7449 * attempting to raise page count.
7450 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007451 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007452 break; /* TODO: Is this relevant for this use case? */
7453 }
7454
Filipe Manana91405152014-06-05 13:22:24 +01007455 if (!page_cache_get_speculative(page)) {
7456 page = NULL;
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007457 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007458 }
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007459
7460 /*
7461 * Has the page moved?
7462 * This is part of the lockless pagecache protocol. See
7463 * include/linux/pagemap.h for details.
7464 */
7465 if (unlikely(page != *pagep)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007466 put_page(page);
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007467 page = NULL;
7468 }
7469 }
7470
7471 if (page) {
7472 if (page->index <= end_idx)
7473 found = true;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007474 put_page(page);
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007475 }
7476
7477 rcu_read_unlock();
7478 return found;
7479}
7480
Josef Bacikeb838e72012-07-31 16:28:48 -04007481static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7482 struct extent_state **cached_state, int writing)
7483{
7484 struct btrfs_ordered_extent *ordered;
7485 int ret = 0;
7486
7487 while (1) {
7488 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007489 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007490 /*
7491 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007492 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007493 * extents in this range.
7494 */
7495 ordered = btrfs_lookup_ordered_range(inode, lockstart,
7496 lockend - lockstart + 1);
7497
7498 /*
7499 * We need to make sure there are no buffered pages in this
7500 * range either, we could have raced between the invalidate in
7501 * generic_file_direct_write and locking the extent. The
7502 * invalidate needs to happen so that reads after a write do not
7503 * get stale data.
7504 */
Alex Gartrellfc4adbff2014-05-20 13:07:56 -07007505 if (!ordered &&
7506 (!writing ||
7507 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007508 break;
7509
7510 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7511 cached_state, GFP_NOFS);
7512
7513 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007514 /*
7515 * If we are doing a DIO read and the ordered extent we
7516 * found is for a buffered write, we can not wait for it
7517 * to complete and retry, because if we do so we can
7518 * deadlock with concurrent buffered writes on page
7519 * locks. This happens only if our DIO read covers more
7520 * than one extent map, if at this point has already
7521 * created an ordered extent for a previous extent map
7522 * and locked its range in the inode's io tree, and a
7523 * concurrent write against that previous extent map's
7524 * range and this range started (we unlock the ranges
7525 * in the io tree only when the bios complete and
7526 * buffered writes always lock pages before attempting
7527 * to lock range in the io tree).
7528 */
7529 if (writing ||
7530 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7531 btrfs_start_ordered_extent(inode, ordered, 1);
7532 else
7533 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007534 btrfs_put_ordered_extent(ordered);
7535 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007536 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007537 * We could trigger writeback for this range (and wait
7538 * for it to complete) and then invalidate the pages for
7539 * this range (through invalidate_inode_pages2_range()),
7540 * but that can lead us to a deadlock with a concurrent
7541 * call to readpages() (a buffered read or a defrag call
7542 * triggered a readahead) on a page lock due to an
7543 * ordered dio extent we created before but did not have
7544 * yet a corresponding bio submitted (whence it can not
7545 * complete), which makes readpages() wait for that
7546 * ordered extent to complete while holding a lock on
7547 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007548 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007549 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007550 }
7551
Filipe Mananaade77022016-02-18 14:28:55 +00007552 if (ret)
7553 break;
7554
Josef Bacikeb838e72012-07-31 16:28:48 -04007555 cond_resched();
7556 }
7557
7558 return ret;
7559}
7560
Josef Bacik69ffb542012-09-11 15:40:07 -04007561static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
7562 u64 len, u64 orig_start,
7563 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04007564 u64 orig_block_len, u64 ram_bytes,
7565 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007566{
7567 struct extent_map_tree *em_tree;
7568 struct extent_map *em;
7569 struct btrfs_root *root = BTRFS_I(inode)->root;
7570 int ret;
7571
7572 em_tree = &BTRFS_I(inode)->extent_tree;
7573 em = alloc_extent_map();
7574 if (!em)
7575 return ERR_PTR(-ENOMEM);
7576
7577 em->start = start;
7578 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04007579 em->mod_start = start;
7580 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04007581 em->len = len;
7582 em->block_len = block_len;
7583 em->block_start = block_start;
7584 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007585 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007586 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007587 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007588 set_bit(EXTENT_FLAG_PINNED, &em->flags);
7589 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05007590 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04007591
7592 do {
7593 btrfs_drop_extent_cache(inode, em->start,
7594 em->start + em->len - 1, 0);
7595 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007596 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007597 write_unlock(&em_tree->lock);
7598 } while (ret == -EEXIST);
7599
7600 if (ret) {
7601 free_extent_map(em);
7602 return ERR_PTR(ret);
7603 }
7604
7605 return em;
7606}
7607
Filipe Manana9c9464c2015-11-04 09:52:04 +00007608static void adjust_dio_outstanding_extents(struct inode *inode,
7609 struct btrfs_dio_data *dio_data,
7610 const u64 len)
7611{
David Sterba823bb202017-01-04 11:09:51 +01007612 unsigned num_extents = count_max_extents(len);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007613
Filipe Manana9c9464c2015-11-04 09:52:04 +00007614 /*
7615 * If we have an outstanding_extents count still set then we're
7616 * within our reservation, otherwise we need to adjust our inode
7617 * counter appropriately.
7618 */
Liu Boc2931662016-12-22 17:13:54 -08007619 if (dio_data->outstanding_extents >= num_extents) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007620 dio_data->outstanding_extents -= num_extents;
7621 } else {
Liu Boc2931662016-12-22 17:13:54 -08007622 /*
7623 * If dio write length has been split due to no large enough
7624 * contiguous space, we need to compensate our inode counter
7625 * appropriately.
7626 */
7627 u64 num_needed = num_extents - dio_data->outstanding_extents;
7628
Filipe Manana9c9464c2015-11-04 09:52:04 +00007629 spin_lock(&BTRFS_I(inode)->lock);
Liu Boc2931662016-12-22 17:13:54 -08007630 BTRFS_I(inode)->outstanding_extents += num_needed;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007631 spin_unlock(&BTRFS_I(inode)->lock);
7632 }
7633}
7634
Josef Bacik4b46fce2010-05-23 11:00:55 -04007635static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7636 struct buffer_head *bh_result, int create)
7637{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007638 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007639 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007640 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307641 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007642 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007643 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007644 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007645 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007646 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007647
Miao Xie172a5042013-02-21 02:48:22 -07007648 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007649 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007650 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007651 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007652
Josef Bacikc3298612012-08-03 16:49:19 -04007653 lockstart = start;
7654 lockend = start + len - 1;
7655
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007656 if (current->journal_info) {
7657 /*
7658 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007659 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007660 * confused.
7661 */
chandan50745b02015-08-28 21:10:13 +05307662 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007663 current->journal_info = NULL;
7664 }
7665
Josef Bacikeb838e72012-07-31 16:28:48 -04007666 /*
7667 * If this errors out it's because we couldn't invalidate pagecache for
7668 * this range and we need to fallback to buffered.
7669 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007670 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7671 create)) {
7672 ret = -ENOTBLK;
7673 goto err;
7674 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007675
Josef Bacik4b46fce2010-05-23 11:00:55 -04007676 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007677 if (IS_ERR(em)) {
7678 ret = PTR_ERR(em);
7679 goto unlock_err;
7680 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007681
7682 /*
7683 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7684 * io. INLINE is special, and we could probably kludge it in here, but
7685 * it's still buffered so for safety lets just fall back to the generic
7686 * buffered path.
7687 *
7688 * For COMPRESSED we _have_ to read the entire extent in so we can
7689 * decompress it, so there will be buffering required no matter what we
7690 * do, so go ahead and fallback to buffered.
7691 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007692 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007693 * to buffered IO. Don't blame me, this is the price we pay for using
7694 * the generic code.
7695 */
7696 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7697 em->block_start == EXTENT_MAP_INLINE) {
7698 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007699 ret = -ENOTBLK;
7700 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007701 }
7702
7703 /* Just a good old fashioned hole, return */
7704 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7705 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7706 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007707 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007708 }
7709
7710 /*
7711 * We don't allocate a new extent in the following cases
7712 *
7713 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7714 * existing extent.
7715 * 2) The extent is marked as PREALLOC. We're good to go here and can
7716 * just use the extent.
7717 *
7718 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007719 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007720 len = min(len, em->len - (start - em->start));
7721 lockstart = start + len;
7722 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007723 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007724
7725 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7726 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7727 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007728 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007729 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007730
7731 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7732 type = BTRFS_ORDERED_PREALLOC;
7733 else
7734 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007735 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007736 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007737
Josef Bacik00361582013-08-14 14:02:47 -04007738 if (can_nocow_extent(inode, start, &len, &orig_start,
Filipe Mananaf78c4362016-05-09 13:15:41 +01007739 &orig_block_len, &ram_bytes) == 1 &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007740 btrfs_inc_nocow_writers(fs_info, block_start)) {
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007741 struct extent_map *em2;
Filipe Manana0b901912016-05-09 13:15:27 +01007742
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007743 em2 = btrfs_create_dio_extent(inode, start, len,
7744 orig_start, block_start,
7745 len, orig_block_len,
7746 ram_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007747 btrfs_dec_nocow_writers(fs_info, block_start);
Josef Bacik69ffb542012-09-11 15:40:07 -04007748 if (type == BTRFS_ORDERED_PREALLOC) {
7749 free_extent_map(em);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007750 em = em2;
Josef Bacik69ffb542012-09-11 15:40:07 -04007751 }
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007752 if (em2 && IS_ERR(em2)) {
7753 ret = PTR_ERR(em2);
Josef Bacikeb838e72012-07-31 16:28:48 -04007754 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007755 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08007756 /*
7757 * For inode marked NODATACOW or extent marked PREALLOC,
7758 * use the existing or preallocated extent, so does not
7759 * need to adjust btrfs_space_info's bytes_may_use.
7760 */
7761 btrfs_free_reserved_data_space_noquota(inode,
7762 start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04007763 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007764 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007765 }
Josef Bacik00361582013-08-14 14:02:47 -04007766
Chris Mason46bfbb52010-05-26 11:04:10 -04007767 /*
7768 * this will cow the extent, reset the len in case we changed
7769 * it above
7770 */
7771 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007772 free_extent_map(em);
7773 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007774 if (IS_ERR(em)) {
7775 ret = PTR_ERR(em);
7776 goto unlock_err;
7777 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007778 len = min(len, em->len - (start - em->start));
7779unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007780 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7781 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007782 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007783 bh_result->b_bdev = em->bdev;
7784 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007785 if (create) {
7786 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7787 set_buffer_new(bh_result);
7788
7789 /*
7790 * Need to update the i_size under the extent lock so buffered
7791 * readers will get the updated i_size when we unlock.
7792 */
7793 if (start + len > i_size_read(inode))
7794 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007795
Filipe Manana9c9464c2015-11-04 09:52:04 +00007796 adjust_dio_outstanding_extents(inode, dio_data, len);
chandan50745b02015-08-28 21:10:13 +05307797 WARN_ON(dio_data->reserve < len);
7798 dio_data->reserve -= len;
Filipe Mananaf28a4922015-12-08 19:23:20 +00007799 dio_data->unsubmitted_oe_range_end = start + len;
chandan50745b02015-08-28 21:10:13 +05307800 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007801 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007802
Josef Bacikeb838e72012-07-31 16:28:48 -04007803 /*
7804 * In the case of write we need to clear and unlock the entire range,
7805 * in the case of read we need to unlock only the end area that we
7806 * aren't using if there is any left over space.
7807 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007808 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007809 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7810 lockend, unlock_bits, 1, 0,
7811 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007812 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007813 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007814 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007815
Josef Bacik4b46fce2010-05-23 11:00:55 -04007816 free_extent_map(em);
7817
7818 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007819
7820unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007821 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7822 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007823err:
chandan50745b02015-08-28 21:10:13 +05307824 if (dio_data)
7825 current->journal_info = dio_data;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007826 /*
7827 * Compensate the delalloc release we do in btrfs_direct_IO() when we
7828 * write less data then expected, so that we don't underflow our inode's
7829 * outstanding extents counter.
7830 */
7831 if (create && dio_data)
7832 adjust_dio_outstanding_extents(inode, dio_data, len);
7833
Josef Bacikeb838e72012-07-31 16:28:48 -04007834 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007835}
7836
Miao Xie8b110e32014-09-12 18:44:03 +08007837static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
Mike Christie81a75f672016-06-05 14:31:54 -05007838 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007839{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007840 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007841 int ret;
7842
Mike Christie37226b22016-06-05 14:31:52 -05007843 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007844
7845 bio_get(bio);
7846
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007847 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007848 if (ret)
7849 goto err;
7850
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007851 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007852err:
7853 bio_put(bio);
7854 return ret;
7855}
7856
7857static int btrfs_check_dio_repairable(struct inode *inode,
7858 struct bio *failed_bio,
7859 struct io_failure_record *failrec,
7860 int failed_mirror)
7861{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007862 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007863 int num_copies;
7864
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007865 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007866 if (num_copies == 1) {
7867 /*
7868 * we only have a single copy of the data, so don't bother with
7869 * all the retry and error correction code that follows. no
7870 * matter what the error is, it is very likely to persist.
7871 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007872 btrfs_debug(fs_info,
7873 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7874 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007875 return 0;
7876 }
7877
7878 failrec->failed_mirror = failed_mirror;
7879 failrec->this_mirror++;
7880 if (failrec->this_mirror == failed_mirror)
7881 failrec->this_mirror++;
7882
7883 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007884 btrfs_debug(fs_info,
7885 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7886 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007887 return 0;
7888 }
7889
7890 return 1;
7891}
7892
7893static int dio_read_error(struct inode *inode, struct bio *failed_bio,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307894 struct page *page, unsigned int pgoff,
7895 u64 start, u64 end, int failed_mirror,
7896 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007897{
7898 struct io_failure_record *failrec;
7899 struct bio *bio;
7900 int isector;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007901 int read_mode = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08007902 int ret;
7903
Mike Christie37226b22016-06-05 14:31:52 -05007904 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007905
7906 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7907 if (ret)
7908 return ret;
7909
7910 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7911 failed_mirror);
7912 if (!ret) {
7913 free_io_failure(inode, failrec);
7914 return -EIO;
7915 }
7916
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307917 if ((failed_bio->bi_vcnt > 1)
7918 || (failed_bio->bi_io_vec->bv_len
Jeff Mahoneyda170662016-06-15 09:22:56 -04007919 > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007920 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08007921
7922 isector = start - btrfs_io_bio(failed_bio)->logical;
7923 isector >>= inode->i_sb->s_blocksize_bits;
7924 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307925 pgoff, isector, repair_endio, repair_arg);
Miao Xie8b110e32014-09-12 18:44:03 +08007926 if (!bio) {
7927 free_io_failure(inode, failrec);
7928 return -EIO;
7929 }
Mike Christie37226b22016-06-05 14:31:52 -05007930 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie8b110e32014-09-12 18:44:03 +08007931
7932 btrfs_debug(BTRFS_I(inode)->root->fs_info,
7933 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
7934 read_mode, failrec->this_mirror, failrec->in_validation);
7935
Mike Christie81a75f672016-06-05 14:31:54 -05007936 ret = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007937 if (ret) {
7938 free_io_failure(inode, failrec);
7939 bio_put(bio);
7940 }
7941
7942 return ret;
7943}
7944
7945struct btrfs_retry_complete {
7946 struct completion done;
7947 struct inode *inode;
7948 u64 start;
7949 int uptodate;
7950};
7951
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007952static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08007953{
7954 struct btrfs_retry_complete *done = bio->bi_private;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307955 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08007956 struct bio_vec *bvec;
7957 int i;
7958
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02007959 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08007960 goto end;
7961
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307962 ASSERT(bio->bi_vcnt == 1);
7963 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007964 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307965
Miao Xie8b110e32014-09-12 18:44:03 +08007966 done->uptodate = 1;
7967 bio_for_each_segment_all(bvec, bio, i)
7968 clean_io_failure(done->inode, done->start, bvec->bv_page, 0);
7969end:
7970 complete(&done->done);
7971 bio_put(bio);
7972}
7973
7974static int __btrfs_correct_data_nocsum(struct inode *inode,
7975 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007976{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307977 struct btrfs_fs_info *fs_info;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007978 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08007979 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007980 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307981 unsigned int pgoff;
7982 u32 sectorsize;
7983 int nr_sectors;
Kent Overstreet2c30c712013-11-07 12:20:26 -08007984 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08007985 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08007986
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307987 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04007988 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307989
Miao Xiec1dc0892014-09-12 18:43:56 +08007990 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08007991 done.inode = inode;
7992
7993 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307994 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
7995 pgoff = bvec->bv_offset;
7996
7997next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08007998 done.uptodate = 0;
7999 done.start = start;
8000 init_completion(&done.done);
8001
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308002 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8003 pgoff, start, start + sectorsize - 1,
8004 io_bio->mirror_num,
8005 btrfs_retry_endio_nocsum, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008006 if (ret)
8007 return ret;
8008
8009 wait_for_completion(&done.done);
8010
8011 if (!done.uptodate) {
8012 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308013 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08008014 }
8015
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308016 start += sectorsize;
8017
8018 if (nr_sectors--) {
8019 pgoff += sectorsize;
8020 goto next_block_or_try_again;
8021 }
Miao Xie8b110e32014-09-12 18:44:03 +08008022 }
8023
8024 return 0;
8025}
8026
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008027static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08008028{
8029 struct btrfs_retry_complete *done = bio->bi_private;
8030 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308031 struct inode *inode;
Miao Xie8b110e32014-09-12 18:44:03 +08008032 struct bio_vec *bvec;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308033 u64 start;
Miao Xie8b110e32014-09-12 18:44:03 +08008034 int uptodate;
8035 int ret;
8036 int i;
8037
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008038 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08008039 goto end;
8040
8041 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308042
8043 start = done->start;
8044
8045 ASSERT(bio->bi_vcnt == 1);
8046 inode = bio->bi_io_vec->bv_page->mapping->host;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008047 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308048
Miao Xie8b110e32014-09-12 18:44:03 +08008049 bio_for_each_segment_all(bvec, bio, i) {
8050 ret = __readpage_endio_check(done->inode, io_bio, i,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308051 bvec->bv_page, bvec->bv_offset,
8052 done->start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08008053 if (!ret)
8054 clean_io_failure(done->inode, done->start,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308055 bvec->bv_page, bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08008056 else
8057 uptodate = 0;
8058 }
8059
8060 done->uptodate = uptodate;
8061end:
8062 complete(&done->done);
8063 bio_put(bio);
8064}
8065
8066static int __btrfs_subio_endio_read(struct inode *inode,
8067 struct btrfs_io_bio *io_bio, int err)
8068{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308069 struct btrfs_fs_info *fs_info;
Miao Xie8b110e32014-09-12 18:44:03 +08008070 struct bio_vec *bvec;
8071 struct btrfs_retry_complete done;
8072 u64 start;
8073 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308074 u32 sectorsize;
8075 int nr_sectors;
8076 unsigned int pgoff;
8077 int csum_pos;
Miao Xie8b110e32014-09-12 18:44:03 +08008078 int i;
8079 int ret;
8080
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308081 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008082 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308083
Miao Xie8b110e32014-09-12 18:44:03 +08008084 err = 0;
8085 start = io_bio->logical;
8086 done.inode = inode;
8087
Miao Xiec1dc0892014-09-12 18:43:56 +08008088 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308089 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8090
8091 pgoff = bvec->bv_offset;
8092next_block:
8093 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
8094 ret = __readpage_endio_check(inode, io_bio, csum_pos,
8095 bvec->bv_page, pgoff, start,
8096 sectorsize);
Miao Xie8b110e32014-09-12 18:44:03 +08008097 if (likely(!ret))
8098 goto next;
8099try_again:
8100 done.uptodate = 0;
8101 done.start = start;
8102 init_completion(&done.done);
8103
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308104 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8105 pgoff, start, start + sectorsize - 1,
8106 io_bio->mirror_num,
8107 btrfs_retry_endio, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008108 if (ret) {
8109 err = ret;
8110 goto next;
8111 }
8112
8113 wait_for_completion(&done.done);
8114
8115 if (!done.uptodate) {
8116 /* We might have another mirror, so try again */
8117 goto try_again;
8118 }
8119next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308120 offset += sectorsize;
8121 start += sectorsize;
8122
8123 ASSERT(nr_sectors);
8124
8125 if (--nr_sectors) {
8126 pgoff += sectorsize;
8127 goto next_block;
8128 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008129 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008130
8131 return err;
8132}
8133
Miao Xie8b110e32014-09-12 18:44:03 +08008134static int btrfs_subio_endio_read(struct inode *inode,
8135 struct btrfs_io_bio *io_bio, int err)
8136{
8137 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8138
8139 if (skip_csum) {
8140 if (unlikely(err))
8141 return __btrfs_correct_data_nocsum(inode, io_bio);
8142 else
8143 return 0;
8144 } else {
8145 return __btrfs_subio_endio_read(inode, io_bio, err);
8146 }
8147}
8148
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008149static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008150{
8151 struct btrfs_dio_private *dip = bio->bi_private;
8152 struct inode *inode = dip->inode;
8153 struct bio *dio_bio;
8154 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008155 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08008156
Miao Xie8b110e32014-09-12 18:44:03 +08008157 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
8158 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008159
Josef Bacik4b46fce2010-05-23 11:00:55 -04008160 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008161 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008162 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008163
Josef Bacik4b46fce2010-05-23 11:00:55 -04008164 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008165
Filipe Manana1636d1d2016-02-15 16:20:26 +00008166 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008167 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08008168
8169 if (io_bio->end_io)
8170 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04008171 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008172}
8173
Filipe Manana14543772015-11-24 16:23:54 +00008174static void btrfs_endio_direct_write_update_ordered(struct inode *inode,
8175 const u64 offset,
8176 const u64 bytes,
8177 const int uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008178{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008179 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008180 struct btrfs_ordered_extent *ordered = NULL;
Filipe Manana14543772015-11-24 16:23:54 +00008181 u64 ordered_offset = offset;
8182 u64 ordered_bytes = bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008183 int ret;
8184
Chris Mason163cf092010-11-28 19:56:33 -05008185again:
8186 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8187 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008188 ordered_bytes,
Filipe Manana14543772015-11-24 16:23:54 +00008189 uptodate);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008190 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008191 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008192
Liu Bo9e0af232014-08-15 23:36:53 +08008193 btrfs_init_work(&ordered->work, btrfs_endio_write_helper,
8194 finish_ordered_fn, NULL, NULL);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008195 btrfs_queue_work(fs_info->endio_write_workers, &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008196out_test:
8197 /*
8198 * our bio might span multiple ordered extents. If we haven't
8199 * completed the accounting for the whole dio, go back and try again
8200 */
Filipe Manana14543772015-11-24 16:23:54 +00008201 if (ordered_offset < offset + bytes) {
8202 ordered_bytes = offset + bytes - ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008203 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008204 goto again;
8205 }
Filipe Manana14543772015-11-24 16:23:54 +00008206}
8207
8208static void btrfs_endio_direct_write(struct bio *bio)
8209{
8210 struct btrfs_dio_private *dip = bio->bi_private;
8211 struct bio *dio_bio = dip->dio_bio;
8212
8213 btrfs_endio_direct_write_update_ordered(dip->inode,
8214 dip->logical_offset,
8215 dip->bytes,
8216 !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008217
Josef Bacik4b46fce2010-05-23 11:00:55 -04008218 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008219
Filipe Manana1636d1d2016-02-15 16:20:26 +00008220 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008221 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04008222 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008223}
8224
Mike Christie81a75f672016-06-05 14:31:54 -05008225static int __btrfs_submit_bio_start_direct_io(struct inode *inode,
Chris Masoneaf25d92010-05-25 09:48:28 -04008226 struct bio *bio, int mirror_num,
8227 unsigned long bio_flags, u64 offset)
8228{
8229 int ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008230 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008231 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008232 return 0;
8233}
8234
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008235static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008236{
8237 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008238 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008239
Miao Xie8b110e32014-09-12 18:44:03 +08008240 if (err)
8241 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008242 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02008243 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio), bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008244 (unsigned long long)bio->bi_iter.bi_sector,
8245 bio->bi_iter.bi_size, err);
8246
8247 if (dip->subio_endio)
8248 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008249
8250 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008251 dip->errors = 1;
8252
8253 /*
8254 * before atomic variable goto zero, we must make sure
8255 * dip->errors is perceived to be set.
8256 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008257 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008258 }
8259
8260 /* if there are more bios still pending for this dio, just exit */
8261 if (!atomic_dec_and_test(&dip->pending_bios))
8262 goto out;
8263
Chris Mason9be33952013-05-17 18:30:14 -04008264 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008265 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008266 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008267 dip->dio_bio->bi_error = 0;
8268 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008269 }
8270out:
8271 bio_put(bio);
8272}
8273
8274static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8275 u64 first_sector, gfp_t gfp_flags)
8276{
Chris Masonda2f0f72015-07-02 13:57:22 -07008277 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008278 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008279 if (bio)
8280 bio_associate_current(bio);
8281 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008282}
8283
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008284static inline int btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008285 struct btrfs_dio_private *dip,
8286 struct bio *bio,
8287 u64 file_offset)
8288{
8289 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8290 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8291 int ret;
8292
8293 /*
8294 * We load all the csum data we need when we submit
8295 * the first bio to reduce the csum tree search and
8296 * contention.
8297 */
8298 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008299 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008300 file_offset);
8301 if (ret)
8302 return ret;
8303 }
8304
8305 if (bio == dip->orig_bio)
8306 return 0;
8307
8308 file_offset -= dip->logical_offset;
8309 file_offset >>= inode->i_sb->s_blocksize_bits;
8310 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8311
8312 return 0;
8313}
8314
Miao Xiee65e1532010-11-22 03:04:43 +00008315static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
Mike Christie81a75f672016-06-05 14:31:54 -05008316 u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008317 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008318{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008319 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008320 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008321 bool write = bio_op(bio) == REQ_OP_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00008322 int ret;
8323
Josef Bacikb812ce22012-11-16 13:56:32 -05008324 if (async_submit)
8325 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8326
Miao Xiee65e1532010-11-22 03:04:43 +00008327 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008328
8329 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008330 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008331 if (ret)
8332 goto err;
8333 }
Miao Xiee65e1532010-11-22 03:04:43 +00008334
Josef Bacik1ae39932011-04-06 14:41:34 -04008335 if (skip_sum)
8336 goto map;
8337
8338 if (write && async_submit) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008339 ret = btrfs_wq_submit_bio(fs_info, inode, bio, 0, 0,
8340 file_offset,
8341 __btrfs_submit_bio_start_direct_io,
8342 __btrfs_submit_bio_done);
Miao Xiee65e1532010-11-22 03:04:43 +00008343 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008344 } else if (write) {
8345 /*
8346 * If we aren't doing async submit, calculate the csum of the
8347 * bio now.
8348 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008349 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008350 if (ret)
8351 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008352 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008353 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008354 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008355 if (ret)
8356 goto err;
8357 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008358map:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008359 ret = btrfs_map_bio(fs_info, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008360err:
8361 bio_put(bio);
8362 return ret;
8363}
8364
Mike Christie81a75f672016-06-05 14:31:54 -05008365static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip,
Miao Xiee65e1532010-11-22 03:04:43 +00008366 int skip_sum)
8367{
8368 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008369 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008370 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008371 struct bio *bio;
8372 struct bio *orig_bio = dip->orig_bio;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008373 struct bio_vec *bvec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008374 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008375 u64 file_offset = dip->logical_offset;
8376 u64 submit_len = 0;
8377 u64 map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008378 u32 blocksize = fs_info->sectorsize;
Josef Bacik1ae39932011-04-06 14:41:34 -04008379 int async_submit = 0;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308380 int nr_sectors;
8381 int ret;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008382 int i, j;
Miao Xiee65e1532010-11-22 03:04:43 +00008383
Kent Overstreet4f024f32013-10-11 15:44:27 -07008384 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008385 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8386 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008387 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008388 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008389
Kent Overstreet4f024f32013-10-11 15:44:27 -07008390 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008391 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008392 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008393 goto submit;
8394 }
8395
David Woodhouse53b381b2013-01-29 18:40:14 -05008396 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008397 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008398 async_submit = 0;
8399 else
8400 async_submit = 1;
8401
Josef Bacik02f57c72011-04-06 14:25:44 -04008402 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8403 if (!bio)
8404 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008405
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008406 bio->bi_opf = orig_bio->bi_opf;
Josef Bacik02f57c72011-04-06 14:25:44 -04008407 bio->bi_private = dip;
8408 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008409 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008410 atomic_inc(&dip->pending_bios);
8411
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008412 bio_for_each_segment_all(bvec, orig_bio, j) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008413 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308414 i = 0;
8415next_block:
8416 if (unlikely(map_length < submit_len + blocksize ||
8417 bio_add_page(bio, bvec->bv_page, blocksize,
8418 bvec->bv_offset + (i * blocksize)) < blocksize)) {
Miao Xiee65e1532010-11-22 03:04:43 +00008419 /*
8420 * inc the count before we submit the bio so
8421 * we know the end IO handler won't happen before
8422 * we inc the count. Otherwise, the dip might get freed
8423 * before we're done setting it up
8424 */
8425 atomic_inc(&dip->pending_bios);
Mike Christie81a75f672016-06-05 14:31:54 -05008426 ret = __btrfs_submit_dio_bio(bio, inode,
Miao Xiee65e1532010-11-22 03:04:43 +00008427 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008428 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008429 if (ret) {
8430 bio_put(bio);
8431 atomic_dec(&dip->pending_bios);
8432 goto out_err;
8433 }
8434
Miao Xiee65e1532010-11-22 03:04:43 +00008435 start_sector += submit_len >> 9;
8436 file_offset += submit_len;
8437
8438 submit_len = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008439
8440 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8441 start_sector, GFP_NOFS);
8442 if (!bio)
8443 goto out_err;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008444 bio->bi_opf = orig_bio->bi_opf;
Miao Xiee65e1532010-11-22 03:04:43 +00008445 bio->bi_private = dip;
8446 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008447 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008448
Kent Overstreet4f024f32013-10-11 15:44:27 -07008449 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008450 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008451 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008452 &map_length, NULL, 0);
8453 if (ret) {
8454 bio_put(bio);
8455 goto out_err;
8456 }
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308457
8458 goto next_block;
Miao Xiee65e1532010-11-22 03:04:43 +00008459 } else {
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308460 submit_len += blocksize;
8461 if (--nr_sectors) {
8462 i++;
8463 goto next_block;
8464 }
Miao Xiee65e1532010-11-22 03:04:43 +00008465 }
8466 }
8467
Josef Bacik02f57c72011-04-06 14:25:44 -04008468submit:
Mike Christie81a75f672016-06-05 14:31:54 -05008469 ret = __btrfs_submit_dio_bio(bio, inode, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008470 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008471 if (!ret)
8472 return 0;
8473
8474 bio_put(bio);
8475out_err:
8476 dip->errors = 1;
8477 /*
8478 * before atomic variable goto zero, we must
8479 * make sure dip->errors is perceived to be set.
8480 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008481 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008482 if (atomic_dec_and_test(&dip->pending_bios))
8483 bio_io_error(dip->orig_bio);
8484
8485 /* bio_end_io() will handle error, so we needn't return it */
8486 return 0;
8487}
8488
Mike Christie8a4c1e42016-06-05 14:31:50 -05008489static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8490 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008491{
Filipe Manana61de7182015-07-01 12:13:10 +01008492 struct btrfs_dio_private *dip = NULL;
8493 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008494 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008495 int skip_sum;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008496 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008497 int ret = 0;
8498
8499 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8500
Chris Mason9be33952013-05-17 18:30:14 -04008501 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008502 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008503 ret = -ENOMEM;
8504 goto free_ordered;
8505 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008506
Miao Xiec1dc0892014-09-12 18:43:56 +08008507 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008508 if (!dip) {
8509 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008510 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008511 }
8512
8513 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008514 dip->inode = inode;
8515 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008516 dip->bytes = dio_bio->bi_iter.bi_size;
8517 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008518 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008519 dip->orig_bio = io_bio;
8520 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008521 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008522 btrfs_bio = btrfs_io_bio(io_bio);
8523 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008524
Miao Xiec1dc0892014-09-12 18:43:56 +08008525 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008526 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008527 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008528 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008529 dip->subio_endio = btrfs_subio_endio_read;
8530 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008531
Filipe Mananaf28a4922015-12-08 19:23:20 +00008532 /*
8533 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8534 * even if we fail to submit a bio, because in such case we do the
8535 * corresponding error handling below and it must not be done a second
8536 * time by btrfs_direct_IO().
8537 */
8538 if (write) {
8539 struct btrfs_dio_data *dio_data = current->journal_info;
8540
8541 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8542 dip->bytes;
8543 dio_data->unsubmitted_oe_range_start =
8544 dio_data->unsubmitted_oe_range_end;
8545 }
8546
Mike Christie81a75f672016-06-05 14:31:54 -05008547 ret = btrfs_submit_direct_hook(dip, skip_sum);
Miao Xiee65e1532010-11-22 03:04:43 +00008548 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008549 return;
Chris Mason9be33952013-05-17 18:30:14 -04008550
Miao Xie23ea8e52014-09-12 18:43:54 +08008551 if (btrfs_bio->end_io)
8552 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008553
Josef Bacik4b46fce2010-05-23 11:00:55 -04008554free_ordered:
8555 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008556 * If we arrived here it means either we failed to submit the dip
8557 * or we either failed to clone the dio_bio or failed to allocate the
8558 * dip. If we cloned the dio_bio and allocated the dip, we can just
8559 * call bio_endio against our io_bio so that we get proper resource
8560 * cleanup if we fail to submit the dip, otherwise, we must do the
8561 * same as btrfs_endio_direct_[write|read] because we can't call these
8562 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008563 */
Filipe Manana61de7182015-07-01 12:13:10 +01008564 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008565 io_bio->bi_error = -EIO;
8566 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008567 /*
8568 * The end io callbacks free our dip, do the final put on io_bio
8569 * and all the cleanup and final put for dio_bio (through
8570 * dio_end_io()).
8571 */
8572 dip = NULL;
8573 io_bio = NULL;
8574 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008575 if (write)
8576 btrfs_endio_direct_write_update_ordered(inode,
8577 file_offset,
8578 dio_bio->bi_iter.bi_size,
8579 0);
8580 else
Filipe Manana61de7182015-07-01 12:13:10 +01008581 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8582 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008583
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008584 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008585 /*
8586 * Releases and cleans up our dio_bio, no need to bio_put()
8587 * nor bio_endio()/bio_io_error() against dio_bio.
8588 */
8589 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008590 }
Filipe Manana61de7182015-07-01 12:13:10 +01008591 if (io_bio)
8592 bio_put(io_bio);
8593 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008594}
8595
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008596static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
8597 struct kiocb *iocb,
8598 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008599{
8600 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008601 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008602 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008603 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008604
8605 if (offset & blocksize_mask)
8606 goto out;
8607
Al Viro28060d52014-03-22 05:15:17 -04008608 if (iov_iter_alignment(iter) & blocksize_mask)
8609 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008610
Al Viro28060d52014-03-22 05:15:17 -04008611 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008612 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008613 return 0;
8614 /*
8615 * Check to make sure we don't have duplicate iov_base's in this
8616 * iovec, if so return EINVAL, otherwise we'll get csum errors
8617 * when reading back.
8618 */
8619 for (seg = 0; seg < iter->nr_segs; seg++) {
8620 for (i = seg + 1; i < iter->nr_segs; i++) {
8621 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008622 goto out;
8623 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008624 }
8625 retval = 0;
8626out:
8627 return retval;
8628}
Josef Bacikeb838e72012-07-31 16:28:48 -04008629
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008630static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008631{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008632 struct file *file = iocb->ki_filp;
8633 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008634 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308635 struct btrfs_dio_data dio_data = { 0 };
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008636 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008637 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008638 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008639 bool wakeup = true;
8640 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008641 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008642
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008643 if (check_direct_IO(fs_info, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008644 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008645
Jens Axboefe0f07d2015-04-15 17:05:48 -06008646 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008647 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008648
Josef Bacik0e267c42013-07-02 10:38:02 -04008649 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008650 * The generic stuff only does filemap_write_and_wait_range, which
8651 * isn't enough if we've written compressed pages to this area, so
8652 * we need to flush the dirty pages again to make absolutely sure
8653 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008654 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008655 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008656 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8657 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008658 filemap_fdatawrite_range(inode->i_mapping, offset,
8659 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008660
Omar Sandoval6f673762015-03-16 04:33:52 -07008661 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008662 /*
8663 * If the write DIO is beyond the EOF, we need update
8664 * the isize, but it is protected by i_mutex. So we can
8665 * not unlock the i_mutex at this case.
8666 */
8667 if (offset + count <= inode->i_size) {
Al Viro59551022016-01-22 15:40:57 -05008668 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008669 relock = true;
8670 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008671 ret = btrfs_delalloc_reserve_space(inode, offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008672 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008673 goto out;
David Sterba823bb202017-01-04 11:09:51 +01008674 dio_data.outstanding_extents = count_max_extents(count);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008675
8676 /*
8677 * We need to know how many extents we reserved so that we can
8678 * do the accounting properly if we go over the number we
8679 * originally calculated. Abuse current->journal_info for this.
8680 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008681 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008682 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008683 dio_data.unsubmitted_oe_range_start = (u64)offset;
8684 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308685 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308686 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008687 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8688 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008689 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008690 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8691 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008692 }
8693
Omar Sandoval17f8c842015-03-16 04:33:50 -07008694 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008695 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008696 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008697 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008698 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308699 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008700 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008701 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308702 if (dio_data.reserve)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008703 btrfs_delalloc_release_space(inode, offset,
8704 dio_data.reserve);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008705 /*
8706 * On error we might have left some ordered extents
8707 * without submitting corresponding bios for them, so
8708 * cleanup them up to avoid other tasks getting them
8709 * and waiting for them to complete forever.
8710 */
8711 if (dio_data.unsubmitted_oe_range_start <
8712 dio_data.unsubmitted_oe_range_end)
8713 btrfs_endio_direct_write_update_ordered(inode,
8714 dio_data.unsubmitted_oe_range_start,
8715 dio_data.unsubmitted_oe_range_end -
8716 dio_data.unsubmitted_oe_range_start,
8717 0);
Liu Boddba1bf2015-06-17 16:59:58 +08008718 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008719 btrfs_delalloc_release_space(inode, offset,
8720 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008721 }
Miao Xie38851cc2013-02-08 07:04:11 +00008722out:
Miao Xie2e60a512013-02-08 07:01:08 +00008723 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008724 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008725 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008726 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008727
8728 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008729}
8730
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008731#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8732
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008733static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8734 __u64 start, __u64 len)
8735{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008736 int ret;
8737
8738 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8739 if (ret)
8740 return ret;
8741
Chris Masonec29ed52011-02-23 16:23:20 -05008742 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008743}
8744
Chris Mason9ebefb182007-06-15 13:50:00 -04008745int btrfs_readpage(struct file *file, struct page *page)
8746{
Chris Masond1310b22008-01-24 16:13:08 -05008747 struct extent_io_tree *tree;
8748 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008749 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008750}
Chris Mason1832a6d2007-12-21 16:27:21 -05008751
Chris Mason39279cc2007-06-12 06:35:45 -04008752static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8753{
Chris Masond1310b22008-01-24 16:13:08 -05008754 struct extent_io_tree *tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008755 struct inode *inode = page->mapping->host;
8756 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008757
8758 if (current->flags & PF_MEMALLOC) {
8759 redirty_page_for_writepage(wbc, page);
8760 unlock_page(page);
8761 return 0;
8762 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008763
8764 /*
8765 * If we are under memory pressure we will call this directly from the
8766 * VM, we need to make sure we have the inode referenced for the ordered
8767 * extent. If not just return like we didn't do anything.
8768 */
8769 if (!igrab(inode)) {
8770 redirty_page_for_writepage(wbc, page);
8771 return AOP_WRITEPAGE_ACTIVATE;
8772 }
Chris Masond1310b22008-01-24 16:13:08 -05008773 tree = &BTRFS_I(page->mapping->host)->io_tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008774 ret = extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8775 btrfs_add_delayed_iput(inode);
8776 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008777}
Chris Mason39279cc2007-06-12 06:35:45 -04008778
Eric Sandeen48a3b632013-04-25 20:41:01 +00008779static int btrfs_writepages(struct address_space *mapping,
8780 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04008781{
Chris Masond1310b22008-01-24 16:13:08 -05008782 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008783
Chris Masond1310b22008-01-24 16:13:08 -05008784 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04008785 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8786}
8787
Chris Mason3ab2fb52007-11-08 10:59:22 -05008788static int
8789btrfs_readpages(struct file *file, struct address_space *mapping,
8790 struct list_head *pages, unsigned nr_pages)
8791{
Chris Masond1310b22008-01-24 16:13:08 -05008792 struct extent_io_tree *tree;
8793 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008794 return extent_readpages(tree, mapping, pages, nr_pages,
8795 btrfs_get_extent);
8796}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008797static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008798{
Chris Masond1310b22008-01-24 16:13:08 -05008799 struct extent_io_tree *tree;
8800 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008801 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008802
Chris Masond1310b22008-01-24 16:13:08 -05008803 tree = &BTRFS_I(page->mapping->host)->io_tree;
8804 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008805 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008806 if (ret == 1) {
8807 ClearPagePrivate(page);
8808 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008809 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008810 }
8811 return ret;
8812}
Chris Mason39279cc2007-06-12 06:35:45 -04008813
Chris Masone6dcd2d2008-07-17 12:53:50 -04008814static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8815{
Chris Mason98509cf2008-09-11 15:51:43 -04008816 if (PageWriteback(page) || PageDirty(page))
8817 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008818 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008819}
8820
Lukas Czernerd47992f2013-05-21 23:17:23 -04008821static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8822 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008823{
Josef Bacik5fd02042012-05-02 14:00:54 -04008824 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008825 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008826 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008827 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008828 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008829 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308830 u64 start;
8831 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008832 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008833
Chris Mason8b62b722009-09-02 16:53:46 -04008834 /*
8835 * we have the page locked, so new writeback can't start,
8836 * and the dirty bit won't be cleared while we are here.
8837 *
8838 * Wait for IO on this page so that we can safely clear
8839 * the PagePrivate2 bit and do ordered accounting
8840 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008841 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008842
Josef Bacik5fd02042012-05-02 14:00:54 -04008843 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008844 if (offset) {
8845 btrfs_releasepage(page, GFP_NOFS);
8846 return;
8847 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008848
8849 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008850 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308851again:
8852 start = page_start;
8853 ordered = btrfs_lookup_ordered_range(inode, start,
8854 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008855 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308856 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008857 /*
8858 * IO on this page will never be started, so we need
8859 * to account for any ordered extents now
8860 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008861 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308862 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008863 EXTENT_DIRTY | EXTENT_DELALLOC |
8864 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8865 EXTENT_DEFRAG, 1, 0, &cached_state,
8866 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008867 /*
8868 * whoever cleared the private bit is responsible
8869 * for the finish_ordered_io
8870 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008871 if (TestClearPagePrivate2(page)) {
8872 struct btrfs_ordered_inode_tree *tree;
8873 u64 new_len;
8874
8875 tree = &BTRFS_I(inode)->ordered_tree;
8876
8877 spin_lock_irq(&tree->lock);
8878 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308879 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008880 if (new_len < ordered->truncated_len)
8881 ordered->truncated_len = new_len;
8882 spin_unlock_irq(&tree->lock);
8883
8884 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308885 start,
8886 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008887 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008888 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008889 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008890 if (!inode_evicting) {
8891 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308892 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008893 &cached_state);
8894 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308895
8896 start = end + 1;
8897 if (start < page_end)
8898 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008899 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008900
Qu Wenruob9d0b382015-09-29 10:35:16 +08008901 /*
8902 * Qgroup reserved space handler
8903 * Page here will be either
8904 * 1) Already written to disk
8905 * In this case, its reserved space is released from data rsv map
8906 * and will be freed by delayed_ref handler finally.
8907 * So even we call qgroup_free_data(), it won't decrease reserved
8908 * space.
8909 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008910 * This means the reserved space should be freed here. However,
8911 * if a truncate invalidates the page (by clearing PageDirty)
8912 * and the page is accounted for while allocating extent
8913 * in btrfs_check_data_free_space() we let delayed_ref to
8914 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08008915 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008916 if (PageDirty(page))
8917 btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008918 if (!inode_evicting) {
8919 clear_extent_bit(tree, page_start, page_end,
8920 EXTENT_LOCKED | EXTENT_DIRTY |
8921 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
8922 EXTENT_DEFRAG, 1, 1,
8923 &cached_state, GFP_NOFS);
8924
8925 __btrfs_releasepage(page, GFP_NOFS);
8926 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008927
Chris Mason4a096752008-07-21 10:29:44 -04008928 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008929 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008930 ClearPagePrivate(page);
8931 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008932 put_page(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04008933 }
Chris Mason39279cc2007-06-12 06:35:45 -04008934}
8935
Chris Mason9ebefb182007-06-15 13:50:00 -04008936/*
8937 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
8938 * called from a page fault handler when a page is first dirtied. Hence we must
8939 * be careful to check for EOF conditions here. We set the page up correctly
8940 * for a written page which means we get ENOSPC checking when writing into
8941 * holes and correct delalloc and unwritten extent mapping on filesystems that
8942 * support these features.
8943 *
8944 * We are not allowed to take the i_mutex here so we have to play games to
8945 * protect against truncate races as the page could now be beyond EOF. Because
8946 * vmtruncate() writes the inode size before removing pages, once we have the
8947 * page lock we can determine safely if the page is beyond EOF. If it is not
8948 * beyond EOF, then the page is guaranteed safe against truncation until we
8949 * unlock the page.
8950 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07008951int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04008952{
Nick Pigginc2ec1752009-03-31 15:23:21 -07008953 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05008954 struct inode *inode = file_inode(vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008955 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008956 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8957 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008958 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008959 char *kaddr;
8960 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04008961 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05008962 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05008963 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308964 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04008965 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008966 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308967 u64 end;
8968
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008969 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04008970
Jan Karab2b5ef52012-06-12 16:20:45 +02008971 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08008972 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008973 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308974 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08008975
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308976 /*
8977 * Reserving delalloc space after obtaining the page lock can lead to
8978 * deadlock. For example, if a dirty page is locked by this function
8979 * and the call to btrfs_delalloc_reserve_space() ends up triggering
8980 * dirty page write out, then the btrfs_writepage() function could
8981 * end up waiting indefinitely to get a lock on the page currently
8982 * being processed by btrfs_page_mkwrite() function.
8983 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008984 ret = btrfs_delalloc_reserve_space(inode, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05308985 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05008986 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04008987 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05008988 reserved = 1;
8989 }
Nick Piggin56a76f82009-03-31 15:23:23 -07008990 if (ret) {
8991 if (ret == -ENOMEM)
8992 ret = VM_FAULT_OOM;
8993 else /* -ENOSPC, -EIO, etc */
8994 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05008995 if (reserved)
8996 goto out;
8997 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07008998 }
Chris Mason1832a6d2007-12-21 16:27:21 -05008999
Nick Piggin56a76f82009-03-31 15:23:23 -07009000 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04009001again:
Chris Mason9ebefb182007-06-15 13:50:00 -04009002 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04009003 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04009004
Chris Mason9ebefb182007-06-15 13:50:00 -04009005 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04009006 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04009007 /* page got truncated out from underneath us */
9008 goto out_unlock;
9009 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009010 wait_on_page_writeback(page);
9011
David Sterbaff13db42015-12-03 14:30:40 +01009012 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009013 set_page_extent_mapped(page);
9014
Chris Masoneb84ae02008-07-17 13:53:27 -04009015 /*
9016 * we can't set the delalloc bits if there are pending ordered
9017 * extents. Drop our locks and wait for them to finish
9018 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309019 ordered = btrfs_lookup_ordered_range(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009020 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009021 unlock_extent_cached(io_tree, page_start, page_end,
9022 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009023 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04009024 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009025 btrfs_put_ordered_extent(ordered);
9026 goto again;
9027 }
9028
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009029 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04009030 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009031 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009032 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309033 end = page_start + reserved_space - 1;
9034 spin_lock(&BTRFS_I(inode)->lock);
9035 BTRFS_I(inode)->outstanding_extents++;
9036 spin_unlock(&BTRFS_I(inode)->lock);
9037 btrfs_delalloc_release_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009038 PAGE_SIZE - reserved_space);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309039 }
9040 }
9041
Josef Bacikfbf19082009-10-01 17:10:23 -04009042 /*
9043 * XXX - page_mkwrite gets called every time the page is dirtied, even
9044 * if it was already dirty, so for space accounting reasons we need to
9045 * clear any delalloc bits for the range we are fixing to save. There
9046 * is probably a better way to do this, but for now keep consistent with
9047 * prepare_pages in the normal write path.
9048 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309049 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06009050 EXTENT_DIRTY | EXTENT_DELALLOC |
9051 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00009052 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04009053
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309054 ret = btrfs_set_extent_delalloc(inode, page_start, end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08009055 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009056 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009057 unlock_extent_cached(io_tree, page_start, page_end,
9058 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009059 ret = VM_FAULT_SIGBUS;
9060 goto out_unlock;
9061 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009062 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04009063
9064 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009065 if (page_start + PAGE_SIZE > size)
9066 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04009067 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009068 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009069
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009070 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009071 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009072 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009073 flush_dcache_page(page);
9074 kunmap(page);
9075 }
Chris Mason247e7432008-07-17 12:53:51 -04009076 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009077 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04009078 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04009079
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009080 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04009081 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06009082 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04009083
Josef Bacik2ac55d42010-02-03 19:33:23 +00009084 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04009085
9086out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02009087 if (!ret) {
9088 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04009089 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02009090 }
Chris Mason9ebefb182007-06-15 13:50:00 -04009091 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05009092out:
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309093 btrfs_delalloc_release_space(inode, page_start, reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009094out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02009095 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04009096 return ret;
9097}
9098
Josef Bacika41ad392011-01-31 15:30:16 -05009099static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04009100{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009101 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009102 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04009103 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04009104 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05009105 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009106 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009107 u64 mask = fs_info->sectorsize - 1;
9108 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04009109
Josef Bacik0ef8b722013-10-25 16:13:35 -04009110 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
9111 (u64)-1);
9112 if (ret)
9113 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009114
Josef Bacikfcb80c22011-05-03 10:40:22 -04009115 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04009116 * Yes ladies and gentlemen, this is indeed ugly. The fact is we have
Josef Bacikfcb80c22011-05-03 10:40:22 -04009117 * 3 things going on here
9118 *
9119 * 1) We need to reserve space for our orphan item and the space to
9120 * delete our orphan item. Lord knows we don't want to have a dangling
9121 * orphan item because we didn't reserve space to remove it.
9122 *
9123 * 2) We need to reserve space to update our inode.
9124 *
9125 * 3) We need to have something to cache all the space that is going to
9126 * be free'd up by the truncate operation, but also have some slack
9127 * space reserved in case it uses space during the truncate (thank you
9128 * very much snapshotting).
9129 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04009130 * And we need these to all be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04009131 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04009132 * we will use, so we need the truncate reservation to be separate so it
Josef Bacikfcb80c22011-05-03 10:40:22 -04009133 * doesn't end up using space reserved for updating the inode or
9134 * removing the orphan item. We also need to be able to stop the
9135 * transaction and start a new one, which means we need to be able to
9136 * update the inode several times, and we have no idea of knowing how
9137 * many times that will be, so we can't just reserve 1 item for the
Nicholas D Steeves01327612016-05-19 21:18:45 -04009138 * entirety of the operation, so that has to be done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04009139 * Then there is the orphan item, which does indeed need to be held on
9140 * to for the whole operation, and we need nobody to touch this reserved
9141 * space except the orphan code.
9142 *
9143 * So that leaves us with
9144 *
9145 * 1) root->orphan_block_rsv - for the orphan deletion.
9146 * 2) rsv - for the truncate reservation, which we will steal from the
9147 * transaction reservation.
9148 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
9149 * updating the inode.
9150 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009151 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009152 if (!rsv)
9153 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04009154 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009155 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05009156
Josef Bacik907cbce2011-08-08 13:46:15 -04009157 /*
Josef Bacik07127182011-08-19 10:29:59 -04009158 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009159 * 1 for updating the inode.
9160 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009161 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009162 if (IS_ERR(trans)) {
9163 err = PTR_ERR(trans);
9164 goto out;
9165 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009166
Josef Bacik907cbce2011-08-08 13:46:15 -04009167 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009168 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009169 min_size, 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009170 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009171
Chris Mason5a3f23d2009-03-31 13:27:11 -04009172 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009173 * So if we truncate and then write and fsync we normally would just
9174 * write the extents that changed, which is a problem if we need to
9175 * first truncate that entire inode. So set this flag so we write out
9176 * all of the extents in the inode to the sync log so we're completely
9177 * safe.
9178 */
9179 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009180 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009181
Yan, Zheng80825102009-11-12 09:35:36 +00009182 while (1) {
9183 ret = btrfs_truncate_inode_items(trans, root, inode,
9184 inode->i_size,
9185 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08009186 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05009187 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009188 break;
Josef Bacik3893e332011-01-31 16:03:11 -05009189 }
Chris Mason39279cc2007-06-12 06:35:45 -04009190
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009191 trans->block_rsv = &fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009192 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009193 if (ret) {
9194 err = ret;
9195 break;
9196 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04009197
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009198 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009199 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009200
9201 trans = btrfs_start_transaction(root, 2);
9202 if (IS_ERR(trans)) {
9203 ret = err = PTR_ERR(trans);
9204 trans = NULL;
9205 break;
9206 }
9207
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009208 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009209 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009210 rsv, min_size, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009211 BUG_ON(ret); /* shouldn't happen */
9212 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009213 }
9214
9215 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04009216 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009217 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009218 if (ret)
9219 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009220 }
9221
Chris Mason917c16b2011-11-08 14:49:59 -05009222 if (trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009223 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason917c16b2011-11-08 14:49:59 -05009224 ret = btrfs_update_inode(trans, root, inode);
9225 if (ret && !err)
9226 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04009227
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009228 ret = btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009229 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009230 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009231out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009232 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009233
Josef Bacik3893e332011-01-31 16:03:11 -05009234 if (ret && !err)
9235 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05009236
Josef Bacik3893e332011-01-31 16:03:11 -05009237 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009238}
9239
Sven Wegener3b963622008-06-09 21:57:42 -04009240/*
Chris Masond352ac62008-09-29 15:18:18 -04009241 * create a new subvolume directory/inode (helper for the ioctl).
9242 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009243int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009244 struct btrfs_root *new_root,
9245 struct btrfs_root *parent_root,
9246 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009247{
Chris Mason39279cc2007-06-12 06:35:45 -04009248 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009249 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009250 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009251
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009252 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9253 new_dirid, new_dirid,
9254 S_IFDIR | (~current_umask() & S_IRWXUGO),
9255 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009256 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009257 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009258 inode->i_op = &btrfs_dir_inode_operations;
9259 inode->i_fop = &btrfs_dir_file_operations;
9260
Miklos Szeredibfe86842011-10-28 14:13:29 +02009261 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04009262 btrfs_i_size_write(inode, 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009263 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009264
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009265 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9266 if (err)
9267 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009268 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009269 new_root->root_key.objectid, err);
9270
Yan, Zheng76dda932009-09-21 16:00:26 -04009271 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009272
Yan, Zheng76dda932009-09-21 16:00:26 -04009273 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009274 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009275}
9276
Chris Mason39279cc2007-06-12 06:35:45 -04009277struct inode *btrfs_alloc_inode(struct super_block *sb)
9278{
9279 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009280 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009281
9282 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
9283 if (!ei)
9284 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009285
9286 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009287 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009288 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009289 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009290 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009291 ei->delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009292 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009293 ei->disk_i_size = 0;
9294 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009295 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009296 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009297 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009298 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009299 ei->last_log_commit = 0;
David Sterba8089fe62015-11-19 14:15:51 +01009300 ei->delayed_iput_count = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009301
Josef Bacik9e0baf62011-07-15 15:16:44 +00009302 spin_lock_init(&ei->lock);
9303 ei->outstanding_extents = 0;
9304 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009305
Josef Bacik72ac3c02012-05-23 14:13:11 -04009306 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08009307 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009308
Miao Xie16cdcec2011-04-22 18:12:22 +08009309 ei->delayed_node = NULL;
9310
chandan r9cc97d62012-07-04 12:48:07 +05309311 ei->i_otime.tv_sec = 0;
9312 ei->i_otime.tv_nsec = 0;
9313
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009314 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009315 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02009316 extent_io_tree_init(&ei->io_tree, &inode->i_data);
9317 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009318 ei->io_tree.track_uptodate = 1;
9319 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009320 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009321 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009322 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009323 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009324 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009325 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009326 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009327 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009328
9329 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009330}
9331
Josef Bacikaaedb552013-10-11 14:44:09 -04009332#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9333void btrfs_test_destroy_inode(struct inode *inode)
9334{
9335 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
9336 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9337}
9338#endif
9339
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009340static void btrfs_i_callback(struct rcu_head *head)
9341{
9342 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009343 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9344}
9345
Chris Mason39279cc2007-06-12 06:35:45 -04009346void btrfs_destroy_inode(struct inode *inode)
9347{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009348 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009349 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009350 struct btrfs_root *root = BTRFS_I(inode)->root;
9351
Al Virob3d9b7a2012-06-09 13:51:19 -04009352 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009353 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009354 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9355 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009356 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
9357 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009358 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009359
Chris Mason5a3f23d2009-03-31 13:27:11 -04009360 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009361 * This can happen where we create an inode, but somebody else also
9362 * created the same inode and we need to destroy the one we already
9363 * created.
9364 */
9365 if (!root)
9366 goto free;
9367
Josef Bacik8a35d952012-05-23 14:26:42 -04009368 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9369 &BTRFS_I(inode)->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009370 btrfs_info(fs_info, "inode %llu still on the orphan list",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009371 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04009372 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009373 }
Josef Bacik7b128762008-07-24 12:17:14 -04009374
Chris Masond3977122009-01-05 21:25:51 -05009375 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009376 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9377 if (!ordered)
9378 break;
9379 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009380 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009381 "found ordered extent %llu %llu on inode cleanup",
9382 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009383 btrfs_remove_ordered_extent(inode, ordered);
9384 btrfs_put_ordered_extent(ordered);
9385 btrfs_put_ordered_extent(ordered);
9386 }
9387 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009388 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009389 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04009390 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009391free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009392 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009393}
9394
Al Viro45321ac2010-06-07 13:43:19 -04009395int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009396{
9397 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009398
Naohiro Aota6379ef92013-06-06 09:56:34 +00009399 if (root == NULL)
9400 return 1;
9401
Liu Bofa6ac872013-02-20 14:10:23 +00009402 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009403 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009404 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009405 else
Al Viro45321ac2010-06-07 13:43:19 -04009406 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009407}
9408
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009409static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009410{
9411 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9412
9413 inode_init_once(&ei->vfs_inode);
9414}
9415
9416void btrfs_destroy_cachep(void)
9417{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009418 /*
9419 * Make sure all delayed rcu free inodes are flushed before we
9420 * destroy cache.
9421 */
9422 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009423 kmem_cache_destroy(btrfs_inode_cachep);
9424 kmem_cache_destroy(btrfs_trans_handle_cachep);
9425 kmem_cache_destroy(btrfs_transaction_cachep);
9426 kmem_cache_destroy(btrfs_path_cachep);
9427 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009428}
9429
9430int btrfs_init_cachep(void)
9431{
David Sterba837e1972012-09-07 03:00:48 -06009432 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009433 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009434 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9435 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009436 if (!btrfs_inode_cachep)
9437 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009438
David Sterba837e1972012-09-07 03:00:48 -06009439 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009440 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009441 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009442 if (!btrfs_trans_handle_cachep)
9443 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009444
David Sterba837e1972012-09-07 03:00:48 -06009445 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009446 sizeof(struct btrfs_transaction), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009447 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009448 if (!btrfs_transaction_cachep)
9449 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009450
David Sterba837e1972012-09-07 03:00:48 -06009451 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009452 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009453 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009454 if (!btrfs_path_cachep)
9455 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009456
David Sterba837e1972012-09-07 03:00:48 -06009457 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009458 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009459 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009460 if (!btrfs_free_space_cachep)
9461 goto fail;
9462
Chris Mason39279cc2007-06-12 06:35:45 -04009463 return 0;
9464fail:
9465 btrfs_destroy_cachep();
9466 return -ENOMEM;
9467}
9468
9469static int btrfs_getattr(struct vfsmount *mnt,
9470 struct dentry *dentry, struct kstat *stat)
9471{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009472 u64 delalloc_bytes;
David Howells2b0143b2015-03-17 22:25:59 +00009473 struct inode *inode = d_inode(dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009474 u32 blocksize = inode->i_sb->s_blocksize;
9475
Chris Mason39279cc2007-06-12 06:35:45 -04009476 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009477 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009478
9479 spin_lock(&BTRFS_I(inode)->lock);
9480 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
9481 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009482 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009483 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009484 return 0;
9485}
9486
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009487static int btrfs_rename_exchange(struct inode *old_dir,
9488 struct dentry *old_dentry,
9489 struct inode *new_dir,
9490 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009491{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009492 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009493 struct btrfs_trans_handle *trans;
9494 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009495 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009496 struct inode *new_inode = new_dentry->d_inode;
9497 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009498 struct timespec ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009499 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009500 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9501 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009502 u64 old_idx = 0;
9503 u64 new_idx = 0;
9504 u64 root_objectid;
9505 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009506 bool root_log_pinned = false;
9507 bool dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009508
9509 /* we only allow rename subvolume link between subvolumes */
9510 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9511 return -EXDEV;
9512
9513 /* close the race window with snapshot create/destroy ioctl */
9514 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009515 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009516 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009517 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009518
9519 /*
9520 * We want to reserve the absolute worst case amount of items. So if
9521 * both inodes are subvols and we need to unlink them then that would
9522 * require 4 item modifications, but if they are both normal inodes it
9523 * would require 5 item modifications, so we'll assume their normal
9524 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9525 * should cover the worst case number of items we'll modify.
9526 */
9527 trans = btrfs_start_transaction(root, 12);
9528 if (IS_ERR(trans)) {
9529 ret = PTR_ERR(trans);
9530 goto out_notrans;
9531 }
9532
9533 /*
9534 * We need to find a free sequence number both in the source and
9535 * in the destination directory for the exchange.
9536 */
9537 ret = btrfs_set_inode_index(new_dir, &old_idx);
9538 if (ret)
9539 goto out_fail;
9540 ret = btrfs_set_inode_index(old_dir, &new_idx);
9541 if (ret)
9542 goto out_fail;
9543
9544 BTRFS_I(old_inode)->dir_index = 0ULL;
9545 BTRFS_I(new_inode)->dir_index = 0ULL;
9546
9547 /* Reference for the source. */
9548 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9549 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009550 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009551 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009552 btrfs_pin_log_trans(root);
9553 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009554 ret = btrfs_insert_inode_ref(trans, dest,
9555 new_dentry->d_name.name,
9556 new_dentry->d_name.len,
9557 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009558 btrfs_ino(BTRFS_I(new_dir)), old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009559 if (ret)
9560 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009561 }
9562
9563 /* And now for the dest. */
9564 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9565 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009566 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009567 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009568 btrfs_pin_log_trans(dest);
9569 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009570 ret = btrfs_insert_inode_ref(trans, root,
9571 old_dentry->d_name.name,
9572 old_dentry->d_name.len,
9573 new_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009574 btrfs_ino(BTRFS_I(old_dir)), new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009575 if (ret)
9576 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009577 }
9578
9579 /* Update inode version and ctime/mtime. */
9580 inode_inc_iversion(old_dir);
9581 inode_inc_iversion(new_dir);
9582 inode_inc_iversion(old_inode);
9583 inode_inc_iversion(new_inode);
9584 old_dir->i_ctime = old_dir->i_mtime = ctime;
9585 new_dir->i_ctime = new_dir->i_mtime = ctime;
9586 old_inode->i_ctime = ctime;
9587 new_inode->i_ctime = ctime;
9588
9589 if (old_dentry->d_parent != new_dentry->d_parent) {
9590 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
9591 btrfs_record_unlink_dir(trans, new_dir, new_inode, 1);
9592 }
9593
9594 /* src is a subvolume */
9595 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9596 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9597 ret = btrfs_unlink_subvol(trans, root, old_dir,
9598 root_objectid,
9599 old_dentry->d_name.name,
9600 old_dentry->d_name.len);
9601 } else { /* src is an inode */
9602 ret = __btrfs_unlink_inode(trans, root, old_dir,
9603 old_dentry->d_inode,
9604 old_dentry->d_name.name,
9605 old_dentry->d_name.len);
9606 if (!ret)
9607 ret = btrfs_update_inode(trans, root, old_inode);
9608 }
9609 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009610 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009611 goto out_fail;
9612 }
9613
9614 /* dest is a subvolume */
9615 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9616 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
9617 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9618 root_objectid,
9619 new_dentry->d_name.name,
9620 new_dentry->d_name.len);
9621 } else { /* dest is an inode */
9622 ret = __btrfs_unlink_inode(trans, dest, new_dir,
9623 new_dentry->d_inode,
9624 new_dentry->d_name.name,
9625 new_dentry->d_name.len);
9626 if (!ret)
9627 ret = btrfs_update_inode(trans, dest, new_inode);
9628 }
9629 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009630 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009631 goto out_fail;
9632 }
9633
9634 ret = btrfs_add_link(trans, new_dir, old_inode,
9635 new_dentry->d_name.name,
9636 new_dentry->d_name.len, 0, old_idx);
9637 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009638 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009639 goto out_fail;
9640 }
9641
9642 ret = btrfs_add_link(trans, old_dir, new_inode,
9643 old_dentry->d_name.name,
9644 old_dentry->d_name.len, 0, new_idx);
9645 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009646 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009647 goto out_fail;
9648 }
9649
9650 if (old_inode->i_nlink == 1)
9651 BTRFS_I(old_inode)->dir_index = old_idx;
9652 if (new_inode->i_nlink == 1)
9653 BTRFS_I(new_inode)->dir_index = new_idx;
9654
Filipe Manana86e8aa02016-05-05 02:02:27 +01009655 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009656 parent = new_dentry->d_parent;
9657 btrfs_log_new_name(trans, old_inode, old_dir, parent);
9658 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009659 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009660 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009661 if (dest_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009662 parent = old_dentry->d_parent;
9663 btrfs_log_new_name(trans, new_inode, new_dir, parent);
9664 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009665 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009666 }
9667out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009668 /*
9669 * If we have pinned a log and an error happened, we unpin tasks
9670 * trying to sync the log and force them to fallback to a transaction
9671 * commit if the log currently contains any of the inodes involved in
9672 * this rename operation (to ensure we do not persist a log with an
9673 * inconsistent state for any of these inodes or leading to any
9674 * inconsistencies when replayed). If the transaction was aborted, the
9675 * abortion reason is propagated to userspace when attempting to commit
9676 * the transaction. If the log does not contain any of these inodes, we
9677 * allow the tasks to sync it.
9678 */
9679 if (ret && (root_log_pinned || dest_log_pinned)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009680 if (btrfs_inode_in_log(old_dir, fs_info->generation) ||
9681 btrfs_inode_in_log(new_dir, fs_info->generation) ||
9682 btrfs_inode_in_log(old_inode, fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009683 (new_inode &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009684 btrfs_inode_in_log(new_inode, fs_info->generation)))
9685 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009686
9687 if (root_log_pinned) {
9688 btrfs_end_log_trans(root);
9689 root_log_pinned = false;
9690 }
9691 if (dest_log_pinned) {
9692 btrfs_end_log_trans(dest);
9693 dest_log_pinned = false;
9694 }
9695 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009696 ret = btrfs_end_transaction(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009697out_notrans:
9698 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009699 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009700 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009701 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009702
9703 return ret;
9704}
9705
9706static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9707 struct btrfs_root *root,
9708 struct inode *dir,
9709 struct dentry *dentry)
9710{
9711 int ret;
9712 struct inode *inode;
9713 u64 objectid;
9714 u64 index;
9715
9716 ret = btrfs_find_free_ino(root, &objectid);
9717 if (ret)
9718 return ret;
9719
9720 inode = btrfs_new_inode(trans, root, dir,
9721 dentry->d_name.name,
9722 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009723 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009724 objectid,
9725 S_IFCHR | WHITEOUT_MODE,
9726 &index);
9727
9728 if (IS_ERR(inode)) {
9729 ret = PTR_ERR(inode);
9730 return ret;
9731 }
9732
9733 inode->i_op = &btrfs_special_inode_operations;
9734 init_special_inode(inode, inode->i_mode,
9735 WHITEOUT_DEV);
9736
9737 ret = btrfs_init_inode_security(trans, inode, dir,
9738 &dentry->d_name);
9739 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009740 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009741
9742 ret = btrfs_add_nondir(trans, dir, dentry,
9743 inode, 0, index);
9744 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009745 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009746
9747 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009748out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009749 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009750 if (ret)
9751 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009752 iput(inode);
9753
Filipe Mananac9901612016-05-05 01:41:57 +01009754 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009755}
9756
Chris Mason39279cc2007-06-12 06:35:45 -04009757static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009758 struct inode *new_dir, struct dentry *new_dentry,
9759 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009760{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009761 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009762 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009763 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009764 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9765 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009766 struct inode *new_inode = d_inode(new_dentry);
9767 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009768 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009769 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009770 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009771 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009772 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009773
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009774 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009775 return -EPERM;
9776
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009777 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009778 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009779 return -EXDEV;
9780
Li Zefan33345d012011-04-20 10:31:50 +08009781 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009782 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009783 return -ENOTEMPTY;
9784
Chris Mason39279cc2007-06-12 06:35:45 -04009785 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009786 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009787 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009788
9789
9790 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009791 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009792 new_dentry->d_name.name,
9793 new_dentry->d_name.len);
9794
9795 if (ret) {
9796 if (ret == -EEXIST) {
9797 /* we shouldn't get
9798 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309799 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009800 return ret;
9801 }
9802 } else {
9803 /* maybe -EOVERFLOW */
9804 return ret;
9805 }
9806 }
9807 ret = 0;
9808
Chris Mason5a3f23d2009-03-31 13:27:11 -04009809 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009810 * we're using rename to replace one file with another. Start IO on it
9811 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009812 */
Chris Mason8d875f92014-08-12 10:47:42 -07009813 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009814 filemap_flush(old_inode->i_mapping);
9815
Yan, Zheng76dda932009-09-21 16:00:26 -04009816 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009817 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009818 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009819 /*
9820 * We want to reserve the absolute worst case amount of items. So if
9821 * both inodes are subvols and we need to unlink them then that would
9822 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009823 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009824 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9825 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009826 * If our rename has the whiteout flag, we need more 5 units for the
9827 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9828 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009829 */
Filipe Manana5062af32016-05-05 10:26:26 +01009830 trans_num_items = 11;
9831 if (flags & RENAME_WHITEOUT)
9832 trans_num_items += 5;
9833 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009834 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009835 ret = PTR_ERR(trans);
9836 goto out_notrans;
9837 }
Chris Mason5f39d392007-10-15 16:14:19 -04009838
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009839 if (dest != root)
9840 btrfs_record_root_in_trans(trans, dest);
9841
Yan, Zhenga5719522009-09-24 09:17:31 -04009842 ret = btrfs_set_inode_index(new_dir, &index);
9843 if (ret)
9844 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009845
Miao Xie67de1172013-12-26 13:07:06 +08009846 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009847 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009848 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009849 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009850 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009851 btrfs_pin_log_trans(root);
9852 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009853 ret = btrfs_insert_inode_ref(trans, dest,
9854 new_dentry->d_name.name,
9855 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009856 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009857 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009858 if (ret)
9859 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009860 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009861
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009862 inode_inc_iversion(old_dir);
9863 inode_inc_iversion(new_dir);
9864 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009865 old_dir->i_ctime = old_dir->i_mtime =
9866 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009867 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009868
Chris Mason12fcfd22009-03-24 10:24:20 -04009869 if (old_dentry->d_parent != new_dentry->d_parent)
9870 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
9871
Li Zefan33345d012011-04-20 10:31:50 +08009872 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009873 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9874 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9875 old_dentry->d_name.name,
9876 old_dentry->d_name.len);
9877 } else {
Al Viro92986792011-03-04 17:14:37 +00009878 ret = __btrfs_unlink_inode(trans, root, old_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009879 d_inode(old_dentry),
Al Viro92986792011-03-04 17:14:37 +00009880 old_dentry->d_name.name,
9881 old_dentry->d_name.len);
9882 if (!ret)
9883 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009884 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009885 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009886 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009887 goto out_fail;
9888 }
Chris Mason39279cc2007-06-12 06:35:45 -04009889
9890 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009891 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009892 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009893 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009894 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9895 root_objectid = BTRFS_I(new_inode)->location.objectid;
9896 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9897 root_objectid,
9898 new_dentry->d_name.name,
9899 new_dentry->d_name.len);
9900 BUG_ON(new_inode->i_nlink == 0);
9901 } else {
9902 ret = btrfs_unlink_inode(trans, dest, new_dir,
David Howells2b0143b2015-03-17 22:25:59 +00009903 d_inode(new_dentry),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009904 new_dentry->d_name.name,
9905 new_dentry->d_name.len);
9906 }
Josef Bacik4ef31a42013-08-13 14:10:08 -04009907 if (!ret && new_inode->i_nlink == 0)
David Howells2b0143b2015-03-17 22:25:59 +00009908 ret = btrfs_orphan_add(trans, d_inode(new_dentry));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009909 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009910 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009911 goto out_fail;
9912 }
Chris Mason39279cc2007-06-12 06:35:45 -04009913 }
Josef Bacikaec74772008-07-24 12:12:38 -04009914
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009915 ret = btrfs_add_link(trans, new_dir, old_inode,
9916 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04009917 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009918 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009919 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009920 goto out_fail;
9921 }
Chris Mason39279cc2007-06-12 06:35:45 -04009922
Miao Xie67de1172013-12-26 13:07:06 +08009923 if (old_inode->i_nlink == 1)
9924 BTRFS_I(old_inode)->dir_index = index;
9925
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009926 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -04009927 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009928
Josef Bacik6a912212010-11-20 09:48:00 +00009929 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009930 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009931 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009932 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009933
9934 if (flags & RENAME_WHITEOUT) {
9935 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
9936 old_dentry);
9937
9938 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009939 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009940 goto out_fail;
9941 }
Chris Mason12fcfd22009-03-24 10:24:20 -04009942 }
Chris Mason39279cc2007-06-12 06:35:45 -04009943out_fail:
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009944 /*
9945 * If we have pinned the log and an error happened, we unpin tasks
9946 * trying to sync the log and force them to fallback to a transaction
9947 * commit if the log currently contains any of the inodes involved in
9948 * this rename operation (to ensure we do not persist a log with an
9949 * inconsistent state for any of these inodes or leading to any
9950 * inconsistencies when replayed). If the transaction was aborted, the
9951 * abortion reason is propagated to userspace when attempting to commit
9952 * the transaction. If the log does not contain any of these inodes, we
9953 * allow the tasks to sync it.
9954 */
9955 if (ret && log_pinned) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009956 if (btrfs_inode_in_log(old_dir, fs_info->generation) ||
9957 btrfs_inode_in_log(new_dir, fs_info->generation) ||
9958 btrfs_inode_in_log(old_inode, fs_info->generation) ||
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009959 (new_inode &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009960 btrfs_inode_in_log(new_inode, fs_info->generation)))
9961 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f72016-04-29 11:34:22 +01009962
9963 btrfs_end_log_trans(root);
9964 log_pinned = false;
9965 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009966 btrfs_end_transaction(trans);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009967out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08009968 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009969 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009970
Chris Mason39279cc2007-06-12 06:35:45 -04009971 return ret;
9972}
9973
Miklos Szeredi80ace852014-07-23 15:15:32 +02009974static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
9975 struct inode *new_dir, struct dentry *new_dentry,
9976 unsigned int flags)
9977{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009978 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +02009979 return -EINVAL;
9980
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009981 if (flags & RENAME_EXCHANGE)
9982 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
9983 new_dentry);
9984
9985 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +02009986}
9987
Miao Xie8ccf6f192012-10-25 09:28:04 +00009988static void btrfs_run_delalloc_work(struct btrfs_work *work)
9989{
9990 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -04009991 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00009992
9993 delalloc_work = container_of(work, struct btrfs_delalloc_work,
9994 work);
Josef Bacik9f23e282013-10-28 15:03:41 -04009995 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +01009996 filemap_flush(inode->i_mapping);
9997 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
9998 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -04009999 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010000
10001 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -040010002 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010003 else
Josef Bacik9f23e282013-10-28 15:03:41 -040010004 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010005 complete(&delalloc_work->completion);
10006}
10007
10008struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
David Sterba651d4942015-11-27 19:24:16 +010010009 int delay_iput)
Miao Xie8ccf6f192012-10-25 09:28:04 +000010010{
10011 struct btrfs_delalloc_work *work;
10012
David Sterba100d5702015-12-08 14:39:32 +010010013 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010014 if (!work)
10015 return NULL;
10016
10017 init_completion(&work->completion);
10018 INIT_LIST_HEAD(&work->list);
10019 work->inode = inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010020 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +080010021 WARN_ON_ONCE(!inode);
10022 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
10023 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010024
10025 return work;
10026}
10027
10028void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
10029{
10030 wait_for_completion(&work->completion);
David Sterba100d5702015-12-08 14:39:32 +010010031 kfree(work);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010032}
10033
Chris Masond352ac62008-09-29 15:18:18 -040010034/*
10035 * some fairly slow code that needs optimization. This walks the list
10036 * of all the inodes with pending delalloc and forces them to disk.
10037 */
Miao Xie6c255e62014-03-06 13:55:01 +080010038static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
10039 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -040010040{
Chris Masonea8c2812008-08-04 23:17:27 -040010041 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010042 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010043 struct btrfs_delalloc_work *work, *next;
10044 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +000010045 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010046 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -040010047
Miao Xie8ccf6f192012-10-25 09:28:04 +000010048 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010049 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +000010050
Miao Xie573bfb72014-03-06 13:55:03 +080010051 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010052 spin_lock(&root->delalloc_lock);
10053 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010054 while (!list_empty(&splice)) {
10055 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -040010056 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010057
Miao Xieeb73c1b2013-05-15 07:48:22 +000010058 list_move_tail(&binode->delalloc_inodes,
10059 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010060 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +000010061 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010062 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010063 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +000010064 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010065 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010066
David Sterba651d4942015-11-27 19:24:16 +010010067 work = btrfs_alloc_delalloc_work(inode, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +020010068 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -040010069 if (delay_iput)
10070 btrfs_add_delayed_iput(inode);
10071 else
10072 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010073 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010074 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010075 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010076 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010077 btrfs_queue_work(root->fs_info->flush_workers,
10078 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010079 ret++;
10080 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010081 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010082 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010083 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010084 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010085 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010086
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010087out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010088 list_for_each_entry_safe(work, next, &works, list) {
10089 list_del_init(&work->list);
10090 btrfs_wait_and_free_delalloc_work(work);
10091 }
10092
Miao Xieeb73c1b2013-05-15 07:48:22 +000010093 if (!list_empty_careful(&splice)) {
10094 spin_lock(&root->delalloc_lock);
10095 list_splice_tail(&splice, &root->delalloc_inodes);
10096 spin_unlock(&root->delalloc_lock);
10097 }
Miao Xie573bfb72014-03-06 13:55:03 +080010098 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010099 return ret;
10100}
10101
10102int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
10103{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010104 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010105 int ret;
10106
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010107 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010108 return -EROFS;
10109
Miao Xie6c255e62014-03-06 13:55:01 +080010110 ret = __start_delalloc_inodes(root, delay_iput, -1);
10111 if (ret > 0)
10112 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010113 /*
10114 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -040010115 * we have to make sure the IO is actually started and that
10116 * ordered extents get created before we return
10117 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010118 atomic_inc(&fs_info->async_submit_draining);
10119 while (atomic_read(&fs_info->nr_async_submits) ||
10120 atomic_read(&fs_info->async_delalloc_pages)) {
10121 wait_event(fs_info->async_submit_wait,
10122 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10123 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -040010124 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010125 atomic_dec(&fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010126 return ret;
10127}
10128
Miao Xie6c255e62014-03-06 13:55:01 +080010129int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
10130 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010131{
10132 struct btrfs_root *root;
10133 struct list_head splice;
10134 int ret;
10135
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010136 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010137 return -EROFS;
10138
10139 INIT_LIST_HEAD(&splice);
10140
Miao Xie573bfb72014-03-06 13:55:03 +080010141 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010142 spin_lock(&fs_info->delalloc_root_lock);
10143 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010144 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010145 root = list_first_entry(&splice, struct btrfs_root,
10146 delalloc_root);
10147 root = btrfs_grab_fs_root(root);
10148 BUG_ON(!root);
10149 list_move_tail(&root->delalloc_root,
10150 &fs_info->delalloc_roots);
10151 spin_unlock(&fs_info->delalloc_root_lock);
10152
Miao Xie6c255e62014-03-06 13:55:01 +080010153 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010154 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010155 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010156 goto out;
10157
Miao Xie6c255e62014-03-06 13:55:01 +080010158 if (nr != -1) {
10159 nr -= ret;
10160 WARN_ON(nr < 0);
10161 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010162 spin_lock(&fs_info->delalloc_root_lock);
10163 }
10164 spin_unlock(&fs_info->delalloc_root_lock);
10165
Miao Xie6c255e62014-03-06 13:55:01 +080010166 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010167 atomic_inc(&fs_info->async_submit_draining);
10168 while (atomic_read(&fs_info->nr_async_submits) ||
10169 atomic_read(&fs_info->async_delalloc_pages)) {
10170 wait_event(fs_info->async_submit_wait,
10171 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10172 atomic_read(&fs_info->async_delalloc_pages) == 0));
10173 }
10174 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010175out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010176 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010177 spin_lock(&fs_info->delalloc_root_lock);
10178 list_splice_tail(&splice, &fs_info->delalloc_roots);
10179 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010180 }
Miao Xie573bfb72014-03-06 13:55:03 +080010181 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010182 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010183}
10184
Chris Mason39279cc2007-06-12 06:35:45 -040010185static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10186 const char *symname)
10187{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010188 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010189 struct btrfs_trans_handle *trans;
10190 struct btrfs_root *root = BTRFS_I(dir)->root;
10191 struct btrfs_path *path;
10192 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010193 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010194 int err;
10195 int drop_inode = 0;
10196 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010197 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010198 int name_len;
10199 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010200 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010201 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010202 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010203
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010204 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010205 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010206 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010207
Josef Bacik9ed74f22009-09-11 16:12:44 -040010208 /*
10209 * 2 items for inode item and ref
10210 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010211 * 1 item for updating parent inode item
10212 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010213 * 1 item for xattr if selinux is on
10214 */
Filipe Manana9269d122015-12-31 18:16:29 +000010215 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010216 if (IS_ERR(trans))
10217 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010218
Li Zefan581bb052011-04-20 10:06:11 +080010219 err = btrfs_find_free_ino(root, &objectid);
10220 if (err)
10221 goto out_unlock;
10222
Josef Bacikaec74772008-07-24 12:12:38 -040010223 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010224 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -040010225 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010226 if (IS_ERR(inode)) {
10227 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010228 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010229 }
Chris Mason39279cc2007-06-12 06:35:45 -040010230
Casey Schauflerad19db72011-12-15 10:09:07 -050010231 /*
10232 * If the active LSM wants to access the inode during
10233 * d_instantiate it needs these. Smack checks to see
10234 * if the filesystem supports xattrs by looking at the
10235 * ops vector.
10236 */
10237 inode->i_fop = &btrfs_file_operations;
10238 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010239 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010240 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10241
10242 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10243 if (err)
10244 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -050010245
Chris Mason39279cc2007-06-12 06:35:45 -040010246 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010247 if (!path) {
10248 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -070010249 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010250 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010251 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010252 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010253 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010254 datasize = btrfs_file_extent_calc_inline_size(name_len);
10255 err = btrfs_insert_empty_item(trans, root, path, &key,
10256 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010257 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010258 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -070010259 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -040010260 }
Chris Mason5f39d392007-10-15 16:14:19 -040010261 leaf = path->nodes[0];
10262 ei = btrfs_item_ptr(leaf, path->slots[0],
10263 struct btrfs_file_extent_item);
10264 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10265 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010266 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010267 btrfs_set_file_extent_encryption(leaf, ei, 0);
10268 btrfs_set_file_extent_compression(leaf, ei, 0);
10269 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10270 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10271
Chris Mason39279cc2007-06-12 06:35:45 -040010272 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010273 write_extent_buffer(leaf, symname, ptr, name_len);
10274 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010275 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010276
Chris Mason39279cc2007-06-12 06:35:45 -040010277 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010278 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010279 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010280 inode_set_bytes(inode, name_len);
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010281 btrfs_i_size_write(inode, name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010282 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010283 /*
10284 * Last step, add directory indexes for our symlink inode. This is the
10285 * last step to avoid extra cleanup of these indexes if an error happens
10286 * elsewhere above.
10287 */
10288 if (!err)
10289 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -070010290 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -040010291 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -070010292 goto out_unlock_inode;
10293 }
10294
10295 unlock_new_inode(inode);
10296 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010297
10298out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010299 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -040010300 if (drop_inode) {
10301 inode_dec_link_count(inode);
10302 iput(inode);
10303 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010304 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010305 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -070010306
10307out_unlock_inode:
10308 drop_inode = 1;
10309 unlock_new_inode(inode);
10310 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -040010311}
Chris Mason16432982008-04-10 10:23:21 -040010312
Josef Bacik0af3d002010-06-21 14:48:16 -040010313static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10314 u64 start, u64 num_bytes, u64 min_size,
10315 loff_t actual_len, u64 *alloc_hint,
10316 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010317{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010318 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010319 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10320 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010321 struct btrfs_root *root = BTRFS_I(inode)->root;
10322 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010323 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010324 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010325 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010326 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010327 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010328 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010329 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010330
Josef Bacik0af3d002010-06-21 14:48:16 -040010331 if (trans)
10332 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010333 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010334 if (own_trans) {
10335 trans = btrfs_start_transaction(root, 3);
10336 if (IS_ERR(trans)) {
10337 ret = PTR_ERR(trans);
10338 break;
10339 }
Yan Zhengd899e052008-10-30 14:25:28 -040010340 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010341
Byongho Leeee221842015-12-15 01:42:10 +090010342 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010343 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010344 /*
10345 * If we are severely fragmented we could end up with really
10346 * small allocations, so if the allocator is returning small
10347 * chunks lets make its job easier by only searching for those
10348 * sized chunks.
10349 */
10350 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010351 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10352 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010353 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010354 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010355 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010356 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010357 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010358 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010359
Josef Bacik0b670dc2015-09-23 17:11:16 -040010360 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010361 ret = insert_reserved_file_extent(trans, inode,
10362 cur_offset, ins.objectid,
10363 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010364 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010365 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010366 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010367 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010368 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010369 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010370 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010371 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010372 break;
10373 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010374
Chris Masona1ed8352009-09-11 12:27:37 -040010375 btrfs_drop_extent_cache(inode, cur_offset,
10376 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010377
Josef Bacik5dc562c2012-08-17 13:14:17 -040010378 em = alloc_extent_map();
10379 if (!em) {
10380 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10381 &BTRFS_I(inode)->runtime_flags);
10382 goto next;
10383 }
10384
10385 em->start = cur_offset;
10386 em->orig_start = cur_offset;
10387 em->len = ins.offset;
10388 em->block_start = ins.objectid;
10389 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010390 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010391 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010392 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010393 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10394 em->generation = trans->transid;
10395
10396 while (1) {
10397 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010398 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010399 write_unlock(&em_tree->lock);
10400 if (ret != -EEXIST)
10401 break;
10402 btrfs_drop_extent_cache(inode, cur_offset,
10403 cur_offset + ins.offset - 1,
10404 0);
10405 }
10406 free_extent_map(em);
10407next:
Yan Zhengd899e052008-10-30 14:25:28 -040010408 num_bytes -= ins.offset;
10409 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010410 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010411
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010412 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010413 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010414 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010415 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010416 (actual_len > inode->i_size) &&
10417 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010418 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010419 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010420 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010421 i_size = cur_offset;
10422 i_size_write(inode, i_size);
10423 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010424 }
10425
Yan Zhengd899e052008-10-30 14:25:28 -040010426 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010427
10428 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010429 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010430 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010431 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010432 break;
10433 }
Yan Zhengd899e052008-10-30 14:25:28 -040010434
Josef Bacik0af3d002010-06-21 14:48:16 -040010435 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010436 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010437 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010438 if (cur_offset < end)
10439 btrfs_free_reserved_data_space(inode, cur_offset,
10440 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010441 return ret;
10442}
10443
Josef Bacik0af3d002010-06-21 14:48:16 -040010444int btrfs_prealloc_file_range(struct inode *inode, int mode,
10445 u64 start, u64 num_bytes, u64 min_size,
10446 loff_t actual_len, u64 *alloc_hint)
10447{
10448 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10449 min_size, actual_len, alloc_hint,
10450 NULL);
10451}
10452
10453int btrfs_prealloc_file_range_trans(struct inode *inode,
10454 struct btrfs_trans_handle *trans, int mode,
10455 u64 start, u64 num_bytes, u64 min_size,
10456 loff_t actual_len, u64 *alloc_hint)
10457{
10458 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10459 min_size, actual_len, alloc_hint, trans);
10460}
10461
Chris Masone6dcd2d2008-07-17 12:53:50 -040010462static int btrfs_set_page_dirty(struct page *page)
10463{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010464 return __set_page_dirty_nobuffers(page);
10465}
10466
Al Viro10556cb22011-06-20 19:28:19 -040010467static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010468{
Li Zefanb83cc962010-12-20 16:04:08 +080010469 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010470 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010471
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010472 if (mask & MAY_WRITE &&
10473 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10474 if (btrfs_root_readonly(root))
10475 return -EROFS;
10476 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10477 return -EACCES;
10478 }
Al Viro2830ba72011-06-20 19:16:29 -040010479 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010480}
Chris Mason39279cc2007-06-12 06:35:45 -040010481
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010482static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10483{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010484 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010485 struct btrfs_trans_handle *trans;
10486 struct btrfs_root *root = BTRFS_I(dir)->root;
10487 struct inode *inode = NULL;
10488 u64 objectid;
10489 u64 index;
10490 int ret = 0;
10491
10492 /*
10493 * 5 units required for adding orphan entry
10494 */
10495 trans = btrfs_start_transaction(root, 5);
10496 if (IS_ERR(trans))
10497 return PTR_ERR(trans);
10498
10499 ret = btrfs_find_free_ino(root, &objectid);
10500 if (ret)
10501 goto out;
10502
10503 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010504 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010505 if (IS_ERR(inode)) {
10506 ret = PTR_ERR(inode);
10507 inode = NULL;
10508 goto out;
10509 }
10510
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010511 inode->i_fop = &btrfs_file_operations;
10512 inode->i_op = &btrfs_file_inode_operations;
10513
10514 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010515 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10516
Chris Masonb0d5d102014-09-08 13:08:51 -070010517 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10518 if (ret)
10519 goto out_inode;
10520
10521 ret = btrfs_update_inode(trans, root, inode);
10522 if (ret)
10523 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010524 ret = btrfs_orphan_add(trans, inode);
10525 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -070010526 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010527
Filipe Manana5762b5c2014-08-01 00:10:32 +010010528 /*
10529 * We set number of links to 0 in btrfs_new_inode(), and here we set
10530 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10531 * through:
10532 *
10533 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10534 */
10535 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -070010536 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010537 d_tmpfile(dentry, inode);
10538 mark_inode_dirty(inode);
10539
10540out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010541 btrfs_end_transaction(trans);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010542 if (ret)
10543 iput(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010544 btrfs_balance_delayed_items(fs_info);
10545 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010546 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -070010547
10548out_inode:
10549 unlock_new_inode(inode);
10550 goto out;
10551
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010552}
10553
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010554static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010555 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010556 .lookup = btrfs_lookup,
10557 .create = btrfs_create,
10558 .unlink = btrfs_unlink,
10559 .link = btrfs_link,
10560 .mkdir = btrfs_mkdir,
10561 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010562 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010563 .symlink = btrfs_symlink,
10564 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010565 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010566 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010567 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010568 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010569 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010570 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010571 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010572};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010573static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010574 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010575 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010576 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010577};
Yan, Zheng76dda932009-09-21 16:00:26 -040010578
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010579static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010580 .llseek = generic_file_llseek,
10581 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010582 .iterate_shared = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010583 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010584#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010585 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010586#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010587 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010588 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010589};
10590
David Sterba20e55062015-11-19 11:42:28 +010010591static const struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -040010592 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -050010593 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -040010594 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010595 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010596 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010597 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010598 .set_bit_hook = btrfs_set_bit_hook,
10599 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010600 .merge_extent_hook = btrfs_merge_extent_hook,
10601 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010602};
10603
Chris Mason35054392009-01-21 13:11:13 -050010604/*
10605 * btrfs doesn't support the bmap operation because swapfiles
10606 * use bmap to make a mapping of extents in the file. They assume
10607 * these extents won't change over the life of the file and they
10608 * use the bmap result to do IO directly to the drive.
10609 *
10610 * the btrfs bmap call would return logical addresses that aren't
10611 * suitable for IO and they also will change frequently as COW
10612 * operations happen. So, swapfile + btrfs == corruption.
10613 *
10614 * For now we're avoiding this by dropping bmap.
10615 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010616static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010617 .readpage = btrfs_readpage,
10618 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -040010619 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010620 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010621 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010622 .invalidatepage = btrfs_invalidatepage,
10623 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010624 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010625 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010626};
10627
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010628static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010629 .readpage = btrfs_readpage,
10630 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010631 .invalidatepage = btrfs_invalidatepage,
10632 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010633};
10634
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010635static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010636 .getattr = btrfs_getattr,
10637 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010638 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010639 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010640 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010641 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010642 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010643 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010644};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010645static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010646 .getattr = btrfs_getattr,
10647 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010648 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010649 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010650 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010651 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010652 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010653};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010654static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010655 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010656 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010657 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010658 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010659 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010660 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010661};
Yan, Zheng76dda932009-09-21 16:00:26 -040010662
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010663const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010664 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010665 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010666};