blob: 17cbe9306fafd9b9e7247bec4308494ed770b28b [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040034#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050035#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040036#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040037#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020039#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050040#include <linux/mount.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000041#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050042#include <linux/blkdev.h>
Josef Bacikf23b5a52013-06-19 10:16:26 -040043#include <linux/posix_acl_xattr.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080044#include <linux/uio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040049#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040050#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040051#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040052#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020053#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040054#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050055#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050056#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080057#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000058#include "backref.h"
Josef Bacikf23b5a52013-06-19 10:16:26 -040059#include "hash.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000060#include "props.h"
Dongsheng Yang31193212014-12-12 16:44:35 +080061#include "qgroup.h"
Wang Xiaoguangdda32452016-07-11 11:05:29 +080062#include "dedupe.h"
Chris Mason39279cc2007-06-12 06:35:45 -040063
64struct btrfs_iget_args {
Chris Mason90d3e592014-01-09 17:28:00 -080065 struct btrfs_key *location;
Chris Mason39279cc2007-06-12 06:35:45 -040066 struct btrfs_root *root;
67};
68
Filipe Mananaf28a4922015-12-08 19:23:20 +000069struct btrfs_dio_data {
70 u64 outstanding_extents;
71 u64 reserve;
72 u64 unsubmitted_oe_range_start;
73 u64 unsubmitted_oe_range_end;
Liu Bo4aaedfb2016-12-14 22:36:05 -080074 int overwrite;
Filipe Mananaf28a4922015-12-08 19:23:20 +000075};
76
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070077static const struct inode_operations btrfs_dir_inode_operations;
78static const struct inode_operations btrfs_symlink_inode_operations;
79static const struct inode_operations btrfs_dir_ro_inode_operations;
80static const struct inode_operations btrfs_special_inode_operations;
81static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070082static const struct address_space_operations btrfs_aops;
83static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070084static const struct file_operations btrfs_dir_file_operations;
David Sterba20e55062015-11-19 11:42:28 +010085static const struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040086
87static struct kmem_cache *btrfs_inode_cachep;
88struct kmem_cache *btrfs_trans_handle_cachep;
89struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040090struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050091struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040092
93#define S_SHIFT 12
David Sterba4d4ab6d2015-11-19 11:42:31 +010094static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
Chris Mason39279cc2007-06-12 06:35:45 -040095 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
96 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
97 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
98 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
99 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
100 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
101 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
102};
103
Eric Sandeen3972f262013-01-12 02:57:22 +0000104static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -0500105static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -0400106static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500107static noinline int cow_file_range(struct inode *inode,
108 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800109 u64 start, u64 end, u64 delalloc_end,
110 int *page_started, unsigned long *nr_written,
111 int unlock, struct btrfs_dedupe_hash *hash);
Liu Bo6f9994d2017-01-31 07:50:22 -0800112static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
113 u64 orig_start, u64 block_start,
114 u64 block_len, u64 orig_block_len,
115 u64 ram_bytes, int compress_type,
116 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400117
Qu Wenruo524272602017-03-08 10:25:52 +0800118static void __endio_write_update_ordered(struct inode *inode,
119 const u64 offset, const u64 bytes,
120 const bool uptodate);
121
122/*
123 * Cleanup all submitted ordered extents in specified range to handle errors
124 * from the fill_dellaloc() callback.
125 *
126 * NOTE: caller must ensure that when an error happens, it can not call
127 * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING
128 * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata
129 * to be released, which we want to happen only when finishing the ordered
130 * extent (btrfs_finish_ordered_io()). Also note that the caller of the
131 * fill_delalloc() callback already does proper cleanup for the first page of
132 * the range, that is, it invokes the callback writepage_end_io_hook() for the
133 * range of the first page.
134 */
135static inline void btrfs_cleanup_ordered_extents(struct inode *inode,
136 const u64 offset,
137 const u64 bytes)
138{
139 return __endio_write_update_ordered(inode, offset + PAGE_SIZE,
140 bytes - PAGE_SIZE, false);
141}
142
Eric Sandeen48a3b632013-04-25 20:41:01 +0000143static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400144
Josef Bacik6a3891c2015-03-16 17:38:52 -0400145#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
146void btrfs_test_inode_set_ops(struct inode *inode)
147{
148 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
149}
150#endif
151
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000152static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500153 struct inode *inode, struct inode *dir,
154 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500155{
156 int err;
157
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000158 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500159 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500160 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500161 return err;
162}
163
Chris Masond352ac62008-09-29 15:18:18 -0400164/*
Chris Masonc8b97812008-10-29 14:49:59 -0400165 * this does all the hard work for inserting an inline extent into
166 * the btree. The caller should have done a btrfs_drop_extents so that
167 * no overlapping inline items exist in the btree
168 */
Chris Mason40f76582014-05-21 13:35:51 -0700169static int insert_inline_extent(struct btrfs_trans_handle *trans,
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000170 struct btrfs_path *path, int extent_inserted,
Chris Masonc8b97812008-10-29 14:49:59 -0400171 struct btrfs_root *root, struct inode *inode,
172 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000173 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400174 struct page **compressed_pages)
175{
Chris Masonc8b97812008-10-29 14:49:59 -0400176 struct extent_buffer *leaf;
177 struct page *page = NULL;
178 char *kaddr;
179 unsigned long ptr;
180 struct btrfs_file_extent_item *ei;
181 int err = 0;
182 int ret;
183 size_t cur_size = size;
Chris Masonc8b97812008-10-29 14:49:59 -0400184 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400185
Li Zefanfe3f5662011-03-28 08:30:38 +0000186 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400187 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400188
Chris Masonc8b97812008-10-29 14:49:59 -0400189 inode_add_bytes(inode, size);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000190
191 if (!extent_inserted) {
192 struct btrfs_key key;
193 size_t datasize;
194
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200195 key.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000196 key.offset = start;
David Sterba962a2982014-06-04 18:41:45 +0200197 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000198
199 datasize = btrfs_file_extent_calc_inline_size(cur_size);
200 path->leave_spinning = 1;
201 ret = btrfs_insert_empty_item(trans, root, path, &key,
202 datasize);
203 if (ret) {
204 err = ret;
205 goto fail;
206 }
Chris Masonc8b97812008-10-29 14:49:59 -0400207 }
208 leaf = path->nodes[0];
209 ei = btrfs_item_ptr(leaf, path->slots[0],
210 struct btrfs_file_extent_item);
211 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
212 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
213 btrfs_set_file_extent_encryption(leaf, ei, 0);
214 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
215 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
216 ptr = btrfs_file_extent_inline_start(ei);
217
Li Zefan261507a02010-12-17 14:21:50 +0800218 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400219 struct page *cpage;
220 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500221 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400222 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500223 cur_size = min_t(unsigned long, compressed_size,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300224 PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400225
Cong Wang7ac687d2011-11-25 23:14:28 +0800226 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400227 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800228 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400229
230 i++;
231 ptr += cur_size;
232 compressed_size -= cur_size;
233 }
234 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800235 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400236 } else {
237 page = find_get_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300238 start >> PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -0400239 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800240 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300241 offset = start & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400242 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800243 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300244 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400245 }
246 btrfs_mark_buffer_dirty(leaf);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000247 btrfs_release_path(path);
Chris Masonc8b97812008-10-29 14:49:59 -0400248
Yan, Zhengc2167752009-11-12 09:34:21 +0000249 /*
250 * we're an inline extent, so nobody can
251 * extend the file past i_size without locking
252 * a page we already have locked.
253 *
254 * We must do any isize and inode updates
255 * before we unlock the pages. Otherwise we
256 * could end up racing with unlink.
257 */
Chris Masonc8b97812008-10-29 14:49:59 -0400258 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100259 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000260
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100261 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400262fail:
Chris Masonc8b97812008-10-29 14:49:59 -0400263 return err;
264}
265
266
267/*
268 * conditionally insert an inline extent into the file. This
269 * does the checks required to make sure the data is small enough
270 * to fit as an inline extent.
271 */
Josef Bacik00361582013-08-14 14:02:47 -0400272static noinline int cow_file_range_inline(struct btrfs_root *root,
273 struct inode *inode, u64 start,
274 u64 end, size_t compressed_size,
275 int compress_type,
276 struct page **compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400277{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400278 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik00361582013-08-14 14:02:47 -0400279 struct btrfs_trans_handle *trans;
Chris Masonc8b97812008-10-29 14:49:59 -0400280 u64 isize = i_size_read(inode);
281 u64 actual_end = min(end + 1, isize);
282 u64 inline_len = actual_end - start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400283 u64 aligned_end = ALIGN(end, fs_info->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400284 u64 data_len = inline_len;
285 int ret;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000286 struct btrfs_path *path;
287 int extent_inserted = 0;
288 u32 extent_item_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400289
290 if (compressed_size)
291 data_len = compressed_size;
292
293 if (start > 0 ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400294 actual_end > fs_info->sectorsize ||
295 data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400296 (!compressed_size &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400297 (actual_end & (fs_info->sectorsize - 1)) == 0) ||
Chris Masonc8b97812008-10-29 14:49:59 -0400298 end + 1 < isize ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400299 data_len > fs_info->max_inline) {
Chris Masonc8b97812008-10-29 14:49:59 -0400300 return 1;
301 }
302
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000303 path = btrfs_alloc_path();
304 if (!path)
305 return -ENOMEM;
306
Josef Bacik00361582013-08-14 14:02:47 -0400307 trans = btrfs_join_transaction(root);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000308 if (IS_ERR(trans)) {
309 btrfs_free_path(path);
Josef Bacik00361582013-08-14 14:02:47 -0400310 return PTR_ERR(trans);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000311 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400312 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik00361582013-08-14 14:02:47 -0400313
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000314 if (compressed_size && compressed_pages)
315 extent_item_size = btrfs_file_extent_calc_inline_size(
316 compressed_size);
317 else
318 extent_item_size = btrfs_file_extent_calc_inline_size(
319 inline_len);
320
321 ret = __btrfs_drop_extents(trans, root, inode, path,
322 start, aligned_end, NULL,
323 1, 1, extent_item_size, &extent_inserted);
Josef Bacik00361582013-08-14 14:02:47 -0400324 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400325 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400326 goto out;
327 }
Chris Masonc8b97812008-10-29 14:49:59 -0400328
329 if (isize > actual_end)
330 inline_len = min_t(u64, isize, actual_end);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000331 ret = insert_inline_extent(trans, path, extent_inserted,
332 root, inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400333 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000334 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400335 if (ret && ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400336 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -0400337 goto out;
Josef Bacik2adcac12012-05-23 16:10:14 -0400338 } else if (ret == -ENOSPC) {
Josef Bacik00361582013-08-14 14:02:47 -0400339 ret = 1;
340 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100341 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400342
Josef Bacikbdc20e62013-02-28 13:23:38 -0500343 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Nikolay Borisov691fa052017-02-20 13:50:42 +0200344 btrfs_delalloc_release_metadata(BTRFS_I(inode), end + 1 - start);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200345 btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0);
Josef Bacik00361582013-08-14 14:02:47 -0400346out:
Qu Wenruo94ed9382015-09-08 17:25:56 +0800347 /*
348 * Don't forget to free the reserved space, as for inlined extent
349 * it won't count as data extent, free them directly here.
350 * And at reserve time, it's always aligned to page size, so
351 * just free one page here.
352 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300353 btrfs_qgroup_free_data(inode, 0, PAGE_SIZE);
Filipe David Borba Manana1acae572014-01-07 11:42:27 +0000354 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400355 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -0400356 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400357}
358
Chris Mason771ed682008-11-06 22:02:51 -0500359struct async_extent {
360 u64 start;
361 u64 ram_size;
362 u64 compressed_size;
363 struct page **pages;
364 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800365 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500366 struct list_head list;
367};
368
369struct async_cow {
370 struct inode *inode;
371 struct btrfs_root *root;
372 struct page *locked_page;
373 u64 start;
374 u64 end;
375 struct list_head extents;
376 struct btrfs_work work;
377};
378
379static noinline int add_async_extent(struct async_cow *cow,
380 u64 start, u64 ram_size,
381 u64 compressed_size,
382 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800383 unsigned long nr_pages,
384 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500385{
386 struct async_extent *async_extent;
387
388 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100389 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500390 async_extent->start = start;
391 async_extent->ram_size = ram_size;
392 async_extent->compressed_size = compressed_size;
393 async_extent->pages = pages;
394 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800395 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500396 list_add_tail(&async_extent->list, &cow->extents);
397 return 0;
398}
399
Wang Shilongf79707b2014-07-17 11:44:09 +0800400static inline int inode_need_compress(struct inode *inode)
401{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400402 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Wang Shilongf79707b2014-07-17 11:44:09 +0800403
404 /* force compress */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400405 if (btrfs_test_opt(fs_info, FORCE_COMPRESS))
Wang Shilongf79707b2014-07-17 11:44:09 +0800406 return 1;
407 /* bad compression ratios */
408 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
409 return 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400410 if (btrfs_test_opt(fs_info, COMPRESS) ||
Wang Shilongf79707b2014-07-17 11:44:09 +0800411 BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS ||
412 BTRFS_I(inode)->force_compress)
413 return 1;
414 return 0;
415}
416
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200417static inline void inode_should_defrag(struct btrfs_inode *inode,
Anand Jain26d30f82016-12-19 19:09:06 +0800418 u64 start, u64 end, u64 num_bytes, u64 small_write)
419{
420 /* If this is a small write inside eof, kick off a defrag */
421 if (num_bytes < small_write &&
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200422 (start > 0 || end + 1 < inode->disk_i_size))
Anand Jain26d30f82016-12-19 19:09:06 +0800423 btrfs_add_inode_defrag(NULL, inode);
424}
425
Chris Masonc8b97812008-10-29 14:49:59 -0400426/*
Chris Mason771ed682008-11-06 22:02:51 -0500427 * we create compressed extents in two phases. The first
428 * phase compresses a range of pages that have already been
429 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400430 *
Chris Mason771ed682008-11-06 22:02:51 -0500431 * This is done inside an ordered work queue, and the compression
432 * is spread across many cpus. The actual IO submission is step
433 * two, and the ordered work queue takes care of making sure that
434 * happens in the same order things were put onto the queue by
435 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400436 *
Chris Mason771ed682008-11-06 22:02:51 -0500437 * If this code finds it can't get good compression, it puts an
438 * entry onto the work queue to write the uncompressed bytes. This
439 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300440 * are written in the same order that the flusher thread sent them
441 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400442 */
Filipe Mananac44f6492014-10-09 21:15:44 +0100443static noinline void compress_file_range(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500444 struct page *locked_page,
445 u64 start, u64 end,
446 struct async_cow *async_cow,
447 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400448{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400449 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonb888db22007-08-27 16:49:44 -0400450 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masondb945352007-10-15 16:15:53 -0400451 u64 num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400452 u64 blocksize = fs_info->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400453 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500454 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400455 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400456 struct page **pages = NULL;
457 unsigned long nr_pages;
Chris Masonc8b97812008-10-29 14:49:59 -0400458 unsigned long total_compressed = 0;
459 unsigned long total_in = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400460 int i;
461 int will_compress;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400462 int compress_type = fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400463 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400464
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200465 inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1,
466 SZ_16K);
Chris Mason4cb53002011-05-24 15:35:30 -0400467
Chris Mason42dc7ba2008-12-15 11:44:56 -0500468 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400469again:
470 will_compress = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300471 nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1;
David Sterba069eac72017-02-14 19:36:54 +0100472 BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0);
473 nr_pages = min_t(unsigned long, nr_pages,
474 BTRFS_MAX_COMPRESSED / PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400475
Chris Masonf03d9301f2009-02-04 09:31:06 -0500476 /*
477 * we don't want to send crud past the end of i_size through
478 * compression, that's just a waste of CPU time. So, if the
479 * end of the file is before the start of our current
480 * requested range of bytes, we bail out to the uncompressed
481 * cleanup code that can deal with all of this.
482 *
483 * It isn't really the fastest way to fix things, but this is a
484 * very uncommon corner.
485 */
486 if (actual_end <= start)
487 goto cleanup_and_bail_uncompressed;
488
Chris Masonc8b97812008-10-29 14:49:59 -0400489 total_compressed = actual_end - start;
490
Shilong Wang4bcbb332014-10-07 18:44:35 -0400491 /*
492 * skip compression for a small file range(<=blocksize) that
Nicholas D Steeves01327612016-05-19 21:18:45 -0400493 * isn't an inline extent, since it doesn't save disk space at all.
Shilong Wang4bcbb332014-10-07 18:44:35 -0400494 */
495 if (total_compressed <= blocksize &&
496 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
497 goto cleanup_and_bail_uncompressed;
498
David Sterba069eac72017-02-14 19:36:54 +0100499 total_compressed = min_t(unsigned long, total_compressed,
500 BTRFS_MAX_UNCOMPRESSED);
Qu Wenruofda28322013-02-26 08:10:22 +0000501 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500502 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400503 total_in = 0;
504 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400505
Chris Mason771ed682008-11-06 22:02:51 -0500506 /*
507 * we do compression for mount -o compress and when the
508 * inode has not been flagged as nocompress. This flag can
509 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400510 */
Wang Shilongf79707b2014-07-17 11:44:09 +0800511 if (inode_need_compress(inode)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400512 WARN_ON(pages);
David Sterba31e818f2015-02-20 18:00:26 +0100513 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800514 if (!pages) {
515 /* just bail out to the uncompressed code */
516 goto cont;
517 }
Chris Mason179e29e2007-11-01 11:28:41 -0400518
Li Zefan261507a02010-12-17 14:21:50 +0800519 if (BTRFS_I(inode)->force_compress)
520 compress_type = BTRFS_I(inode)->force_compress;
521
Chris Mason4adaa612013-03-26 13:07:00 -0400522 /*
523 * we need to call clear_page_dirty_for_io on each
524 * page in the range. Otherwise applications with the file
525 * mmap'd can wander in and change the page contents while
526 * we are compressing them.
527 *
528 * If the compression fails for any reason, we set the pages
529 * dirty again later on.
530 */
531 extent_range_clear_dirty_for_io(inode, start, end);
532 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800533 ret = btrfs_compress_pages(compress_type,
534 inode->i_mapping, start,
David Sterba38c31462017-02-14 19:04:07 +0100535 pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100536 &nr_pages,
Li Zefan261507a02010-12-17 14:21:50 +0800537 &total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100538 &total_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400539
540 if (!ret) {
541 unsigned long offset = total_compressed &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300542 (PAGE_SIZE - 1);
David Sterba4d3a8002017-02-14 19:04:07 +0100543 struct page *page = pages[nr_pages - 1];
Chris Masonc8b97812008-10-29 14:49:59 -0400544 char *kaddr;
545
546 /* zero the tail end of the last page, we might be
547 * sending it down to disk
548 */
549 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800550 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400551 memset(kaddr + offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300552 PAGE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800553 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400554 }
555 will_compress = 1;
556 }
557 }
Li Zefan560f7d72011-09-08 10:22:01 +0800558cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400559 if (start == 0) {
560 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500561 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400562 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500563 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400564 */
Josef Bacik00361582013-08-14 14:02:47 -0400565 ret = cow_file_range_inline(root, inode, start, end,
Anand Jainf74670f2016-12-06 12:43:07 +0800566 0, BTRFS_COMPRESS_NONE, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400567 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500568 /* try making a compressed inline extent */
Josef Bacik00361582013-08-14 14:02:47 -0400569 ret = cow_file_range_inline(root, inode, start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000570 total_compressed,
571 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400572 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100573 if (ret <= 0) {
Josef Bacik151a41b2013-07-29 13:22:24 -0400574 unsigned long clear_flags = EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100575 EXTENT_DELALLOC_NEW | EXTENT_DEFRAG;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100576 unsigned long page_error_op;
577
Josef Bacik151a41b2013-07-29 13:22:24 -0400578 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
Filipe Mananae6eb4312014-10-10 10:45:12 +0100579 page_error_op = ret < 0 ? PAGE_SET_ERROR : 0;
Josef Bacik151a41b2013-07-29 13:22:24 -0400580
Chris Mason771ed682008-11-06 22:02:51 -0500581 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100582 * inline extent creation worked or returned error,
583 * we don't need to create any more async work items.
584 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500585 */
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800586 extent_clear_unlock_delalloc(inode, start, end, end,
587 NULL, clear_flags,
588 PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400589 PAGE_CLEAR_DIRTY |
590 PAGE_SET_WRITEBACK |
Filipe Mananae6eb4312014-10-10 10:45:12 +0100591 page_error_op |
Josef Bacikc2790a22013-07-29 11:20:47 -0400592 PAGE_END_WRITEBACK);
Filipe Manana1c81ba22017-03-08 16:43:49 +0000593 if (ret == 0)
594 btrfs_free_reserved_data_space_noquota(inode,
595 start,
596 end - start + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400597 goto free_pages_out;
598 }
599 }
600
601 if (will_compress) {
602 /*
603 * we aren't doing an inline extent round the compressed size
604 * up to a block size boundary so the allocator does sane
605 * things
606 */
Qu Wenruofda28322013-02-26 08:10:22 +0000607 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400608
609 /*
610 * one last check to make sure the compression is really a
611 * win, compare the page count read with the blocks on disk
612 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300613 total_in = ALIGN(total_in, PAGE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400614 if (total_compressed >= total_in) {
615 will_compress = 0;
616 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400617 num_bytes = total_in;
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700618 *num_added += 1;
619
620 /*
621 * The async work queues will take care of doing actual
622 * allocation on disk for these compressed pages, and
623 * will submit them to the elevator.
624 */
625 add_async_extent(async_cow, start, num_bytes,
David Sterba4d3a8002017-02-14 19:04:07 +0100626 total_compressed, pages, nr_pages,
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700627 compress_type);
628
629 if (start + num_bytes < end) {
630 start += num_bytes;
631 pages = NULL;
632 cond_resched();
633 goto again;
634 }
635 return;
Chris Masonc8b97812008-10-29 14:49:59 -0400636 }
637 }
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700638 if (pages) {
Chris Masonc8b97812008-10-29 14:49:59 -0400639 /*
640 * the compression code ran but failed to make things smaller,
641 * free any pages it allocated and our page pointer array
642 */
David Sterba4d3a8002017-02-14 19:04:07 +0100643 for (i = 0; i < nr_pages; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400644 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300645 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400646 }
647 kfree(pages);
648 pages = NULL;
649 total_compressed = 0;
David Sterba4d3a8002017-02-14 19:04:07 +0100650 nr_pages = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400651
652 /* flag the file so we don't compress in the future */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400653 if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500654 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500655 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500656 }
Chris Masonc8b97812008-10-29 14:49:59 -0400657 }
Chris Masonf03d9301f2009-02-04 09:31:06 -0500658cleanup_and_bail_uncompressed:
Ashish Samantc8bb0c82016-03-25 19:01:33 -0700659 /*
660 * No compression, but we still need to write the pages in the file
661 * we've been given so far. redirty the locked page if it corresponds
662 * to our extent and set things up for the async work queue to run
663 * cow_file_range to do the normal delalloc dance.
664 */
665 if (page_offset(locked_page) >= start &&
666 page_offset(locked_page) <= end)
667 __set_page_dirty_nobuffers(locked_page);
668 /* unlocked later on in the async handlers */
669
670 if (redirty)
671 extent_range_redirty_for_io(inode, start, end);
672 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0,
673 BTRFS_COMPRESS_NONE);
674 *num_added += 1;
Chris Mason771ed682008-11-06 22:02:51 -0500675
Filipe Mananac44f6492014-10-09 21:15:44 +0100676 return;
Chris Mason771ed682008-11-06 22:02:51 -0500677
678free_pages_out:
David Sterba4d3a8002017-02-14 19:04:07 +0100679 for (i = 0; i < nr_pages; i++) {
Chris Mason771ed682008-11-06 22:02:51 -0500680 WARN_ON(pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300681 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -0500682 }
Chris Masond3977122009-01-05 21:25:51 -0500683 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500684}
Chris Mason771ed682008-11-06 22:02:51 -0500685
Filipe Manana40ae8372014-10-06 22:14:24 +0100686static void free_async_extent_pages(struct async_extent *async_extent)
687{
688 int i;
689
690 if (!async_extent->pages)
691 return;
692
693 for (i = 0; i < async_extent->nr_pages; i++) {
694 WARN_ON(async_extent->pages[i]->mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300695 put_page(async_extent->pages[i]);
Filipe Manana40ae8372014-10-06 22:14:24 +0100696 }
697 kfree(async_extent->pages);
698 async_extent->nr_pages = 0;
699 async_extent->pages = NULL;
Chris Mason771ed682008-11-06 22:02:51 -0500700}
701
702/*
703 * phase two of compressed writeback. This is the ordered portion
704 * of the code, which only gets called in the order the work was
705 * queued. We walk all the async extents created by compress_file_range
706 * and send them down to the disk.
707 */
Filipe Mananadec8f172014-10-06 22:14:26 +0100708static noinline void submit_compressed_extents(struct inode *inode,
Chris Mason771ed682008-11-06 22:02:51 -0500709 struct async_cow *async_cow)
710{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400711 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -0500712 struct async_extent *async_extent;
713 u64 alloc_hint = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500714 struct btrfs_key ins;
715 struct extent_map *em;
716 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500717 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500718 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500719
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500720again:
Chris Masond3977122009-01-05 21:25:51 -0500721 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500722 async_extent = list_entry(async_cow->extents.next,
723 struct async_extent, list);
724 list_del(&async_extent->list);
725
726 io_tree = &BTRFS_I(inode)->io_tree;
727
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500728retry:
Chris Mason771ed682008-11-06 22:02:51 -0500729 /* did the compression code fall back to uncompressed IO? */
730 if (!async_extent->pages) {
731 int page_started = 0;
732 unsigned long nr_written = 0;
733
734 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000735 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100736 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500737
738 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500739 ret = cow_file_range(inode, async_cow->locked_page,
740 async_extent->start,
741 async_extent->start +
742 async_extent->ram_size - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800743 async_extent->start +
744 async_extent->ram_size - 1,
745 &page_started, &nr_written, 0,
746 NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500747
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100748 /* JDM XXX */
749
Chris Mason771ed682008-11-06 22:02:51 -0500750 /*
751 * if page_started, cow_file_range inserted an
752 * inline extent and took care of all the unlocking
753 * and IO for us. Otherwise, we need to submit
754 * all those pages down to the drive.
755 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500756 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500757 extent_write_locked_range(io_tree,
758 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500759 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500760 async_extent->ram_size - 1,
761 btrfs_get_extent,
762 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500763 else if (ret)
764 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500765 kfree(async_extent);
766 cond_resched();
767 continue;
768 }
769
770 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100771 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500772
Wang Xiaoguang18513092016-07-25 15:51:40 +0800773 ret = btrfs_reserve_extent(root, async_extent->ram_size,
Chris Mason771ed682008-11-06 22:02:51 -0500774 async_extent->compressed_size,
775 async_extent->compressed_size,
Miao Xiee570fd22014-06-19 10:42:50 +0800776 0, alloc_hint, &ins, 1, 1);
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500777 if (ret) {
Filipe Manana40ae8372014-10-06 22:14:24 +0100778 free_async_extent_pages(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500779
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400780 if (ret == -ENOSPC) {
781 unlock_extent(io_tree, async_extent->start,
782 async_extent->start +
783 async_extent->ram_size - 1);
Liu Boce620032014-07-24 22:48:05 +0800784
785 /*
786 * we need to redirty the pages if we decide to
787 * fallback to uncompressed IO, otherwise we
788 * will not submit these pages down to lower
789 * layers.
790 */
791 extent_range_redirty_for_io(inode,
792 async_extent->start,
793 async_extent->start +
794 async_extent->ram_size - 1);
795
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100796 goto retry;
Josef Bacikfdf8e2e2013-06-14 16:58:23 -0400797 }
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500798 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500799 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000800 /*
801 * here we're doing allocation and writeback of the
802 * compressed pages
803 */
Liu Bo6f9994d2017-01-31 07:50:22 -0800804 em = create_io_em(inode, async_extent->start,
805 async_extent->ram_size, /* len */
806 async_extent->start, /* orig_start */
807 ins.objectid, /* block_start */
808 ins.offset, /* block_len */
809 ins.offset, /* orig_block_len */
810 async_extent->ram_size, /* ram_bytes */
811 async_extent->compress_type,
812 BTRFS_ORDERED_COMPRESSED);
813 if (IS_ERR(em))
814 /* ret value is not necessary due to void function */
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500815 goto out_free_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -0800816 free_extent_map(em);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500817
Li Zefan261507a02010-12-17 14:21:50 +0800818 ret = btrfs_add_ordered_extent_compress(inode,
819 async_extent->start,
820 ins.objectid,
821 async_extent->ram_size,
822 ins.offset,
823 BTRFS_ORDERED_COMPRESSED,
824 async_extent->compress_type);
Filipe Mananad9f85962014-08-25 10:43:00 +0100825 if (ret) {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200826 btrfs_drop_extent_cache(BTRFS_I(inode),
827 async_extent->start,
Filipe Mananad9f85962014-08-25 10:43:00 +0100828 async_extent->start +
829 async_extent->ram_size - 1, 0);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500830 goto out_free_reserve;
Filipe Mananad9f85962014-08-25 10:43:00 +0100831 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400832 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500833
Chris Mason771ed682008-11-06 22:02:51 -0500834 /*
835 * clear dirty, set writeback and unlock the pages.
836 */
Josef Bacikc2790a22013-07-29 11:20:47 -0400837 extent_clear_unlock_delalloc(inode, async_extent->start,
Chris Masona791e352009-10-08 11:27:10 -0400838 async_extent->start +
839 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800840 async_extent->start +
841 async_extent->ram_size - 1,
Josef Bacik151a41b2013-07-29 13:22:24 -0400842 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
843 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Josef Bacikc2790a22013-07-29 11:20:47 -0400844 PAGE_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500845 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500846 async_extent->start,
847 async_extent->ram_size,
848 ins.objectid,
849 ins.offset, async_extent->pages,
850 async_extent->nr_pages);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100851 if (ret) {
852 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
853 struct page *p = async_extent->pages[0];
854 const u64 start = async_extent->start;
855 const u64 end = start + async_extent->ram_size - 1;
856
857 p->mapping = inode->i_mapping;
858 tree->ops->writepage_end_io_hook(p, start, end,
859 NULL, 0);
860 p->mapping = NULL;
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800861 extent_clear_unlock_delalloc(inode, start, end, end,
862 NULL, 0,
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100863 PAGE_END_WRITEBACK |
864 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100865 free_async_extent_pages(async_extent);
Filipe Mananafce2a4e2014-10-06 22:14:23 +0100866 }
Chris Mason771ed682008-11-06 22:02:51 -0500867 alloc_hint = ins.objectid + ins.offset;
868 kfree(async_extent);
869 cond_resched();
870 }
Filipe Mananadec8f172014-10-06 22:14:26 +0100871 return;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500872out_free_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400873 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400874 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100875out_free:
Josef Bacikc2790a22013-07-29 11:20:47 -0400876 extent_clear_unlock_delalloc(inode, async_extent->start,
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500877 async_extent->start +
878 async_extent->ram_size - 1,
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800879 async_extent->start +
880 async_extent->ram_size - 1,
Josef Bacikc2790a22013-07-29 11:20:47 -0400881 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100882 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400883 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
884 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
Filipe Manana704de492014-10-06 22:14:22 +0100885 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK |
886 PAGE_SET_ERROR);
Filipe Manana40ae8372014-10-06 22:14:24 +0100887 free_async_extent_pages(async_extent);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100888 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500889 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500890}
891
Josef Bacik4b46fce2010-05-23 11:00:55 -0400892static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
893 u64 num_bytes)
894{
895 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
896 struct extent_map *em;
897 u64 alloc_hint = 0;
898
899 read_lock(&em_tree->lock);
900 em = search_extent_mapping(em_tree, start, num_bytes);
901 if (em) {
902 /*
903 * if block start isn't an actual block number then find the
904 * first block in this inode and use that as a hint. If that
905 * block is also bogus then just don't worry about it.
906 */
907 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
908 free_extent_map(em);
909 em = search_extent_mapping(em_tree, 0, 0);
910 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
911 alloc_hint = em->block_start;
912 if (em)
913 free_extent_map(em);
914 } else {
915 alloc_hint = em->block_start;
916 free_extent_map(em);
917 }
918 }
919 read_unlock(&em_tree->lock);
920
921 return alloc_hint;
922}
923
Chris Mason771ed682008-11-06 22:02:51 -0500924/*
925 * when extent_io.c finds a delayed allocation range in the file,
926 * the call backs end up in this code. The basic idea is to
927 * allocate extents on disk for the range, and create ordered data structs
928 * in ram to track those extents.
929 *
930 * locked_page is the page that writepage had locked already. We use
931 * it to make sure we don't do extra locks or unlocks.
932 *
933 * *page_started is set to one if we unlock locked_page and do everything
934 * required to start IO on it. It may be clean and already done with
935 * IO when we return.
936 */
Josef Bacik00361582013-08-14 14:02:47 -0400937static noinline int cow_file_range(struct inode *inode,
938 struct page *locked_page,
Wang Xiaoguangdda32452016-07-11 11:05:29 +0800939 u64 start, u64 end, u64 delalloc_end,
940 int *page_started, unsigned long *nr_written,
941 int unlock, struct btrfs_dedupe_hash *hash)
Chris Mason771ed682008-11-06 22:02:51 -0500942{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400943 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik00361582013-08-14 14:02:47 -0400944 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason771ed682008-11-06 22:02:51 -0500945 u64 alloc_hint = 0;
946 u64 num_bytes;
947 unsigned long ram_size;
948 u64 disk_num_bytes;
Filipe Mananaa315e682017-03-06 23:04:20 +0000949 u64 cur_alloc_size = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400950 u64 blocksize = fs_info->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500951 struct btrfs_key ins;
952 struct extent_map *em;
Filipe Mananaa315e682017-03-06 23:04:20 +0000953 unsigned clear_bits;
954 unsigned long page_ops;
955 bool extent_reserved = false;
Chris Mason771ed682008-11-06 22:02:51 -0500956 int ret = 0;
957
Nikolay Borisov70ddc552017-02-20 13:50:35 +0200958 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400959 WARN_ON_ONCE(1);
Josef Bacik29bce2f2014-02-07 12:21:23 -0500960 ret = -EINVAL;
961 goto out_unlock;
Josef Bacik02ecd2c2013-10-25 16:19:08 -0400962 }
Chris Mason771ed682008-11-06 22:02:51 -0500963
Qu Wenruofda28322013-02-26 08:10:22 +0000964 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500965 num_bytes = max(blocksize, num_bytes);
966 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500967
Nikolay Borisov6158e1c2017-02-20 13:50:43 +0200968 inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -0400969
Chris Mason771ed682008-11-06 22:02:51 -0500970 if (start == 0) {
971 /* lets try to make an inline extent */
Anand Jainf74670f2016-12-06 12:43:07 +0800972 ret = cow_file_range_inline(root, inode, start, end, 0,
973 BTRFS_COMPRESS_NONE, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500974 if (ret == 0) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +0800975 extent_clear_unlock_delalloc(inode, start, end,
976 delalloc_end, NULL,
Josef Bacikc2790a22013-07-29 11:20:47 -0400977 EXTENT_LOCKED | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +0100978 EXTENT_DELALLOC_NEW |
Josef Bacik151a41b2013-07-29 13:22:24 -0400979 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -0400980 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
981 PAGE_END_WRITEBACK);
Wang Xiaoguang18513092016-07-25 15:51:40 +0800982 btrfs_free_reserved_data_space_noquota(inode, start,
983 end - start + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500984 *nr_written = *nr_written +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300985 (end - start + PAGE_SIZE) / PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500986 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500987 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100988 } else if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100989 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500990 }
991 }
Chris Masonc8b97812008-10-29 14:49:59 -0400992
993 BUG_ON(disk_num_bytes >
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400994 btrfs_super_total_bytes(fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400995
Josef Bacik4b46fce2010-05-23 11:00:55 -0400996 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +0200997 btrfs_drop_extent_cache(BTRFS_I(inode), start,
998 start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400999
Chris Masond3977122009-01-05 21:25:51 -05001000 while (disk_num_bytes > 0) {
Josef Bacik287a0ab2010-03-19 18:07:23 +00001001 cur_alloc_size = disk_num_bytes;
Wang Xiaoguang18513092016-07-25 15:51:40 +08001002 ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001003 fs_info->sectorsize, 0, alloc_hint,
Miao Xiee570fd22014-06-19 10:42:50 +08001004 &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04001005 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001006 goto out_unlock;
Filipe Mananaa315e682017-03-06 23:04:20 +00001007 cur_alloc_size = ins.offset;
1008 extent_reserved = true;
Chris Masond3977122009-01-05 21:25:51 -05001009
Chris Mason771ed682008-11-06 22:02:51 -05001010 ram_size = ins.offset;
Liu Bo6f9994d2017-01-31 07:50:22 -08001011 em = create_io_em(inode, start, ins.offset, /* len */
1012 start, /* orig_start */
1013 ins.objectid, /* block_start */
1014 ins.offset, /* block_len */
1015 ins.offset, /* orig_block_len */
1016 ram_size, /* ram_bytes */
1017 BTRFS_COMPRESS_NONE, /* compress_type */
Liu Bo1af4a0a2017-02-13 15:35:09 -08001018 BTRFS_ORDERED_REGULAR /* type */);
Liu Bo6f9994d2017-01-31 07:50:22 -08001019 if (IS_ERR(em))
Liu Boace68ba2013-04-22 10:53:47 +00001020 goto out_reserve;
Liu Bo6f9994d2017-01-31 07:50:22 -08001021 free_extent_map(em);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001022
Chris Masone6dcd2d2008-07-17 12:53:50 -04001023 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -05001024 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001025 if (ret)
Filipe Mananad9f85962014-08-25 10:43:00 +01001026 goto out_drop_extent_cache;
Chris Masonc8b97812008-10-29 14:49:59 -04001027
Yan Zheng17d217f2008-12-12 10:03:38 -05001028 if (root->root_key.objectid ==
1029 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1030 ret = btrfs_reloc_clone_csums(inode, start,
1031 cur_alloc_size);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001032 /*
1033 * Only drop cache here, and process as normal.
1034 *
1035 * We must not allow extent_clear_unlock_delalloc()
1036 * at out_unlock label to free meta of this ordered
1037 * extent, as its meta should be freed by
1038 * btrfs_finish_ordered_io().
1039 *
1040 * So we must continue until @start is increased to
1041 * skip current ordered extent.
1042 */
Josef Bacik00361582013-08-14 14:02:47 -04001043 if (ret)
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001044 btrfs_drop_extent_cache(BTRFS_I(inode), start,
1045 start + ram_size - 1, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001046 }
1047
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001048 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01001049
Chris Masonc8b97812008-10-29 14:49:59 -04001050 /* we're not doing compressed IO, don't unlock the first
1051 * page (which the caller expects to stay locked), don't
1052 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -04001053 *
1054 * Do set the Private2 bit so we know this page was properly
1055 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -04001056 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001057 page_ops = unlock ? PAGE_UNLOCK : 0;
1058 page_ops |= PAGE_SET_PRIVATE2;
Chris Masona791e352009-10-08 11:27:10 -04001059
Josef Bacikc2790a22013-07-29 11:20:47 -04001060 extent_clear_unlock_delalloc(inode, start,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001061 start + ram_size - 1,
1062 delalloc_end, locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001063 EXTENT_LOCKED | EXTENT_DELALLOC,
Filipe Mananaa315e682017-03-06 23:04:20 +00001064 page_ops);
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001065 if (disk_num_bytes < cur_alloc_size)
1066 disk_num_bytes = 0;
1067 else
1068 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -05001069 num_bytes -= cur_alloc_size;
1070 alloc_hint = ins.objectid + ins.offset;
1071 start += cur_alloc_size;
Filipe Mananaa315e682017-03-06 23:04:20 +00001072 extent_reserved = false;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001073
1074 /*
1075 * btrfs_reloc_clone_csums() error, since start is increased
1076 * extent_clear_unlock_delalloc() at out_unlock label won't
1077 * free metadata of current ordered extent, we're OK to exit.
1078 */
1079 if (ret)
1080 goto out_unlock;
Chris Masonb888db22007-08-27 16:49:44 -04001081 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001082out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001083 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001084
Filipe Mananad9f85962014-08-25 10:43:00 +01001085out_drop_extent_cache:
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001086 btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0);
Liu Boace68ba2013-04-22 10:53:47 +00001087out_reserve:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001088 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001089 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001090out_unlock:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001091 clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
1092 EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV;
Filipe Mananaa315e682017-03-06 23:04:20 +00001093 page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
1094 PAGE_END_WRITEBACK;
1095 /*
1096 * If we reserved an extent for our delalloc range (or a subrange) and
1097 * failed to create the respective ordered extent, then it means that
1098 * when we reserved the extent we decremented the extent's size from
1099 * the data space_info's bytes_may_use counter and incremented the
1100 * space_info's bytes_reserved counter by the same amount. We must make
1101 * sure extent_clear_unlock_delalloc() does not try to decrement again
1102 * the data space_info's bytes_may_use counter, therefore we do not pass
1103 * it the flag EXTENT_CLEAR_DATA_RESV.
1104 */
1105 if (extent_reserved) {
1106 extent_clear_unlock_delalloc(inode, start,
1107 start + cur_alloc_size,
1108 start + cur_alloc_size,
1109 locked_page,
1110 clear_bits,
1111 page_ops);
1112 start += cur_alloc_size;
1113 if (start >= end)
1114 goto out;
1115 }
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001116 extent_clear_unlock_delalloc(inode, start, end, delalloc_end,
1117 locked_page,
Filipe Mananaa315e682017-03-06 23:04:20 +00001118 clear_bits | EXTENT_CLEAR_DATA_RESV,
1119 page_ops);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001120 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001121}
Chris Masonc8b97812008-10-29 14:49:59 -04001122
Chris Mason771ed682008-11-06 22:02:51 -05001123/*
1124 * work queue call back to started compression on a file and pages
1125 */
1126static noinline void async_cow_start(struct btrfs_work *work)
1127{
1128 struct async_cow *async_cow;
1129 int num_added = 0;
1130 async_cow = container_of(work, struct async_cow, work);
1131
1132 compress_file_range(async_cow->inode, async_cow->locked_page,
1133 async_cow->start, async_cow->end, async_cow,
1134 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001135 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001136 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001137 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001138 }
Chris Mason771ed682008-11-06 22:02:51 -05001139}
1140
1141/*
1142 * work queue call back to submit previously compressed pages
1143 */
1144static noinline void async_cow_submit(struct btrfs_work *work)
1145{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001146 struct btrfs_fs_info *fs_info;
Chris Mason771ed682008-11-06 22:02:51 -05001147 struct async_cow *async_cow;
1148 struct btrfs_root *root;
1149 unsigned long nr_pages;
1150
1151 async_cow = container_of(work, struct async_cow, work);
1152
1153 root = async_cow->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001154 fs_info = root->fs_info;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001155 nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >>
1156 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05001157
David Sterbaee863952015-02-16 19:41:40 +01001158 /*
1159 * atomic_sub_return implies a barrier for waitqueue_active
1160 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001161 if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) <
Byongho Leeee221842015-12-15 01:42:10 +09001162 5 * SZ_1M &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001163 waitqueue_active(&fs_info->async_submit_wait))
1164 wake_up(&fs_info->async_submit_wait);
Chris Mason771ed682008-11-06 22:02:51 -05001165
Chris Masond3977122009-01-05 21:25:51 -05001166 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001167 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001168}
Chris Masonc8b97812008-10-29 14:49:59 -04001169
Chris Mason771ed682008-11-06 22:02:51 -05001170static noinline void async_cow_free(struct btrfs_work *work)
1171{
1172 struct async_cow *async_cow;
1173 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001174 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001175 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001176 kfree(async_cow);
1177}
1178
1179static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1180 u64 start, u64 end, int *page_started,
1181 unsigned long *nr_written)
1182{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001183 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason771ed682008-11-06 22:02:51 -05001184 struct async_cow *async_cow;
1185 struct btrfs_root *root = BTRFS_I(inode)->root;
1186 unsigned long nr_pages;
1187 u64 cur_end;
Chris Mason771ed682008-11-06 22:02:51 -05001188
Chris Masona3429ab2009-10-08 12:30:20 -04001189 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1190 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001191 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001192 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001193 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001194 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001195 async_cow->root = root;
1196 async_cow->locked_page = locked_page;
1197 async_cow->start = start;
1198
Wang Shilongf79707b2014-07-17 11:44:09 +08001199 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001200 !btrfs_test_opt(fs_info, FORCE_COMPRESS))
Chris Mason771ed682008-11-06 22:02:51 -05001201 cur_end = end;
1202 else
Byongho Leeee221842015-12-15 01:42:10 +09001203 cur_end = min(end, start + SZ_512K - 1);
Chris Mason771ed682008-11-06 22:02:51 -05001204
1205 async_cow->end = cur_end;
1206 INIT_LIST_HEAD(&async_cow->extents);
1207
Liu Bo9e0af232014-08-15 23:36:53 +08001208 btrfs_init_work(&async_cow->work,
1209 btrfs_delalloc_helper,
1210 async_cow_start, async_cow_submit,
1211 async_cow_free);
Chris Mason771ed682008-11-06 22:02:51 -05001212
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001213 nr_pages = (cur_end - start + PAGE_SIZE) >>
1214 PAGE_SHIFT;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001215 atomic_add(nr_pages, &fs_info->async_delalloc_pages);
Chris Mason771ed682008-11-06 22:02:51 -05001216
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001217 btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work);
Chris Mason771ed682008-11-06 22:02:51 -05001218
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001219 while (atomic_read(&fs_info->async_submit_draining) &&
1220 atomic_read(&fs_info->async_delalloc_pages)) {
1221 wait_event(fs_info->async_submit_wait,
1222 (atomic_read(&fs_info->async_delalloc_pages) ==
1223 0));
Chris Mason771ed682008-11-06 22:02:51 -05001224 }
1225
1226 *nr_written += nr_pages;
1227 start = cur_end + 1;
1228 }
1229 *page_started = 1;
1230 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001231}
1232
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001233static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info,
Yan Zheng17d217f2008-12-12 10:03:38 -05001234 u64 bytenr, u64 num_bytes)
1235{
1236 int ret;
1237 struct btrfs_ordered_sum *sums;
1238 LIST_HEAD(list);
1239
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001240 ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001241 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001242 if (ret == 0 && list_empty(&list))
1243 return 0;
1244
1245 while (!list_empty(&list)) {
1246 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1247 list_del(&sums->list);
1248 kfree(sums);
1249 }
1250 return 1;
1251}
1252
Chris Masond352ac62008-09-29 15:18:18 -04001253/*
1254 * when nowcow writeback call back. This checks for snapshots or COW copies
1255 * of the extents that exist in the file, and COWs the file as required.
1256 *
1257 * If no cow copies or snapshots exist, we write directly to the existing
1258 * blocks on disk
1259 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001260static noinline int run_delalloc_nocow(struct inode *inode,
1261 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001262 u64 start, u64 end, int *page_started, int force,
1263 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001264{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001265 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonbe20aa92007-12-17 20:14:01 -05001266 struct btrfs_root *root = BTRFS_I(inode)->root;
1267 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001268 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001269 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001270 struct btrfs_key found_key;
Liu Bo6f9994d2017-01-31 07:50:22 -08001271 struct extent_map *em;
Yan Zheng80ff3852008-10-30 14:20:02 -04001272 u64 cow_start;
1273 u64 cur_offset;
1274 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001276 u64 disk_bytenr;
1277 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001278 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001279 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001280 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001281 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001282 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001283 int nocow;
1284 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001285 bool nolock;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001286 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Masonbe20aa92007-12-17 20:14:01 -05001287
1288 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001289 if (!path) {
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001290 extent_clear_unlock_delalloc(inode, start, end, end,
1291 locked_page,
Josef Bacikc2790a22013-07-29 11:20:47 -04001292 EXTENT_LOCKED | EXTENT_DELALLOC |
Josef Bacik151a41b2013-07-29 13:22:24 -04001293 EXTENT_DO_ACCOUNTING |
1294 EXTENT_DEFRAG, PAGE_UNLOCK |
Josef Bacikc2790a22013-07-29 11:20:47 -04001295 PAGE_CLEAR_DIRTY |
1296 PAGE_SET_WRITEBACK |
1297 PAGE_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001298 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001299 }
Li Zefan82d59022011-04-20 10:33:24 +08001300
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001301 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Li Zefan82d59022011-04-20 10:33:24 +08001302
Yan Zheng80ff3852008-10-30 14:20:02 -04001303 cow_start = (u64)-1;
1304 cur_offset = start;
1305 while (1) {
Liu Boe4c3b2d2017-01-30 12:25:28 -08001306 ret = btrfs_lookup_file_extent(NULL, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001307 cur_offset, 0);
Josef Bacikd788a342013-10-25 16:55:08 -04001308 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001309 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001310 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1311 leaf = path->nodes[0];
1312 btrfs_item_key_to_cpu(leaf, &found_key,
1313 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001314 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001315 found_key.type == BTRFS_EXTENT_DATA_KEY)
1316 path->slots[0]--;
1317 }
1318 check_prev = 0;
1319next_slot:
1320 leaf = path->nodes[0];
1321 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1322 ret = btrfs_next_leaf(root, path);
Josef Bacikd788a342013-10-25 16:55:08 -04001323 if (ret < 0)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001324 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001325 if (ret > 0)
1326 break;
1327 leaf = path->nodes[0];
1328 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001329
Yan Zheng80ff3852008-10-30 14:20:02 -04001330 nocow = 0;
1331 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001332 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001333 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001334
Filipe Manana1d512cb2015-11-09 00:33:58 +00001335 if (found_key.objectid > ino)
1336 break;
1337 if (WARN_ON_ONCE(found_key.objectid < ino) ||
1338 found_key.type < BTRFS_EXTENT_DATA_KEY) {
1339 path->slots[0]++;
1340 goto next_slot;
1341 }
1342 if (found_key.type > BTRFS_EXTENT_DATA_KEY ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001343 found_key.offset > end)
1344 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001345
Yan Zheng80ff3852008-10-30 14:20:02 -04001346 if (found_key.offset > cur_offset) {
1347 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001348 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001349 goto out_check;
1350 }
Chris Masonc31f8832008-01-08 15:46:31 -05001351
Yan Zheng80ff3852008-10-30 14:20:02 -04001352 fi = btrfs_item_ptr(leaf, path->slots[0],
1353 struct btrfs_file_extent_item);
1354 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001355
Josef Bacikcc95bef2013-04-04 14:31:27 -04001356 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001357 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1358 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001359 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001360 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001361 extent_end = found_key.offset +
1362 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001363 disk_num_bytes =
1364 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 if (extent_end <= start) {
1366 path->slots[0]++;
1367 goto next_slot;
1368 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001369 if (disk_bytenr == 0)
1370 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001371 if (btrfs_file_extent_compression(leaf, fi) ||
1372 btrfs_file_extent_encryption(leaf, fi) ||
1373 btrfs_file_extent_other_encoding(leaf, fi))
1374 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001375 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1376 goto out_check;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001377 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001378 goto out_check;
Liu Boe4c3b2d2017-01-30 12:25:28 -08001379 if (btrfs_cross_ref_exist(root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001380 found_key.offset -
1381 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001382 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001383 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001384 disk_bytenr += cur_offset - found_key.offset;
1385 num_bytes = min(end + 1, extent_end) - cur_offset;
1386 /*
Wang Shilonge9894fd2014-03-27 11:12:25 +08001387 * if there are pending snapshots for this root,
1388 * we fall into common COW way.
1389 */
1390 if (!nolock) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001391 err = btrfs_start_write_no_snapshoting(root);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001392 if (!err)
1393 goto out_check;
1394 }
1395 /*
Yan Zheng17d217f2008-12-12 10:03:38 -05001396 * force cow if csum exists in the range.
1397 * this ensure that csum for a given extent are
1398 * either valid or do not exist.
1399 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001400 if (csum_exist_in_range(fs_info, disk_bytenr,
Robbie Ko91e1f562016-10-07 10:01:29 +08001401 num_bytes)) {
1402 if (!nolock)
1403 btrfs_end_write_no_snapshoting(root);
Yan Zheng17d217f2008-12-12 10:03:38 -05001404 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001405 }
1406 if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr)) {
1407 if (!nolock)
1408 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001409 goto out_check;
Robbie Ko91e1f562016-10-07 10:01:29 +08001410 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001411 nocow = 1;
1412 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1413 extent_end = found_key.offset +
Chris Mason514ac8a2014-01-03 21:07:00 -08001414 btrfs_file_extent_inline_len(leaf,
1415 path->slots[0], fi);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001416 extent_end = ALIGN(extent_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001417 fs_info->sectorsize);
Yan Zheng80ff3852008-10-30 14:20:02 -04001418 } else {
1419 BUG_ON(1);
1420 }
1421out_check:
1422 if (extent_end <= start) {
1423 path->slots[0]++;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001424 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001425 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001426 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001427 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Yan Zheng80ff3852008-10-30 14:20:02 -04001428 goto next_slot;
1429 }
1430 if (!nocow) {
1431 if (cow_start == (u64)-1)
1432 cow_start = cur_offset;
1433 cur_offset = extent_end;
1434 if (cur_offset > end)
1435 break;
1436 path->slots[0]++;
1437 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001438 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001439
David Sterbab3b4aa72011-04-21 01:20:15 +02001440 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001441 if (cow_start != (u64)-1) {
Josef Bacik00361582013-08-14 14:02:47 -04001442 ret = cow_file_range(inode, locked_page,
1443 cow_start, found_key.offset - 1,
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001444 end, page_started, nr_written, 1,
1445 NULL);
Wang Shilonge9894fd2014-03-27 11:12:25 +08001446 if (ret) {
1447 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001448 btrfs_end_write_no_snapshoting(root);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001449 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001450 btrfs_dec_nocow_writers(fs_info,
Filipe Mananaf78c4362016-05-09 13:15:41 +01001451 disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001452 goto error;
Wang Shilonge9894fd2014-03-27 11:12:25 +08001453 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001454 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001455 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001456
Yan Zhengd899e052008-10-30 14:25:28 -04001457 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Liu Bo6f9994d2017-01-31 07:50:22 -08001458 u64 orig_start = found_key.offset - extent_offset;
1459
1460 em = create_io_em(inode, cur_offset, num_bytes,
1461 orig_start,
1462 disk_bytenr, /* block_start */
1463 num_bytes, /* block_len */
1464 disk_num_bytes, /* orig_block_len */
1465 ram_bytes, BTRFS_COMPRESS_NONE,
1466 BTRFS_ORDERED_PREALLOC);
1467 if (IS_ERR(em)) {
1468 if (!nolock && nocow)
1469 btrfs_end_write_no_snapshoting(root);
1470 if (nocow)
1471 btrfs_dec_nocow_writers(fs_info,
1472 disk_bytenr);
1473 ret = PTR_ERR(em);
1474 goto error;
Yan Zhengd899e052008-10-30 14:25:28 -04001475 }
Liu Bo6f9994d2017-01-31 07:50:22 -08001476 free_extent_map(em);
1477 }
1478
1479 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001480 type = BTRFS_ORDERED_PREALLOC;
1481 } else {
1482 type = BTRFS_ORDERED_NOCOW;
1483 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001484
1485 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001486 num_bytes, num_bytes, type);
Filipe Mananaf78c4362016-05-09 13:15:41 +01001487 if (nocow)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001488 btrfs_dec_nocow_writers(fs_info, disk_bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001489 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001490
Yan, Zhengefa56462010-05-16 10:49:59 -04001491 if (root->root_key.objectid ==
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001492 BTRFS_DATA_RELOC_TREE_OBJECTID)
1493 /*
1494 * Error handled later, as we must prevent
1495 * extent_clear_unlock_delalloc() in error handler
1496 * from freeing metadata of created ordered extent.
1497 */
Yan, Zhengefa56462010-05-16 10:49:59 -04001498 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1499 num_bytes);
Yan, Zhengefa56462010-05-16 10:49:59 -04001500
Josef Bacikc2790a22013-07-29 11:20:47 -04001501 extent_clear_unlock_delalloc(inode, cur_offset,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08001502 cur_offset + num_bytes - 1, end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001503 locked_page, EXTENT_LOCKED |
Wang Xiaoguang18513092016-07-25 15:51:40 +08001504 EXTENT_DELALLOC |
1505 EXTENT_CLEAR_DATA_RESV,
1506 PAGE_UNLOCK | PAGE_SET_PRIVATE2);
1507
Wang Shilonge9894fd2014-03-27 11:12:25 +08001508 if (!nolock && nocow)
Filipe Manana9ea24bb2014-10-29 11:57:59 +00001509 btrfs_end_write_no_snapshoting(root);
Yan Zheng80ff3852008-10-30 14:20:02 -04001510 cur_offset = extent_end;
Qu Wenruo4dbd80f2017-03-08 10:25:51 +08001511
1512 /*
1513 * btrfs_reloc_clone_csums() error, now we're OK to call error
1514 * handler, as metadata for created ordered extent will only
1515 * be freed by btrfs_finish_ordered_io().
1516 */
1517 if (ret)
1518 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001519 if (cur_offset > end)
1520 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001521 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001522 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001523
Josef Bacik17ca04a2012-05-31 15:58:55 -04001524 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001525 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001526 cur_offset = end;
1527 }
1528
Yan Zheng80ff3852008-10-30 14:20:02 -04001529 if (cow_start != (u64)-1) {
Wang Xiaoguangdda32452016-07-11 11:05:29 +08001530 ret = cow_file_range(inode, locked_page, cow_start, end, end,
1531 page_started, nr_written, 1, NULL);
Josef Bacikd788a342013-10-25 16:55:08 -04001532 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001533 goto error;
Yan Zheng80ff3852008-10-30 14:20:02 -04001534 }
1535
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001536error:
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 }
Qu Wenruo524272602017-03-08 10:25:52 +08001594 if (ret)
1595 btrfs_cleanup_ordered_extents(inode, start, end - start + 1);
Chris Masonb888db22007-08-27 16:49:44 -04001596 return ret;
1597}
1598
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001599static void btrfs_split_extent_hook(struct inode *inode,
1600 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001601{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001602 u64 size;
1603
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001604 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001605 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001606 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001607
Josef Bacikdcab6a32015-02-11 15:08:59 -05001608 size = orig->end - orig->start + 1;
1609 if (size > BTRFS_MAX_EXTENT_SIZE) {
David Sterba823bb202017-01-04 11:09:51 +01001610 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001611 u64 new_size;
1612
1613 /*
Josef Bacikba117212015-03-13 15:01:24 -04001614 * See the explanation in btrfs_merge_extent_hook, the same
1615 * applies here, just in reverse.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001616 */
1617 new_size = orig->end - split + 1;
David Sterba823bb202017-01-04 11:09:51 +01001618 num_extents = count_max_extents(new_size);
Josef Bacikba117212015-03-13 15:01:24 -04001619 new_size = split - orig->start;
David Sterba823bb202017-01-04 11:09:51 +01001620 num_extents += count_max_extents(new_size);
1621 if (count_max_extents(size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001622 return;
1623 }
1624
Josef Bacik9e0baf62011-07-15 15:16:44 +00001625 spin_lock(&BTRFS_I(inode)->lock);
1626 BTRFS_I(inode)->outstanding_extents++;
1627 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001628}
1629
1630/*
1631 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1632 * extents so we can keep track of new extents that are just merged onto old
1633 * extents, such as when we are doing sequential writes, so we can properly
1634 * account for the metadata space we'll need.
1635 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001636static void btrfs_merge_extent_hook(struct inode *inode,
1637 struct extent_state *new,
1638 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001639{
Josef Bacikdcab6a32015-02-11 15:08:59 -05001640 u64 new_size, old_size;
David Sterba823bb202017-01-04 11:09:51 +01001641 u32 num_extents;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001642
Josef Bacik9ed74f22009-09-11 16:12:44 -04001643 /* not delalloc, ignore it */
1644 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001645 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001646
Josef Bacik8461a3d2015-03-13 15:12:08 -04001647 if (new->start > other->start)
1648 new_size = new->end - other->start + 1;
1649 else
1650 new_size = other->end - new->start + 1;
Josef Bacikdcab6a32015-02-11 15:08:59 -05001651
1652 /* we're not bigger than the max, unreserve the space and go */
1653 if (new_size <= BTRFS_MAX_EXTENT_SIZE) {
1654 spin_lock(&BTRFS_I(inode)->lock);
1655 BTRFS_I(inode)->outstanding_extents--;
1656 spin_unlock(&BTRFS_I(inode)->lock);
1657 return;
1658 }
1659
1660 /*
Josef Bacikba117212015-03-13 15:01:24 -04001661 * We have to add up either side to figure out how many extents were
1662 * accounted for before we merged into one big extent. If the number of
1663 * extents we accounted for is <= the amount we need for the new range
1664 * then we can return, otherwise drop. Think of it like this
1665 *
1666 * [ 4k][MAX_SIZE]
1667 *
1668 * So we've grown the extent by a MAX_SIZE extent, this would mean we
1669 * need 2 outstanding extents, on one side we have 1 and the other side
1670 * we have 1 so they are == and we can return. But in this case
1671 *
1672 * [MAX_SIZE+4k][MAX_SIZE+4k]
1673 *
1674 * Each range on their own accounts for 2 extents, but merged together
1675 * they are only 3 extents worth of accounting, so we need to drop in
1676 * this case.
Josef Bacikdcab6a32015-02-11 15:08:59 -05001677 */
Josef Bacikba117212015-03-13 15:01:24 -04001678 old_size = other->end - other->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001679 num_extents = count_max_extents(old_size);
Josef Bacikba117212015-03-13 15:01:24 -04001680 old_size = new->end - new->start + 1;
David Sterba823bb202017-01-04 11:09:51 +01001681 num_extents += count_max_extents(old_size);
1682 if (count_max_extents(new_size) >= num_extents)
Josef Bacikdcab6a32015-02-11 15:08:59 -05001683 return;
1684
Josef Bacik9e0baf62011-07-15 15:16:44 +00001685 spin_lock(&BTRFS_I(inode)->lock);
1686 BTRFS_I(inode)->outstanding_extents--;
1687 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001688}
1689
Miao Xieeb73c1b2013-05-15 07:48:22 +00001690static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1691 struct inode *inode)
1692{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001693 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1694
Miao Xieeb73c1b2013-05-15 07:48:22 +00001695 spin_lock(&root->delalloc_lock);
1696 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1697 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1698 &root->delalloc_inodes);
1699 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1700 &BTRFS_I(inode)->runtime_flags);
1701 root->nr_delalloc_inodes++;
1702 if (root->nr_delalloc_inodes == 1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001703 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001704 BUG_ON(!list_empty(&root->delalloc_root));
1705 list_add_tail(&root->delalloc_root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001706 &fs_info->delalloc_roots);
1707 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001708 }
1709 }
1710 spin_unlock(&root->delalloc_lock);
1711}
1712
1713static void btrfs_del_delalloc_inode(struct btrfs_root *root,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001714 struct btrfs_inode *inode)
Miao Xieeb73c1b2013-05-15 07:48:22 +00001715{
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001716 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001717
Miao Xieeb73c1b2013-05-15 07:48:22 +00001718 spin_lock(&root->delalloc_lock);
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001719 if (!list_empty(&inode->delalloc_inodes)) {
1720 list_del_init(&inode->delalloc_inodes);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001721 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001722 &inode->runtime_flags);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001723 root->nr_delalloc_inodes--;
1724 if (!root->nr_delalloc_inodes) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001725 spin_lock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001726 BUG_ON(list_empty(&root->delalloc_root));
1727 list_del_init(&root->delalloc_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001728 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xieeb73c1b2013-05-15 07:48:22 +00001729 }
1730 }
1731 spin_unlock(&root->delalloc_lock);
1732}
1733
Chris Masond352ac62008-09-29 15:18:18 -04001734/*
1735 * extent_io.c set_bit_hook, used to track delayed allocation
1736 * bytes in this file, and to maintain the list of inodes that
1737 * have pending delalloc work to be done.
1738 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001739static void btrfs_set_bit_hook(struct inode *inode,
David Sterba9ee49a042015-01-14 19:52:13 +01001740 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001741{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001742
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001743 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1744
Wang Shilong47059d92014-07-03 18:22:07 +08001745 if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC))
1746 WARN_ON(1);
Chris Mason75eff682008-12-15 15:54:40 -05001747 /*
1748 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001749 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001750 * bit, which is only set or cleared with irqs on
1751 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001752 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001753 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001754 u64 len = state->end + 1 - state->start;
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001755 bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik9ed74f22009-09-11 16:12:44 -04001756
Josef Bacik9e0baf62011-07-15 15:16:44 +00001757 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001758 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001759 } else {
1760 spin_lock(&BTRFS_I(inode)->lock);
1761 BTRFS_I(inode)->outstanding_extents++;
1762 spin_unlock(&BTRFS_I(inode)->lock);
1763 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001764
Josef Bacik6a3891c2015-03-16 17:38:52 -04001765 /* For sanity tests */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001766 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001767 return;
1768
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001769 __percpu_counter_add(&fs_info->delalloc_bytes, len,
1770 fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001771 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001772 BTRFS_I(inode)->delalloc_bytes += len;
Wang Shilong47059d92014-07-03 18:22:07 +08001773 if (*bits & EXTENT_DEFRAG)
1774 BTRFS_I(inode)->defrag_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001775 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Miao Xieeb73c1b2013-05-15 07:48:22 +00001776 &BTRFS_I(inode)->runtime_flags))
1777 btrfs_add_delalloc_inodes(root, inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001778 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001779 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001780
1781 if (!(state->state & EXTENT_DELALLOC_NEW) &&
1782 (*bits & EXTENT_DELALLOC_NEW)) {
1783 spin_lock(&BTRFS_I(inode)->lock);
1784 BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 -
1785 state->start;
1786 spin_unlock(&BTRFS_I(inode)->lock);
1787 }
Chris Mason291d6732008-01-29 15:55:23 -05001788}
1789
Chris Masond352ac62008-09-29 15:18:18 -04001790/*
1791 * extent_io.c clear_bit_hook, see set_bit_hook for why
1792 */
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001793static void btrfs_clear_bit_hook(struct btrfs_inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001794 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +01001795 unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001796{
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001797 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Wang Shilong47059d92014-07-03 18:22:07 +08001798 u64 len = state->end + 1 - state->start;
David Sterba823bb202017-01-04 11:09:51 +01001799 u32 num_extents = count_max_extents(len);
Wang Shilong47059d92014-07-03 18:22:07 +08001800
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001801 spin_lock(&inode->lock);
Wang Shilong47059d92014-07-03 18:22:07 +08001802 if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001803 inode->defrag_bytes -= len;
1804 spin_unlock(&inode->lock);
Wang Shilong47059d92014-07-03 18:22:07 +08001805
Chris Mason75eff682008-12-15 15:54:40 -05001806 /*
1807 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001808 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001809 * bit, which is only set or cleared with irqs on
1810 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001811 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001812 struct btrfs_root *root = inode->root;
Liu Bo83eea1f2012-07-10 05:28:39 -06001813 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001814
Josef Bacik9e0baf62011-07-15 15:16:44 +00001815 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001816 *bits &= ~EXTENT_FIRST_DELALLOC;
Filipe Mananaa315e682017-03-06 23:04:20 +00001817 } else if (!(*bits & EXTENT_CLEAR_META_RESV)) {
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001818 spin_lock(&inode->lock);
1819 inode->outstanding_extents -= num_extents;
1820 spin_unlock(&inode->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001821 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001822
Josef Bacikb6d08f02013-09-27 14:57:43 -04001823 /*
1824 * We don't reserve metadata space for space cache inodes so we
1825 * don't need to call dellalloc_release_metadata if there is an
1826 * error.
1827 */
Filipe Mananaa315e682017-03-06 23:04:20 +00001828 if (*bits & EXTENT_CLEAR_META_RESV &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001829 root != fs_info->tree_root)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001830 btrfs_delalloc_release_metadata(inode, len);
1831
Josef Bacik6a3891c2015-03-16 17:38:52 -04001832 /* For sanity tests. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001833 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04001834 return;
1835
Filipe Mananaa315e682017-03-06 23:04:20 +00001836 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID &&
1837 do_list && !(state->state & EXTENT_NORESERVE) &&
1838 (*bits & EXTENT_CLEAR_DATA_RESV))
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001839 btrfs_free_reserved_data_space_noquota(
1840 &inode->vfs_inode,
Qu Wenruo51773be2015-10-08 18:19:37 +08001841 state->start, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001842
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001843 __percpu_counter_add(&fs_info->delalloc_bytes, -len,
1844 fs_info->delalloc_batch);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001845 spin_lock(&inode->lock);
1846 inode->delalloc_bytes -= len;
1847 if (do_list && inode->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001848 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
Nikolay Borisov9e3e97f2017-02-20 13:51:07 +02001849 &inode->runtime_flags))
Miao Xieeb73c1b2013-05-15 07:48:22 +00001850 btrfs_del_delalloc_inode(root, inode);
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +02001851 spin_unlock(&inode->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001852 }
Filipe Mananaa7e3b972017-04-03 10:45:46 +01001853
1854 if ((state->state & EXTENT_DELALLOC_NEW) &&
1855 (*bits & EXTENT_DELALLOC_NEW)) {
1856 spin_lock(&inode->lock);
1857 ASSERT(inode->new_delalloc_bytes >= len);
1858 inode->new_delalloc_bytes -= len;
1859 spin_unlock(&inode->lock);
1860 }
Chris Mason291d6732008-01-29 15:55:23 -05001861}
1862
Chris Masond352ac62008-09-29 15:18:18 -04001863/*
1864 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1865 * we don't create bios that span stripes or chunks
Liu Bo6f034ec2016-06-22 18:31:49 -07001866 *
1867 * return 1 if page cannot be merged to bio
1868 * return 0 if page can be merged to bio
1869 * return error otherwise
Chris Masond352ac62008-09-29 15:18:18 -04001870 */
Mike Christie81a75f62016-06-05 14:31:54 -05001871int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001872 size_t size, struct bio *bio,
1873 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001874{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001875 struct inode *inode = page->mapping->host;
1876 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001877 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001878 u64 length = 0;
1879 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001880 int ret;
1881
Chris Mason771ed682008-11-06 22:02:51 -05001882 if (bio_flags & EXTENT_BIO_COMPRESSED)
1883 return 0;
1884
Kent Overstreet4f024f32013-10-11 15:44:27 -07001885 length = bio->bi_iter.bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001886 map_length = length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001887 ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length,
1888 NULL, 0);
Liu Bo6f034ec2016-06-22 18:31:49 -07001889 if (ret < 0)
1890 return ret;
Chris Masond3977122009-01-05 21:25:51 -05001891 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001892 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001893 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001894}
1895
Chris Masond352ac62008-09-29 15:18:18 -04001896/*
1897 * in order to insert checksums into the metadata in large chunks,
1898 * we wait until bio submission time. All the pages in the bio are
1899 * checksummed and sums are attached onto the ordered extent record.
1900 *
1901 * At IO completion time the cums attached on the ordered extent record
1902 * are inserted into the btree
1903 */
Mike Christie81a75f62016-06-05 14:31:54 -05001904static int __btrfs_submit_bio_start(struct inode *inode, struct bio *bio,
1905 int mirror_num, unsigned long bio_flags,
Chris Masoneaf25d92010-05-25 09:48:28 -04001906 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001907{
Chris Mason065631f2008-02-20 12:07:25 -05001908 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001909
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001910 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001911 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001912 return 0;
1913}
Chris Masone0156402008-04-16 11:15:20 -04001914
Chris Mason4a69a412008-11-06 22:03:00 -05001915/*
1916 * in order to insert checksums into the metadata in large chunks,
1917 * we wait until bio submission time. All the pages in the bio are
1918 * checksummed and sums are attached onto the ordered extent record.
1919 *
1920 * At IO completion time the cums attached on the ordered extent record
1921 * are inserted into the btree
1922 */
Mike Christie81a75f62016-06-05 14:31:54 -05001923static int __btrfs_submit_bio_done(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001924 int mirror_num, unsigned long bio_flags,
1925 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001926{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001927 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Stefan Behrens61891922012-11-05 18:51:52 +01001928 int ret;
1929
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001930 ret = btrfs_map_bio(fs_info, bio, mirror_num, 1);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001931 if (ret) {
1932 bio->bi_error = ret;
1933 bio_endio(bio);
1934 }
Stefan Behrens61891922012-11-05 18:51:52 +01001935 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001936}
1937
Chris Masond352ac62008-09-29 15:18:18 -04001938/*
Chris Masoncad321a2008-12-17 14:51:42 -05001939 * extent_io.c submission hook. This does the right thing for csum calculation
1940 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001941 */
Mike Christie81a75f62016-06-05 14:31:54 -05001942static int btrfs_submit_bio_hook(struct inode *inode, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001943 int mirror_num, unsigned long bio_flags,
1944 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001945{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001946 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason44b8bd72008-04-16 11:14:51 -04001947 struct btrfs_root *root = BTRFS_I(inode)->root;
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301948 enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA;
Chris Mason44b8bd72008-04-16 11:14:51 -04001949 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001950 int skip_sum;
Josef Bacikb812ce22012-11-16 13:56:32 -05001951 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001952
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001953 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001954
Nikolay Borisov70ddc552017-02-20 13:50:35 +02001955 if (btrfs_is_free_space_inode(BTRFS_I(inode)))
Chandan Rajendra0d51e282015-07-27 15:26:43 +05301956 metadata = BTRFS_WQ_ENDIO_FREE_SPACE;
Jeff Mahoney04173412011-10-03 23:23:12 -04001957
Mike Christie37226b22016-06-05 14:31:52 -05001958 if (bio_op(bio) != REQ_OP_WRITE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001959 ret = btrfs_bio_wq_end_io(fs_info, bio, metadata);
Josef Bacik5fd02042012-05-02 14:00:54 -04001960 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001961 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001962
Chris Masond20f7042008-12-08 16:58:54 -05001963 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001964 ret = btrfs_submit_compressed_read(inode, bio,
1965 mirror_num,
1966 bio_flags);
1967 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001968 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001969 ret = btrfs_lookup_bio_sums(inode, bio, NULL);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001970 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001971 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001972 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001973 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001974 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001975 /* csum items have already been cloned */
1976 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1977 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001978 /* we're doing a write, do the async checksumming */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001979 ret = btrfs_wq_submit_bio(fs_info, inode, bio, mirror_num,
1980 bio_flags, bio_offset,
1981 __btrfs_submit_bio_start,
1982 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001983 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001984 } else if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001985 ret = btrfs_csum_one_bio(inode, bio, 0, 0);
Josef Bacikb812ce22012-11-16 13:56:32 -05001986 if (ret)
1987 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001988 }
1989
Chris Mason0b86a832008-03-24 15:01:56 -04001990mapit:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001991 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Stefan Behrens61891922012-11-05 18:51:52 +01001992
1993out:
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001994 if (ret < 0) {
1995 bio->bi_error = ret;
1996 bio_endio(bio);
1997 }
Stefan Behrens61891922012-11-05 18:51:52 +01001998 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001999}
Chris Mason6885f302008-02-20 16:11:05 -05002000
Chris Masond352ac62008-09-29 15:18:18 -04002001/*
2002 * given a list of ordered sums record them in the inode. This happens
2003 * at IO completion time based on sums calculated at bio submission time.
2004 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002005static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
David Sterbadf9f6282017-02-10 19:35:37 +01002006 struct inode *inode, struct list_head *list)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002007{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002008 struct btrfs_ordered_sum *sum;
2009
Qinghuang Fengc6e30872009-01-21 10:59:08 -05002010 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00002011 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05002012 btrfs_csum_file_blocks(trans,
2013 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00002014 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002015 }
2016 return 0;
2017}
2018
Josef Bacik2ac55d42010-02-03 19:33:23 +00002019int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002020 struct extent_state **cached_state, int dedupe)
Chris Masonea8c2812008-08-04 23:17:27 -04002021{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002022 WARN_ON((end & (PAGE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04002023 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
David Sterba7cd8c752016-04-26 23:54:39 +02002024 cached_state);
Chris Masonea8c2812008-08-04 23:17:27 -04002025}
2026
Chris Masond352ac62008-09-29 15:18:18 -04002027/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04002028struct btrfs_writepage_fixup {
2029 struct page *page;
2030 struct btrfs_work work;
2031};
2032
Christoph Hellwigb2950862008-12-02 09:54:17 -05002033static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04002034{
2035 struct btrfs_writepage_fixup *fixup;
2036 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002037 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04002038 struct page *page;
2039 struct inode *inode;
2040 u64 page_start;
2041 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002042 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04002043
2044 fixup = container_of(work, struct btrfs_writepage_fixup, work);
2045 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04002046again:
Chris Mason247e7432008-07-17 12:53:51 -04002047 lock_page(page);
2048 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
2049 ClearPageChecked(page);
2050 goto out_page;
2051 }
2052
2053 inode = page->mapping->host;
2054 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002055 page_end = page_offset(page) + PAGE_SIZE - 1;
Chris Mason247e7432008-07-17 12:53:51 -04002056
David Sterbaff13db42015-12-03 14:30:40 +01002057 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002058 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04002059
2060 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04002061 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002062 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04002063
Nikolay Borisova776c6f2017-02-20 13:50:49 +02002064 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002065 PAGE_SIZE);
Chris Mason4a096752008-07-21 10:29:44 -04002066 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00002067 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
2068 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04002069 unlock_page(page);
2070 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002071 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04002072 goto again;
2073 }
Chris Mason247e7432008-07-17 12:53:51 -04002074
Qu Wenruo7cf5b972015-09-08 17:25:55 +08002075 ret = btrfs_delalloc_reserve_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 PAGE_SIZE);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002077 if (ret) {
2078 mapping_set_error(page->mapping, ret);
2079 end_extent_writepage(page, ret, page_start, page_end);
2080 ClearPageChecked(page);
2081 goto out;
2082 }
2083
Qu Wenruoba8b04c2016-07-19 16:50:36 +08002084 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state,
2085 0);
Chris Mason247e7432008-07-17 12:53:51 -04002086 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002087 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04002088out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002089 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
2090 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04002091out_page:
2092 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002093 put_page(page);
Miao Xieb897abe2011-01-26 16:19:22 +08002094 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04002095}
2096
2097/*
2098 * There are a few paths in the higher layers of the kernel that directly
2099 * set the page dirty bit without asking the filesystem if it is a
2100 * good idea. This causes problems because we want to make sure COW
2101 * properly happens and the data=ordered rules are followed.
2102 *
Chris Masonc8b97812008-10-29 14:49:59 -04002103 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04002104 * hasn't been properly setup for IO. We kick off an async process
2105 * to fix it up. The async helper will wait for ordered extents, set
2106 * the delalloc bit and make it safe to write the page.
2107 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002108static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04002109{
2110 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002111 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason247e7432008-07-17 12:53:51 -04002112 struct btrfs_writepage_fixup *fixup;
Chris Mason247e7432008-07-17 12:53:51 -04002113
Chris Mason8b62b722009-09-02 16:53:46 -04002114 /* this page is properly in the ordered list */
2115 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04002116 return 0;
2117
2118 if (PageChecked(page))
2119 return -EAGAIN;
2120
2121 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
2122 if (!fixup)
2123 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04002124
Chris Mason247e7432008-07-17 12:53:51 -04002125 SetPageChecked(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002126 get_page(page);
Liu Bo9e0af232014-08-15 23:36:53 +08002127 btrfs_init_work(&fixup->work, btrfs_fixup_helper,
2128 btrfs_writepage_fixup_worker, NULL, NULL);
Chris Mason247e7432008-07-17 12:53:51 -04002129 fixup->page = page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002130 btrfs_queue_work(fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002131 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04002132}
2133
Yan Zhengd899e052008-10-30 14:25:28 -04002134static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
2135 struct inode *inode, u64 file_pos,
2136 u64 disk_bytenr, u64 disk_num_bytes,
2137 u64 num_bytes, u64 ram_bytes,
2138 u8 compression, u8 encryption,
2139 u16 other_encoding, int extent_type)
2140{
2141 struct btrfs_root *root = BTRFS_I(inode)->root;
2142 struct btrfs_file_extent_item *fi;
2143 struct btrfs_path *path;
2144 struct extent_buffer *leaf;
2145 struct btrfs_key ins;
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002146 int extent_inserted = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002147 int ret;
2148
2149 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07002150 if (!path)
2151 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04002152
Chris Masona1ed8352009-09-11 12:27:37 -04002153 /*
2154 * we may be replacing one extent in the tree with another.
2155 * The new extent is pinned in the extent map, and we don't want
2156 * to drop it from the cache until it is completely in the btree.
2157 *
2158 * So, tell btrfs_drop_extents to leave this extent in the cache.
2159 * the caller is expected to unpin it and allow it to be merged
2160 * with the others.
2161 */
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002162 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
2163 file_pos + num_bytes, NULL, 0,
2164 1, sizeof(*fi), &extent_inserted);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002165 if (ret)
2166 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04002167
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002168 if (!extent_inserted) {
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002169 ins.objectid = btrfs_ino(BTRFS_I(inode));
Filipe David Borba Manana1acae572014-01-07 11:42:27 +00002170 ins.offset = file_pos;
2171 ins.type = BTRFS_EXTENT_DATA_KEY;
2172
2173 path->leave_spinning = 1;
2174 ret = btrfs_insert_empty_item(trans, root, path, &ins,
2175 sizeof(*fi));
2176 if (ret)
2177 goto out;
2178 }
Yan Zhengd899e052008-10-30 14:25:28 -04002179 leaf = path->nodes[0];
2180 fi = btrfs_item_ptr(leaf, path->slots[0],
2181 struct btrfs_file_extent_item);
2182 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
2183 btrfs_set_file_extent_type(leaf, fi, extent_type);
2184 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
2185 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
2186 btrfs_set_file_extent_offset(leaf, fi, 0);
2187 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2188 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
2189 btrfs_set_file_extent_compression(leaf, fi, compression);
2190 btrfs_set_file_extent_encryption(leaf, fi, encryption);
2191 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04002192
Yan Zhengd899e052008-10-30 14:25:28 -04002193 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04002194 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04002195
2196 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04002197
2198 ins.objectid = disk_bytenr;
2199 ins.offset = disk_num_bytes;
2200 ins.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002201 ret = btrfs_alloc_reserved_file_extent(trans, root->root_key.objectid,
David Sterbaf85b7372017-01-20 14:54:07 +01002202 btrfs_ino(BTRFS_I(inode)), file_pos, ram_bytes, &ins);
Qu Wenruo297d7502015-09-08 17:08:37 +08002203 /*
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002204 * Release the reserved range from inode dirty range map, as it is
2205 * already moved into delayed_ref_head
Qu Wenruo297d7502015-09-08 17:08:37 +08002206 */
2207 btrfs_qgroup_release_data(inode, file_pos, ram_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002208out:
Yan Zhengd899e052008-10-30 14:25:28 -04002209 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04002210
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002211 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04002212}
2213
Liu Bo38c227d2013-01-29 03:18:40 +00002214/* snapshot-aware defrag */
2215struct sa_defrag_extent_backref {
2216 struct rb_node node;
2217 struct old_sa_defrag_extent *old;
2218 u64 root_id;
2219 u64 inum;
2220 u64 file_pos;
2221 u64 extent_offset;
2222 u64 num_bytes;
2223 u64 generation;
2224};
2225
2226struct old_sa_defrag_extent {
2227 struct list_head list;
2228 struct new_sa_defrag_extent *new;
2229
2230 u64 extent_offset;
2231 u64 bytenr;
2232 u64 offset;
2233 u64 len;
2234 int count;
2235};
2236
2237struct new_sa_defrag_extent {
2238 struct rb_root root;
2239 struct list_head head;
2240 struct btrfs_path *path;
2241 struct inode *inode;
2242 u64 file_pos;
2243 u64 len;
2244 u64 bytenr;
2245 u64 disk_len;
2246 u8 compress_type;
2247};
2248
2249static int backref_comp(struct sa_defrag_extent_backref *b1,
2250 struct sa_defrag_extent_backref *b2)
2251{
2252 if (b1->root_id < b2->root_id)
2253 return -1;
2254 else if (b1->root_id > b2->root_id)
2255 return 1;
2256
2257 if (b1->inum < b2->inum)
2258 return -1;
2259 else if (b1->inum > b2->inum)
2260 return 1;
2261
2262 if (b1->file_pos < b2->file_pos)
2263 return -1;
2264 else if (b1->file_pos > b2->file_pos)
2265 return 1;
2266
2267 /*
2268 * [------------------------------] ===> (a range of space)
2269 * |<--->| |<---->| =============> (fs/file tree A)
2270 * |<---------------------------->| ===> (fs/file tree B)
2271 *
2272 * A range of space can refer to two file extents in one tree while
2273 * refer to only one file extent in another tree.
2274 *
2275 * So we may process a disk offset more than one time(two extents in A)
2276 * and locate at the same extent(one extent in B), then insert two same
2277 * backrefs(both refer to the extent in B).
2278 */
2279 return 0;
2280}
2281
2282static void backref_insert(struct rb_root *root,
2283 struct sa_defrag_extent_backref *backref)
2284{
2285 struct rb_node **p = &root->rb_node;
2286 struct rb_node *parent = NULL;
2287 struct sa_defrag_extent_backref *entry;
2288 int ret;
2289
2290 while (*p) {
2291 parent = *p;
2292 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2293
2294 ret = backref_comp(backref, entry);
2295 if (ret < 0)
2296 p = &(*p)->rb_left;
2297 else
2298 p = &(*p)->rb_right;
2299 }
2300
2301 rb_link_node(&backref->node, parent, p);
2302 rb_insert_color(&backref->node, root);
2303}
2304
2305/*
2306 * Note the backref might has changed, and in this case we just return 0.
2307 */
2308static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2309 void *ctx)
2310{
2311 struct btrfs_file_extent_item *extent;
Liu Bo38c227d2013-01-29 03:18:40 +00002312 struct old_sa_defrag_extent *old = ctx;
2313 struct new_sa_defrag_extent *new = old->new;
2314 struct btrfs_path *path = new->path;
2315 struct btrfs_key key;
2316 struct btrfs_root *root;
2317 struct sa_defrag_extent_backref *backref;
2318 struct extent_buffer *leaf;
2319 struct inode *inode = new->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002320 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002321 int slot;
2322 int ret;
2323 u64 extent_offset;
2324 u64 num_bytes;
2325
2326 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002327 inum == btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002328 return 0;
2329
2330 key.objectid = root_id;
2331 key.type = BTRFS_ROOT_ITEM_KEY;
2332 key.offset = (u64)-1;
2333
Liu Bo38c227d2013-01-29 03:18:40 +00002334 root = btrfs_read_fs_root_no_name(fs_info, &key);
2335 if (IS_ERR(root)) {
2336 if (PTR_ERR(root) == -ENOENT)
2337 return 0;
2338 WARN_ON(1);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002339 btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu",
Liu Bo38c227d2013-01-29 03:18:40 +00002340 inum, offset, root_id);
2341 return PTR_ERR(root);
2342 }
2343
2344 key.objectid = inum;
2345 key.type = BTRFS_EXTENT_DATA_KEY;
2346 if (offset > (u64)-1 << 32)
2347 key.offset = 0;
2348 else
2349 key.offset = offset;
2350
2351 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302352 if (WARN_ON(ret < 0))
Liu Bo38c227d2013-01-29 03:18:40 +00002353 return ret;
Josef Bacik50f13192013-07-22 12:50:37 -04002354 ret = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002355
2356 while (1) {
2357 cond_resched();
2358
2359 leaf = path->nodes[0];
2360 slot = path->slots[0];
2361
2362 if (slot >= btrfs_header_nritems(leaf)) {
2363 ret = btrfs_next_leaf(root, path);
2364 if (ret < 0) {
2365 goto out;
2366 } else if (ret > 0) {
2367 ret = 0;
2368 goto out;
2369 }
2370 continue;
2371 }
2372
2373 path->slots[0]++;
2374
2375 btrfs_item_key_to_cpu(leaf, &key, slot);
2376
2377 if (key.objectid > inum)
2378 goto out;
2379
2380 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2381 continue;
2382
2383 extent = btrfs_item_ptr(leaf, slot,
2384 struct btrfs_file_extent_item);
2385
2386 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2387 continue;
2388
Liu Boe68afa42013-07-01 22:13:26 +08002389 /*
2390 * 'offset' refers to the exact key.offset,
2391 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2392 * (key.offset - extent_offset).
2393 */
2394 if (key.offset != offset)
Liu Bo38c227d2013-01-29 03:18:40 +00002395 continue;
2396
Liu Boe68afa42013-07-01 22:13:26 +08002397 extent_offset = btrfs_file_extent_offset(leaf, extent);
Liu Bo38c227d2013-01-29 03:18:40 +00002398 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
Liu Boe68afa42013-07-01 22:13:26 +08002399
Liu Bo38c227d2013-01-29 03:18:40 +00002400 if (extent_offset >= old->extent_offset + old->offset +
2401 old->len || extent_offset + num_bytes <=
2402 old->extent_offset + old->offset)
2403 continue;
Liu Bo38c227d2013-01-29 03:18:40 +00002404 break;
2405 }
2406
2407 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2408 if (!backref) {
2409 ret = -ENOENT;
2410 goto out;
2411 }
2412
2413 backref->root_id = root_id;
2414 backref->inum = inum;
Liu Boe68afa42013-07-01 22:13:26 +08002415 backref->file_pos = offset;
Liu Bo38c227d2013-01-29 03:18:40 +00002416 backref->num_bytes = num_bytes;
2417 backref->extent_offset = extent_offset;
2418 backref->generation = btrfs_file_extent_generation(leaf, extent);
2419 backref->old = old;
2420 backref_insert(&new->root, backref);
2421 old->count++;
2422out:
2423 btrfs_release_path(path);
2424 WARN_ON(ret);
2425 return ret;
2426}
2427
2428static noinline bool record_extent_backrefs(struct btrfs_path *path,
2429 struct new_sa_defrag_extent *new)
2430{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002431 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002432 struct old_sa_defrag_extent *old, *tmp;
2433 int ret;
2434
2435 new->path = path;
2436
2437 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Boe68afa42013-07-01 22:13:26 +08002438 ret = iterate_inodes_from_logical(old->bytenr +
2439 old->extent_offset, fs_info,
Liu Bo38c227d2013-01-29 03:18:40 +00002440 path, record_one_backref,
2441 old);
Josef Bacik4724b102013-11-05 11:11:40 -05002442 if (ret < 0 && ret != -ENOENT)
2443 return false;
Liu Bo38c227d2013-01-29 03:18:40 +00002444
2445 /* no backref to be processed for this extent */
2446 if (!old->count) {
2447 list_del(&old->list);
2448 kfree(old);
2449 }
2450 }
2451
2452 if (list_empty(&new->head))
2453 return false;
2454
2455 return true;
2456}
2457
2458static int relink_is_mergable(struct extent_buffer *leaf,
2459 struct btrfs_file_extent_item *fi,
Liu Bo116e0022013-08-02 16:30:40 +08002460 struct new_sa_defrag_extent *new)
Liu Bo38c227d2013-01-29 03:18:40 +00002461{
Liu Bo116e0022013-08-02 16:30:40 +08002462 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
Liu Bo38c227d2013-01-29 03:18:40 +00002463 return 0;
2464
2465 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2466 return 0;
2467
Liu Bo116e0022013-08-02 16:30:40 +08002468 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2469 return 0;
2470
2471 if (btrfs_file_extent_encryption(leaf, fi) ||
Liu Bo38c227d2013-01-29 03:18:40 +00002472 btrfs_file_extent_other_encoding(leaf, fi))
2473 return 0;
2474
2475 return 1;
2476}
2477
2478/*
2479 * Note the backref might has changed, and in this case we just return 0.
2480 */
2481static noinline int relink_extent_backref(struct btrfs_path *path,
2482 struct sa_defrag_extent_backref *prev,
2483 struct sa_defrag_extent_backref *backref)
2484{
2485 struct btrfs_file_extent_item *extent;
2486 struct btrfs_file_extent_item *item;
2487 struct btrfs_ordered_extent *ordered;
2488 struct btrfs_trans_handle *trans;
Liu Bo38c227d2013-01-29 03:18:40 +00002489 struct btrfs_root *root;
2490 struct btrfs_key key;
2491 struct extent_buffer *leaf;
2492 struct old_sa_defrag_extent *old = backref->old;
2493 struct new_sa_defrag_extent *new = old->new;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002494 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002495 struct inode *inode;
2496 struct extent_state *cached = NULL;
2497 int ret = 0;
2498 u64 start;
2499 u64 len;
2500 u64 lock_start;
2501 u64 lock_end;
2502 bool merge = false;
2503 int index;
2504
2505 if (prev && prev->root_id == backref->root_id &&
2506 prev->inum == backref->inum &&
2507 prev->file_pos + prev->num_bytes == backref->file_pos)
2508 merge = true;
2509
2510 /* step 1: get root */
2511 key.objectid = backref->root_id;
2512 key.type = BTRFS_ROOT_ITEM_KEY;
2513 key.offset = (u64)-1;
2514
Liu Bo38c227d2013-01-29 03:18:40 +00002515 index = srcu_read_lock(&fs_info->subvol_srcu);
2516
2517 root = btrfs_read_fs_root_no_name(fs_info, &key);
2518 if (IS_ERR(root)) {
2519 srcu_read_unlock(&fs_info->subvol_srcu, index);
2520 if (PTR_ERR(root) == -ENOENT)
2521 return 0;
2522 return PTR_ERR(root);
2523 }
Liu Bo38c227d2013-01-29 03:18:40 +00002524
Wang Shilongbcbba5e2014-02-08 23:46:35 +08002525 if (btrfs_root_readonly(root)) {
2526 srcu_read_unlock(&fs_info->subvol_srcu, index);
2527 return 0;
2528 }
2529
Liu Bo38c227d2013-01-29 03:18:40 +00002530 /* step 2: get inode */
2531 key.objectid = backref->inum;
2532 key.type = BTRFS_INODE_ITEM_KEY;
2533 key.offset = 0;
2534
2535 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2536 if (IS_ERR(inode)) {
2537 srcu_read_unlock(&fs_info->subvol_srcu, index);
2538 return 0;
2539 }
2540
2541 srcu_read_unlock(&fs_info->subvol_srcu, index);
2542
2543 /* step 3: relink backref */
2544 lock_start = backref->file_pos;
2545 lock_end = backref->file_pos + backref->num_bytes - 1;
2546 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
David Sterbaff13db42015-12-03 14:30:40 +01002547 &cached);
Liu Bo38c227d2013-01-29 03:18:40 +00002548
2549 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2550 if (ordered) {
2551 btrfs_put_ordered_extent(ordered);
2552 goto out_unlock;
2553 }
2554
2555 trans = btrfs_join_transaction(root);
2556 if (IS_ERR(trans)) {
2557 ret = PTR_ERR(trans);
2558 goto out_unlock;
2559 }
2560
2561 key.objectid = backref->inum;
2562 key.type = BTRFS_EXTENT_DATA_KEY;
2563 key.offset = backref->file_pos;
2564
2565 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2566 if (ret < 0) {
2567 goto out_free_path;
2568 } else if (ret > 0) {
2569 ret = 0;
2570 goto out_free_path;
2571 }
2572
2573 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2574 struct btrfs_file_extent_item);
2575
2576 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2577 backref->generation)
2578 goto out_free_path;
2579
2580 btrfs_release_path(path);
2581
2582 start = backref->file_pos;
2583 if (backref->extent_offset < old->extent_offset + old->offset)
2584 start += old->extent_offset + old->offset -
2585 backref->extent_offset;
2586
2587 len = min(backref->extent_offset + backref->num_bytes,
2588 old->extent_offset + old->offset + old->len);
2589 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2590
2591 ret = btrfs_drop_extents(trans, root, inode, start,
2592 start + len, 1);
2593 if (ret)
2594 goto out_free_path;
2595again:
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002596 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002597 key.type = BTRFS_EXTENT_DATA_KEY;
2598 key.offset = start;
2599
Liu Boa09a0a72013-03-11 09:20:58 +00002600 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002601 if (merge) {
2602 struct btrfs_file_extent_item *fi;
2603 u64 extent_len;
2604 struct btrfs_key found_key;
2605
Gui Hecheng3c9665d2014-01-23 13:41:09 +08002606 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Liu Bo38c227d2013-01-29 03:18:40 +00002607 if (ret < 0)
2608 goto out_free_path;
2609
2610 path->slots[0]--;
2611 leaf = path->nodes[0];
2612 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2613
2614 fi = btrfs_item_ptr(leaf, path->slots[0],
2615 struct btrfs_file_extent_item);
2616 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2617
Liu Bo116e0022013-08-02 16:30:40 +08002618 if (extent_len + found_key.offset == start &&
2619 relink_is_mergable(leaf, fi, new)) {
Liu Bo38c227d2013-01-29 03:18:40 +00002620 btrfs_set_file_extent_num_bytes(leaf, fi,
2621 extent_len + len);
2622 btrfs_mark_buffer_dirty(leaf);
2623 inode_add_bytes(inode, len);
2624
2625 ret = 1;
2626 goto out_free_path;
2627 } else {
2628 merge = false;
2629 btrfs_release_path(path);
2630 goto again;
2631 }
2632 }
2633
2634 ret = btrfs_insert_empty_item(trans, root, path, &key,
2635 sizeof(*extent));
2636 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002637 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002638 goto out_free_path;
2639 }
2640
2641 leaf = path->nodes[0];
2642 item = btrfs_item_ptr(leaf, path->slots[0],
2643 struct btrfs_file_extent_item);
2644 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2645 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2646 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2647 btrfs_set_file_extent_num_bytes(leaf, item, len);
2648 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2649 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2650 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2651 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2652 btrfs_set_file_extent_encryption(leaf, item, 0);
2653 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2654
2655 btrfs_mark_buffer_dirty(leaf);
2656 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002657 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002658
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002659 ret = btrfs_inc_extent_ref(trans, fs_info, new->bytenr,
Liu Bo38c227d2013-01-29 03:18:40 +00002660 new->disk_len, 0,
2661 backref->root_id, backref->inum,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002662 new->file_pos); /* start - extent_offset */
Liu Bo38c227d2013-01-29 03:18:40 +00002663 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002664 btrfs_abort_transaction(trans, ret);
Liu Bo38c227d2013-01-29 03:18:40 +00002665 goto out_free_path;
2666 }
2667
2668 ret = 1;
2669out_free_path:
2670 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002671 path->leave_spinning = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002672 btrfs_end_transaction(trans);
Liu Bo38c227d2013-01-29 03:18:40 +00002673out_unlock:
2674 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2675 &cached, GFP_NOFS);
2676 iput(inode);
2677 return ret;
2678}
2679
Liu Bo6f519562013-10-29 10:45:05 +08002680static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2681{
2682 struct old_sa_defrag_extent *old, *tmp;
2683
2684 if (!new)
2685 return;
2686
2687 list_for_each_entry_safe(old, tmp, &new->head, list) {
Liu Bo6f519562013-10-29 10:45:05 +08002688 kfree(old);
2689 }
2690 kfree(new);
2691}
2692
Liu Bo38c227d2013-01-29 03:18:40 +00002693static void relink_file_extents(struct new_sa_defrag_extent *new)
2694{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002695 struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002696 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002697 struct sa_defrag_extent_backref *backref;
2698 struct sa_defrag_extent_backref *prev = NULL;
2699 struct inode *inode;
2700 struct btrfs_root *root;
2701 struct rb_node *node;
2702 int ret;
2703
2704 inode = new->inode;
2705 root = BTRFS_I(inode)->root;
2706
2707 path = btrfs_alloc_path();
2708 if (!path)
2709 return;
2710
2711 if (!record_extent_backrefs(path, new)) {
2712 btrfs_free_path(path);
2713 goto out;
2714 }
2715 btrfs_release_path(path);
2716
2717 while (1) {
2718 node = rb_first(&new->root);
2719 if (!node)
2720 break;
2721 rb_erase(node, &new->root);
2722
2723 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2724
2725 ret = relink_extent_backref(path, prev, backref);
2726 WARN_ON(ret < 0);
2727
2728 kfree(prev);
2729
2730 if (ret == 1)
2731 prev = backref;
2732 else
2733 prev = NULL;
2734 cond_resched();
2735 }
2736 kfree(prev);
2737
2738 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002739out:
Liu Bo6f519562013-10-29 10:45:05 +08002740 free_sa_defrag_extent(new);
2741
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002742 atomic_dec(&fs_info->defrag_running);
2743 wake_up(&fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002744}
2745
2746static struct new_sa_defrag_extent *
2747record_old_file_extents(struct inode *inode,
2748 struct btrfs_ordered_extent *ordered)
2749{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002750 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Liu Bo38c227d2013-01-29 03:18:40 +00002751 struct btrfs_root *root = BTRFS_I(inode)->root;
2752 struct btrfs_path *path;
2753 struct btrfs_key key;
Liu Bo6f519562013-10-29 10:45:05 +08002754 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002755 struct new_sa_defrag_extent *new;
2756 int ret;
2757
2758 new = kmalloc(sizeof(*new), GFP_NOFS);
2759 if (!new)
2760 return NULL;
2761
2762 new->inode = inode;
2763 new->file_pos = ordered->file_offset;
2764 new->len = ordered->len;
2765 new->bytenr = ordered->start;
2766 new->disk_len = ordered->disk_len;
2767 new->compress_type = ordered->compress_type;
2768 new->root = RB_ROOT;
2769 INIT_LIST_HEAD(&new->head);
2770
2771 path = btrfs_alloc_path();
2772 if (!path)
2773 goto out_kfree;
2774
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002775 key.objectid = btrfs_ino(BTRFS_I(inode));
Liu Bo38c227d2013-01-29 03:18:40 +00002776 key.type = BTRFS_EXTENT_DATA_KEY;
2777 key.offset = new->file_pos;
2778
2779 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2780 if (ret < 0)
2781 goto out_free_path;
2782 if (ret > 0 && path->slots[0] > 0)
2783 path->slots[0]--;
2784
2785 /* find out all the old extents for the file range */
2786 while (1) {
2787 struct btrfs_file_extent_item *extent;
2788 struct extent_buffer *l;
2789 int slot;
2790 u64 num_bytes;
2791 u64 offset;
2792 u64 end;
2793 u64 disk_bytenr;
2794 u64 extent_offset;
2795
2796 l = path->nodes[0];
2797 slot = path->slots[0];
2798
2799 if (slot >= btrfs_header_nritems(l)) {
2800 ret = btrfs_next_leaf(root, path);
2801 if (ret < 0)
Liu Bo6f519562013-10-29 10:45:05 +08002802 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002803 else if (ret > 0)
2804 break;
2805 continue;
2806 }
2807
2808 btrfs_item_key_to_cpu(l, &key, slot);
2809
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002810 if (key.objectid != btrfs_ino(BTRFS_I(inode)))
Liu Bo38c227d2013-01-29 03:18:40 +00002811 break;
2812 if (key.type != BTRFS_EXTENT_DATA_KEY)
2813 break;
2814 if (key.offset >= new->file_pos + new->len)
2815 break;
2816
2817 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2818
2819 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2820 if (key.offset + num_bytes < new->file_pos)
2821 goto next;
2822
2823 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2824 if (!disk_bytenr)
2825 goto next;
2826
2827 extent_offset = btrfs_file_extent_offset(l, extent);
2828
2829 old = kmalloc(sizeof(*old), GFP_NOFS);
2830 if (!old)
Liu Bo6f519562013-10-29 10:45:05 +08002831 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002832
2833 offset = max(new->file_pos, key.offset);
2834 end = min(new->file_pos + new->len, key.offset + num_bytes);
2835
2836 old->bytenr = disk_bytenr;
2837 old->extent_offset = extent_offset;
2838 old->offset = offset - key.offset;
2839 old->len = end - offset;
2840 old->new = new;
2841 old->count = 0;
2842 list_add_tail(&old->list, &new->head);
2843next:
2844 path->slots[0]++;
2845 cond_resched();
2846 }
2847
2848 btrfs_free_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002849 atomic_inc(&fs_info->defrag_running);
Liu Bo38c227d2013-01-29 03:18:40 +00002850
2851 return new;
2852
Liu Bo38c227d2013-01-29 03:18:40 +00002853out_free_path:
2854 btrfs_free_path(path);
2855out_kfree:
Liu Bo6f519562013-10-29 10:45:05 +08002856 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002857 return NULL;
2858}
2859
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002860static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002861 u64 start, u64 len)
2862{
2863 struct btrfs_block_group_cache *cache;
2864
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002865 cache = btrfs_lookup_block_group(fs_info, start);
Miao Xiee570fd22014-06-19 10:42:50 +08002866 ASSERT(cache);
2867
2868 spin_lock(&cache->lock);
2869 cache->delalloc_bytes -= len;
2870 spin_unlock(&cache->lock);
2871
2872 btrfs_put_block_group(cache);
2873}
2874
Chris Masond352ac62008-09-29 15:18:18 -04002875/* as ordered data IO finishes, this gets called so we can finish
2876 * an ordered extent if the range of bytes in the file it covers are
2877 * fully written.
2878 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002879static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002880{
Josef Bacik5fd02042012-05-02 14:00:54 -04002881 struct inode *inode = ordered_extent->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002882 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002883 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002884 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002885 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002886 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002887 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002888 int compress_type = 0;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002889 int ret = 0;
2890 u64 logical_len = ordered_extent->len;
Li Zefan82d59022011-04-20 10:33:24 +08002891 bool nolock;
Josef Bacik77cef2e2013-08-29 13:57:21 -04002892 bool truncated = false;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002893 bool range_locked = false;
2894 bool clear_new_delalloc_bytes = false;
2895
2896 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2897 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) &&
2898 !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags))
2899 clear_new_delalloc_bytes = true;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002900
Nikolay Borisov70ddc552017-02-20 13:50:35 +02002901 nolock = btrfs_is_free_space_inode(BTRFS_I(inode));
Josef Bacik0cb59c92010-07-02 12:14:14 -04002902
Josef Bacik5fd02042012-05-02 14:00:54 -04002903 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2904 ret = -EIO;
2905 goto out;
2906 }
2907
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002908 btrfs_free_io_failure_record(BTRFS_I(inode),
2909 ordered_extent->file_offset,
2910 ordered_extent->file_offset +
2911 ordered_extent->len - 1);
Miao Xief6124962014-09-12 18:44:04 +08002912
Josef Bacik77cef2e2013-08-29 13:57:21 -04002913 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2914 truncated = true;
2915 logical_len = ordered_extent->truncated_len;
2916 /* Truncated the entire extent, don't bother adding */
2917 if (!logical_len)
2918 goto out;
2919 }
2920
Yan, Zhengc2167752009-11-12 09:34:21 +00002921 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002922 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Qu Wenruo94ed9382015-09-08 17:25:56 +08002923
2924 /*
2925 * For mwrite(mmap + memset to write) case, we still reserve
2926 * space for NOCOW range.
2927 * As NOCOW won't cause a new delayed ref, just free the space
2928 */
2929 btrfs_qgroup_free_data(inode, ordered_extent->file_offset,
2930 ordered_extent->len);
Josef Bacik6c760c02012-11-09 10:53:21 -05002931 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2932 if (nolock)
2933 trans = btrfs_join_transaction_nolock(root);
2934 else
2935 trans = btrfs_join_transaction(root);
2936 if (IS_ERR(trans)) {
2937 ret = PTR_ERR(trans);
2938 trans = NULL;
2939 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002940 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002941 trans->block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik6c760c02012-11-09 10:53:21 -05002942 ret = btrfs_update_inode_fallback(trans, root, inode);
2943 if (ret) /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04002944 btrfs_abort_transaction(trans, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002945 goto out;
2946 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002947
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002948 range_locked = true;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002949 lock_extent_bits(io_tree, ordered_extent->file_offset,
2950 ordered_extent->file_offset + ordered_extent->len - 1,
David Sterbaff13db42015-12-03 14:30:40 +01002951 &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002952
Liu Bo38c227d2013-01-29 03:18:40 +00002953 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2954 ordered_extent->file_offset + ordered_extent->len - 1,
2955 EXTENT_DEFRAG, 1, cached_state);
2956 if (ret) {
2957 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacik8101c8d2014-01-29 16:05:30 -05002958 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002959 /* the inode is shared */
2960 new = record_old_file_extents(inode, ordered_extent);
2961
2962 clear_extent_bit(io_tree, ordered_extent->file_offset,
2963 ordered_extent->file_offset + ordered_extent->len - 1,
2964 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2965 }
2966
Josef Bacik0cb59c92010-07-02 12:14:14 -04002967 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002968 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002969 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002970 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002971 if (IS_ERR(trans)) {
2972 ret = PTR_ERR(trans);
2973 trans = NULL;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01002974 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002975 }
Chris Masona79b7d42014-05-22 16:18:52 -07002976
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002977 trans->block_rsv = &fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002978
Chris Masonc8b97812008-10-29 14:49:59 -04002979 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002980 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002981 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002982 BUG_ON(compress_type);
Nikolay Borisov7a6d7062017-02-20 13:50:48 +02002983 ret = btrfs_mark_extent_written(trans, BTRFS_I(inode),
Yan Zhengd899e052008-10-30 14:25:28 -04002984 ordered_extent->file_offset,
2985 ordered_extent->file_offset +
Josef Bacik77cef2e2013-08-29 13:57:21 -04002986 logical_len);
Yan Zhengd899e052008-10-30 14:25:28 -04002987 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002988 BUG_ON(root == fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002989 ret = insert_reserved_file_extent(trans, inode,
2990 ordered_extent->file_offset,
2991 ordered_extent->start,
2992 ordered_extent->disk_len,
Josef Bacik77cef2e2013-08-29 13:57:21 -04002993 logical_len, logical_len,
Li Zefan261507a02010-12-17 14:21:50 +08002994 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002995 BTRFS_FILE_EXTENT_REG);
Miao Xiee570fd22014-06-19 10:42:50 +08002996 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002997 btrfs_release_delalloc_bytes(fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08002998 ordered_extent->start,
2999 ordered_extent->disk_len);
Yan Zhengd899e052008-10-30 14:25:28 -04003000 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04003001 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
3002 ordered_extent->file_offset, ordered_extent->len,
3003 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003004 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003005 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003006 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003007 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00003008
David Sterbadf9f6282017-02-10 19:35:37 +01003009 add_pending_csums(trans, inode, &ordered_extent->list);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003010
Josef Bacik6c760c02012-11-09 10:53:21 -05003011 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
3012 ret = btrfs_update_inode_fallback(trans, root, inode);
3013 if (ret) { /* -ENOMEM or corruption */
Jeff Mahoney66642832016-06-10 18:19:25 -04003014 btrfs_abort_transaction(trans, ret);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003015 goto out;
Josef Bacik1ef30be2011-04-05 19:25:36 -04003016 }
3017 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00003018out:
Filipe Mananaa7e3b972017-04-03 10:45:46 +01003019 if (range_locked || clear_new_delalloc_bytes) {
3020 unsigned int clear_bits = 0;
3021
3022 if (range_locked)
3023 clear_bits |= EXTENT_LOCKED;
3024 if (clear_new_delalloc_bytes)
3025 clear_bits |= EXTENT_DELALLOC_NEW;
3026 clear_extent_bit(&BTRFS_I(inode)->io_tree,
3027 ordered_extent->file_offset,
3028 ordered_extent->file_offset +
3029 ordered_extent->len - 1,
3030 clear_bits,
3031 (clear_bits & EXTENT_LOCKED) ? 1 : 0,
3032 0, &cached_state, GFP_NOFS);
3033 }
3034
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003035 if (root != fs_info->tree_root)
Nikolay Borisov691fa052017-02-20 13:50:42 +02003036 btrfs_delalloc_release_metadata(BTRFS_I(inode),
3037 ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06003038 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003039 btrfs_end_transaction(trans);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003040
Josef Bacik77cef2e2013-08-29 13:57:21 -04003041 if (ret || truncated) {
3042 u64 start, end;
3043
3044 if (truncated)
3045 start = ordered_extent->file_offset + logical_len;
3046 else
3047 start = ordered_extent->file_offset;
3048 end = ordered_extent->file_offset + ordered_extent->len - 1;
3049 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
3050
3051 /* Drop the cache for the part of the extent we didn't write. */
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003052 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Josef Bacik5fd02042012-05-02 14:00:54 -04003053
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003054 /*
3055 * If the ordered extent had an IOERR or something else went
3056 * wrong we need to return the space for this ordered extent
Josef Bacik77cef2e2013-08-29 13:57:21 -04003057 * back to the allocator. We only free the extent in the
3058 * truncated case if we didn't write out the extent at all.
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003059 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04003060 if ((ret || !logical_len) &&
3061 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003062 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003063 btrfs_free_reserved_extent(fs_info,
3064 ordered_extent->start,
Miao Xiee570fd22014-06-19 10:42:50 +08003065 ordered_extent->disk_len, 1);
Josef Bacik0bec9ef2013-01-31 14:58:00 -05003066 }
3067
3068
Josef Bacik5fd02042012-05-02 14:00:54 -04003069 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08003070 * This needs to be done to make sure anybody waiting knows we are done
3071 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04003072 */
3073 btrfs_remove_ordered_extent(inode, ordered_extent);
3074
Liu Bo38c227d2013-01-29 03:18:40 +00003075 /* for snapshot-aware defrag */
Liu Bo6f519562013-10-29 10:45:05 +08003076 if (new) {
3077 if (ret) {
3078 free_sa_defrag_extent(new);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003079 atomic_dec(&fs_info->defrag_running);
Liu Bo6f519562013-10-29 10:45:05 +08003080 } else {
3081 relink_file_extents(new);
3082 }
3083 }
Liu Bo38c227d2013-01-29 03:18:40 +00003084
Chris Masone6dcd2d2008-07-17 12:53:50 -04003085 /* once for us */
3086 btrfs_put_ordered_extent(ordered_extent);
3087 /* once for the tree */
3088 btrfs_put_ordered_extent(ordered_extent);
3089
Josef Bacik5fd02042012-05-02 14:00:54 -04003090 return ret;
3091}
3092
3093static void finish_ordered_fn(struct btrfs_work *work)
3094{
3095 struct btrfs_ordered_extent *ordered_extent;
3096 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
3097 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003098}
3099
David Sterbac3988d62017-02-17 15:18:32 +01003100static void btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04003101 struct extent_state *state, int uptodate)
3102{
Josef Bacik5fd02042012-05-02 14:00:54 -04003103 struct inode *inode = page->mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003104 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5fd02042012-05-02 14:00:54 -04003105 struct btrfs_ordered_extent *ordered_extent = NULL;
Liu Bo9e0af232014-08-15 23:36:53 +08003106 struct btrfs_workqueue *wq;
3107 btrfs_work_func_t func;
Josef Bacik5fd02042012-05-02 14:00:54 -04003108
liubo1abe9b82011-03-24 11:18:59 +00003109 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
3110
Chris Mason8b62b722009-09-02 16:53:46 -04003111 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04003112 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
3113 end - start + 1, uptodate))
David Sterbac3988d62017-02-17 15:18:32 +01003114 return;
Josef Bacik5fd02042012-05-02 14:00:54 -04003115
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003116 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003117 wq = fs_info->endio_freespace_worker;
Liu Bo9e0af232014-08-15 23:36:53 +08003118 func = btrfs_freespace_write_helper;
3119 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003120 wq = fs_info->endio_write_workers;
Liu Bo9e0af232014-08-15 23:36:53 +08003121 func = btrfs_endio_write_helper;
3122 }
Josef Bacik5fd02042012-05-02 14:00:54 -04003123
Liu Bo9e0af232014-08-15 23:36:53 +08003124 btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL,
3125 NULL);
3126 btrfs_queue_work(wq, &ordered_extent->work);
Chris Mason211f90e2008-07-18 11:56:15 -04003127}
3128
Miao Xiedc380ae2014-09-12 18:43:55 +08003129static int __readpage_endio_check(struct inode *inode,
3130 struct btrfs_io_bio *io_bio,
3131 int icsum, struct page *page,
3132 int pgoff, u64 start, size_t len)
3133{
3134 char *kaddr;
3135 u32 csum_expected;
3136 u32 csum = ~(u32)0;
Miao Xiedc380ae2014-09-12 18:43:55 +08003137
3138 csum_expected = *(((u32 *)io_bio->csum) + icsum);
3139
3140 kaddr = kmap_atomic(page);
3141 csum = btrfs_csum_data(kaddr + pgoff, csum, len);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +01003142 btrfs_csum_final(csum, (u8 *)&csum);
Miao Xiedc380ae2014-09-12 18:43:55 +08003143 if (csum != csum_expected)
3144 goto zeroit;
3145
3146 kunmap_atomic(kaddr);
3147 return 0;
3148zeroit:
Nikolay Borisov0970a222017-02-20 13:50:53 +02003149 btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected,
Qu Wenruo6f6b6432017-02-09 10:45:06 +08003150 io_bio->mirror_num);
Miao Xiedc380ae2014-09-12 18:43:55 +08003151 memset(kaddr + pgoff, 1, len);
3152 flush_dcache_page(page);
3153 kunmap_atomic(kaddr);
3154 if (csum_expected == 0)
3155 return 0;
3156 return -EIO;
3157}
3158
Chris Masond352ac62008-09-29 15:18:18 -04003159/*
Chris Masond352ac62008-09-29 15:18:18 -04003160 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003161 * if there's a match, we allow the bio to finish. If not, the code in
3162 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04003163 */
Miao Xiefacc8a222013-07-25 19:22:34 +08003164static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
3165 u64 phy_offset, struct page *page,
3166 u64 start, u64 end, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04003167{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003168 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04003169 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003170 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonff79f812007-10-15 16:22:25 -04003171 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05003172
Chris Masond20f7042008-12-08 16:58:54 -05003173 if (PageChecked(page)) {
3174 ClearPageChecked(page);
Miao Xiedc380ae2014-09-12 18:43:55 +08003175 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003176 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003177
3178 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Miao Xiedc380ae2014-09-12 18:43:55 +08003179 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05003180
Yan Zheng17d217f2008-12-12 10:03:38 -05003181 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04003182 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
David Sterba91166212016-04-26 23:54:39 +02003183 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM);
Yan Zheng17d217f2008-12-12 10:03:38 -05003184 return 0;
3185 }
3186
Miao Xiefacc8a222013-07-25 19:22:34 +08003187 phy_offset >>= inode->i_sb->s_blocksize_bits;
Miao Xiedc380ae2014-09-12 18:43:55 +08003188 return __readpage_endio_check(inode, io_bio, phy_offset, page, offset,
3189 start, (size_t)(end - start + 1));
Chris Mason07157aa2007-08-30 08:50:51 -04003190}
Chris Masonb888db22007-08-27 16:49:44 -04003191
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003192void btrfs_add_delayed_iput(struct inode *inode)
3193{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003194 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba8089fe62015-11-19 14:15:51 +01003195 struct btrfs_inode *binode = BTRFS_I(inode);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003196
3197 if (atomic_add_unless(&inode->i_count, -1, 1))
3198 return;
3199
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003200 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003201 if (binode->delayed_iput_count == 0) {
3202 ASSERT(list_empty(&binode->delayed_iput));
3203 list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs);
3204 } else {
3205 binode->delayed_iput_count++;
3206 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003207 spin_unlock(&fs_info->delayed_iput_lock);
3208}
3209
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003210void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info)
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003211{
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003212
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003213 spin_lock(&fs_info->delayed_iput_lock);
David Sterba8089fe62015-11-19 14:15:51 +01003214 while (!list_empty(&fs_info->delayed_iputs)) {
3215 struct btrfs_inode *inode;
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003216
David Sterba8089fe62015-11-19 14:15:51 +01003217 inode = list_first_entry(&fs_info->delayed_iputs,
3218 struct btrfs_inode, delayed_iput);
3219 if (inode->delayed_iput_count) {
3220 inode->delayed_iput_count--;
3221 list_move_tail(&inode->delayed_iput,
3222 &fs_info->delayed_iputs);
3223 } else {
3224 list_del_init(&inode->delayed_iput);
3225 }
3226 spin_unlock(&fs_info->delayed_iput_lock);
3227 iput(&inode->vfs_inode);
3228 spin_lock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003229 }
David Sterba8089fe62015-11-19 14:15:51 +01003230 spin_unlock(&fs_info->delayed_iput_lock);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00003231}
3232
Yan, Zhengd68fc572010-05-16 10:49:58 -04003233/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003234 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04003235 * files in the subvolume, it removes orphan item and frees block_rsv
3236 * structure.
3237 */
3238void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
3239 struct btrfs_root *root)
3240{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003241 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik90290e12011-12-02 15:44:12 -05003242 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003243 int ret;
3244
Josef Bacik8a35d952012-05-23 14:26:42 -04003245 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04003246 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
3247 return;
3248
Josef Bacik90290e12011-12-02 15:44:12 -05003249 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003250 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05003251 spin_unlock(&root->orphan_lock);
3252 return;
3253 }
3254
3255 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
3256 spin_unlock(&root->orphan_lock);
3257 return;
3258 }
3259
3260 block_rsv = root->orphan_block_rsv;
3261 root->orphan_block_rsv = NULL;
3262 spin_unlock(&root->orphan_lock);
3263
Miao Xie27cdeb72014-04-02 19:51:05 +08003264 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
Yan, Zhengd68fc572010-05-16 10:49:58 -04003265 btrfs_root_refs(&root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003266 ret = btrfs_del_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003267 root->root_key.objectid);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003268 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003269 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003270 else
Miao Xie27cdeb72014-04-02 19:51:05 +08003271 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
3272 &root->state);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003273 }
3274
Josef Bacik90290e12011-12-02 15:44:12 -05003275 if (block_rsv) {
3276 WARN_ON(block_rsv->size > 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003277 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003278 }
3279}
3280
3281/*
Josef Bacik7b128762008-07-24 12:17:14 -04003282 * This creates an orphan entry for the given inode in case something goes
3283 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04003284 *
3285 * NOTE: caller of this function should reserve 5 units of metadata for
3286 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04003287 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003288int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3289 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003290{
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003291 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
3292 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003293 struct btrfs_block_rsv *block_rsv = NULL;
3294 int reserve = 0;
3295 int insert = 0;
3296 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003297
Yan, Zhengd68fc572010-05-16 10:49:58 -04003298 if (!root->orphan_block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003299 block_rsv = btrfs_alloc_block_rsv(fs_info,
3300 BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003301 if (!block_rsv)
3302 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04003303 }
3304
Yan, Zhengd68fc572010-05-16 10:49:58 -04003305 spin_lock(&root->orphan_lock);
3306 if (!root->orphan_block_rsv) {
3307 root->orphan_block_rsv = block_rsv;
3308 } else if (block_rsv) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003309 btrfs_free_block_rsv(fs_info, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003310 block_rsv = NULL;
3311 }
Josef Bacik7b128762008-07-24 12:17:14 -04003312
Josef Bacik8a35d952012-05-23 14:26:42 -04003313 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003314 &inode->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003315#if 0
3316 /*
3317 * For proper ENOSPC handling, we should do orphan
3318 * cleanup when mounting. But this introduces backward
3319 * compatibility issue.
3320 */
3321 if (!xchg(&root->orphan_item_inserted, 1))
3322 insert = 2;
3323 else
3324 insert = 1;
3325#endif
3326 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003327 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003328 }
Josef Bacik7b128762008-07-24 12:17:14 -04003329
Josef Bacik72ac3c02012-05-23 14:13:11 -04003330 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003331 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003332 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003333 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003334
Yan, Zhengd68fc572010-05-16 10:49:58 -04003335 /* grab metadata reservation from transaction handle */
3336 if (reserve) {
3337 ret = btrfs_orphan_reserve_metadata(trans, inode);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003338 ASSERT(!ret);
3339 if (ret) {
3340 atomic_dec(&root->orphan_inodes);
3341 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003342 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003343 if (insert)
3344 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003345 &inode->runtime_flags);
Josef Bacik3b6571c2016-05-27 13:03:04 -04003346 return ret;
3347 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003348 }
3349
3350 /* insert an orphan item to track this unlinked/truncated file */
3351 if (insert >= 1) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003352 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04003353 if (ret) {
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003354 atomic_dec(&root->orphan_inodes);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003355 if (reserve) {
3356 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003357 &inode->runtime_flags);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003358 btrfs_orphan_release_metadata(inode);
3359 }
3360 if (ret != -EEXIST) {
Josef Bacike8e7cff2013-08-21 15:54:00 -04003361 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003362 &inode->runtime_flags);
Jeff Mahoney66642832016-06-10 18:19:25 -04003363 btrfs_abort_transaction(trans, ret);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003364 return ret;
3365 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003366 }
3367 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003368 }
3369
3370 /* insert an orphan item to track subvolume contains orphan files */
3371 if (insert >= 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003372 ret = btrfs_insert_orphan_item(trans, fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003373 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003374 if (ret && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003375 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003376 return ret;
3377 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003378 }
3379 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003380}
3381
3382/*
3383 * We have done the truncate/delete so we can go ahead and remove the orphan
3384 * item for this particular inode.
3385 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003386static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003387 struct btrfs_inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003388{
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003389 struct btrfs_root *root = inode->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003390 int delete_item = 0;
3391 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003392 int ret = 0;
3393
Yan, Zhengd68fc572010-05-16 10:49:58 -04003394 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003395 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003396 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003397 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003398
Josef Bacik72ac3c02012-05-23 14:13:11 -04003399 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003400 &inode->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003401 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003402 spin_unlock(&root->orphan_lock);
3403
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003404 if (delete_item) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003405 atomic_dec(&root->orphan_inodes);
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003406 if (trans)
3407 ret = btrfs_del_orphan_item(trans, root,
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003408 btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04003409 }
Josef Bacik7b128762008-07-24 12:17:14 -04003410
Filipe David Borba Manana703c88e2013-09-22 21:54:55 +01003411 if (release_rsv)
3412 btrfs_orphan_release_metadata(inode);
3413
Josef Bacik4ef31a42013-08-13 14:10:08 -04003414 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003415}
3416
3417/*
3418 * this cleans up any orphans that may be left on the list from the last use
3419 * of this root.
3420 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003421int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003422{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003423 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik7b128762008-07-24 12:17:14 -04003424 struct btrfs_path *path;
3425 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003426 struct btrfs_key key, found_key;
3427 struct btrfs_trans_handle *trans;
3428 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003429 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003430 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3431
Yan, Zhengd68fc572010-05-16 10:49:58 -04003432 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003433 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003434
3435 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003436 if (!path) {
3437 ret = -ENOMEM;
3438 goto out;
3439 }
David Sterbae4058b52015-11-27 16:31:35 +01003440 path->reada = READA_BACK;
Josef Bacik7b128762008-07-24 12:17:14 -04003441
3442 key.objectid = BTRFS_ORPHAN_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02003443 key.type = BTRFS_ORPHAN_ITEM_KEY;
Josef Bacik7b128762008-07-24 12:17:14 -04003444 key.offset = (u64)-1;
3445
Josef Bacik7b128762008-07-24 12:17:14 -04003446 while (1) {
3447 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003448 if (ret < 0)
3449 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003450
3451 /*
3452 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003453 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003454 * find the key and see if we have stuff that matches
3455 */
3456 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003457 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003458 if (path->slots[0] == 0)
3459 break;
3460 path->slots[0]--;
3461 }
3462
3463 /* pull out the item */
3464 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003465 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3466
3467 /* make sure the item matches what we want */
3468 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3469 break;
David Sterba962a2982014-06-04 18:41:45 +02003470 if (found_key.type != BTRFS_ORPHAN_ITEM_KEY)
Josef Bacik7b128762008-07-24 12:17:14 -04003471 break;
3472
3473 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003474 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003475
3476 /*
3477 * this is where we are basically btrfs_lookup, without the
3478 * crossing root thing. we store the inode number in the
3479 * offset of the orphan item.
3480 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003481
3482 if (found_key.offset == last_objectid) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003483 btrfs_err(fs_info,
3484 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003485 ret = -EINVAL;
3486 goto out;
3487 }
3488
3489 last_objectid = found_key.offset;
3490
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003491 found_key.objectid = found_key.offset;
3492 found_key.type = BTRFS_INODE_ITEM_KEY;
3493 found_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003494 inode = btrfs_iget(fs_info->sb, &found_key, root, NULL);
Rusty Russell8c6ffba2013-07-15 11:20:32 +09303495 ret = PTR_ERR_OR_ZERO(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003496 if (ret && ret != -ENOENT)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003497 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003498
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003499 if (ret == -ENOENT && root == fs_info->tree_root) {
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003500 struct btrfs_root *dead_root;
3501 struct btrfs_fs_info *fs_info = root->fs_info;
3502 int is_dead_root = 0;
3503
3504 /*
3505 * this is an orphan in the tree root. Currently these
3506 * could come from 2 sources:
3507 * a) a snapshot deletion in progress
3508 * b) a free space cache inode
3509 * We need to distinguish those two, as the snapshot
3510 * orphan must not get deleted.
3511 * find_dead_roots already ran before us, so if this
3512 * is a snapshot deletion, we should find the root
3513 * in the dead_roots list
3514 */
3515 spin_lock(&fs_info->trans_lock);
3516 list_for_each_entry(dead_root, &fs_info->dead_roots,
3517 root_list) {
3518 if (dead_root->root_key.objectid ==
3519 found_key.objectid) {
3520 is_dead_root = 1;
3521 break;
3522 }
3523 }
3524 spin_unlock(&fs_info->trans_lock);
3525 if (is_dead_root) {
3526 /* prevent this orphan from being found again */
3527 key.offset = found_key.objectid - 1;
3528 continue;
3529 }
3530 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003531 /*
3532 * Inode is already gone but the orphan item is still there,
3533 * kill the orphan item.
3534 */
Filipe Manana67710892016-06-06 11:51:25 +01003535 if (ret == -ENOENT) {
Josef Bacika8c9e572011-09-21 16:55:59 -04003536 trans = btrfs_start_transaction(root, 1);
3537 if (IS_ERR(trans)) {
3538 ret = PTR_ERR(trans);
3539 goto out;
3540 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003541 btrfs_debug(fs_info, "auto deleting %Lu",
3542 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003543 ret = btrfs_del_orphan_item(trans, root,
3544 found_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003545 btrfs_end_transaction(trans);
Josef Bacik4ef31a42013-08-13 14:10:08 -04003546 if (ret)
3547 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003548 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003549 }
Josef Bacik7b128762008-07-24 12:17:14 -04003550
Josef Bacik7b128762008-07-24 12:17:14 -04003551 /*
3552 * add this inode to the orphan list so btrfs_orphan_del does
3553 * the proper thing when we hit it
3554 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003555 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3556 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003557 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003558
Josef Bacik7b128762008-07-24 12:17:14 -04003559 /* if we have links, this was a truncate, lets do that */
3560 if (inode->i_nlink) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303561 if (WARN_ON(!S_ISREG(inode->i_mode))) {
Josef Bacika41ad392011-01-31 15:30:16 -05003562 iput(inode);
3563 continue;
3564 }
Josef Bacik7b128762008-07-24 12:17:14 -04003565 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003566
3567 /* 1 for the orphan item deletion. */
3568 trans = btrfs_start_transaction(root, 1);
3569 if (IS_ERR(trans)) {
Josef Bacikc69b26b2013-06-03 16:51:23 -04003570 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003571 ret = PTR_ERR(trans);
3572 goto out;
3573 }
Nikolay Borisov73f2e542017-02-20 13:50:59 +02003574 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003575 btrfs_end_transaction(trans);
Josef Bacikc69b26b2013-06-03 16:51:23 -04003576 if (ret) {
3577 iput(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003578 goto out;
Josef Bacikc69b26b2013-06-03 16:51:23 -04003579 }
Josef Bacikf3fe8202013-01-07 17:03:21 -05003580
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003581 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003582 if (ret)
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02003583 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04003584 } else {
3585 nr_unlink++;
3586 }
3587
3588 /* this will do delete_inode and everything for us */
3589 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003590 if (ret)
3591 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003592 }
Miao Xie3254c872011-11-10 20:45:05 -05003593 /* release the path since we're done with it */
3594 btrfs_release_path(path);
3595
Yan, Zhengd68fc572010-05-16 10:49:58 -04003596 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3597
3598 if (root->orphan_block_rsv)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003599 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv,
Yan, Zhengd68fc572010-05-16 10:49:58 -04003600 (u64)-1);
3601
Miao Xie27cdeb72014-04-02 19:51:05 +08003602 if (root->orphan_block_rsv ||
3603 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003604 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003605 if (!IS_ERR(trans))
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003606 btrfs_end_transaction(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003607 }
Josef Bacik7b128762008-07-24 12:17:14 -04003608
3609 if (nr_unlink)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003610 btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003611 if (nr_truncate)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003612 btrfs_debug(fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003613
3614out:
3615 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003616 btrfs_err(fs_info, "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003617 btrfs_free_path(path);
3618 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003619}
3620
Chris Masond352ac62008-09-29 15:18:18 -04003621/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003622 * very simple check to peek ahead in the leaf looking for xattrs. If we
3623 * don't find any xattrs, we know there can't be any acls.
3624 *
3625 * slot is the slot the inode is in, objectid is the objectid of the inode
3626 */
3627static noinline int acls_after_inode_item(struct extent_buffer *leaf,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003628 int slot, u64 objectid,
3629 int *first_xattr_slot)
Chris Mason46a53cc2009-04-27 11:47:50 -04003630{
3631 u32 nritems = btrfs_header_nritems(leaf);
3632 struct btrfs_key found_key;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003633 static u64 xattr_access = 0;
3634 static u64 xattr_default = 0;
Chris Mason46a53cc2009-04-27 11:47:50 -04003635 int scanned = 0;
3636
Josef Bacikf23b5a52013-06-19 10:16:26 -04003637 if (!xattr_access) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +01003638 xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS,
3639 strlen(XATTR_NAME_POSIX_ACL_ACCESS));
3640 xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT,
3641 strlen(XATTR_NAME_POSIX_ACL_DEFAULT));
Josef Bacikf23b5a52013-06-19 10:16:26 -04003642 }
3643
Chris Mason46a53cc2009-04-27 11:47:50 -04003644 slot++;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003645 *first_xattr_slot = -1;
Chris Mason46a53cc2009-04-27 11:47:50 -04003646 while (slot < nritems) {
3647 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3648
3649 /* we found a different objectid, there must not be acls */
3650 if (found_key.objectid != objectid)
3651 return 0;
3652
3653 /* we found an xattr, assume we've got an acl */
Josef Bacikf23b5a52013-06-19 10:16:26 -04003654 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003655 if (*first_xattr_slot == -1)
3656 *first_xattr_slot = slot;
Josef Bacikf23b5a52013-06-19 10:16:26 -04003657 if (found_key.offset == xattr_access ||
3658 found_key.offset == xattr_default)
3659 return 1;
3660 }
Chris Mason46a53cc2009-04-27 11:47:50 -04003661
3662 /*
3663 * we found a key greater than an xattr key, there can't
3664 * be any acls later on
3665 */
3666 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3667 return 0;
3668
3669 slot++;
3670 scanned++;
3671
3672 /*
3673 * it goes inode, inode backrefs, xattrs, extents,
3674 * so if there are a ton of hard links to an inode there can
3675 * be a lot of backrefs. Don't waste time searching too hard,
3676 * this is just an optimization
3677 */
3678 if (scanned >= 8)
3679 break;
3680 }
3681 /* we hit the end of the leaf before we found an xattr or
3682 * something larger than an xattr. We have to assume the inode
3683 * has acls
3684 */
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003685 if (*first_xattr_slot == -1)
3686 *first_xattr_slot = slot;
Chris Mason46a53cc2009-04-27 11:47:50 -04003687 return 1;
3688}
3689
3690/*
Chris Masond352ac62008-09-29 15:18:18 -04003691 * read an inode from the btree into the in-memory inode
3692 */
Filipe Manana67710892016-06-06 11:51:25 +01003693static int btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003694{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003695 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04003696 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003697 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003698 struct btrfs_inode_item *inode_item;
3699 struct btrfs_root *root = BTRFS_I(inode)->root;
3700 struct btrfs_key location;
Miao Xie67de1172013-12-26 13:07:06 +08003701 unsigned long ptr;
Chris Mason46a53cc2009-04-27 11:47:50 -04003702 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003703 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003704 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003705 bool filled = false;
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003706 int first_xattr_slot;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003707
3708 ret = btrfs_fill_inode(inode, &rdev);
3709 if (!ret)
3710 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003711
3712 path = btrfs_alloc_path();
Filipe Manana67710892016-06-06 11:51:25 +01003713 if (!path) {
3714 ret = -ENOMEM;
Mark Fasheh1748f842011-07-12 11:25:31 -07003715 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003716 }
Mark Fasheh1748f842011-07-12 11:25:31 -07003717
Chris Mason39279cc2007-06-12 06:35:45 -04003718 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003719
Chris Mason39279cc2007-06-12 06:35:45 -04003720 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Filipe Manana67710892016-06-06 11:51:25 +01003721 if (ret) {
3722 if (ret > 0)
3723 ret = -ENOENT;
Chris Mason39279cc2007-06-12 06:35:45 -04003724 goto make_bad;
Filipe Manana67710892016-06-06 11:51:25 +01003725 }
Chris Mason39279cc2007-06-12 06:35:45 -04003726
Chris Mason5f39d392007-10-15 16:14:19 -04003727 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003728
3729 if (filled)
Miao Xie67de1172013-12-26 13:07:06 +08003730 goto cache_index;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003731
Chris Mason5f39d392007-10-15 16:14:19 -04003732 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3733 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003734 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003735 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003736 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3737 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003738 btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003739
David Sterbaa937b972014-12-12 17:39:12 +01003740 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime);
3741 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime);
Chris Mason5f39d392007-10-15 16:14:19 -04003742
David Sterbaa937b972014-12-12 17:39:12 +01003743 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime);
3744 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime);
Chris Mason5f39d392007-10-15 16:14:19 -04003745
David Sterbaa937b972014-12-12 17:39:12 +01003746 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime);
3747 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime);
Chris Mason5f39d392007-10-15 16:14:19 -04003748
chandan r9cc97d62012-07-04 12:48:07 +05303749 BTRFS_I(inode)->i_otime.tv_sec =
3750 btrfs_timespec_sec(leaf, &inode_item->otime);
3751 BTRFS_I(inode)->i_otime.tv_nsec =
3752 btrfs_timespec_nsec(leaf, &inode_item->otime);
Chris Mason5f39d392007-10-15 16:14:19 -04003753
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003754 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003755 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003756 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3757
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003758 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003759 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003760 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003761 rdev = btrfs_inode_rdev(leaf, inode_item);
3762
Josef Bacikaec74772008-07-24 12:12:38 -04003763 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003764 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie67de1172013-12-26 13:07:06 +08003765
3766cache_index:
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003767 /*
3768 * If we were modified in the current generation and evicted from memory
3769 * and then re-read we need to do a full sync since we don't have any
3770 * idea about which extents were modified before we were evicted from
3771 * cache.
3772 *
3773 * This is required for both inode re-read from disk and delayed inode
3774 * in delayed_nodes_tree.
3775 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003776 if (BTRFS_I(inode)->last_trans == fs_info->generation)
Yang Dongsheng6e17d302015-04-09 12:08:43 +08003777 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3778 &BTRFS_I(inode)->runtime_flags);
3779
Filipe Mananabde6c242015-07-24 00:00:19 +01003780 /*
3781 * We don't persist the id of the transaction where an unlink operation
3782 * against the inode was last made. So here we assume the inode might
3783 * have been evicted, and therefore the exact value of last_unlink_trans
3784 * lost, and set it to last_trans to avoid metadata inconsistencies
3785 * between the inode and its parent if the inode is fsync'ed and the log
3786 * replayed. For example, in the scenario:
3787 *
3788 * touch mydir/foo
3789 * ln mydir/foo mydir/bar
3790 * sync
3791 * unlink mydir/bar
3792 * echo 2 > /proc/sys/vm/drop_caches # evicts inode
3793 * xfs_io -c fsync mydir/foo
3794 * <power failure>
3795 * mount fs, triggers fsync log replay
3796 *
3797 * We must make sure that when we fsync our inode foo we also log its
3798 * parent inode, otherwise after log replay the parent still has the
3799 * dentry with the "bar" name but our inode foo has a link count of 1
3800 * and doesn't have an inode ref with the name "bar" anymore.
3801 *
3802 * Setting last_unlink_trans to last_trans is a pessimistic approach,
Nicholas D Steeves01327612016-05-19 21:18:45 -04003803 * but it guarantees correctness at the expense of occasional full
Filipe Mananabde6c242015-07-24 00:00:19 +01003804 * transaction commits on fsync if our inode is a directory, or if our
3805 * inode is not a directory, logging its parent unnecessarily.
3806 */
3807 BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans;
3808
Miao Xie67de1172013-12-26 13:07:06 +08003809 path->slots[0]++;
3810 if (inode->i_nlink != 1 ||
3811 path->slots[0] >= btrfs_header_nritems(leaf))
3812 goto cache_acl;
3813
3814 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003815 if (location.objectid != btrfs_ino(BTRFS_I(inode)))
Miao Xie67de1172013-12-26 13:07:06 +08003816 goto cache_acl;
3817
3818 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3819 if (location.type == BTRFS_INODE_REF_KEY) {
3820 struct btrfs_inode_ref *ref;
3821
3822 ref = (struct btrfs_inode_ref *)ptr;
3823 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3824 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3825 struct btrfs_inode_extref *extref;
3826
3827 extref = (struct btrfs_inode_extref *)ptr;
3828 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3829 extref);
3830 }
Miao Xie2f7e33d2011-06-23 07:27:13 +00003831cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003832 /*
3833 * try to precache a NULL acl entry for files that don't have
3834 * any xattrs or acls
3835 */
Li Zefan33345d012011-04-20 10:31:50 +08003836 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
David Sterbaf85b7372017-01-20 14:54:07 +01003837 btrfs_ino(BTRFS_I(inode)), &first_xattr_slot);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003838 if (first_xattr_slot != -1) {
3839 path->slots[0] = first_xattr_slot;
3840 ret = btrfs_load_inode_props(inode, path);
3841 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003842 btrfs_err(fs_info,
David Sterba351fd352014-05-15 16:48:20 +02003843 "error loading props for ino %llu (root %llu): %d",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003844 btrfs_ino(BTRFS_I(inode)),
Filipe David Borba Manana63541922014-01-07 11:47:46 +00003845 root->root_key.objectid, ret);
3846 }
3847 btrfs_free_path(path);
3848
Al Viro72c04902009-06-24 16:58:48 -04003849 if (!maybe_acls)
3850 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003851
Chris Mason39279cc2007-06-12 06:35:45 -04003852 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003853 case S_IFREG:
3854 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -05003855 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003856 inode->i_fop = &btrfs_file_operations;
3857 inode->i_op = &btrfs_file_inode_operations;
3858 break;
3859 case S_IFDIR:
3860 inode->i_fop = &btrfs_dir_file_operations;
Omar Sandoval67ade052017-01-25 17:06:38 -08003861 inode->i_op = &btrfs_dir_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04003862 break;
3863 case S_IFLNK:
3864 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05003865 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003866 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3867 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003868 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003869 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003870 init_special_inode(inode, inode->i_mode, rdev);
3871 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003872 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003873
3874 btrfs_update_iflags(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003875 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003876
3877make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003878 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003879 make_bad_inode(inode);
Filipe Manana67710892016-06-06 11:51:25 +01003880 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003881}
3882
Chris Masond352ac62008-09-29 15:18:18 -04003883/*
3884 * given a leaf and an inode, copy the inode fields into the leaf
3885 */
Chris Masone02119d2008-09-05 16:13:11 -04003886static void fill_inode_item(struct btrfs_trans_handle *trans,
3887 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003888 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003889 struct inode *inode)
3890{
Liu Bo51fab692012-12-27 09:01:21 +00003891 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003892
Liu Bo51fab692012-12-27 09:01:21 +00003893 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003894
Liu Bo51fab692012-12-27 09:01:21 +00003895 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3896 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3897 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3898 &token);
3899 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3900 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003901
David Sterbaa937b972014-12-12 17:39:12 +01003902 btrfs_set_token_timespec_sec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003903 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003904 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Liu Bo51fab692012-12-27 09:01:21 +00003905 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003906
David Sterbaa937b972014-12-12 17:39:12 +01003907 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003908 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003909 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Liu Bo51fab692012-12-27 09:01:21 +00003910 inode->i_mtime.tv_nsec, &token);
3911
David Sterbaa937b972014-12-12 17:39:12 +01003912 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003913 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003914 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Liu Bo51fab692012-12-27 09:01:21 +00003915 inode->i_ctime.tv_nsec, &token);
3916
chandan r9cc97d62012-07-04 12:48:07 +05303917 btrfs_set_token_timespec_sec(leaf, &item->otime,
3918 BTRFS_I(inode)->i_otime.tv_sec, &token);
3919 btrfs_set_token_timespec_nsec(leaf, &item->otime,
3920 BTRFS_I(inode)->i_otime.tv_nsec, &token);
3921
Liu Bo51fab692012-12-27 09:01:21 +00003922 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3923 &token);
3924 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3925 &token);
3926 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3927 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3928 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3929 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3930 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003931}
3932
Chris Masond352ac62008-09-29 15:18:18 -04003933/*
3934 * copy everything in the in-memory inode into the btree.
3935 */
Chris Mason21151332011-11-10 20:39:08 -05003936static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003937 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003938{
3939 struct btrfs_inode_item *inode_item;
3940 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003941 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003942 int ret;
3943
3944 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003945 if (!path)
3946 return -ENOMEM;
3947
Chris Masonb9473432009-03-13 11:00:37 -04003948 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003949 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3950 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003951 if (ret) {
3952 if (ret > 0)
3953 ret = -ENOENT;
3954 goto failed;
3955 }
3956
Chris Mason5f39d392007-10-15 16:14:19 -04003957 leaf = path->nodes[0];
3958 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003959 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003960
Chris Masone02119d2008-09-05 16:13:11 -04003961 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003962 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003963 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003964 ret = 0;
3965failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003966 btrfs_free_path(path);
3967 return ret;
3968}
3969
Chris Masond352ac62008-09-29 15:18:18 -04003970/*
Chris Mason21151332011-11-10 20:39:08 -05003971 * copy everything in the in-memory inode into the btree.
3972 */
3973noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3974 struct btrfs_root *root, struct inode *inode)
3975{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003976 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason21151332011-11-10 20:39:08 -05003977 int ret;
3978
3979 /*
3980 * If the inode is a free space inode, we can deadlock during commit
3981 * if we put it into the delayed code.
3982 *
3983 * The data relocation inode should also be directly updated
3984 * without delay
3985 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02003986 if (!btrfs_is_free_space_inode(BTRFS_I(inode))
Josef Bacik1d52c782014-09-18 11:30:44 -04003987 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003988 && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003989 btrfs_update_root_times(trans, root);
3990
Chris Mason21151332011-11-10 20:39:08 -05003991 ret = btrfs_delayed_update_inode(trans, root, inode);
3992 if (!ret)
3993 btrfs_set_inode_last_trans(trans, inode);
3994 return ret;
3995 }
3996
3997 return btrfs_update_inode_item(trans, root, inode);
3998}
3999
Josef Bacikbe6aef62012-10-22 15:43:12 -04004000noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
4001 struct btrfs_root *root,
4002 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05004003{
4004 int ret;
4005
4006 ret = btrfs_update_inode(trans, root, inode);
4007 if (ret == -ENOSPC)
4008 return btrfs_update_inode_item(trans, root, inode);
4009 return ret;
4010}
4011
4012/*
Chris Masond352ac62008-09-29 15:18:18 -04004013 * unlink helper that gets used here in inode.c and in the tree logging
4014 * recovery code. It remove a link in a directory with a given name, and
4015 * also drops the back refs in the inode to the directory
4016 */
Al Viro92986792011-03-04 17:14:37 +00004017static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4018 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004019 struct btrfs_inode *dir,
4020 struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004021 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04004022{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004023 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004024 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04004025 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004026 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004027 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04004028 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04004029 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08004030 u64 ino = btrfs_ino(inode);
4031 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004032
4033 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004034 if (!path) {
4035 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00004036 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04004037 }
4038
Chris Masonb9473432009-03-13 11:00:37 -04004039 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08004040 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04004041 name, name_len, -1);
4042 if (IS_ERR(di)) {
4043 ret = PTR_ERR(di);
4044 goto err;
4045 }
4046 if (!di) {
4047 ret = -ENOENT;
4048 goto err;
4049 }
Chris Mason5f39d392007-10-15 16:14:19 -04004050 leaf = path->nodes[0];
4051 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04004052 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04004053 if (ret)
4054 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02004055 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004056
Miao Xie67de1172013-12-26 13:07:06 +08004057 /*
4058 * If we don't have dir index, we have to get it by looking up
4059 * the inode ref, since we get the inode ref, remove it directly,
4060 * it is unnecessary to do delayed deletion.
4061 *
4062 * But if we have dir index, needn't search inode ref to get it.
4063 * Since the inode ref is close to the inode item, it is better
4064 * that we delay to delete it, and just do this deletion when
4065 * we update the inode item.
4066 */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004067 if (inode->dir_index) {
Miao Xie67de1172013-12-26 13:07:06 +08004068 ret = btrfs_delayed_delete_inode_ref(inode);
4069 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004070 index = inode->dir_index;
Miao Xie67de1172013-12-26 13:07:06 +08004071 goto skip_backref;
4072 }
4073 }
4074
Li Zefan33345d012011-04-20 10:31:50 +08004075 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
4076 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004077 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004078 btrfs_info(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004079 "failed to delete reference to %.*s, inode %llu parent %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004080 name_len, name, ino, dir_ino);
Jeff Mahoney66642832016-06-10 18:19:25 -04004081 btrfs_abort_transaction(trans, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04004082 goto err;
4083 }
Miao Xie67de1172013-12-26 13:07:06 +08004084skip_backref:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004085 ret = btrfs_delete_delayed_dir_index(trans, fs_info, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004086 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004087 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004088 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004089 }
Chris Mason39279cc2007-06-12 06:35:45 -04004090
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004091 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode,
4092 dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004093 if (ret != 0 && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004094 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004095 goto err;
4096 }
Chris Masone02119d2008-09-05 16:13:11 -04004097
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004098 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir,
4099 index);
Chris Mason6418c962010-10-30 07:34:24 -04004100 if (ret == -ENOENT)
4101 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00004102 else if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004103 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004104err:
4105 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04004106 if (ret)
4107 goto out;
4108
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004109 btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004110 inode_inc_iversion(&inode->vfs_inode);
4111 inode_inc_iversion(&dir->vfs_inode);
4112 inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime =
4113 dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode);
4114 ret = btrfs_update_inode(trans, root, &dir->vfs_inode);
Chris Masone02119d2008-09-05 16:13:11 -04004115out:
Chris Mason39279cc2007-06-12 06:35:45 -04004116 return ret;
4117}
4118
Al Viro92986792011-03-04 17:14:37 +00004119int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
4120 struct btrfs_root *root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004121 struct btrfs_inode *dir, struct btrfs_inode *inode,
Al Viro92986792011-03-04 17:14:37 +00004122 const char *name, int name_len)
4123{
4124 int ret;
4125 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
4126 if (!ret) {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004127 drop_nlink(&inode->vfs_inode);
4128 ret = btrfs_update_inode(trans, root, &inode->vfs_inode);
Al Viro92986792011-03-04 17:14:37 +00004129 }
4130 return ret;
4131}
Yan, Zhenga22285a2010-05-16 10:48:46 -04004132
4133/*
4134 * helper to start transaction for unlink and rmdir.
4135 *
Josef Bacikd52be812013-05-29 14:54:47 -04004136 * unlink and rmdir are special in btrfs, they do not always free space, so
4137 * if we cannot make our reservations the normal way try and see if there is
4138 * plenty of slack room in the global reserve to migrate, otherwise we cannot
4139 * allow the unlink to occur.
Yan, Zhenga22285a2010-05-16 10:48:46 -04004140 */
Josef Bacikd52be812013-05-29 14:54:47 -04004141static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004142{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004143 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004144
Josef Bacike70bea52011-10-11 14:18:24 -04004145 /*
4146 * 1 for the possible orphan item
4147 * 1 for the dir item
4148 * 1 for the dir index
4149 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04004150 * 1 for the inode
4151 */
Filipe Manana8eab77f2015-11-13 23:57:16 +00004152 return btrfs_start_transaction_fallback_global_rsv(root, 5, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004153}
4154
Chris Mason39279cc2007-06-12 06:35:45 -04004155static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
4156{
Yan, Zhenga22285a2010-05-16 10:48:46 -04004157 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004158 struct btrfs_trans_handle *trans;
David Howells2b0143b2015-03-17 22:25:59 +00004159 struct inode *inode = d_inode(dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04004160 int ret;
4161
Josef Bacikd52be812013-05-29 14:54:47 -04004162 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004163 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004164 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04004165
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004166 btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)),
4167 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04004168
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004169 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4170 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4171 dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00004172 if (ret)
4173 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004174
Yan, Zhenga22285a2010-05-16 10:48:46 -04004175 if (inode->i_nlink == 0) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004176 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Tsutomu Itohb5324022011-07-19 07:27:20 +00004177 if (ret)
4178 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004179 }
Josef Bacik7b128762008-07-24 12:17:14 -04004180
Tsutomu Itohb5324022011-07-19 07:27:20 +00004181out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004182 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004183 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04004184 return ret;
4185}
4186
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004187int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4188 struct btrfs_root *root,
4189 struct inode *dir, u64 objectid,
4190 const char *name, int name_len)
4191{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004192 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004193 struct btrfs_path *path;
4194 struct extent_buffer *leaf;
4195 struct btrfs_dir_item *di;
4196 struct btrfs_key key;
4197 u64 index;
4198 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004199 u64 dir_ino = btrfs_ino(BTRFS_I(dir));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004200
4201 path = btrfs_alloc_path();
4202 if (!path)
4203 return -ENOMEM;
4204
Li Zefan33345d012011-04-20 10:31:50 +08004205 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004206 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004207 if (IS_ERR_OR_NULL(di)) {
4208 if (!di)
4209 ret = -ENOENT;
4210 else
4211 ret = PTR_ERR(di);
4212 goto out;
4213 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004214
4215 leaf = path->nodes[0];
4216 btrfs_dir_item_key_to_cpu(leaf, di, &key);
4217 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
4218 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004219 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004220 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004221 goto out;
4222 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004223 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004224
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004225 ret = btrfs_del_root_ref(trans, fs_info, objectid,
4226 root->root_key.objectid, dir_ino,
4227 &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004228 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004229 if (ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004230 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004231 goto out;
4232 }
Li Zefan33345d012011-04-20 10:31:50 +08004233 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004234 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004235 if (IS_ERR_OR_NULL(di)) {
4236 if (!di)
4237 ret = -ENOENT;
4238 else
4239 ret = PTR_ERR(di);
Jeff Mahoney66642832016-06-10 18:19:25 -04004240 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004241 goto out;
4242 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004243
4244 leaf = path->nodes[0];
4245 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004246 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004247 index = key.offset;
4248 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004249 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004250
Nikolay Borisove67bbbb2017-01-10 20:35:36 +02004251 ret = btrfs_delete_delayed_dir_index(trans, fs_info, BTRFS_I(dir), index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004252 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004253 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004254 goto out;
4255 }
Miao Xie16cdcec2011-04-22 18:12:22 +08004256
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004257 btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004258 inode_inc_iversion(dir);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004259 dir->i_mtime = dir->i_ctime = current_time(dir);
Josef Bacik5a24e842012-08-08 10:12:59 -06004260 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004261 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004262 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004263out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04004264 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004265 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004266}
4267
Chris Mason39279cc2007-06-12 06:35:45 -04004268static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
4269{
David Howells2b0143b2015-03-17 22:25:59 +00004270 struct inode *inode = d_inode(dentry);
Chris Mason1832a6d2007-12-21 16:27:21 -05004271 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004272 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004273 struct btrfs_trans_handle *trans;
Filipe Manana44f714d2016-06-06 16:11:13 +01004274 u64 last_unlink_trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004275
David Sterbab3ae2442012-09-13 16:04:34 -06004276 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004277 return -ENOTEMPTY;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004278 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID)
David Sterbab3ae2442012-09-13 16:04:34 -06004279 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004280
Josef Bacikd52be812013-05-29 14:54:47 -04004281 trans = __unlink_start_trans(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004282 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004283 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004284
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004285 if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004286 err = btrfs_unlink_subvol(trans, root, dir,
4287 BTRFS_I(inode)->location.objectid,
4288 dentry->d_name.name,
4289 dentry->d_name.len);
4290 goto out;
4291 }
4292
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004293 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04004294 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004295 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004296
Filipe Manana44f714d2016-06-06 16:11:13 +01004297 last_unlink_trans = BTRFS_I(inode)->last_unlink_trans;
4298
Chris Mason39279cc2007-06-12 06:35:45 -04004299 /* now the directory is empty */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02004300 err = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
4301 BTRFS_I(d_inode(dentry)), dentry->d_name.name,
4302 dentry->d_name.len);
Filipe Manana44f714d2016-06-06 16:11:13 +01004303 if (!err) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02004304 btrfs_i_size_write(BTRFS_I(inode), 0);
Filipe Manana44f714d2016-06-06 16:11:13 +01004305 /*
4306 * Propagate the last_unlink_trans value of the deleted dir to
4307 * its parent directory. This is to prevent an unrecoverable
4308 * log tree in the case we do something like this:
4309 * 1) create dir foo
4310 * 2) create snapshot under dir foo
4311 * 3) delete the snapshot
4312 * 4) rmdir foo
4313 * 5) mkdir foo
4314 * 6) fsync foo or some file inside foo
4315 */
4316 if (last_unlink_trans >= trans->transid)
4317 BTRFS_I(dir)->last_unlink_trans = last_unlink_trans;
4318 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004319out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004320 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004321 btrfs_btree_balance_dirty(root->fs_info);
Chris Mason39544012007-12-12 14:38:19 -05004322
Chris Mason39279cc2007-06-12 06:35:45 -04004323 return err;
4324}
4325
Chris Mason28f75a02015-02-04 06:59:29 -08004326static int truncate_space_check(struct btrfs_trans_handle *trans,
4327 struct btrfs_root *root,
4328 u64 bytes_deleted)
4329{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004330 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason28f75a02015-02-04 06:59:29 -08004331 int ret;
4332
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004333 /*
4334 * This is only used to apply pressure to the enospc system, we don't
4335 * intend to use this reservation at all.
4336 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004337 bytes_deleted = btrfs_csum_bytes_to_leaves(fs_info, bytes_deleted);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004338 bytes_deleted *= fs_info->nodesize;
4339 ret = btrfs_block_rsv_add(root, &fs_info->trans_block_rsv,
Chris Mason28f75a02015-02-04 06:59:29 -08004340 bytes_deleted, BTRFS_RESERVE_NO_FLUSH);
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004341 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004342 trace_btrfs_space_reservation(fs_info, "transaction",
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004343 trans->transid,
4344 bytes_deleted, 1);
Chris Mason28f75a02015-02-04 06:59:29 -08004345 trans->bytes_reserved += bytes_deleted;
Josef Bacikdc95f7b2016-01-13 11:48:06 -05004346 }
Chris Mason28f75a02015-02-04 06:59:29 -08004347 return ret;
4348
4349}
4350
Filipe Manana0305cd52015-10-16 12:34:25 +01004351static int truncate_inline_extent(struct inode *inode,
4352 struct btrfs_path *path,
4353 struct btrfs_key *found_key,
4354 const u64 item_end,
4355 const u64 new_size)
4356{
4357 struct extent_buffer *leaf = path->nodes[0];
4358 int slot = path->slots[0];
4359 struct btrfs_file_extent_item *fi;
4360 u32 size = (u32)(new_size - found_key->offset);
4361 struct btrfs_root *root = BTRFS_I(inode)->root;
4362
4363 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
4364
4365 if (btrfs_file_extent_compression(leaf, fi) != BTRFS_COMPRESS_NONE) {
4366 loff_t offset = new_size;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004367 loff_t page_end = ALIGN(offset, PAGE_SIZE);
Filipe Manana0305cd52015-10-16 12:34:25 +01004368
4369 /*
4370 * Zero out the remaining of the last page of our inline extent,
4371 * instead of directly truncating our inline extent here - that
4372 * would be much more complex (decompressing all the data, then
4373 * compressing the truncated data, which might be bigger than
4374 * the size of the inline extent, resize the extent, etc).
4375 * We release the path because to get the page we might need to
4376 * read the extent item from disk (data not in the page cache).
4377 */
4378 btrfs_release_path(path);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304379 return btrfs_truncate_block(inode, offset, page_end - offset,
4380 0);
Filipe Manana0305cd52015-10-16 12:34:25 +01004381 }
4382
4383 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
4384 size = btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004385 btrfs_truncate_item(root->fs_info, path, size, 1);
Filipe Manana0305cd52015-10-16 12:34:25 +01004386
4387 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4388 inode_sub_bytes(inode, item_end + 1 - new_size);
4389
4390 return 0;
4391}
4392
Chris Mason323ac952008-10-01 19:05:46 -04004393/*
Chris Mason39279cc2007-06-12 06:35:45 -04004394 * this can truncate away extent items, csum items and directory items.
4395 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004396 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004397 *
4398 * csum items that cross the new i_size are truncated to the new size
4399 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004400 *
4401 * min_type is the minimum key type to truncate down to. If set to 0, this
4402 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004403 */
Yan, Zheng80825102009-11-12 09:35:36 +00004404int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4405 struct btrfs_root *root,
4406 struct inode *inode,
4407 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004408{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004409 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04004410 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004411 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004412 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004413 struct btrfs_key key;
4414 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004415 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004416 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004417 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004418 u64 item_end = 0;
Filipe Mananac1aa4572015-06-20 18:20:09 +01004419 u64 last_size = new_size;
Yan, Zheng80825102009-11-12 09:35:36 +00004420 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004421 int found_extent;
4422 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004423 int pending_del_nr = 0;
4424 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004425 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004426 int ret;
4427 int err = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004428 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason28ed1342014-12-17 09:41:04 -08004429 u64 bytes_deleted = 0;
Josef Bacik12621332015-02-03 07:50:16 -08004430 bool be_nice = 0;
4431 bool should_throttle = 0;
Chris Mason28f75a02015-02-04 06:59:29 -08004432 bool should_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004433
4434 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004435
Chris Mason28ed1342014-12-17 09:41:04 -08004436 /*
4437 * for non-free space inodes and ref cows, we want to back off from
4438 * time to time
4439 */
Nikolay Borisov70ddc552017-02-20 13:50:35 +02004440 if (!btrfs_is_free_space_inode(BTRFS_I(inode)) &&
Chris Mason28ed1342014-12-17 09:41:04 -08004441 test_bit(BTRFS_ROOT_REF_COWS, &root->state))
4442 be_nice = 1;
4443
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004444 path = btrfs_alloc_path();
4445 if (!path)
4446 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004447 path->reada = READA_BACK;
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004448
Josef Bacik5dc562c2012-08-17 13:14:17 -04004449 /*
4450 * We want to drop from the next block forward in case this new size is
4451 * not block aligned since we will be keeping the last block of the
4452 * extent just the way it is.
4453 */
Miao Xie27cdeb72014-04-02 19:51:05 +08004454 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 root == fs_info->tree_root)
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004456 btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004457 fs_info->sectorsize),
Jeff Mahoneyda170662016-06-15 09:22:56 -04004458 (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004459
Miao Xie16cdcec2011-04-22 18:12:22 +08004460 /*
4461 * This function is also used to drop the items in the log tree before
4462 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4463 * it is used to drop the loged items. So we shouldn't kill the delayed
4464 * items.
4465 */
4466 if (min_type == 0 && root == BTRFS_I(inode)->root)
Nikolay Borisov4ccb5c72017-01-10 20:35:38 +02004467 btrfs_kill_delayed_inode_items(BTRFS_I(inode));
Miao Xie16cdcec2011-04-22 18:12:22 +08004468
Li Zefan33345d012011-04-20 10:31:50 +08004469 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004470 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004471 key.type = (u8)-1;
4472
Chris Mason85e21ba2008-01-29 15:11:36 -05004473search_again:
Chris Mason28ed1342014-12-17 09:41:04 -08004474 /*
4475 * with a 16K leaf size and 128MB extents, you can actually queue
4476 * up a huge file in a single leaf. Most of the time that
4477 * bytes_deleted is > 0, it will be huge by the time we get here
4478 */
Byongho Leeee221842015-12-15 01:42:10 +09004479 if (be_nice && bytes_deleted > SZ_32M) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004480 if (btrfs_should_end_transaction(trans)) {
Chris Mason28ed1342014-12-17 09:41:04 -08004481 err = -EAGAIN;
4482 goto error;
4483 }
4484 }
4485
4486
Chris Masonb9473432009-03-13 11:00:37 -04004487 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004488 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004489 if (ret < 0) {
4490 err = ret;
4491 goto out;
4492 }
Chris Masond3977122009-01-05 21:25:51 -05004493
Chris Mason85e21ba2008-01-29 15:11:36 -05004494 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004495 /* there are no items in the tree for us to truncate, we're
4496 * done
4497 */
Yan, Zheng80825102009-11-12 09:35:36 +00004498 if (path->slots[0] == 0)
4499 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004500 path->slots[0]--;
4501 }
4502
Chris Masond3977122009-01-05 21:25:51 -05004503 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004504 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004505 leaf = path->nodes[0];
4506 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004507 found_type = found_key.type;
Chris Mason39279cc2007-06-12 06:35:45 -04004508
Li Zefan33345d012011-04-20 10:31:50 +08004509 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004510 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004511
Chris Mason85e21ba2008-01-29 15:11:36 -05004512 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004513 break;
4514
Chris Mason5f39d392007-10-15 16:14:19 -04004515 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004516 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004517 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004518 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004519 extent_type = btrfs_file_extent_type(leaf, fi);
4520 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004521 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004522 btrfs_file_extent_num_bytes(leaf, fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004523
4524 trace_btrfs_truncate_show_fi_regular(
4525 BTRFS_I(inode), leaf, fi,
4526 found_key.offset);
Chris Mason179e29e2007-11-01 11:28:41 -04004527 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004528 item_end += btrfs_file_extent_inline_len(leaf,
Chris Mason514ac8a2014-01-03 21:07:00 -08004529 path->slots[0], fi);
Liu Bo09ed2f12017-03-10 11:09:48 -08004530
4531 trace_btrfs_truncate_show_fi_inline(
4532 BTRFS_I(inode), leaf, fi, path->slots[0],
4533 found_key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004534 }
Yan008630c2007-11-07 13:31:09 -05004535 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004536 }
Yan, Zheng80825102009-11-12 09:35:36 +00004537 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004538 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004539 } else {
Filipe Manana76b42ab2017-02-14 16:56:01 +00004540 if (item_end < new_size)
Yan, Zheng80825102009-11-12 09:35:36 +00004541 break;
4542 if (found_key.offset >= new_size)
4543 del_item = 1;
4544 else
4545 del_item = 0;
4546 }
Chris Mason39279cc2007-06-12 06:35:45 -04004547 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004548 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004549 if (found_type != BTRFS_EXTENT_DATA_KEY)
4550 goto delete;
4551
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004552 if (del_item)
4553 last_size = found_key.offset;
4554 else
4555 last_size = new_size;
4556
Chris Mason179e29e2007-11-01 11:28:41 -04004557 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004558 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004559 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004560 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004561 u64 orig_num_bytes =
4562 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004563 extent_num_bytes = ALIGN(new_size -
4564 found_key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004565 fs_info->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004566 btrfs_set_file_extent_num_bytes(leaf, fi,
4567 extent_num_bytes);
4568 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004569 extent_num_bytes);
Miao Xie27cdeb72014-04-02 19:51:05 +08004570 if (test_bit(BTRFS_ROOT_REF_COWS,
4571 &root->state) &&
4572 extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004573 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004574 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004575 } else {
Chris Masondb945352007-10-15 16:15:53 -04004576 extent_num_bytes =
4577 btrfs_file_extent_disk_num_bytes(leaf,
4578 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004579 extent_offset = found_key.offset -
4580 btrfs_file_extent_offset(leaf, fi);
4581
Chris Mason39279cc2007-06-12 06:35:45 -04004582 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004583 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004584 if (extent_start != 0) {
4585 found_extent = 1;
Miao Xie27cdeb72014-04-02 19:51:05 +08004586 if (test_bit(BTRFS_ROOT_REF_COWS,
4587 &root->state))
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004588 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004589 }
4590 }
Chris Mason90692182008-02-08 13:49:28 -05004591 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004592 /*
4593 * we can't truncate inline items that have had
4594 * special encodings
4595 */
4596 if (!del_item &&
Chris Masonc8b97812008-10-29 14:49:59 -04004597 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4598 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Mason514ac8a2014-01-03 21:07:00 -08004599
4600 /*
Filipe Manana0305cd52015-10-16 12:34:25 +01004601 * Need to release path in order to truncate a
4602 * compressed extent. So delete any accumulated
4603 * extent items so far.
Chris Mason514ac8a2014-01-03 21:07:00 -08004604 */
Filipe Manana0305cd52015-10-16 12:34:25 +01004605 if (btrfs_file_extent_compression(leaf, fi) !=
4606 BTRFS_COMPRESS_NONE && pending_del_nr) {
4607 err = btrfs_del_items(trans, root, path,
4608 pending_del_slot,
4609 pending_del_nr);
4610 if (err) {
4611 btrfs_abort_transaction(trans,
Filipe Manana0305cd52015-10-16 12:34:25 +01004612 err);
4613 goto error;
4614 }
4615 pending_del_nr = 0;
4616 }
4617
4618 err = truncate_inline_extent(inode, path,
4619 &found_key,
4620 item_end,
4621 new_size);
4622 if (err) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004623 btrfs_abort_transaction(trans, err);
Filipe Manana0305cd52015-10-16 12:34:25 +01004624 goto error;
4625 }
Miao Xie27cdeb72014-04-02 19:51:05 +08004626 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4627 &root->state)) {
Filipe Manana0305cd52015-10-16 12:34:25 +01004628 inode_sub_bytes(inode, item_end + 1 - new_size);
Chris Mason90692182008-02-08 13:49:28 -05004629 }
Chris Mason39279cc2007-06-12 06:35:45 -04004630 }
Chris Mason179e29e2007-11-01 11:28:41 -04004631delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004632 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004633 if (!pending_del_nr) {
4634 /* no pending yet, add ourselves */
4635 pending_del_slot = path->slots[0];
4636 pending_del_nr = 1;
4637 } else if (pending_del_nr &&
4638 path->slots[0] + 1 == pending_del_slot) {
4639 /* hop on the pending chunk */
4640 pending_del_nr++;
4641 pending_del_slot = path->slots[0];
4642 } else {
Chris Masond3977122009-01-05 21:25:51 -05004643 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004644 }
Chris Mason39279cc2007-06-12 06:35:45 -04004645 } else {
4646 break;
4647 }
Chris Mason28f75a02015-02-04 06:59:29 -08004648 should_throttle = 0;
4649
Miao Xie27cdeb72014-04-02 19:51:05 +08004650 if (found_extent &&
4651 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004652 root == fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004653 btrfs_set_path_blocking(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004654 bytes_deleted += extent_num_bytes;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004655 ret = btrfs_free_extent(trans, fs_info, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004656 extent_num_bytes, 0,
4657 btrfs_header_owner(leaf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01004658 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04004659 BUG_ON(ret);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004660 if (btrfs_should_throttle_delayed_refs(trans, fs_info))
4661 btrfs_async_run_delayed_refs(fs_info,
Wang Xiaoguangdd4b8572016-10-18 15:56:13 +08004662 trans->delayed_ref_updates * 2,
4663 trans->transid, 0);
Chris Mason28f75a02015-02-04 06:59:29 -08004664 if (be_nice) {
4665 if (truncate_space_check(trans, root,
4666 extent_num_bytes)) {
4667 should_end = 1;
4668 }
4669 if (btrfs_should_throttle_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004670 fs_info))
Chris Mason28f75a02015-02-04 06:59:29 -08004671 should_throttle = 1;
Chris Mason28f75a02015-02-04 06:59:29 -08004672 }
Chris Mason39279cc2007-06-12 06:35:45 -04004673 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004674
Yan, Zheng80825102009-11-12 09:35:36 +00004675 if (found_type == BTRFS_INODE_ITEM_KEY)
4676 break;
4677
4678 if (path->slots[0] == 0 ||
Josef Bacik12621332015-02-03 07:50:16 -08004679 path->slots[0] != pending_del_slot ||
Chris Mason28f75a02015-02-04 06:59:29 -08004680 should_throttle || should_end) {
Yan, Zheng80825102009-11-12 09:35:36 +00004681 if (pending_del_nr) {
4682 ret = btrfs_del_items(trans, root, path,
4683 pending_del_slot,
4684 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004685 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004686 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004687 goto error;
4688 }
Yan, Zheng80825102009-11-12 09:35:36 +00004689 pending_del_nr = 0;
4690 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004691 btrfs_release_path(path);
Chris Mason28f75a02015-02-04 06:59:29 -08004692 if (should_throttle) {
Josef Bacik12621332015-02-03 07:50:16 -08004693 unsigned long updates = trans->delayed_ref_updates;
4694 if (updates) {
4695 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004696 ret = btrfs_run_delayed_refs(trans,
4697 fs_info,
4698 updates * 2);
Josef Bacik12621332015-02-03 07:50:16 -08004699 if (ret && !err)
4700 err = ret;
4701 }
4702 }
Chris Mason28f75a02015-02-04 06:59:29 -08004703 /*
4704 * if we failed to refill our space rsv, bail out
4705 * and let the transaction restart
4706 */
4707 if (should_end) {
4708 err = -EAGAIN;
4709 goto error;
4710 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004711 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004712 } else {
4713 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004714 }
Chris Mason39279cc2007-06-12 06:35:45 -04004715 }
Yan, Zheng80825102009-11-12 09:35:36 +00004716out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004717 if (pending_del_nr) {
4718 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4719 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004720 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004721 btrfs_abort_transaction(trans, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004722 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004723error:
Filipe Manana76b42ab2017-02-14 16:56:01 +00004724 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4725 ASSERT(last_size >= new_size);
4726 if (!err && last_size > new_size)
4727 last_size = new_size;
Josef Bacik7f4f6e02013-08-29 16:43:28 -04004728 btrfs_ordered_update_i_size(inode, last_size, NULL);
Filipe Manana76b42ab2017-02-14 16:56:01 +00004729 }
Chris Mason28ed1342014-12-17 09:41:04 -08004730
Chris Mason39279cc2007-06-12 06:35:45 -04004731 btrfs_free_path(path);
Chris Mason28ed1342014-12-17 09:41:04 -08004732
Byongho Leeee221842015-12-15 01:42:10 +09004733 if (be_nice && bytes_deleted > SZ_32M) {
Chris Mason28ed1342014-12-17 09:41:04 -08004734 unsigned long updates = trans->delayed_ref_updates;
4735 if (updates) {
4736 trans->delayed_ref_updates = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004737 ret = btrfs_run_delayed_refs(trans, fs_info,
4738 updates * 2);
Chris Mason28ed1342014-12-17 09:41:04 -08004739 if (ret && !err)
4740 err = ret;
4741 }
4742 }
Yan, Zheng80825102009-11-12 09:35:36 +00004743 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004744}
4745
Chris Masona52d9a82007-08-27 16:49:44 -04004746/*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304747 * btrfs_truncate_block - read, zero a chunk and write a block
Josef Bacik2aaa6652012-08-29 14:27:18 -04004748 * @inode - inode that we're zeroing
4749 * @from - the offset to start zeroing
4750 * @len - the length to zero, 0 to zero the entire range respective to the
4751 * offset
4752 * @front - zero up to the offset instead of from the offset on
4753 *
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304754 * This will find the block for the "from" offset and cow the block and zero the
Josef Bacik2aaa6652012-08-29 14:27:18 -04004755 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004756 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304757int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len,
Josef Bacik2aaa6652012-08-29 14:27:18 -04004758 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004759{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004760 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004761 struct address_space *mapping = inode->i_mapping;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004762 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4763 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004764 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004765 char *kaddr;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004766 u32 blocksize = fs_info->sectorsize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004767 pgoff_t index = from >> PAGE_SHIFT;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304768 unsigned offset = from & (blocksize - 1);
Chris Masona52d9a82007-08-27 16:49:44 -04004769 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004770 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004771 int ret = 0;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304772 u64 block_start;
4773 u64 block_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004774
Josef Bacik2aaa6652012-08-29 14:27:18 -04004775 if ((offset & (blocksize - 1)) == 0 &&
4776 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004777 goto out;
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304778
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004779 ret = btrfs_delalloc_reserve_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304780 round_down(from, blocksize), blocksize);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004781 if (ret)
4782 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004783
Chris Mason211c17f2008-05-15 09:13:45 -04004784again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004785 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004786 if (!page) {
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004787 btrfs_delalloc_release_space(inode,
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304788 round_down(from, blocksize),
4789 blocksize);
Miao Xieac6a2b32012-12-05 10:56:13 +00004790 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004791 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004792 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004793
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304794 block_start = round_down(from, blocksize);
4795 block_end = block_start + blocksize - 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004796
Chris Masona52d9a82007-08-27 16:49:44 -04004797 if (!PageUptodate(page)) {
4798 ret = btrfs_readpage(NULL, page);
4799 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004800 if (page->mapping != mapping) {
4801 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004802 put_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004803 goto again;
4804 }
Chris Masona52d9a82007-08-27 16:49:44 -04004805 if (!PageUptodate(page)) {
4806 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004807 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004808 }
4809 }
Chris Mason211c17f2008-05-15 09:13:45 -04004810 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004811
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304812 lock_extent_bits(io_tree, block_start, block_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004813 set_page_extent_mapped(page);
4814
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304815 ordered = btrfs_lookup_ordered_extent(inode, block_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004816 if (ordered) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304817 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004818 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004819 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004820 put_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004821 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004822 btrfs_put_ordered_extent(ordered);
4823 goto again;
4824 }
4825
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304826 clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004827 EXTENT_DIRTY | EXTENT_DELALLOC |
4828 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004829 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004830
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304831 ret = btrfs_set_extent_delalloc(inode, block_start, block_end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08004832 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004833 if (ret) {
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304834 unlock_extent_cached(io_tree, block_start, block_end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004835 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004836 goto out_unlock;
4837 }
4838
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304839 if (offset != blocksize) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004840 if (!len)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304841 len = blocksize - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004842 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004843 if (front)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304844 memset(kaddr + (block_start - page_offset(page)),
4845 0, offset);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004846 else
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304847 memset(kaddr + (block_start - page_offset(page)) + offset,
4848 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004849 flush_dcache_page(page);
4850 kunmap(page);
4851 }
Chris Mason247e7432008-07-17 12:53:51 -04004852 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004853 set_page_dirty(page);
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304854 unlock_extent_cached(io_tree, block_start, block_end, &cached_state,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004855 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004856
Chris Mason89642222008-07-24 09:41:53 -04004857out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004858 if (ret)
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304859 btrfs_delalloc_release_space(inode, block_start,
4860 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -04004861 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004862 put_page(page);
Chris Mason39279cc2007-06-12 06:35:45 -04004863out:
4864 return ret;
4865}
4866
Josef Bacik16e75492013-10-22 12:18:51 -04004867static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4868 u64 offset, u64 len)
4869{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004870 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik16e75492013-10-22 12:18:51 -04004871 struct btrfs_trans_handle *trans;
4872 int ret;
4873
4874 /*
4875 * Still need to make sure the inode looks like it's been updated so
4876 * that any holes get logged if we fsync.
4877 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004878 if (btrfs_fs_incompat(fs_info, NO_HOLES)) {
4879 BTRFS_I(inode)->last_trans = fs_info->generation;
Josef Bacik16e75492013-10-22 12:18:51 -04004880 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4881 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4882 return 0;
4883 }
4884
4885 /*
4886 * 1 - for the one we're dropping
4887 * 1 - for the one we're adding
4888 * 1 - for updating the inode.
4889 */
4890 trans = btrfs_start_transaction(root, 3);
4891 if (IS_ERR(trans))
4892 return PTR_ERR(trans);
4893
4894 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4895 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004896 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004897 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004898 return ret;
4899 }
4900
David Sterbaf85b7372017-01-20 14:54:07 +01004901 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)),
4902 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004903 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04004904 btrfs_abort_transaction(trans, ret);
Josef Bacik16e75492013-10-22 12:18:51 -04004905 else
4906 btrfs_update_inode(trans, root, inode);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004907 btrfs_end_transaction(trans);
Josef Bacik16e75492013-10-22 12:18:51 -04004908 return ret;
4909}
4910
Josef Bacik695a0d02011-03-04 15:46:53 -05004911/*
4912 * This function puts in dummy file extents for the area we're creating a hole
4913 * for. So if we are truncating this file to a larger size we need to insert
4914 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4915 * the range between oldsize and size
4916 */
Josef Bacika41ad392011-01-31 15:30:16 -05004917int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004918{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004919 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng9036c102008-10-30 14:19:41 -04004920 struct btrfs_root *root = BTRFS_I(inode)->root;
4921 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004922 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004923 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004924 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004925 u64 hole_start = ALIGN(oldsize, fs_info->sectorsize);
4926 u64 block_end = ALIGN(size, fs_info->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004927 u64 last_byte;
4928 u64 cur_offset;
4929 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004930 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004931
Josef Bacika71754f2013-06-17 17:14:39 -04004932 /*
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304933 * If our size started in the middle of a block we need to zero out the
4934 * rest of the block before we expand the i_size, otherwise we could
Josef Bacika71754f2013-06-17 17:14:39 -04004935 * expose stale data.
4936 */
Chandan Rajendra9703fef2016-01-21 15:55:56 +05304937 err = btrfs_truncate_block(inode, oldsize, 0, 0);
Josef Bacika71754f2013-06-17 17:14:39 -04004938 if (err)
4939 return err;
4940
Yan Zheng9036c102008-10-30 14:19:41 -04004941 if (size <= hole_start)
4942 return 0;
4943
Yan Zheng9036c102008-10-30 14:19:41 -04004944 while (1) {
4945 struct btrfs_ordered_extent *ordered;
Miao Xiefa7c1492013-09-26 13:15:27 +08004946
David Sterbaff13db42015-12-03 14:30:40 +01004947 lock_extent_bits(io_tree, hole_start, block_end - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004948 &cached_state);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02004949 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start,
Miao Xiefa7c1492013-09-26 13:15:27 +08004950 block_end - hole_start);
Yan Zheng9036c102008-10-30 14:19:41 -04004951 if (!ordered)
4952 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004953 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4954 &cached_state, GFP_NOFS);
Miao Xiefa7c1492013-09-26 13:15:27 +08004955 btrfs_start_ordered_extent(inode, ordered, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04004956 btrfs_put_ordered_extent(ordered);
4957 }
4958
Yan Zheng9036c102008-10-30 14:19:41 -04004959 cur_offset = hole_start;
4960 while (1) {
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02004961 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
Yan Zheng9036c102008-10-30 14:19:41 -04004962 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004963 if (IS_ERR(em)) {
4964 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004965 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004966 break;
4967 }
Yan Zheng9036c102008-10-30 14:19:41 -04004968 last_byte = min(extent_map_end(em), block_end);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004969 last_byte = ALIGN(last_byte, fs_info->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004970 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004971 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004972 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004973
Josef Bacik16e75492013-10-22 12:18:51 -04004974 err = maybe_insert_hole(root, inode, cur_offset,
4975 hole_size);
4976 if (err)
Chris Mason771ed682008-11-06 22:02:51 -05004977 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02004978 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04004979 cur_offset + hole_size - 1, 0);
4980 hole_em = alloc_extent_map();
4981 if (!hole_em) {
4982 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4983 &BTRFS_I(inode)->runtime_flags);
4984 goto next;
4985 }
4986 hole_em->start = cur_offset;
4987 hole_em->len = hole_size;
4988 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004989
Josef Bacik5dc562c2012-08-17 13:14:17 -04004990 hole_em->block_start = EXTENT_MAP_HOLE;
4991 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004992 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004993 hole_em->ram_bytes = hole_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004994 hole_em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004995 hole_em->compress_type = BTRFS_COMPRESS_NONE;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004996 hole_em->generation = fs_info->generation;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004997
4998 while (1) {
4999 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005000 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005001 write_unlock(&em_tree->lock);
5002 if (err != -EEXIST)
5003 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02005004 btrfs_drop_extent_cache(BTRFS_I(inode),
5005 cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -04005006 cur_offset +
5007 hole_size - 1, 0);
5008 }
5009 free_extent_map(hole_em);
Yan Zheng9036c102008-10-30 14:19:41 -04005010 }
Josef Bacik16e75492013-10-22 12:18:51 -04005011next:
Yan Zheng9036c102008-10-30 14:19:41 -04005012 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005013 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04005014 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00005015 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04005016 break;
5017 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04005018 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00005019 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
5020 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04005021 return err;
5022}
5023
Eric Sandeen3972f262013-01-12 02:57:22 +00005024static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00005025{
Miao Xief4a2f4c2011-12-14 20:12:01 -05005026 struct btrfs_root *root = BTRFS_I(inode)->root;
5027 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05005028 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00005029 loff_t newsize = attr->ia_size;
5030 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00005031 int ret;
5032
Eric Sandeen3972f262013-01-12 02:57:22 +00005033 /*
5034 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
5035 * special case where we need to update the times despite not having
5036 * these flags set. For all other operations the VFS set these flags
5037 * explicitly if it wants a timestamp update.
5038 */
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005039 if (newsize != oldsize) {
5040 inode_inc_iversion(inode);
5041 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
5042 inode->i_ctime = inode->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005043 current_time(inode);
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005044 }
Eric Sandeen3972f262013-01-12 02:57:22 +00005045
Josef Bacika41ad392011-01-31 15:30:16 -05005046 if (newsize > oldsize) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005047 /*
5048 * Don't do an expanding truncate while snapshoting is ongoing.
5049 * This is to ensure the snapshot captures a fully consistent
5050 * state of this file - if the snapshot captures this expanding
5051 * truncation, it must capture all writes that happened before
5052 * this truncation.
5053 */
Zhao Lei0bc19f902016-01-06 18:56:36 +08005054 btrfs_wait_for_snapshot_creation(root);
Josef Bacika41ad392011-01-31 15:30:16 -05005055 ret = btrfs_cont_expand(inode, oldsize, newsize);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005056 if (ret) {
5057 btrfs_end_write_no_snapshoting(root);
Yan, Zheng80825102009-11-12 09:35:36 +00005058 return ret;
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005059 }
Yan, Zheng80825102009-11-12 09:35:36 +00005060
Miao Xief4a2f4c2011-12-14 20:12:01 -05005061 trans = btrfs_start_transaction(root, 1);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005062 if (IS_ERR(trans)) {
5063 btrfs_end_write_no_snapshoting(root);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005064 return PTR_ERR(trans);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005065 }
Miao Xief4a2f4c2011-12-14 20:12:01 -05005066
5067 i_size_write(inode, newsize);
5068 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
Chandan Rajendra27772b62016-01-21 15:56:03 +05305069 pagecache_isize_extended(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05005070 ret = btrfs_update_inode(trans, root, inode);
Filipe Manana9ea24bb2014-10-29 11:57:59 +00005071 btrfs_end_write_no_snapshoting(root);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005072 btrfs_end_transaction(trans);
Josef Bacika41ad392011-01-31 15:30:16 -05005073 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00005074
Josef Bacika41ad392011-01-31 15:30:16 -05005075 /*
5076 * We're truncating a file that used to have good data down to
5077 * zero. Make sure it gets into the ordered flush list so that
5078 * any new writes get down to disk quickly.
5079 */
5080 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04005081 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
5082 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00005083
Josef Bacikf3fe8202013-01-07 17:03:21 -05005084 /*
5085 * 1 for the orphan item we're going to add
5086 * 1 for the orphan item deletion.
5087 */
5088 trans = btrfs_start_transaction(root, 2);
5089 if (IS_ERR(trans))
5090 return PTR_ERR(trans);
5091
5092 /*
5093 * We need to do this in case we fail at _any_ point during the
5094 * actual truncate. Once we do the truncate_setsize we could
5095 * invalidate pages which forces any outstanding ordered io to
5096 * be instantly completed which will give us extents that need
5097 * to be truncated. If we fail to get an orphan inode down we
5098 * could have left over extents that were never meant to live,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005099 * so we need to guarantee from this point on that everything
Josef Bacikf3fe8202013-01-07 17:03:21 -05005100 * will be consistent.
5101 */
Nikolay Borisov73f2e542017-02-20 13:50:59 +02005102 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005103 btrfs_end_transaction(trans);
Josef Bacikf3fe8202013-01-07 17:03:21 -05005104 if (ret)
5105 return ret;
5106
Josef Bacika41ad392011-01-31 15:30:16 -05005107 /* we don't support swapfiles, so vmtruncate shouldn't fail */
5108 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00005109
5110 /* Disable nonlocked read DIO to avoid the end less truncate */
Nikolay Borisovabcefb12017-02-20 13:51:10 +02005111 btrfs_inode_block_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005112 inode_dio_wait(inode);
Nikolay Borisov0b581702017-02-20 13:51:11 +02005113 btrfs_inode_resume_unlocked_dio(BTRFS_I(inode));
Miao Xie2e60a512013-02-08 07:01:08 +00005114
Josef Bacika41ad392011-01-31 15:30:16 -05005115 ret = btrfs_truncate(inode);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005116 if (ret && inode->i_nlink) {
5117 int err;
5118
Liu Bo19fd2df2016-12-01 13:01:02 -08005119 /* To get a stable disk_i_size */
5120 err = btrfs_wait_ordered_range(inode, 0, (u64)-1);
5121 if (err) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005122 btrfs_orphan_del(NULL, BTRFS_I(inode));
Liu Bo19fd2df2016-12-01 13:01:02 -08005123 return err;
5124 }
5125
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005126 /*
5127 * failed to truncate, disk_i_size is only adjusted down
5128 * as we remove extents, so it should represent the true
5129 * size of the inode, so reset the in memory size and
5130 * delete our orphan entry.
5131 */
5132 trans = btrfs_join_transaction(root);
5133 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005134 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005135 return ret;
5136 }
5137 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005138 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005139 if (err)
Jeff Mahoney66642832016-06-10 18:19:25 -04005140 btrfs_abort_transaction(trans, err);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005141 btrfs_end_transaction(trans);
Josef Bacik7f4f6e02013-08-29 16:43:28 -04005142 }
Yan, Zheng80825102009-11-12 09:35:36 +00005143 }
5144
Josef Bacika41ad392011-01-31 15:30:16 -05005145 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00005146}
5147
Chris Mason39279cc2007-06-12 06:35:45 -04005148static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
5149{
David Howells2b0143b2015-03-17 22:25:59 +00005150 struct inode *inode = d_inode(dentry);
Li Zefanb83cc962010-12-20 16:04:08 +08005151 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005152 int err;
5153
Li Zefanb83cc962010-12-20 16:04:08 +08005154 if (btrfs_root_readonly(root))
5155 return -EROFS;
5156
Jan Kara31051c82016-05-26 16:55:18 +02005157 err = setattr_prepare(dentry, attr);
Chris Mason39279cc2007-06-12 06:35:45 -04005158 if (err)
5159 return err;
5160
Chris Mason5a3f23d2009-03-31 13:27:11 -04005161 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00005162 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00005163 if (err)
5164 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005165 }
Yan Zheng9036c102008-10-30 14:19:41 -04005166
Christoph Hellwig10257742010-06-04 11:30:02 +02005167 if (attr->ia_valid) {
5168 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005169 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005170 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04005171
Josef Bacik22c44fe2011-11-30 10:45:38 -05005172 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig996a7102013-12-20 05:16:43 -08005173 err = posix_acl_chmod(inode, inode->i_mode);
Christoph Hellwig10257742010-06-04 11:30:02 +02005174 }
5175
Chris Mason39279cc2007-06-12 06:35:45 -04005176 return err;
5177}
Chris Mason61295eb2008-01-14 16:24:38 -05005178
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005179/*
5180 * While truncating the inode pages during eviction, we get the VFS calling
5181 * btrfs_invalidatepage() against each page of the inode. This is slow because
5182 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
5183 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
5184 * extent_state structures over and over, wasting lots of time.
5185 *
5186 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
5187 * those expensive operations on a per page basis and do only the ordered io
5188 * finishing, while we release here the extent_map and extent_state structures,
5189 * without the excessive merging and splitting.
5190 */
5191static void evict_inode_truncate_pages(struct inode *inode)
5192{
5193 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5194 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
5195 struct rb_node *node;
5196
5197 ASSERT(inode->i_state & I_FREEING);
Johannes Weiner91b0abe2014-04-03 14:47:49 -07005198 truncate_inode_pages_final(&inode->i_data);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005199
5200 write_lock(&map_tree->lock);
5201 while (!RB_EMPTY_ROOT(&map_tree->map)) {
5202 struct extent_map *em;
5203
5204 node = rb_first(&map_tree->map);
5205 em = rb_entry(node, struct extent_map, rb_node);
Wang Shilong180589e2013-12-14 15:27:31 +08005206 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
5207 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005208 remove_extent_mapping(map_tree, em);
5209 free_extent_map(em);
Filipe Manana7064dd52014-08-08 02:47:05 +01005210 if (need_resched()) {
5211 write_unlock(&map_tree->lock);
5212 cond_resched();
5213 write_lock(&map_tree->lock);
5214 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005215 }
5216 write_unlock(&map_tree->lock);
5217
Filipe Manana6ca07092015-05-26 00:55:42 +01005218 /*
5219 * Keep looping until we have no more ranges in the io tree.
5220 * We can have ongoing bios started by readpages (called from readahead)
Filipe Manana9c6429d2015-06-10 12:55:41 +01005221 * that have their endio callback (extent_io.c:end_bio_extent_readpage)
5222 * still in progress (unlocked the pages in the bio but did not yet
5223 * unlocked the ranges in the io tree). Therefore this means some
Filipe Manana6ca07092015-05-26 00:55:42 +01005224 * ranges can still be locked and eviction started because before
5225 * submitting those bios, which are executed by a separate task (work
5226 * queue kthread), inode references (inode->i_count) were not taken
5227 * (which would be dropped in the end io callback of each bio).
5228 * Therefore here we effectively end up waiting for those bios and
5229 * anyone else holding locked ranges without having bumped the inode's
5230 * reference count - if we don't do it, when they access the inode's
5231 * io_tree to unlock a range it may be too late, leading to an
5232 * use-after-free issue.
5233 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005234 spin_lock(&io_tree->lock);
5235 while (!RB_EMPTY_ROOT(&io_tree->state)) {
5236 struct extent_state *state;
5237 struct extent_state *cached_state = NULL;
Filipe Manana6ca07092015-05-26 00:55:42 +01005238 u64 start;
5239 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005240
5241 node = rb_first(&io_tree->state);
5242 state = rb_entry(node, struct extent_state, rb_node);
Filipe Manana6ca07092015-05-26 00:55:42 +01005243 start = state->start;
5244 end = state->end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005245 spin_unlock(&io_tree->lock);
5246
David Sterbaff13db42015-12-03 14:30:40 +01005247 lock_extent_bits(io_tree, start, end, &cached_state);
Qu Wenruob9d0b382015-09-29 10:35:16 +08005248
5249 /*
5250 * If still has DELALLOC flag, the extent didn't reach disk,
5251 * and its reserved space won't be freed by delayed_ref.
5252 * So we need to free its reserved space here.
5253 * (Refer to comment in btrfs_invalidatepage, case 2)
5254 *
5255 * Note, end is the bytenr of last byte, so we need + 1 here.
5256 */
5257 if (state->state & EXTENT_DELALLOC)
5258 btrfs_qgroup_free_data(inode, start, end - start + 1);
5259
Filipe Manana6ca07092015-05-26 00:55:42 +01005260 clear_extent_bit(io_tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005261 EXTENT_LOCKED | EXTENT_DIRTY |
5262 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
5263 EXTENT_DEFRAG, 1, 1,
5264 &cached_state, GFP_NOFS);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005265
Filipe Manana7064dd52014-08-08 02:47:05 +01005266 cond_resched();
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005267 spin_lock(&io_tree->lock);
5268 }
5269 spin_unlock(&io_tree->lock);
5270}
5271
Al Virobd555972010-06-07 11:35:40 -04005272void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005273{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005274 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005275 struct btrfs_trans_handle *trans;
5276 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04005277 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik3bce8762015-02-24 12:35:51 -08005278 int steal_from_global = 0;
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005279 u64 min_size;
Chris Mason39279cc2007-06-12 06:35:45 -04005280 int ret;
5281
liubo1abe9b82011-03-24 11:18:59 +00005282 trace_btrfs_inode_evict(inode);
5283
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005284 if (!root) {
5285 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5286 return;
5287 }
5288
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005289 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Nikolay Borisov3d48d982016-06-29 09:46:41 +03005290
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00005291 evict_inode_truncate_pages(inode);
5292
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005293 if (inode->i_nlink &&
5294 ((btrfs_root_refs(&root->root_item) != 0 &&
5295 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
Nikolay Borisov70ddc552017-02-20 13:50:35 +02005296 btrfs_is_free_space_inode(BTRFS_I(inode))))
Al Virobd555972010-06-07 11:35:40 -04005297 goto no_delete;
5298
Chris Mason39279cc2007-06-12 06:35:45 -04005299 if (is_bad_inode(inode)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005300 btrfs_orphan_del(NULL, BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -04005301 goto no_delete;
5302 }
Al Virobd555972010-06-07 11:35:40 -04005303 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Jeff Mahoneya30e5772015-09-11 21:44:17 -04005304 if (!special_file(inode->i_mode))
5305 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04005306
Nikolay Borisov7ab79562017-02-20 13:50:57 +02005307 btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1);
Miao Xief6124962014-09-12 18:44:04 +08005308
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005309 if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) {
Liu Bo6bf02312012-06-25 21:59:09 -06005310 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04005311 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00005312 goto no_delete;
5313 }
5314
Yan, Zheng76dda932009-09-21 16:00:26 -04005315 if (inode->i_nlink > 0) {
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005316 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
5317 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
Yan, Zheng76dda932009-09-21 16:00:26 -04005318 goto no_delete;
5319 }
5320
Nikolay Borisovaa790212017-01-10 20:35:40 +02005321 ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005322 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005323 btrfs_orphan_del(NULL, BTRFS_I(inode));
Miao Xie0e8c36a2012-12-19 06:59:51 +00005324 goto no_delete;
5325 }
5326
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005327 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04005328 if (!rsv) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005329 btrfs_orphan_del(NULL, BTRFS_I(inode));
Josef Bacik4289a662011-08-05 13:22:24 -04005330 goto no_delete;
5331 }
Josef Bacik4a338542011-08-29 11:01:31 -04005332 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04005333 rsv->failfast = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005334 global_rsv = &fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04005335
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02005336 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason5f39d392007-10-15 16:14:19 -04005337
Josef Bacik4289a662011-08-05 13:22:24 -04005338 /*
Miao Xie8407aa42012-09-07 01:43:32 -06005339 * This is a bit simpler than btrfs_truncate since we've already
5340 * reserved our space for our orphan item in the unlink, so we just
5341 * need to reserve some slack space in case we add bytes and update
5342 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04005343 */
Yan, Zheng80825102009-11-12 09:35:36 +00005344 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00005345 ret = btrfs_block_rsv_refill(root, rsv, min_size,
5346 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00005347
Josef Bacik726c35f2011-09-26 15:46:06 -04005348 /*
5349 * Try and steal from the global reserve since we will
5350 * likely not use this space anyway, we want to try as
5351 * hard as possible to get this to work.
5352 */
5353 if (ret)
Josef Bacik3bce8762015-02-24 12:35:51 -08005354 steal_from_global++;
5355 else
5356 steal_from_global = 0;
5357 ret = 0;
Josef Bacik726c35f2011-09-26 15:46:06 -04005358
Josef Bacik3bce8762015-02-24 12:35:51 -08005359 /*
5360 * steal_from_global == 0: we reserved stuff, hooray!
5361 * steal_from_global == 1: we didn't reserve stuff, boo!
5362 * steal_from_global == 2: we've committed, still not a lot of
5363 * room but maybe we'll have room in the global reserve this
5364 * time.
5365 * steal_from_global == 3: abandon all hope!
5366 */
5367 if (steal_from_global > 2) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005368 btrfs_warn(fs_info,
5369 "Could not get space for a delete, will truncate on mount %d",
5370 ret);
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005371 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005372 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005373 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005374 }
5375
Miao Xie0e8c36a2012-12-19 06:59:51 +00005376 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04005377 if (IS_ERR(trans)) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005378 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005379 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005380 goto no_delete;
5381 }
5382
Josef Bacik3bce8762015-02-24 12:35:51 -08005383 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005384 * We can't just steal from the global reserve, we need to make
Josef Bacik3bce8762015-02-24 12:35:51 -08005385 * sure there is room to do it, if not we need to commit and try
5386 * again.
5387 */
5388 if (steal_from_global) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005389 if (!btrfs_check_space_for_delayed_refs(trans, fs_info))
Josef Bacik3bce8762015-02-24 12:35:51 -08005390 ret = btrfs_block_rsv_migrate(global_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04005391 min_size, 0);
Josef Bacik3bce8762015-02-24 12:35:51 -08005392 else
5393 ret = -ENOSPC;
5394 }
5395
5396 /*
5397 * Couldn't steal from the global reserve, we have too much
5398 * pending stuff built up, commit the transaction and try it
5399 * again.
5400 */
5401 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005402 ret = btrfs_commit_transaction(trans);
Josef Bacik3bce8762015-02-24 12:35:51 -08005403 if (ret) {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005404 btrfs_orphan_del(NULL, BTRFS_I(inode));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005405 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik3bce8762015-02-24 12:35:51 -08005406 goto no_delete;
5407 }
5408 continue;
5409 } else {
5410 steal_from_global = 0;
5411 }
5412
Josef Bacik4289a662011-08-05 13:22:24 -04005413 trans->block_rsv = rsv;
5414
Yan, Zhengd68fc572010-05-16 10:49:58 -04005415 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08005416 if (ret != -ENOSPC && ret != -EAGAIN)
Yan, Zheng80825102009-11-12 09:35:36 +00005417 break;
5418
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005419 trans->block_rsv = &fs_info->trans_block_rsv;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005420 btrfs_end_transaction(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00005421 trans = NULL;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005422 btrfs_btree_balance_dirty(fs_info);
Josef Bacik7b128762008-07-24 12:17:14 -04005423 }
5424
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005425 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacik4289a662011-08-05 13:22:24 -04005426
Josef Bacik4ef31a42013-08-13 14:10:08 -04005427 /*
5428 * Errors here aren't a big deal, it just means we leave orphan items
5429 * in the tree. They will be cleaned up on the next mount.
5430 */
Yan, Zheng80825102009-11-12 09:35:36 +00005431 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04005432 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005433 btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik4ef31a42013-08-13 14:10:08 -04005434 } else {
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02005435 btrfs_orphan_del(NULL, BTRFS_I(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00005436 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005437
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005438 trans->block_rsv = &fs_info->trans_block_rsv;
5439 if (!(root == fs_info->tree_root ||
Li Zefan581bb052011-04-20 10:06:11 +08005440 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005441 btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode)));
Li Zefan581bb052011-04-20 10:06:11 +08005442
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005443 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005444 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04005445no_delete:
Nikolay Borisovf48d1cf2017-01-10 20:35:39 +02005446 btrfs_remove_delayed_node(BTRFS_I(inode));
Jan Karadbd57682012-05-03 14:48:02 +02005447 clear_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005448}
5449
5450/*
5451 * this returns the key found in the dir entry in the location pointer.
5452 * If no dir entries were found, location->objectid is 0.
5453 */
5454static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
5455 struct btrfs_key *location)
5456{
5457 const char *name = dentry->d_name.name;
5458 int namelen = dentry->d_name.len;
5459 struct btrfs_dir_item *di;
5460 struct btrfs_path *path;
5461 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04005462 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005463
5464 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005465 if (!path)
5466 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05005467
David Sterbaf85b7372017-01-20 14:54:07 +01005468 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)),
5469 name, namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04005470 if (IS_ERR(di))
5471 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05005472
David Sterbac7040052011-04-19 18:00:01 +02005473 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05005474 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05005475
Chris Mason5f39d392007-10-15 16:14:19 -04005476 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04005477out:
Chris Mason39279cc2007-06-12 06:35:45 -04005478 btrfs_free_path(path);
5479 return ret;
Chris Mason39544012007-12-12 14:38:19 -05005480out_err:
5481 location->objectid = 0;
5482 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005483}
5484
5485/*
5486 * when we hit a tree root in a directory, the btrfs part of the inode
5487 * needs to be changed to reflect the root directory of the tree root. This
5488 * is kind of like crossing a mount point.
5489 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005490static int fixup_tree_root_location(struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005491 struct inode *dir,
5492 struct dentry *dentry,
5493 struct btrfs_key *location,
5494 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04005495{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005496 struct btrfs_path *path;
5497 struct btrfs_root *new_root;
5498 struct btrfs_root_ref *ref;
5499 struct extent_buffer *leaf;
David Sterba1d4c08e2015-01-02 19:36:14 +01005500 struct btrfs_key key;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005501 int ret;
5502 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005503
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005504 path = btrfs_alloc_path();
5505 if (!path) {
5506 err = -ENOMEM;
5507 goto out;
5508 }
Chris Mason39279cc2007-06-12 06:35:45 -04005509
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005510 err = -ENOENT;
David Sterba1d4c08e2015-01-02 19:36:14 +01005511 key.objectid = BTRFS_I(dir)->root->root_key.objectid;
5512 key.type = BTRFS_ROOT_REF_KEY;
5513 key.offset = location->objectid;
5514
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005515 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005516 if (ret) {
5517 if (ret < 0)
5518 err = ret;
5519 goto out;
5520 }
Chris Mason39279cc2007-06-12 06:35:45 -04005521
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005522 leaf = path->nodes[0];
5523 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005524 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005525 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
5526 goto out;
5527
5528 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
5529 (unsigned long)(ref + 1),
5530 dentry->d_name.len);
5531 if (ret)
5532 goto out;
5533
David Sterbab3b4aa72011-04-21 01:20:15 +02005534 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005535
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005536 new_root = btrfs_read_fs_root_no_name(fs_info, location);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005537 if (IS_ERR(new_root)) {
5538 err = PTR_ERR(new_root);
5539 goto out;
5540 }
5541
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005542 *sub_root = new_root;
5543 location->objectid = btrfs_root_dirid(&new_root->root_item);
5544 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04005545 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005546 err = 0;
5547out:
5548 btrfs_free_path(path);
5549 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04005550}
5551
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005552static void inode_tree_add(struct inode *inode)
5553{
5554 struct btrfs_root *root = BTRFS_I(inode)->root;
5555 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005556 struct rb_node **p;
5557 struct rb_node *parent;
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005558 struct rb_node *new = &BTRFS_I(inode)->rb_node;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005559 u64 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005560
Al Viro1d3382cb2010-10-23 15:19:20 -04005561 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04005562 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00005563 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005564 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00005565 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005566 while (*p) {
5567 parent = *p;
5568 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5569
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005570 if (ino < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005571 p = &parent->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005572 else if (ino > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005573 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005574 else {
5575 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04005576 (I_WILL_FREE | I_FREEING)));
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005577 rb_replace_node(parent, new, &root->inode_tree);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005578 RB_CLEAR_NODE(parent);
5579 spin_unlock(&root->inode_lock);
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005580 return;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005581 }
5582 }
Filipe David Borba Mananacef21932013-09-02 12:19:13 +01005583 rb_link_node(new, parent, p);
5584 rb_insert_color(new, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005585 spin_unlock(&root->inode_lock);
5586}
5587
5588static void inode_tree_del(struct inode *inode)
5589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005590 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005591 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04005592 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005593
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005594 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005595 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005596 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005597 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04005598 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005599 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02005600 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04005601
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02005602 if (empty && btrfs_root_refs(&root->root_item) == 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005603 synchronize_srcu(&fs_info->subvol_srcu);
Yan, Zheng76dda932009-09-21 16:00:26 -04005604 spin_lock(&root->inode_lock);
5605 empty = RB_EMPTY_ROOT(&root->inode_tree);
5606 spin_unlock(&root->inode_lock);
5607 if (empty)
5608 btrfs_add_dead_root(root);
5609 }
5610}
5611
Jeff Mahoney143bede2012-03-01 14:56:26 +01005612void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005613{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005614 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04005615 struct rb_node *node;
5616 struct rb_node *prev;
5617 struct btrfs_inode *entry;
5618 struct inode *inode;
5619 u64 objectid = 0;
5620
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005621 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Liu Bo7813b3d2014-02-10 17:37:25 +08005622 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04005623
5624 spin_lock(&root->inode_lock);
5625again:
5626 node = root->inode_tree.rb_node;
5627 prev = NULL;
5628 while (node) {
5629 prev = node;
5630 entry = rb_entry(node, struct btrfs_inode, rb_node);
5631
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005632 if (objectid < btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005633 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005634 else if (objectid > btrfs_ino(BTRFS_I(&entry->vfs_inode)))
Yan, Zheng76dda932009-09-21 16:00:26 -04005635 node = node->rb_right;
5636 else
5637 break;
5638 }
5639 if (!node) {
5640 while (prev) {
5641 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005642 if (objectid <= btrfs_ino(BTRFS_I(&entry->vfs_inode))) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005643 node = prev;
5644 break;
5645 }
5646 prev = rb_next(prev);
5647 }
5648 }
5649 while (node) {
5650 entry = rb_entry(node, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005651 objectid = btrfs_ino(BTRFS_I(&entry->vfs_inode)) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04005652 inode = igrab(&entry->vfs_inode);
5653 if (inode) {
5654 spin_unlock(&root->inode_lock);
5655 if (atomic_read(&inode->i_count) > 1)
5656 d_prune_aliases(inode);
5657 /*
Al Viro45321ac2010-06-07 13:43:19 -04005658 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04005659 * the inode cache when its usage count
5660 * hits zero.
5661 */
5662 iput(inode);
5663 cond_resched();
5664 spin_lock(&root->inode_lock);
5665 goto again;
5666 }
5667
5668 if (cond_resched_lock(&root->inode_lock))
5669 goto again;
5670
5671 node = rb_next(node);
5672 }
5673 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005674}
5675
Chris Masone02119d2008-09-05 16:13:11 -04005676static int btrfs_init_locked_inode(struct inode *inode, void *p)
5677{
5678 struct btrfs_iget_args *args = p;
Chris Mason90d3e592014-01-09 17:28:00 -08005679 inode->i_ino = args->location->objectid;
5680 memcpy(&BTRFS_I(inode)->location, args->location,
5681 sizeof(*args->location));
Chris Masone02119d2008-09-05 16:13:11 -04005682 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005683 return 0;
5684}
5685
5686static int btrfs_find_actor(struct inode *inode, void *opaque)
5687{
5688 struct btrfs_iget_args *args = opaque;
Chris Mason90d3e592014-01-09 17:28:00 -08005689 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
Chris Masond3977122009-01-05 21:25:51 -05005690 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005691}
5692
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005693static struct inode *btrfs_iget_locked(struct super_block *s,
Chris Mason90d3e592014-01-09 17:28:00 -08005694 struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005695 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005696{
5697 struct inode *inode;
5698 struct btrfs_iget_args args;
Chris Mason90d3e592014-01-09 17:28:00 -08005699 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005700
Chris Mason90d3e592014-01-09 17:28:00 -08005701 args.location = location;
Chris Mason39279cc2007-06-12 06:35:45 -04005702 args.root = root;
5703
Filipe David Borba Manana778ba822013-10-06 22:22:33 +01005704 inode = iget5_locked(s, hashval, btrfs_find_actor,
Chris Mason39279cc2007-06-12 06:35:45 -04005705 btrfs_init_locked_inode,
5706 (void *)&args);
5707 return inode;
5708}
5709
Balaji Rao1a54ef82008-07-21 02:01:04 +05305710/* Get an inode object given its location and corresponding root.
5711 * Returns in *is_new if the inode was read from disk
5712 */
5713struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005714 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305715{
5716 struct inode *inode;
5717
Chris Mason90d3e592014-01-09 17:28:00 -08005718 inode = btrfs_iget_locked(s, location, root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305719 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005720 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305721
5722 if (inode->i_state & I_NEW) {
Filipe Manana67710892016-06-06 11:51:25 +01005723 int ret;
5724
5725 ret = btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005726 if (!is_bad_inode(inode)) {
5727 inode_tree_add(inode);
5728 unlock_new_inode(inode);
5729 if (new)
5730 *new = 1;
5731 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005732 unlock_new_inode(inode);
5733 iput(inode);
Filipe Manana67710892016-06-06 11:51:25 +01005734 ASSERT(ret < 0);
5735 inode = ERR_PTR(ret < 0 ? ret : -ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005736 }
5737 }
5738
Balaji Rao1a54ef82008-07-21 02:01:04 +05305739 return inode;
5740}
5741
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005742static struct inode *new_simple_dir(struct super_block *s,
5743 struct btrfs_key *key,
5744 struct btrfs_root *root)
5745{
5746 struct inode *inode = new_inode(s);
5747
5748 if (!inode)
5749 return ERR_PTR(-ENOMEM);
5750
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005751 BTRFS_I(inode)->root = root;
5752 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005753 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005754
5755 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005756 inode->i_op = &btrfs_dir_ro_inode_operations;
Omar Sandoval1fdf4192017-01-25 17:06:39 -08005757 inode->i_opflags &= ~IOP_XATTR;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005758 inode->i_fop = &simple_dir_operations;
5759 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005760 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05305761 inode->i_atime = inode->i_mtime;
5762 inode->i_ctime = inode->i_mtime;
5763 BTRFS_I(inode)->i_otime = inode->i_mtime;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005764
5765 return inode;
5766}
5767
Chris Mason3de45862008-11-17 21:02:50 -05005768struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005769{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005770 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masond3977122009-01-05 21:25:51 -05005771 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005772 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005773 struct btrfs_root *sub_root = root;
5774 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005775 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005776 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005777
5778 if (dentry->d_name.len > BTRFS_NAME_LEN)
5779 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005780
Jeff Layton39e3c952012-11-28 11:30:53 -05005781 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005782 if (ret < 0)
5783 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005784
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005785 if (location.objectid == 0)
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005786 return ERR_PTR(-ENOENT);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005787
5788 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005789 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005790 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005791 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005792
5793 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5794
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005795 index = srcu_read_lock(&fs_info->subvol_srcu);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005796 ret = fixup_tree_root_location(fs_info, dir, dentry,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005797 &location, &sub_root);
5798 if (ret < 0) {
5799 if (ret != -ENOENT)
5800 inode = ERR_PTR(ret);
5801 else
5802 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5803 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005804 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005805 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005806 srcu_read_unlock(&fs_info->subvol_srcu, index);
Yan, Zheng76dda932009-09-21 16:00:26 -04005807
Julia Lawall34d19ba2011-01-24 19:55:19 +00005808 if (!IS_ERR(inode) && root != sub_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005809 down_read(&fs_info->cleanup_work_sem);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005810 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005811 ret = btrfs_orphan_cleanup(sub_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005812 up_read(&fs_info->cleanup_work_sem);
Josef Bacik01cd3362013-06-03 21:39:49 -04005813 if (ret) {
5814 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005815 inode = ERR_PTR(ret);
Josef Bacik01cd3362013-06-03 21:39:49 -04005816 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00005817 }
5818
Chris Mason3de45862008-11-17 21:02:50 -05005819 return inode;
5820}
5821
Nick Pigginfe15ce42011-01-07 17:49:23 +11005822static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005823{
5824 struct btrfs_root *root;
David Howells2b0143b2015-03-17 22:25:59 +00005825 struct inode *inode = d_inode(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04005826
Li Zefan848cce02012-02-21 17:04:28 +08005827 if (!inode && !IS_ROOT(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00005828 inode = d_inode(dentry->d_parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04005829
Li Zefan848cce02012-02-21 17:04:28 +08005830 if (inode) {
5831 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005832 if (btrfs_root_refs(&root->root_item) == 0)
5833 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005834
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005835 if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Li Zefan848cce02012-02-21 17:04:28 +08005836 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005837 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005838 return 0;
5839}
5840
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005841static void btrfs_dentry_release(struct dentry *dentry)
5842{
Daeseok Youn944a4512014-04-14 15:37:02 +09005843 kfree(dentry->d_fsdata);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005844}
5845
Chris Mason3de45862008-11-17 21:02:50 -05005846static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005847 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005848{
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005849 struct inode *inode;
Josef Bacika66e7cc2011-09-18 10:34:03 -04005850
Tsutomu Itoh5662344b32013-12-13 09:51:42 +09005851 inode = btrfs_lookup_dentry(dir, dentry);
5852 if (IS_ERR(inode)) {
5853 if (PTR_ERR(inode) == -ENOENT)
5854 inode = NULL;
5855 else
5856 return ERR_CAST(inode);
5857 }
5858
Al Viro41d28bc2014-10-12 22:24:21 -04005859 return d_splice_alias(inode, dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04005860}
5861
Miao Xie16cdcec2011-04-22 18:12:22 +08005862unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005863 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5864};
5865
Al Viro9cdda8d2013-05-22 16:48:09 -04005866static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
Chris Mason39279cc2007-06-12 06:35:45 -04005867{
Al Viro9cdda8d2013-05-22 16:48:09 -04005868 struct inode *inode = file_inode(file);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005869 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04005870 struct btrfs_root *root = BTRFS_I(inode)->root;
5871 struct btrfs_item *item;
5872 struct btrfs_dir_item *di;
5873 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005874 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005875 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005876 struct list_head ins_list;
5877 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005878 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005879 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005880 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005881 unsigned char d_type;
5882 int over = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005883 char tmp_name[32];
5884 char *name_ptr;
5885 int name_len;
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005886 bool put = false;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005887 struct btrfs_key location;
Chris Mason5f39d392007-10-15 16:14:19 -04005888
Al Viro9cdda8d2013-05-22 16:48:09 -04005889 if (!dir_emit_dots(file, ctx))
5890 return 0;
5891
David Woodhouse49593bf2008-08-17 17:08:36 +01005892 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005893 if (!path)
5894 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005895
David Sterbae4058b52015-11-27 16:31:35 +01005896 path->reada = READA_FORWARD;
David Woodhouse49593bf2008-08-17 17:08:36 +01005897
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005898 INIT_LIST_HEAD(&ins_list);
5899 INIT_LIST_HEAD(&del_list);
5900 put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list);
Miao Xie16cdcec2011-04-22 18:12:22 +08005901
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005902 key.type = BTRFS_DIR_INDEX_KEY;
Al Viro9cdda8d2013-05-22 16:48:09 -04005903 key.offset = ctx->pos;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005904 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason5f39d392007-10-15 16:14:19 -04005905
Chris Mason39279cc2007-06-12 06:35:45 -04005906 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5907 if (ret < 0)
5908 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005909
5910 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005911 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005912 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005913 if (slot >= btrfs_header_nritems(leaf)) {
5914 ret = btrfs_next_leaf(root, path);
5915 if (ret < 0)
5916 goto err;
5917 else if (ret > 0)
5918 break;
5919 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005920 }
Chris Mason3de45862008-11-17 21:02:50 -05005921
Ross Kirkdd3cc162013-09-16 15:58:09 +01005922 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04005923 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5924
5925 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005926 break;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005927 if (found_key.type != BTRFS_DIR_INDEX_KEY)
Chris Mason39279cc2007-06-12 06:35:45 -04005928 break;
Al Viro9cdda8d2013-05-22 16:48:09 -04005929 if (found_key.offset < ctx->pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005930 goto next;
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005931 if (btrfs_should_delete_dir_index(&del_list, found_key.offset))
Miao Xie16cdcec2011-04-22 18:12:22 +08005932 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005933
Al Viro9cdda8d2013-05-22 16:48:09 -04005934 ctx->pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01005935
Chris Mason39279cc2007-06-12 06:35:45 -04005936 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005937 if (verify_dir_item(fs_info, leaf, di))
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005938 goto next;
David Woodhouse49593bf2008-08-17 17:08:36 +01005939
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005940 name_len = btrfs_dir_name_len(leaf, di);
5941 if (name_len <= sizeof(tmp_name)) {
5942 name_ptr = tmp_name;
5943 } else {
5944 name_ptr = kmalloc(name_len, GFP_KERNEL);
5945 if (!name_ptr) {
5946 ret = -ENOMEM;
5947 goto err;
Chris Mason5f39d392007-10-15 16:14:19 -04005948 }
Chris Mason39279cc2007-06-12 06:35:45 -04005949 }
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005950 read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1),
5951 name_len);
5952
5953 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5954 btrfs_dir_item_key_to_cpu(leaf, di, &location);
5955
5956 over = !dir_emit(ctx, name_ptr, name_len, location.objectid,
5957 d_type);
5958
5959 if (name_ptr != tmp_name)
5960 kfree(name_ptr);
5961
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005962 if (over)
5963 goto nopos;
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005964 ctx->pos++;
Li Zefanb9e03af2011-03-23 10:43:58 +08005965next:
5966 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005967 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005968
Jeff Mahoneyd2fbb2b2016-11-05 13:26:35 -04005969 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005970 if (ret)
David Sterbabc4ef752015-11-13 13:44:28 +01005971 goto nopos;
5972
Zach Browndb62efb2013-07-11 16:19:42 -07005973 /*
5974 * Stop new entries from being returned after we return the last
5975 * entry.
5976 *
5977 * New directory entries are assigned a strictly increasing
5978 * offset. This means that new entries created during readdir
5979 * are *guaranteed* to be seen in the future by that readdir.
5980 * This has broken buggy programs which operate on names as
5981 * they're returned by readdir. Until we re-use freed offsets
5982 * we have this hack to stop new entries from being returned
5983 * under the assumption that they'll never reach this huge
5984 * offset.
5985 *
5986 * This is being careful not to overflow 32bit loff_t unless the
5987 * last entry requires it because doing so has broken 32bit apps
5988 * in the past.
5989 */
Jeff Mahoneyc2951f32016-11-21 15:59:04 +01005990 if (ctx->pos >= INT_MAX)
5991 ctx->pos = LLONG_MAX;
5992 else
5993 ctx->pos = INT_MAX;
Chris Mason39279cc2007-06-12 06:35:45 -04005994nopos:
5995 ret = 0;
5996err:
Omar Sandoval02dbfc92016-05-20 13:50:33 -07005997 if (put)
5998 btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005999 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006000 return ret;
6001}
6002
Christoph Hellwiga9185b42010-03-05 09:21:37 +01006003int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04006004{
6005 struct btrfs_root *root = BTRFS_I(inode)->root;
6006 struct btrfs_trans_handle *trans;
6007 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04006008 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04006009
Josef Bacik72ac3c02012-05-23 14:13:11 -04006010 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04006011 return 0;
6012
Nikolay Borisov70ddc552017-02-20 13:50:35 +02006013 if (btrfs_fs_closing(root->fs_info) &&
6014 btrfs_is_free_space_inode(BTRFS_I(inode)))
Li Zefan82d59022011-04-20 10:33:24 +08006015 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04006016
Christoph Hellwiga9185b42010-03-05 09:21:37 +01006017 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04006018 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006019 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04006020 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006021 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006022 if (IS_ERR(trans))
6023 return PTR_ERR(trans);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006024 ret = btrfs_commit_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006025 }
6026 return ret;
6027}
6028
6029/*
Chris Mason54aa1f42007-06-22 14:16:25 -04006030 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04006031 * inode changes. But, it is most likely to find the inode in cache.
6032 * FIXME, needs more benchmarking...there are no reasons other than performance
6033 * to keep or drop this code.
6034 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00006035static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006036{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006037 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006038 struct btrfs_root *root = BTRFS_I(inode)->root;
6039 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006040 int ret;
6041
Josef Bacik72ac3c02012-05-23 14:13:11 -04006042 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05006043 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006044
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006045 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006046 if (IS_ERR(trans))
6047 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006048
6049 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006050 if (ret && ret == -ENOSPC) {
6051 /* whoops, lets try again with the full transaction */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006052 btrfs_end_transaction(trans);
Chris Mason94b60442010-05-26 11:02:00 -04006053 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006054 if (IS_ERR(trans))
6055 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006056
Chris Mason94b60442010-05-26 11:02:00 -04006057 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04006058 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006059 btrfs_end_transaction(trans);
Miao Xie16cdcec2011-04-22 18:12:22 +08006060 if (BTRFS_I(inode)->delayed_node)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006061 btrfs_balance_delayed_items(fs_info);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006062
6063 return ret;
6064}
6065
6066/*
6067 * This is a copy of file_update_time. We need this so we can return error on
6068 * ENOSPC for updating the inode in the case of file write and mmap writes.
6069 */
Josef Bacike41f9412012-03-26 09:46:47 -04006070static int btrfs_update_time(struct inode *inode, struct timespec *now,
6071 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006072{
Alexander Block2bc5565282012-06-15 09:49:33 +02006073 struct btrfs_root *root = BTRFS_I(inode)->root;
6074
6075 if (btrfs_root_readonly(root))
6076 return -EROFS;
6077
Josef Bacike41f9412012-03-26 09:46:47 -04006078 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05006079 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04006080 if (flags & S_CTIME)
6081 inode->i_ctime = *now;
6082 if (flags & S_MTIME)
6083 inode->i_mtime = *now;
6084 if (flags & S_ATIME)
6085 inode->i_atime = *now;
6086 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006087}
6088
Chris Masond352ac62008-09-29 15:18:18 -04006089/*
6090 * find the highest existing sequence number in a directory
6091 * and then set the in-memory index_cnt variable to reflect
6092 * free sequence numbers
6093 */
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006094static int btrfs_set_inode_index_count(struct btrfs_inode *inode)
Josef Bacikaec74772008-07-24 12:12:38 -04006095{
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006096 struct btrfs_root *root = inode->root;
Josef Bacikaec74772008-07-24 12:12:38 -04006097 struct btrfs_key key, found_key;
6098 struct btrfs_path *path;
6099 struct extent_buffer *leaf;
6100 int ret;
6101
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006102 key.objectid = btrfs_ino(inode);
David Sterba962a2982014-06-04 18:41:45 +02006103 key.type = BTRFS_DIR_INDEX_KEY;
Josef Bacikaec74772008-07-24 12:12:38 -04006104 key.offset = (u64)-1;
6105
6106 path = btrfs_alloc_path();
6107 if (!path)
6108 return -ENOMEM;
6109
6110 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6111 if (ret < 0)
6112 goto out;
6113 /* FIXME: we should be able to handle this */
6114 if (ret == 0)
6115 goto out;
6116 ret = 0;
6117
6118 /*
6119 * MAGIC NUMBER EXPLANATION:
6120 * since we search a directory based on f_pos we have to start at 2
6121 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
6122 * else has to start at 2
6123 */
6124 if (path->slots[0] == 0) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006125 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006126 goto out;
6127 }
6128
6129 path->slots[0]--;
6130
6131 leaf = path->nodes[0];
6132 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6133
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006134 if (found_key.objectid != btrfs_ino(inode) ||
David Sterba962a2982014-06-04 18:41:45 +02006135 found_key.type != BTRFS_DIR_INDEX_KEY) {
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006136 inode->index_cnt = 2;
Josef Bacikaec74772008-07-24 12:12:38 -04006137 goto out;
6138 }
6139
Nikolay Borisov4c5706552017-02-20 13:50:32 +02006140 inode->index_cnt = found_key.offset + 1;
Josef Bacikaec74772008-07-24 12:12:38 -04006141out:
6142 btrfs_free_path(path);
6143 return ret;
6144}
6145
Chris Masond352ac62008-09-29 15:18:18 -04006146/*
6147 * helper to find a free sequence number in a given directory. This current
6148 * code is very simple, later versions will do smarter things in the btree
6149 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02006150int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04006151{
6152 int ret = 0;
6153
Nikolay Borisov877574e2017-02-20 13:50:33 +02006154 if (dir->index_cnt == (u64)-1) {
6155 ret = btrfs_inode_delayed_dir_index_count(dir);
Miao Xie16cdcec2011-04-22 18:12:22 +08006156 if (ret) {
6157 ret = btrfs_set_inode_index_count(dir);
6158 if (ret)
6159 return ret;
6160 }
Josef Bacikaec74772008-07-24 12:12:38 -04006161 }
6162
Nikolay Borisov877574e2017-02-20 13:50:33 +02006163 *index = dir->index_cnt;
6164 dir->index_cnt++;
Josef Bacikaec74772008-07-24 12:12:38 -04006165
6166 return ret;
6167}
6168
Chris Masonb0d5d102014-09-08 13:08:51 -07006169static int btrfs_insert_inode_locked(struct inode *inode)
6170{
6171 struct btrfs_iget_args args;
6172 args.location = &BTRFS_I(inode)->location;
6173 args.root = BTRFS_I(inode)->root;
6174
6175 return insert_inode_locked4(inode,
6176 btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root),
6177 btrfs_find_actor, &args);
6178}
6179
Chris Mason39279cc2007-06-12 06:35:45 -04006180static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
6181 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04006182 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05006183 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04006184 u64 ref_objectid, u64 objectid,
6185 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04006186{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006187 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39279cc2007-06-12 06:35:45 -04006188 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006189 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04006190 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04006191 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05006192 struct btrfs_inode_ref *ref;
6193 struct btrfs_key key[2];
6194 u32 sizes[2];
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006195 int nitems = name ? 2 : 1;
Chris Mason9c583092008-01-29 15:15:18 -05006196 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006197 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006198
Chris Mason5f39d392007-10-15 16:14:19 -04006199 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006200 if (!path)
6201 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04006202
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006203 inode = new_inode(fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006204 if (!inode) {
6205 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04006206 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006207 }
Chris Mason39279cc2007-06-12 06:35:45 -04006208
Li Zefan581bb052011-04-20 10:06:11 +08006209 /*
Filipe Manana5762b5c2014-08-01 00:10:32 +01006210 * O_TMPFILE, set link count to 0, so that after this point,
6211 * we fill in an inode item with the correct link count.
6212 */
6213 if (!name)
6214 set_nlink(inode, 0);
6215
6216 /*
Li Zefan581bb052011-04-20 10:06:11 +08006217 * we have to initialize this early, so we can reclaim the inode
6218 * number if we fail afterwards in this function.
6219 */
6220 inode->i_ino = objectid;
6221
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006222 if (dir && name) {
liubo1abe9b82011-03-24 11:18:59 +00006223 trace_btrfs_inode_request(dir);
6224
Nikolay Borisov877574e2017-02-20 13:50:33 +02006225 ret = btrfs_set_inode_index(BTRFS_I(dir), index);
Shen Feng09771432009-04-02 16:46:06 -04006226 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00006227 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006228 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04006229 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04006230 }
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006231 } else if (dir) {
6232 *index = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04006233 }
6234 /*
6235 * index_cnt is ignored for everything but a dir,
6236 * btrfs_get_inode_index_count has an explanation for the magic
6237 * number
6238 */
6239 BTRFS_I(inode)->index_cnt = 2;
Miao Xie67de1172013-12-26 13:07:06 +08006240 BTRFS_I(inode)->dir_index = *index;
Chris Mason39279cc2007-06-12 06:35:45 -04006241 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04006242 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00006243 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04006244
Josef Bacik5dc562c2012-08-17 13:14:17 -04006245 /*
6246 * We could have gotten an inode number from somebody who was fsynced
6247 * and then removed in this same transaction, so let's just set full
6248 * sync since it will be a full sync anyway and this will blow away the
6249 * old info in the log.
6250 */
6251 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
6252
Chris Mason9c583092008-01-29 15:15:18 -05006253 key[0].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006254 key[0].type = BTRFS_INODE_ITEM_KEY;
Chris Mason9c583092008-01-29 15:15:18 -05006255 key[0].offset = 0;
6256
Chris Mason9c583092008-01-29 15:15:18 -05006257 sizes[0] = sizeof(struct btrfs_inode_item);
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006258
6259 if (name) {
6260 /*
6261 * Start new inodes with an inode_ref. This is slightly more
6262 * efficient for small numbers of hard links since they will
6263 * be packed into one item. Extended refs will kick in if we
6264 * add more hard links than can fit in the ref item.
6265 */
6266 key[1].objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +02006267 key[1].type = BTRFS_INODE_REF_KEY;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006268 key[1].offset = ref_objectid;
6269
6270 sizes[1] = name_len + sizeof(*ref);
6271 }
Chris Mason9c583092008-01-29 15:15:18 -05006272
Chris Masonb0d5d102014-09-08 13:08:51 -07006273 location = &BTRFS_I(inode)->location;
6274 location->objectid = objectid;
6275 location->offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02006276 location->type = BTRFS_INODE_ITEM_KEY;
Chris Masonb0d5d102014-09-08 13:08:51 -07006277
6278 ret = btrfs_insert_inode_locked(inode);
6279 if (ret < 0)
6280 goto fail;
6281
Chris Masonb9473432009-03-13 11:00:37 -04006282 path->leave_spinning = 1;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006283 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
Chris Mason9c583092008-01-29 15:15:18 -05006284 if (ret != 0)
Chris Masonb0d5d102014-09-08 13:08:51 -07006285 goto fail_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04006286
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03006287 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006288 inode_set_bytes(inode, 0);
chandan r9cc97d62012-07-04 12:48:07 +05306289
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006290 inode->i_mtime = current_time(inode);
chandan r9cc97d62012-07-04 12:48:07 +05306291 inode->i_atime = inode->i_mtime;
6292 inode->i_ctime = inode->i_mtime;
6293 BTRFS_I(inode)->i_otime = inode->i_mtime;
6294
Chris Mason5f39d392007-10-15 16:14:19 -04006295 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
6296 struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01006297 memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item,
Li Zefan293f7e02012-07-10 00:58:58 -06006298 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04006299 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05006300
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006301 if (name) {
6302 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
6303 struct btrfs_inode_ref);
6304 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
6305 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
6306 ptr = (unsigned long)(ref + 1);
6307 write_extent_buffer(path->nodes[0], name, ptr, name_len);
6308 }
Chris Mason9c583092008-01-29 15:15:18 -05006309
Chris Mason5f39d392007-10-15 16:14:19 -04006310 btrfs_mark_buffer_dirty(path->nodes[0]);
6311 btrfs_free_path(path);
6312
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006313 btrfs_inherit_iflags(inode, dir);
6314
Al Viro569254b2011-07-24 17:08:40 -04006315 if (S_ISREG(mode)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006316 if (btrfs_test_opt(fs_info, NODATASUM))
Chris Mason94272162009-07-02 12:26:06 -04006317 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006318 if (btrfs_test_opt(fs_info, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05006319 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
6320 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04006321 }
6322
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006323 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00006324
6325 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04006326 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00006327
Alexander Block8ea05e32012-07-25 17:35:53 +02006328 btrfs_update_root_times(trans, root);
6329
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006330 ret = btrfs_inode_inherit_props(trans, inode, dir);
6331 if (ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006332 btrfs_err(fs_info,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006333 "error inheriting props for ino %llu (root %llu): %d",
David Sterbaf85b7372017-01-20 14:54:07 +01006334 btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret);
Filipe David Borba Manana63541922014-01-07 11:47:46 +00006335
Chris Mason39279cc2007-06-12 06:35:45 -04006336 return inode;
Chris Masonb0d5d102014-09-08 13:08:51 -07006337
6338fail_unlock:
6339 unlock_new_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006340fail:
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006341 if (dir && name)
Josef Bacikaec74772008-07-24 12:12:38 -04006342 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04006343 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04006344 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006345 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006346}
6347
6348static inline u8 btrfs_inode_type(struct inode *inode)
6349{
6350 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
6351}
6352
Chris Masond352ac62008-09-29 15:18:18 -04006353/*
6354 * utility function to add 'inode' into 'parent_inode' with
6355 * a give name and a given sequence number.
6356 * if 'add_backref' is true, also insert a backref from the
6357 * inode to the parent directory.
6358 */
Chris Masone02119d2008-09-05 16:13:11 -04006359int btrfs_add_link(struct btrfs_trans_handle *trans,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006360 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04006361 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006362{
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006363 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006364 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006365 struct btrfs_key key;
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006366 struct btrfs_root *root = parent_inode->root;
6367 u64 ino = btrfs_ino(inode);
6368 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04006369
Li Zefan33345d012011-04-20 10:31:50 +08006370 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006371 memcpy(&key, &inode->root->root_key, sizeof(key));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006372 } else {
Li Zefan33345d012011-04-20 10:31:50 +08006373 key.objectid = ino;
David Sterba962a2982014-06-04 18:41:45 +02006374 key.type = BTRFS_INODE_ITEM_KEY;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006375 key.offset = 0;
6376 }
Chris Mason39279cc2007-06-12 06:35:45 -04006377
Li Zefan33345d012011-04-20 10:31:50 +08006378 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006379 ret = btrfs_add_root_ref(trans, fs_info, key.objectid,
6380 root->root_key.objectid, parent_ino,
6381 index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006382 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08006383 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
6384 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006385 }
6386
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006387 /* Nothing to clean up yet */
6388 if (ret)
6389 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006390
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006391 ret = btrfs_insert_dir_item(trans, root, name, name_len,
6392 parent_inode, &key,
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006393 btrfs_inode_type(&inode->vfs_inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05006394 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006395 goto fail_dir_item;
6396 else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006397 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006398 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006399 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006400
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006401 btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size +
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006402 name_len * 2);
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006403 inode_inc_iversion(&parent_inode->vfs_inode);
6404 parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime =
6405 current_time(&parent_inode->vfs_inode);
6406 ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006407 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04006408 btrfs_abort_transaction(trans, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006409 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05006410
6411fail_dir_item:
6412 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
6413 u64 local_index;
6414 int err;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006415 err = btrfs_del_root_ref(trans, fs_info, key.objectid,
6416 root->root_key.objectid, parent_ino,
6417 &local_index, name, name_len);
Chris Masonfe66a052012-02-20 08:40:56 -05006418
6419 } else if (add_backref) {
6420 u64 local_index;
6421 int err;
6422
6423 err = btrfs_del_inode_ref(trans, root, name, name_len,
6424 ino, parent_ino, &local_index);
6425 }
6426 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006427}
6428
6429static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006430 struct btrfs_inode *dir, struct dentry *dentry,
6431 struct btrfs_inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04006432{
Josef Bacika1b075d2010-11-19 20:36:11 +00006433 int err = btrfs_add_link(trans, dir, inode,
6434 dentry->d_name.name, dentry->d_name.len,
6435 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006436 if (err > 0)
6437 err = -EEXIST;
6438 return err;
6439}
6440
Josef Bacik618e21d2007-07-11 10:18:17 -04006441static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04006442 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04006443{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006444 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Josef Bacik618e21d2007-07-11 10:18:17 -04006445 struct btrfs_trans_handle *trans;
6446 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006447 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04006448 int err;
6449 int drop_inode = 0;
6450 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006451 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04006452
Josef Bacik9ed74f22009-09-11 16:12:44 -04006453 /*
6454 * 2 for inode item and ref
6455 * 2 for dir items
6456 * 1 for xattr if selinux is on
6457 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006458 trans = btrfs_start_transaction(root, 5);
6459 if (IS_ERR(trans))
6460 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006461
Li Zefan581bb052011-04-20 10:06:11 +08006462 err = btrfs_find_free_ino(root, &objectid);
6463 if (err)
6464 goto out_unlock;
6465
Josef Bacikaec74772008-07-24 12:12:38 -04006466 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006467 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6468 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006469 if (IS_ERR(inode)) {
6470 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006471 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006472 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006473
Casey Schauflerad19db72011-12-15 10:09:07 -05006474 /*
6475 * If the active LSM wants to access the inode during
6476 * d_instantiate it needs these. Smack checks to see
6477 * if the filesystem supports xattrs by looking at the
6478 * ops vector.
6479 */
Casey Schauflerad19db72011-12-15 10:09:07 -05006480 inode->i_op = &btrfs_special_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006481 init_special_inode(inode, inode->i_mode, rdev);
6482
6483 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik618e21d2007-07-11 10:18:17 -04006484 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006485 goto out_unlock_inode;
6486
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006487 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6488 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -07006489 if (err) {
6490 goto out_unlock_inode;
6491 } else {
Yan1b4ab1b2007-08-29 09:11:44 -04006492 btrfs_update_inode(trans, root, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006493 unlock_new_inode(inode);
Al Viro08c422c2011-12-23 07:58:13 -05006494 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04006495 }
Chris Masonb0d5d102014-09-08 13:08:51 -07006496
Josef Bacik618e21d2007-07-11 10:18:17 -04006497out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006498 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006499 btrfs_balance_delayed_items(fs_info);
6500 btrfs_btree_balance_dirty(fs_info);
Josef Bacik618e21d2007-07-11 10:18:17 -04006501 if (drop_inode) {
6502 inode_dec_link_count(inode);
6503 iput(inode);
6504 }
Josef Bacik618e21d2007-07-11 10:18:17 -04006505 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006506
6507out_unlock_inode:
6508 drop_inode = 1;
6509 unlock_new_inode(inode);
6510 goto out_unlock;
6511
Josef Bacik618e21d2007-07-11 10:18:17 -04006512}
6513
Chris Mason39279cc2007-06-12 06:35:45 -04006514static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04006515 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04006516{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006517 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04006518 struct btrfs_trans_handle *trans;
6519 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05006520 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006521 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006522 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04006523 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006524 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006525
Josef Bacik9ed74f22009-09-11 16:12:44 -04006526 /*
6527 * 2 for inode item and ref
6528 * 2 for dir items
6529 * 1 for xattr if selinux is on
6530 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006531 trans = btrfs_start_transaction(root, 5);
6532 if (IS_ERR(trans))
6533 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006534
Li Zefan581bb052011-04-20 10:06:11 +08006535 err = btrfs_find_free_ino(root, &objectid);
6536 if (err)
6537 goto out_unlock;
6538
Josef Bacikaec74772008-07-24 12:12:38 -04006539 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006540 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6541 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006542 if (IS_ERR(inode)) {
6543 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006544 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04006545 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006546 drop_inode_on_err = 1;
Casey Schauflerad19db72011-12-15 10:09:07 -05006547 /*
6548 * If the active LSM wants to access the inode during
6549 * d_instantiate it needs these. Smack checks to see
6550 * if the filesystem supports xattrs by looking at the
6551 * ops vector.
6552 */
6553 inode->i_fop = &btrfs_file_operations;
6554 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -07006555 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006556
6557 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
6558 if (err)
6559 goto out_unlock_inode;
6560
6561 err = btrfs_update_inode(trans, root, inode);
6562 if (err)
6563 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -05006564
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006565 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6566 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006567 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006568 goto out_unlock_inode;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006569
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006570 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonb0d5d102014-09-08 13:08:51 -07006571 unlock_new_inode(inode);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006572 d_instantiate(dentry, inode);
6573
Chris Mason39279cc2007-06-12 06:35:45 -04006574out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006575 btrfs_end_transaction(trans);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00006576 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006577 inode_dec_link_count(inode);
6578 iput(inode);
6579 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006580 btrfs_balance_delayed_items(fs_info);
6581 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006582 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006583
6584out_unlock_inode:
6585 unlock_new_inode(inode);
6586 goto out_unlock;
6587
Chris Mason39279cc2007-06-12 06:35:45 -04006588}
6589
6590static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
6591 struct dentry *dentry)
6592{
Filipe Manana271dba42016-01-05 16:24:05 +00006593 struct btrfs_trans_handle *trans = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006594 struct btrfs_root *root = BTRFS_I(dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00006595 struct inode *inode = d_inode(old_dentry);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006596 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006597 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04006598 int err;
6599 int drop_inode = 0;
6600
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006601 /* do not allow sys_link's with other subvols of the same device */
6602 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00006603 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00006604
Mark Fashehf1863732012-08-08 11:32:27 -07006605 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00006606 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006607
Nikolay Borisov877574e2017-02-20 13:50:33 +02006608 err = btrfs_set_inode_index(BTRFS_I(dir), &index);
Josef Bacikaec74772008-07-24 12:12:38 -04006609 if (err)
6610 goto fail;
6611
Yan, Zhenga22285a2010-05-16 10:48:46 -04006612 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00006613 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04006614 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00006615 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04006616 */
Miao Xie7e6b6462011-02-18 09:21:17 +00006617 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006618 if (IS_ERR(trans)) {
6619 err = PTR_ERR(trans);
Filipe Manana271dba42016-01-05 16:24:05 +00006620 trans = NULL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04006621 goto fail;
6622 }
Chris Mason5f39d392007-10-15 16:14:19 -04006623
Miao Xie67de1172013-12-26 13:07:06 +08006624 /* There are several dir indexes for this inode, clear the cache. */
6625 BTRFS_I(inode)->dir_index = 0ULL;
Zach Brown8b558c52013-10-16 12:10:34 -07006626 inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04006627 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07006628 inode->i_ctime = current_time(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04006629 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04006630 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04006631
Nikolay Borisovcef415a2017-02-20 13:51:09 +02006632 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode),
6633 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04006634
Yan, Zhenga5719522009-09-24 09:17:31 -04006635 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04006636 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04006637 } else {
Al Viro10d9f302011-07-16 23:09:10 -04006638 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04006639 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006640 if (err)
6641 goto fail;
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006642 if (inode->i_nlink == 1) {
6643 /*
6644 * If new hard link count is 1, it's a file created
6645 * with open(2) O_TMPFILE flag.
6646 */
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02006647 err = btrfs_orphan_del(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +01006648 if (err)
6649 goto fail;
6650 }
Al Viro08c422c2011-12-23 07:58:13 -05006651 d_instantiate(dentry, inode);
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02006652 btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04006653 }
Chris Mason39279cc2007-06-12 06:35:45 -04006654
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006655 btrfs_balance_delayed_items(fs_info);
Chris Mason1832a6d2007-12-21 16:27:21 -05006656fail:
Filipe Manana271dba42016-01-05 16:24:05 +00006657 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006658 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006659 if (drop_inode) {
6660 inode_dec_link_count(inode);
6661 iput(inode);
6662 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006663 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006664 return err;
6665}
6666
Al Viro18bb1db2011-07-26 01:41:39 -04006667static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04006668{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006669 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Masonb9d86662008-05-02 16:13:49 -04006670 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006671 struct btrfs_trans_handle *trans;
6672 struct btrfs_root *root = BTRFS_I(dir)->root;
6673 int err = 0;
6674 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04006675 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006676 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006677
Josef Bacik9ed74f22009-09-11 16:12:44 -04006678 /*
6679 * 2 items for inode and ref
6680 * 2 items for dir items
6681 * 1 for xattr if selinux is on
6682 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006683 trans = btrfs_start_transaction(root, 5);
6684 if (IS_ERR(trans))
6685 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04006686
Li Zefan581bb052011-04-20 10:06:11 +08006687 err = btrfs_find_free_ino(root, &objectid);
6688 if (err)
6689 goto out_fail;
6690
Josef Bacikaec74772008-07-24 12:12:38 -04006691 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +01006692 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid,
6693 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006694 if (IS_ERR(inode)) {
6695 err = PTR_ERR(inode);
6696 goto out_fail;
6697 }
Chris Mason5f39d392007-10-15 16:14:19 -04006698
Chris Mason39279cc2007-06-12 06:35:45 -04006699 drop_on_err = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -07006700 /* these must be set before we unlock the inode */
6701 inode->i_op = &btrfs_dir_inode_operations;
6702 inode->i_fop = &btrfs_dir_file_operations;
Josef Bacik33268ea2008-07-24 12:16:36 -04006703
Eric Paris2a7dba32011-02-01 11:05:39 -05006704 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04006705 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006706 goto out_fail_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006707
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02006708 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006709 err = btrfs_update_inode(trans, root, inode);
6710 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006711 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006712
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02006713 err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode),
6714 dentry->d_name.name,
6715 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006716 if (err)
Chris Masonb0d5d102014-09-08 13:08:51 -07006717 goto out_fail_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04006718
Chris Mason39279cc2007-06-12 06:35:45 -04006719 d_instantiate(dentry, inode);
Chris Masonb0d5d102014-09-08 13:08:51 -07006720 /*
6721 * mkdir is special. We're unlocking after we call d_instantiate
6722 * to avoid a race with nfsd calling d_instantiate.
6723 */
6724 unlock_new_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006725 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006726
6727out_fail:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04006728 btrfs_end_transaction(trans);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006729 if (drop_on_err) {
6730 inode_dec_link_count(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006731 iput(inode);
Wang Shilongc7cfb8a2014-12-24 14:45:30 +08006732 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006733 btrfs_balance_delayed_items(fs_info);
6734 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -04006735 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -07006736
6737out_fail_inode:
6738 unlock_new_inode(inode);
6739 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04006740}
6741
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006742/* Find next extent map of a given extent map, caller needs to ensure locks */
6743static struct extent_map *next_extent_map(struct extent_map *em)
6744{
6745 struct rb_node *next;
6746
6747 next = rb_next(&em->rb_node);
6748 if (!next)
6749 return NULL;
6750 return container_of(next, struct extent_map, rb_node);
6751}
6752
6753static struct extent_map *prev_extent_map(struct extent_map *em)
6754{
6755 struct rb_node *prev;
6756
6757 prev = rb_prev(&em->rb_node);
6758 if (!prev)
6759 return NULL;
6760 return container_of(prev, struct extent_map, rb_node);
6761}
6762
Chris Masond352ac62008-09-29 15:18:18 -04006763/* helper for btfs_get_extent. Given an existing extent in the tree,
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006764 * the existing extent is the nearest extent to map_start,
Chris Masond352ac62008-09-29 15:18:18 -04006765 * and an extent that you want to insert, deal with overlap and insert
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006766 * the best fitted new extent into the tree.
Chris Masond352ac62008-09-29 15:18:18 -04006767 */
Chris Mason3b951512008-04-17 11:29:12 -04006768static int merge_extent_mapping(struct extent_map_tree *em_tree,
6769 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006770 struct extent_map *em,
Qu Wenruo51f395a2014-08-08 13:06:20 +08006771 u64 map_start)
Chris Mason3b951512008-04-17 11:29:12 -04006772{
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006773 struct extent_map *prev;
6774 struct extent_map *next;
6775 u64 start;
6776 u64 end;
Chris Mason3b951512008-04-17 11:29:12 -04006777 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006778
Chris Masone6dcd2d2008-07-17 12:53:50 -04006779 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08006780
6781 if (existing->start > map_start) {
6782 next = existing;
6783 prev = prev_extent_map(next);
6784 } else {
6785 prev = existing;
6786 next = next_extent_map(prev);
6787 }
6788
6789 start = prev ? extent_map_end(prev) : em->start;
6790 start = max_t(u64, start, em->start);
6791 end = next ? next->start : extent_map_end(em);
6792 end = min_t(u64, end, extent_map_end(em));
6793 start_diff = start - em->start;
6794 em->start = start;
6795 em->len = end - start;
Chris Masonc8b97812008-10-29 14:49:59 -04006796 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6797 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006798 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006799 em->block_len -= start_diff;
6800 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006801 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006802}
6803
Chris Masonc8b97812008-10-29 14:49:59 -04006804static noinline int uncompress_inline(struct btrfs_path *path,
Byongho Leee40da0e2015-05-19 23:46:45 +09006805 struct page *page,
Chris Masonc8b97812008-10-29 14:49:59 -04006806 size_t pg_offset, u64 extent_offset,
6807 struct btrfs_file_extent_item *item)
6808{
6809 int ret;
6810 struct extent_buffer *leaf = path->nodes[0];
6811 char *tmp;
6812 size_t max_size;
6813 unsigned long inline_size;
6814 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006815 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006816
6817 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006818 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006819 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6820 inline_size = btrfs_file_extent_inline_item_len(leaf,
Ross Kirkdd3cc162013-09-16 15:58:09 +01006821 btrfs_item_nr(path->slots[0]));
Chris Masonc8b97812008-10-29 14:49:59 -04006822 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006823 if (!tmp)
6824 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006825 ptr = btrfs_file_extent_inline_start(item);
6826
6827 read_extent_buffer(leaf, tmp, ptr, inline_size);
6828
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006829 max_size = min_t(unsigned long, PAGE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006830 ret = btrfs_decompress(compress_type, tmp, page,
6831 extent_offset, inline_size, max_size);
Zygo Blaxelle1699d22017-03-10 16:45:44 -05006832
6833 /*
6834 * decompression code contains a memset to fill in any space between the end
6835 * of the uncompressed data and the end of max_size in case the decompressed
6836 * data ends up shorter than ram_bytes. That doesn't cover the hole between
6837 * the end of an inline extent and the beginning of the next block, so we
6838 * cover that region here.
6839 */
6840
6841 if (max_size + pg_offset < PAGE_SIZE) {
6842 char *map = kmap(page);
6843 memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset);
6844 kunmap(page);
6845 }
Chris Masonc8b97812008-10-29 14:49:59 -04006846 kfree(tmp);
Zach Brown166ae5a2014-05-09 17:15:10 -04006847 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -04006848}
6849
Chris Masond352ac62008-09-29 15:18:18 -04006850/*
6851 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006852 * the ugly parts come from merging extents from the disk with the in-ram
6853 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006854 * where the in-ram extents might be locked pending data=ordered completion.
6855 *
6856 * This also copies inline extents directly into the page.
6857 */
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006858struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
6859 struct page *page,
6860 size_t pg_offset, u64 start, u64 len,
6861 int create)
Chris Masona52d9a82007-08-27 16:49:44 -04006862{
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006863 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Masona52d9a82007-08-27 16:49:44 -04006864 int ret;
6865 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006866 u64 extent_start = 0;
6867 u64 extent_end = 0;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006868 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006869 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006870 struct btrfs_path *path = NULL;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006871 struct btrfs_root *root = inode->root;
Chris Masona52d9a82007-08-27 16:49:44 -04006872 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006873 struct extent_buffer *leaf;
6874 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006875 struct extent_map *em = NULL;
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006876 struct extent_map_tree *em_tree = &inode->extent_tree;
6877 struct extent_io_tree *io_tree = &inode->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006878 struct btrfs_trans_handle *trans = NULL;
Filipe Manana7ffbb592014-06-09 03:48:05 +01006879 const bool new_inline = !page || create;
Chris Masona52d9a82007-08-27 16:49:44 -04006880
Chris Masona52d9a82007-08-27 16:49:44 -04006881again:
Chris Mason890871b2009-09-02 16:24:52 -04006882 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006883 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006884 if (em)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006885 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006886 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006887
Chris Masona52d9a82007-08-27 16:49:44 -04006888 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006889 if (em->start > start || em->start + em->len <= start)
6890 free_extent_map(em);
6891 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006892 free_extent_map(em);
6893 else
6894 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006895 }
David Sterba172ddd62011-04-21 00:48:27 +02006896 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006897 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006898 err = -ENOMEM;
6899 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006900 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006901 em->bdev = fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006902 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006903 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006904 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006905 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006906
6907 if (!path) {
6908 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006909 if (!path) {
6910 err = -ENOMEM;
6911 goto out;
6912 }
6913 /*
6914 * Chances are we'll be called again, so go ahead and do
6915 * readahead
6916 */
David Sterbae4058b52015-11-27 16:31:35 +01006917 path->reada = READA_FORWARD;
Chris Masonf4219502008-07-22 11:18:09 -04006918 }
6919
Chris Mason179e29e2007-11-01 11:28:41 -04006920 ret = btrfs_lookup_file_extent(trans, root, path,
6921 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006922 if (ret < 0) {
6923 err = ret;
6924 goto out;
6925 }
6926
6927 if (ret != 0) {
6928 if (path->slots[0] == 0)
6929 goto not_found;
6930 path->slots[0]--;
6931 }
6932
Chris Mason5f39d392007-10-15 16:14:19 -04006933 leaf = path->nodes[0];
6934 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006935 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006936 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006937 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02006938 found_type = found_key.type;
Chris Mason5f39d392007-10-15 16:14:19 -04006939 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006940 found_type != BTRFS_EXTENT_DATA_KEY) {
Josef Bacik25a50342013-10-14 12:08:38 -04006941 /*
6942 * If we backup past the first extent we want to move forward
6943 * and see if there is an extent in front of us, otherwise we'll
6944 * say there is a hole for our whole search range which can
6945 * cause problems.
6946 */
6947 extent_end = start;
6948 goto next;
Chris Masona52d9a82007-08-27 16:49:44 -04006949 }
6950
Chris Mason5f39d392007-10-15 16:14:19 -04006951 found_type = btrfs_file_extent_type(leaf, item);
6952 extent_start = found_key.offset;
Yan Zhengd899e052008-10-30 14:25:28 -04006953 if (found_type == BTRFS_FILE_EXTENT_REG ||
6954 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006955 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006956 btrfs_file_extent_num_bytes(leaf, item);
Liu Bo09ed2f12017-03-10 11:09:48 -08006957
6958 trace_btrfs_get_extent_show_fi_regular(inode, leaf, item,
6959 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006960 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6961 size_t size;
Chris Mason514ac8a2014-01-03 21:07:00 -08006962 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Jeff Mahoneyda170662016-06-15 09:22:56 -04006963 extent_end = ALIGN(extent_start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006964 fs_info->sectorsize);
Liu Bo09ed2f12017-03-10 11:09:48 -08006965
6966 trace_btrfs_get_extent_show_fi_inline(inode, leaf, item,
6967 path->slots[0],
6968 extent_start);
Yan Zheng9036c102008-10-30 14:19:41 -04006969 }
Josef Bacik25a50342013-10-14 12:08:38 -04006970next:
Yan Zheng9036c102008-10-30 14:19:41 -04006971 if (start >= extent_end) {
6972 path->slots[0]++;
6973 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6974 ret = btrfs_next_leaf(root, path);
6975 if (ret < 0) {
6976 err = ret;
6977 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006978 }
Yan Zheng9036c102008-10-30 14:19:41 -04006979 if (ret > 0)
6980 goto not_found;
6981 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006982 }
Yan Zheng9036c102008-10-30 14:19:41 -04006983 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6984 if (found_key.objectid != objectid ||
6985 found_key.type != BTRFS_EXTENT_DATA_KEY)
6986 goto not_found;
6987 if (start + len <= found_key.offset)
6988 goto not_found;
Wang Shilonge2eca692014-07-17 11:44:14 +08006989 if (start > found_key.offset)
6990 goto next;
Yan Zheng9036c102008-10-30 14:19:41 -04006991 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006992 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006993 em->len = found_key.offset - start;
6994 goto not_found_em;
6995 }
6996
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02006997 btrfs_extent_item_to_extent_map(inode, path, item,
Nikolay Borisov9cdc5122017-02-20 13:51:02 +02006998 new_inline, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01006999
Yan Zhengd899e052008-10-30 14:25:28 -04007000 if (found_type == BTRFS_FILE_EXTENT_REG ||
7001 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04007002 goto insert;
7003 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04007004 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04007005 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04007006 size_t size;
7007 size_t extent_offset;
7008 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04007009
Filipe Manana7ffbb592014-06-09 03:48:05 +01007010 if (new_inline)
Yan689f9342007-10-29 11:41:07 -04007011 goto out;
Yan689f9342007-10-29 11:41:07 -04007012
Chris Mason514ac8a2014-01-03 21:07:00 -08007013 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
Yan Zheng9036c102008-10-30 14:19:41 -04007014 extent_offset = page_offset(page) + pg_offset - extent_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007015 copy_size = min_t(u64, PAGE_SIZE - pg_offset,
7016 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04007017 em->start = extent_start + extent_offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007018 em->len = ALIGN(copy_size, fs_info->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05007019 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04007020 em->orig_start = em->start;
Yan689f9342007-10-29 11:41:07 -04007021 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04007022 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08007023 if (btrfs_file_extent_compression(leaf, item) !=
7024 BTRFS_COMPRESS_NONE) {
Byongho Leee40da0e2015-05-19 23:46:45 +09007025 ret = uncompress_inline(path, page, pg_offset,
Chris Masonc8b97812008-10-29 14:49:59 -04007026 extent_offset, item);
Zach Brown166ae5a2014-05-09 17:15:10 -04007027 if (ret) {
7028 err = ret;
7029 goto out;
7030 }
Chris Masonc8b97812008-10-29 14:49:59 -04007031 } else {
7032 map = kmap(page);
7033 read_extent_buffer(leaf, map + pg_offset, ptr,
7034 copy_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007035 if (pg_offset + copy_size < PAGE_SIZE) {
Chris Mason93c82d52009-09-11 12:36:29 -04007036 memset(map + pg_offset + copy_size, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007037 PAGE_SIZE - pg_offset -
Chris Mason93c82d52009-09-11 12:36:29 -04007038 copy_size);
7039 }
Chris Masonc8b97812008-10-29 14:49:59 -04007040 kunmap(page);
7041 }
Chris Mason179e29e2007-11-01 11:28:41 -04007042 flush_dcache_page(page);
7043 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01007044 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04007045 if (!trans) {
7046 kunmap(page);
7047 free_extent_map(em);
7048 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04007049
David Sterbab3b4aa72011-04-21 01:20:15 +02007050 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04007051 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04007052
Tsutomu Itoh3612b492011-01-25 02:51:38 +00007053 if (IS_ERR(trans))
7054 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04007055 goto again;
7056 }
Chris Masonc8b97812008-10-29 14:49:59 -04007057 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05007058 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04007059 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04007060 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04007061 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04007062 }
Chris Masond1310b22008-01-24 16:13:08 -05007063 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00007064 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04007065 goto insert;
Chris Masona52d9a82007-08-27 16:49:44 -04007066 }
7067not_found:
7068 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04007069 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05007070 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04007071not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04007072 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04007073 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04007074insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02007075 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05007076 if (em->start > start || extent_map_end(em) <= start) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007077 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007078 "bad extent! em: [%llu %llu] passed [%llu %llu]",
7079 em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04007080 err = -EIO;
7081 goto out;
7082 }
Chris Masond1310b22008-01-24 16:13:08 -05007083
7084 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04007085 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007086 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04007087 /* it is possible that someone inserted the extent into the tree
7088 * while we had the lock dropped. It is also possible that
7089 * an overlapping map exists in the tree
7090 */
Chris Masona52d9a82007-08-27 16:49:44 -04007091 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04007092 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007093
7094 ret = 0;
7095
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007096 existing = search_extent_mapping(em_tree, start, len);
7097 /*
7098 * existing will always be non-NULL, since there must be
7099 * extent causing the -EEXIST.
7100 */
Chris Mason8dff9c82015-09-19 11:28:25 -07007101 if (existing->start == em->start &&
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007102 extent_map_end(existing) >= extent_map_end(em) &&
Chris Mason8dff9c82015-09-19 11:28:25 -07007103 em->block_start == existing->block_start) {
7104 /*
Omar Sandoval8e2bd3b2016-11-09 15:26:50 -08007105 * The existing extent map already encompasses the
7106 * entire extent map we tried to add.
Chris Mason8dff9c82015-09-19 11:28:25 -07007107 */
7108 free_extent_map(em);
7109 em = existing;
7110 err = 0;
7111
7112 } else if (start >= extent_map_end(existing) ||
Qu Wenruo32be3a12014-09-22 09:13:03 +08007113 start <= existing->start) {
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007114 /*
7115 * The existing extent map is the one nearest to
7116 * the [start, start + len) range which overlaps
7117 */
7118 err = merge_extent_mapping(em_tree, existing,
7119 em, start);
Chris Masone1c4b742008-04-22 13:26:46 -04007120 free_extent_map(existing);
Qu Wenruoe6c4efd2014-09-17 11:53:35 +08007121 if (err) {
Chris Mason3b951512008-04-17 11:29:12 -04007122 free_extent_map(em);
7123 em = NULL;
7124 }
7125 } else {
7126 free_extent_map(em);
7127 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007128 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007129 }
Chris Masona52d9a82007-08-27 16:49:44 -04007130 }
Chris Mason890871b2009-09-02 16:24:52 -04007131 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04007132out:
liubo1abe9b82011-03-24 11:18:59 +00007133
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007134 trace_btrfs_get_extent(root, inode, em);
liubo1abe9b82011-03-24 11:18:59 +00007135
Tsutomu Itoh527afb42015-08-19 14:55:00 +09007136 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04007137 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007138 ret = btrfs_end_transaction(trans);
Chris Masond3977122009-01-05 21:25:51 -05007139 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04007140 err = ret;
7141 }
Chris Masona52d9a82007-08-27 16:49:44 -04007142 if (err) {
7143 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04007144 return ERR_PTR(err);
7145 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007146 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04007147 return em;
7148}
7149
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007150struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
7151 struct page *page,
7152 size_t pg_offset, u64 start, u64 len,
7153 int create)
Chris Masonec29ed52011-02-23 16:23:20 -05007154{
7155 struct extent_map *em;
7156 struct extent_map *hole_em = NULL;
7157 u64 range_start = start;
7158 u64 end;
7159 u64 found;
7160 u64 found_end;
7161 int err = 0;
7162
7163 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
7164 if (IS_ERR(em))
7165 return em;
Dan Carpenter99862772017-04-11 11:57:15 +03007166 /*
7167 * If our em maps to:
7168 * - a hole or
7169 * - a pre-alloc extent,
7170 * there might actually be delalloc bytes behind it.
7171 */
7172 if (em->block_start != EXTENT_MAP_HOLE &&
7173 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7174 return em;
7175 else
7176 hole_em = em;
Chris Masonec29ed52011-02-23 16:23:20 -05007177
7178 /* check to see if we've wrapped (len == -1 or similar) */
7179 end = start + len;
7180 if (end < start)
7181 end = (u64)-1;
7182 else
7183 end -= 1;
7184
7185 em = NULL;
7186
7187 /* ok, we didn't find anything, lets look for delalloc */
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007188 found = count_range_bits(&inode->io_tree, &range_start,
Chris Masonec29ed52011-02-23 16:23:20 -05007189 end, len, EXTENT_DELALLOC, 1);
7190 found_end = range_start + found;
7191 if (found_end < range_start)
7192 found_end = (u64)-1;
7193
7194 /*
7195 * we didn't find anything useful, return
7196 * the original results from get_extent()
7197 */
7198 if (range_start > end || found_end <= start) {
7199 em = hole_em;
7200 hole_em = NULL;
7201 goto out;
7202 }
7203
7204 /* adjust the range_start to make sure it doesn't
7205 * go backwards from the start they passed in
7206 */
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05307207 range_start = max(start, range_start);
Chris Masonec29ed52011-02-23 16:23:20 -05007208 found = found_end - range_start;
7209
7210 if (found > 0) {
7211 u64 hole_start = start;
7212 u64 hole_len = len;
7213
David Sterba172ddd62011-04-21 00:48:27 +02007214 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05007215 if (!em) {
7216 err = -ENOMEM;
7217 goto out;
7218 }
7219 /*
7220 * when btrfs_get_extent can't find anything it
7221 * returns one huge hole
7222 *
7223 * make sure what it found really fits our range, and
7224 * adjust to make sure it is based on the start from
7225 * the caller
7226 */
7227 if (hole_em) {
7228 u64 calc_end = extent_map_end(hole_em);
7229
7230 if (calc_end <= start || (hole_em->start > end)) {
7231 free_extent_map(hole_em);
7232 hole_em = NULL;
7233 } else {
7234 hole_start = max(hole_em->start, start);
7235 hole_len = calc_end - hole_start;
7236 }
7237 }
7238 em->bdev = NULL;
7239 if (hole_em && range_start > hole_start) {
7240 /* our hole starts before our delalloc, so we
7241 * have to return just the parts of the hole
7242 * that go until the delalloc starts
7243 */
7244 em->len = min(hole_len,
7245 range_start - hole_start);
7246 em->start = hole_start;
7247 em->orig_start = hole_start;
7248 /*
7249 * don't adjust block start at all,
7250 * it is fixed at EXTENT_MAP_HOLE
7251 */
7252 em->block_start = hole_em->block_start;
7253 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00007254 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
7255 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05007256 } else {
7257 em->start = range_start;
7258 em->len = found;
7259 em->orig_start = range_start;
7260 em->block_start = EXTENT_MAP_DELALLOC;
7261 em->block_len = found;
7262 }
7263 } else if (hole_em) {
7264 return hole_em;
7265 }
7266out:
7267
7268 free_extent_map(hole_em);
7269 if (err) {
7270 free_extent_map(em);
7271 return ERR_PTR(err);
7272 }
7273 return em;
7274}
7275
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007276static struct extent_map *btrfs_create_dio_extent(struct inode *inode,
7277 const u64 start,
7278 const u64 len,
7279 const u64 orig_start,
7280 const u64 block_start,
7281 const u64 block_len,
7282 const u64 orig_block_len,
7283 const u64 ram_bytes,
7284 const int type)
7285{
7286 struct extent_map *em = NULL;
7287 int ret;
7288
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007289 if (type != BTRFS_ORDERED_NOCOW) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007290 em = create_io_em(inode, start, len, orig_start,
7291 block_start, block_len, orig_block_len,
7292 ram_bytes,
7293 BTRFS_COMPRESS_NONE, /* compress_type */
7294 type);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007295 if (IS_ERR(em))
7296 goto out;
7297 }
7298 ret = btrfs_add_ordered_extent_dio(inode, start, block_start,
7299 len, block_len, type);
7300 if (ret) {
7301 if (em) {
7302 free_extent_map(em);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007303 btrfs_drop_extent_cache(BTRFS_I(inode), start,
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007304 start + len - 1, 0);
7305 }
7306 em = ERR_PTR(ret);
7307 }
7308 out:
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007309
7310 return em;
7311}
7312
Josef Bacik4b46fce2010-05-23 11:00:55 -04007313static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
7314 u64 start, u64 len)
7315{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007316 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007317 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik70c8a912012-10-11 16:54:30 -04007318 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007319 struct btrfs_key ins;
7320 u64 alloc_hint;
7321 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007322
Josef Bacik4b46fce2010-05-23 11:00:55 -04007323 alloc_hint = get_extent_allocation_hint(inode, start, len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007324 ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize,
Jeff Mahoneyda170662016-06-15 09:22:56 -04007325 0, alloc_hint, &ins, 1, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007326 if (ret)
7327 return ERR_PTR(ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007328
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007329 em = btrfs_create_dio_extent(inode, start, ins.offset, start,
7330 ins.objectid, ins.offset, ins.offset,
Liu Bo6288d6e2017-02-21 12:12:58 -08007331 ins.offset, BTRFS_ORDERED_REGULAR);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007332 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007333 if (IS_ERR(em))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007334 btrfs_free_reserved_extent(fs_info, ins.objectid,
7335 ins.offset, 1);
Josef Bacik00361582013-08-14 14:02:47 -04007336
Josef Bacik4b46fce2010-05-23 11:00:55 -04007337 return em;
7338}
7339
Chris Mason46bfbb52010-05-26 11:04:10 -04007340/*
7341 * returns 1 when the nocow is safe, < 1 on error, 0 if the
7342 * block must be cow'd
7343 */
Josef Bacik00361582013-08-14 14:02:47 -04007344noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
Josef Bacik7ee9e442013-06-21 16:37:03 -04007345 u64 *orig_start, u64 *orig_block_len,
7346 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04007347{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007348 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason46bfbb52010-05-26 11:04:10 -04007349 struct btrfs_path *path;
7350 int ret;
7351 struct extent_buffer *leaf;
7352 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b2b7082014-02-27 13:58:05 +08007353 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason46bfbb52010-05-26 11:04:10 -04007354 struct btrfs_file_extent_item *fi;
7355 struct btrfs_key key;
7356 u64 disk_bytenr;
7357 u64 backref_offset;
7358 u64 extent_end;
7359 u64 num_bytes;
7360 int slot;
7361 int found_type;
Josef Bacik7ee9e442013-06-21 16:37:03 -04007362 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
Miao Xiee77751a2013-12-27 21:11:50 +08007363
Chris Mason46bfbb52010-05-26 11:04:10 -04007364 path = btrfs_alloc_path();
7365 if (!path)
7366 return -ENOMEM;
7367
David Sterbaf85b7372017-01-20 14:54:07 +01007368 ret = btrfs_lookup_file_extent(NULL, root, path,
7369 btrfs_ino(BTRFS_I(inode)), offset, 0);
Chris Mason46bfbb52010-05-26 11:04:10 -04007370 if (ret < 0)
7371 goto out;
7372
7373 slot = path->slots[0];
7374 if (ret == 1) {
7375 if (slot == 0) {
7376 /* can't find the item, must cow */
7377 ret = 0;
7378 goto out;
7379 }
7380 slot--;
7381 }
7382 ret = 0;
7383 leaf = path->nodes[0];
7384 btrfs_item_key_to_cpu(leaf, &key, slot);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02007385 if (key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04007386 key.type != BTRFS_EXTENT_DATA_KEY) {
7387 /* not our file or wrong item type, must cow */
7388 goto out;
7389 }
7390
7391 if (key.offset > offset) {
7392 /* Wrong offset, must cow */
7393 goto out;
7394 }
7395
7396 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
7397 found_type = btrfs_file_extent_type(leaf, fi);
7398 if (found_type != BTRFS_FILE_EXTENT_REG &&
7399 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
7400 /* not a regular extent, must cow */
7401 goto out;
7402 }
Josef Bacik7ee9e442013-06-21 16:37:03 -04007403
7404 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
7405 goto out;
7406
Miao Xiee77751a2013-12-27 21:11:50 +08007407 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
7408 if (extent_end <= offset)
7409 goto out;
7410
Chris Mason46bfbb52010-05-26 11:04:10 -04007411 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Josef Bacik7ee9e442013-06-21 16:37:03 -04007412 if (disk_bytenr == 0)
7413 goto out;
7414
7415 if (btrfs_file_extent_compression(leaf, fi) ||
7416 btrfs_file_extent_encryption(leaf, fi) ||
7417 btrfs_file_extent_other_encoding(leaf, fi))
7418 goto out;
7419
Chris Mason46bfbb52010-05-26 11:04:10 -04007420 backref_offset = btrfs_file_extent_offset(leaf, fi);
7421
Josef Bacik7ee9e442013-06-21 16:37:03 -04007422 if (orig_start) {
7423 *orig_start = key.offset - backref_offset;
7424 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
7425 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
7426 }
Josef Bacikeb384b52013-04-24 16:32:55 -04007427
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007428 if (btrfs_extent_readonly(fs_info, disk_bytenr))
Chris Mason46bfbb52010-05-26 11:04:10 -04007429 goto out;
Miao Xie7b2b7082014-02-27 13:58:05 +08007430
7431 num_bytes = min(offset + *len, extent_end) - offset;
7432 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
7433 u64 range_end;
7434
Jeff Mahoneyda170662016-06-15 09:22:56 -04007435 range_end = round_up(offset + num_bytes,
7436 root->fs_info->sectorsize) - 1;
Miao Xie7b2b7082014-02-27 13:58:05 +08007437 ret = test_range_bit(io_tree, offset, range_end,
7438 EXTENT_DELALLOC, 0, NULL);
7439 if (ret) {
7440 ret = -EAGAIN;
7441 goto out;
7442 }
7443 }
7444
Josef Bacik1bda19e2013-10-18 12:10:36 -04007445 btrfs_release_path(path);
Chris Mason46bfbb52010-05-26 11:04:10 -04007446
7447 /*
7448 * look for other files referencing this extent, if we
7449 * find any we must cow
7450 */
Josef Bacik00361582013-08-14 14:02:47 -04007451
Liu Boe4c3b2d2017-01-30 12:25:28 -08007452 ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)),
Josef Bacik00361582013-08-14 14:02:47 -04007453 key.offset - backref_offset, disk_bytenr);
Josef Bacik00361582013-08-14 14:02:47 -04007454 if (ret) {
7455 ret = 0;
7456 goto out;
7457 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007458
7459 /*
7460 * adjust disk_bytenr and num_bytes to cover just the bytes
7461 * in this extent we are about to write. If there
7462 * are any csums in that range we have to cow in order
7463 * to keep the csums correct
7464 */
7465 disk_bytenr += backref_offset;
7466 disk_bytenr += offset - key.offset;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007467 if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes))
7468 goto out;
Chris Mason46bfbb52010-05-26 11:04:10 -04007469 /*
7470 * all of the above have passed, it is safe to overwrite this extent
7471 * without cow
7472 */
Josef Bacikeb384b52013-04-24 16:32:55 -04007473 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04007474 ret = 1;
7475out:
7476 btrfs_free_path(path);
7477 return ret;
7478}
7479
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007480bool btrfs_page_exists_in_range(struct inode *inode, loff_t start, loff_t end)
7481{
7482 struct radix_tree_root *root = &inode->i_mapping->page_tree;
7483 int found = false;
7484 void **pagep = NULL;
7485 struct page *page = NULL;
7486 int start_idx;
7487 int end_idx;
7488
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007489 start_idx = start >> PAGE_SHIFT;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007490
7491 /*
7492 * end is the last byte in the last page. end == start is legal
7493 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007494 end_idx = end >> PAGE_SHIFT;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007495
7496 rcu_read_lock();
7497
7498 /* Most of the code in this while loop is lifted from
7499 * find_get_page. It's been modified to begin searching from a
7500 * page and return just the first page found in that range. If the
7501 * found idx is less than or equal to the end idx then we know that
7502 * a page exists. If no pages are found or if those pages are
7503 * outside of the range then we're fine (yay!) */
7504 while (page == NULL &&
7505 radix_tree_gang_lookup_slot(root, &pagep, NULL, start_idx, 1)) {
7506 page = radix_tree_deref_slot(pagep);
7507 if (unlikely(!page))
7508 break;
7509
7510 if (radix_tree_exception(page)) {
Filipe Manana809f9012014-06-05 13:22:25 +01007511 if (radix_tree_deref_retry(page)) {
7512 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007513 continue;
Filipe Manana809f9012014-06-05 13:22:25 +01007514 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007515 /*
7516 * Otherwise, shmem/tmpfs must be storing a swap entry
7517 * here as an exceptional entry: so return it without
7518 * attempting to raise page count.
7519 */
Filipe Manana6fdef6d2014-06-05 13:22:26 +01007520 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007521 break; /* TODO: Is this relevant for this use case? */
7522 }
7523
Filipe Manana91405152014-06-05 13:22:24 +01007524 if (!page_cache_get_speculative(page)) {
7525 page = NULL;
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007526 continue;
Filipe Manana91405152014-06-05 13:22:24 +01007527 }
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007528
7529 /*
7530 * Has the page moved?
7531 * This is part of the lockless pagecache protocol. See
7532 * include/linux/pagemap.h for details.
7533 */
7534 if (unlikely(page != *pagep)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007535 put_page(page);
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007536 page = NULL;
7537 }
7538 }
7539
7540 if (page) {
7541 if (page->index <= end_idx)
7542 found = true;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007543 put_page(page);
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007544 }
7545
7546 rcu_read_unlock();
7547 return found;
7548}
7549
Josef Bacikeb838e72012-07-31 16:28:48 -04007550static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
7551 struct extent_state **cached_state, int writing)
7552{
7553 struct btrfs_ordered_extent *ordered;
7554 int ret = 0;
7555
7556 while (1) {
7557 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
David Sterbaff13db42015-12-03 14:30:40 +01007558 cached_state);
Josef Bacikeb838e72012-07-31 16:28:48 -04007559 /*
7560 * We're concerned with the entire range that we're going to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04007561 * doing DIO to, so we need to make sure there's no ordered
Josef Bacikeb838e72012-07-31 16:28:48 -04007562 * extents in this range.
7563 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02007564 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart,
Josef Bacikeb838e72012-07-31 16:28:48 -04007565 lockend - lockstart + 1);
7566
7567 /*
7568 * We need to make sure there are no buffered pages in this
7569 * range either, we could have raced between the invalidate in
7570 * generic_file_direct_write and locking the extent. The
7571 * invalidate needs to happen so that reads after a write do not
7572 * get stale data.
7573 */
Alex Gartrellfc4adbf2014-05-20 13:07:56 -07007574 if (!ordered &&
7575 (!writing ||
7576 !btrfs_page_exists_in_range(inode, lockstart, lockend)))
Josef Bacikeb838e72012-07-31 16:28:48 -04007577 break;
7578
7579 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7580 cached_state, GFP_NOFS);
7581
7582 if (ordered) {
Filipe Mananaade77022016-02-18 14:28:55 +00007583 /*
7584 * If we are doing a DIO read and the ordered extent we
7585 * found is for a buffered write, we can not wait for it
7586 * to complete and retry, because if we do so we can
7587 * deadlock with concurrent buffered writes on page
7588 * locks. This happens only if our DIO read covers more
7589 * than one extent map, if at this point has already
7590 * created an ordered extent for a previous extent map
7591 * and locked its range in the inode's io tree, and a
7592 * concurrent write against that previous extent map's
7593 * range and this range started (we unlock the ranges
7594 * in the io tree only when the bios complete and
7595 * buffered writes always lock pages before attempting
7596 * to lock range in the io tree).
7597 */
7598 if (writing ||
7599 test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags))
7600 btrfs_start_ordered_extent(inode, ordered, 1);
7601 else
7602 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007603 btrfs_put_ordered_extent(ordered);
7604 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007605 /*
Filipe Mananab850ae12015-12-08 16:23:16 +00007606 * We could trigger writeback for this range (and wait
7607 * for it to complete) and then invalidate the pages for
7608 * this range (through invalidate_inode_pages2_range()),
7609 * but that can lead us to a deadlock with a concurrent
7610 * call to readpages() (a buffered read or a defrag call
7611 * triggered a readahead) on a page lock due to an
7612 * ordered dio extent we created before but did not have
7613 * yet a corresponding bio submitted (whence it can not
7614 * complete), which makes readpages() wait for that
7615 * ordered extent to complete while holding a lock on
7616 * that page.
Josef Bacikeb838e72012-07-31 16:28:48 -04007617 */
Filipe Mananab850ae12015-12-08 16:23:16 +00007618 ret = -ENOTBLK;
Josef Bacikeb838e72012-07-31 16:28:48 -04007619 }
7620
Filipe Mananaade77022016-02-18 14:28:55 +00007621 if (ret)
7622 break;
7623
Josef Bacikeb838e72012-07-31 16:28:48 -04007624 cond_resched();
7625 }
7626
7627 return ret;
7628}
7629
Liu Bo6f9994d2017-01-31 07:50:22 -08007630/* The callers of this must take lock_extent() */
7631static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len,
7632 u64 orig_start, u64 block_start,
7633 u64 block_len, u64 orig_block_len,
7634 u64 ram_bytes, int compress_type,
7635 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04007636{
7637 struct extent_map_tree *em_tree;
7638 struct extent_map *em;
7639 struct btrfs_root *root = BTRFS_I(inode)->root;
7640 int ret;
7641
Liu Bo6f9994d2017-01-31 07:50:22 -08007642 ASSERT(type == BTRFS_ORDERED_PREALLOC ||
7643 type == BTRFS_ORDERED_COMPRESSED ||
7644 type == BTRFS_ORDERED_NOCOW ||
Liu Bo1af4a0a2017-02-13 15:35:09 -08007645 type == BTRFS_ORDERED_REGULAR);
Liu Bo6f9994d2017-01-31 07:50:22 -08007646
Josef Bacik69ffb542012-09-11 15:40:07 -04007647 em_tree = &BTRFS_I(inode)->extent_tree;
7648 em = alloc_extent_map();
7649 if (!em)
7650 return ERR_PTR(-ENOMEM);
7651
7652 em->start = start;
7653 em->orig_start = orig_start;
7654 em->len = len;
7655 em->block_len = block_len;
7656 em->block_start = block_start;
7657 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05007658 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04007659 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04007660 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04007661 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007662 if (type == BTRFS_ORDERED_PREALLOC) {
Josef Bacikb11e2342012-12-03 10:58:15 -05007663 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo1af4a0a2017-02-13 15:35:09 -08007664 } else if (type == BTRFS_ORDERED_COMPRESSED) {
Liu Bo6f9994d2017-01-31 07:50:22 -08007665 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
7666 em->compress_type = compress_type;
7667 }
Josef Bacik69ffb542012-09-11 15:40:07 -04007668
7669 do {
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02007670 btrfs_drop_extent_cache(BTRFS_I(inode), em->start,
Josef Bacik69ffb542012-09-11 15:40:07 -04007671 em->start + em->len - 1, 0);
7672 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04007673 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04007674 write_unlock(&em_tree->lock);
Liu Bo6f9994d2017-01-31 07:50:22 -08007675 /*
7676 * The caller has taken lock_extent(), who could race with us
7677 * to add em?
7678 */
Josef Bacik69ffb542012-09-11 15:40:07 -04007679 } while (ret == -EEXIST);
7680
7681 if (ret) {
7682 free_extent_map(em);
7683 return ERR_PTR(ret);
7684 }
7685
Liu Bo6f9994d2017-01-31 07:50:22 -08007686 /* em got 2 refs now, callers needs to do free_extent_map once. */
Josef Bacik69ffb542012-09-11 15:40:07 -04007687 return em;
7688}
7689
Filipe Manana9c9464c2015-11-04 09:52:04 +00007690static void adjust_dio_outstanding_extents(struct inode *inode,
7691 struct btrfs_dio_data *dio_data,
7692 const u64 len)
7693{
David Sterba823bb202017-01-04 11:09:51 +01007694 unsigned num_extents = count_max_extents(len);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007695
Filipe Manana9c9464c2015-11-04 09:52:04 +00007696 /*
7697 * If we have an outstanding_extents count still set then we're
7698 * within our reservation, otherwise we need to adjust our inode
7699 * counter appropriately.
7700 */
Liu Boc2931662016-12-22 17:13:54 -08007701 if (dio_data->outstanding_extents >= num_extents) {
Filipe Manana9c9464c2015-11-04 09:52:04 +00007702 dio_data->outstanding_extents -= num_extents;
7703 } else {
Liu Boc2931662016-12-22 17:13:54 -08007704 /*
7705 * If dio write length has been split due to no large enough
7706 * contiguous space, we need to compensate our inode counter
7707 * appropriately.
7708 */
7709 u64 num_needed = num_extents - dio_data->outstanding_extents;
7710
Filipe Manana9c9464c2015-11-04 09:52:04 +00007711 spin_lock(&BTRFS_I(inode)->lock);
Liu Boc2931662016-12-22 17:13:54 -08007712 BTRFS_I(inode)->outstanding_extents += num_needed;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007713 spin_unlock(&BTRFS_I(inode)->lock);
7714 }
7715}
7716
Josef Bacik4b46fce2010-05-23 11:00:55 -04007717static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
7718 struct buffer_head *bh_result, int create)
7719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007720 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007721 struct extent_map *em;
Josef Bacikeb838e72012-07-31 16:28:48 -04007722 struct extent_state *cached_state = NULL;
chandan50745b02015-08-28 21:10:13 +05307723 struct btrfs_dio_data *dio_data = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007724 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04007725 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007726 u64 len = bh_result->b_size;
Josef Bacikeb838e72012-07-31 16:28:48 -04007727 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00007728 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007729
Miao Xie172a5042013-02-21 02:48:22 -07007730 if (create)
Josef Bacik32667892015-02-11 15:08:58 -05007731 unlock_bits |= EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07007732 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007733 len = min_t(u64, len, fs_info->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04007734
Josef Bacikc3298612012-08-03 16:49:19 -04007735 lockstart = start;
7736 lockend = start + len - 1;
7737
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007738 if (current->journal_info) {
7739 /*
7740 * Need to pull our outstanding extents and set journal_info to NULL so
Nicholas D Steeves01327612016-05-19 21:18:45 -04007741 * that anything that needs to check if there's a transaction doesn't get
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007742 * confused.
7743 */
chandan50745b02015-08-28 21:10:13 +05307744 dio_data = current->journal_info;
Josef Bacike1cbbfa2015-03-17 10:52:28 -04007745 current->journal_info = NULL;
7746 }
7747
Josef Bacikeb838e72012-07-31 16:28:48 -04007748 /*
7749 * If this errors out it's because we couldn't invalidate pagecache for
7750 * this range and we need to fallback to buffered.
7751 */
Filipe Manana9c9464c2015-11-04 09:52:04 +00007752 if (lock_extent_direct(inode, lockstart, lockend, &cached_state,
7753 create)) {
7754 ret = -ENOTBLK;
7755 goto err;
7756 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007757
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02007758 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04007759 if (IS_ERR(em)) {
7760 ret = PTR_ERR(em);
7761 goto unlock_err;
7762 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007763
7764 /*
7765 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
7766 * io. INLINE is special, and we could probably kludge it in here, but
7767 * it's still buffered so for safety lets just fall back to the generic
7768 * buffered path.
7769 *
7770 * For COMPRESSED we _have_ to read the entire extent in so we can
7771 * decompress it, so there will be buffering required no matter what we
7772 * do, so go ahead and fallback to buffered.
7773 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04007774 * We return -ENOTBLK because that's what makes DIO go ahead and go back
Josef Bacik4b46fce2010-05-23 11:00:55 -04007775 * to buffered IO. Don't blame me, this is the price we pay for using
7776 * the generic code.
7777 */
7778 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
7779 em->block_start == EXTENT_MAP_INLINE) {
7780 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007781 ret = -ENOTBLK;
7782 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007783 }
7784
7785 /* Just a good old fashioned hole, return */
7786 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
7787 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
7788 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04007789 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007790 }
7791
7792 /*
7793 * We don't allocate a new extent in the following cases
7794 *
7795 * 1) The inode is marked as NODATACOW. In this case we'll just use the
7796 * existing extent.
7797 * 2) The extent is marked as PREALLOC. We're good to go here and can
7798 * just use the extent.
7799 *
7800 */
Chris Mason46bfbb52010-05-26 11:04:10 -04007801 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04007802 len = min(len, em->len - (start - em->start));
7803 lockstart = start + len;
7804 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04007805 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007806
7807 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
7808 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
7809 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007810 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04007811 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007812
7813 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7814 type = BTRFS_ORDERED_PREALLOC;
7815 else
7816 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04007817 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007818 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04007819
Josef Bacik00361582013-08-14 14:02:47 -04007820 if (can_nocow_extent(inode, start, &len, &orig_start,
Filipe Mananaf78c4362016-05-09 13:15:41 +01007821 &orig_block_len, &ram_bytes) == 1 &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007822 btrfs_inc_nocow_writers(fs_info, block_start)) {
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007823 struct extent_map *em2;
Filipe Manana0b901912016-05-09 13:15:27 +01007824
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007825 em2 = btrfs_create_dio_extent(inode, start, len,
7826 orig_start, block_start,
7827 len, orig_block_len,
7828 ram_bytes, type);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007829 btrfs_dec_nocow_writers(fs_info, block_start);
Josef Bacik69ffb542012-09-11 15:40:07 -04007830 if (type == BTRFS_ORDERED_PREALLOC) {
7831 free_extent_map(em);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007832 em = em2;
Josef Bacik69ffb542012-09-11 15:40:07 -04007833 }
Filipe Manana5f9a8a52016-05-12 13:53:36 +01007834 if (em2 && IS_ERR(em2)) {
7835 ret = PTR_ERR(em2);
Josef Bacikeb838e72012-07-31 16:28:48 -04007836 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04007837 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08007838 /*
7839 * For inode marked NODATACOW or extent marked PREALLOC,
7840 * use the existing or preallocated extent, so does not
7841 * need to adjust btrfs_space_info's bytes_may_use.
7842 */
7843 btrfs_free_reserved_data_space_noquota(inode,
7844 start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04007845 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007846 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007847 }
Josef Bacik00361582013-08-14 14:02:47 -04007848
Chris Mason46bfbb52010-05-26 11:04:10 -04007849 /*
7850 * this will cow the extent, reset the len in case we changed
7851 * it above
7852 */
7853 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04007854 free_extent_map(em);
7855 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04007856 if (IS_ERR(em)) {
7857 ret = PTR_ERR(em);
7858 goto unlock_err;
7859 }
Chris Mason46bfbb52010-05-26 11:04:10 -04007860 len = min(len, em->len - (start - em->start));
7861unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04007862 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
7863 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04007864 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007865 bh_result->b_bdev = em->bdev;
7866 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04007867 if (create) {
7868 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
7869 set_buffer_new(bh_result);
7870
7871 /*
7872 * Need to update the i_size under the extent lock so buffered
7873 * readers will get the updated i_size when we unlock.
7874 */
Liu Bo4aaedfb2016-12-14 22:36:05 -08007875 if (!dio_data->overwrite && start + len > i_size_read(inode))
Josef Bacikc3473e82012-06-19 10:59:00 -04007876 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00007877
Filipe Manana9c9464c2015-11-04 09:52:04 +00007878 adjust_dio_outstanding_extents(inode, dio_data, len);
chandan50745b02015-08-28 21:10:13 +05307879 WARN_ON(dio_data->reserve < len);
7880 dio_data->reserve -= len;
Filipe Mananaf28a4922015-12-08 19:23:20 +00007881 dio_data->unsubmitted_oe_range_end = start + len;
chandan50745b02015-08-28 21:10:13 +05307882 current->journal_info = dio_data;
Josef Bacikc3473e82012-06-19 10:59:00 -04007883 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007884
Josef Bacikeb838e72012-07-31 16:28:48 -04007885 /*
7886 * In the case of write we need to clear and unlock the entire range,
7887 * in the case of read we need to unlock only the end area that we
7888 * aren't using if there is any left over space.
7889 */
Liu Bo24c03fa2012-08-22 20:10:38 -06007890 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00007891 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7892 lockend, unlock_bits, 1, 0,
7893 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06007894 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04007895 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06007896 }
Josef Bacikeb838e72012-07-31 16:28:48 -04007897
Josef Bacik4b46fce2010-05-23 11:00:55 -04007898 free_extent_map(em);
7899
7900 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04007901
7902unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04007903 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7904 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
Filipe Manana9c9464c2015-11-04 09:52:04 +00007905err:
chandan50745b02015-08-28 21:10:13 +05307906 if (dio_data)
7907 current->journal_info = dio_data;
Filipe Manana9c9464c2015-11-04 09:52:04 +00007908 /*
7909 * Compensate the delalloc release we do in btrfs_direct_IO() when we
7910 * write less data then expected, so that we don't underflow our inode's
7911 * outstanding extents counter.
7912 */
7913 if (create && dio_data)
7914 adjust_dio_outstanding_extents(inode, dio_data, len);
7915
Josef Bacikeb838e72012-07-31 16:28:48 -04007916 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007917}
7918
Miao Xie8b110e32014-09-12 18:44:03 +08007919static inline int submit_dio_repair_bio(struct inode *inode, struct bio *bio,
Mike Christie81a75f62016-06-05 14:31:54 -05007920 int mirror_num)
Miao Xie8b110e32014-09-12 18:44:03 +08007921{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007922 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007923 int ret;
7924
Mike Christie37226b22016-06-05 14:31:52 -05007925 BUG_ON(bio_op(bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007926
7927 bio_get(bio);
7928
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007929 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR);
Miao Xie8b110e32014-09-12 18:44:03 +08007930 if (ret)
7931 goto err;
7932
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007933 ret = btrfs_map_bio(fs_info, bio, mirror_num, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08007934err:
7935 bio_put(bio);
7936 return ret;
7937}
7938
7939static int btrfs_check_dio_repairable(struct inode *inode,
7940 struct bio *failed_bio,
7941 struct io_failure_record *failrec,
7942 int failed_mirror)
7943{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007944 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie8b110e32014-09-12 18:44:03 +08007945 int num_copies;
7946
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007947 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Miao Xie8b110e32014-09-12 18:44:03 +08007948 if (num_copies == 1) {
7949 /*
7950 * we only have a single copy of the data, so don't bother with
7951 * all the retry and error correction code that follows. no
7952 * matter what the error is, it is very likely to persist.
7953 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007954 btrfs_debug(fs_info,
7955 "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
7956 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007957 return 0;
7958 }
7959
7960 failrec->failed_mirror = failed_mirror;
7961 failrec->this_mirror++;
7962 if (failrec->this_mirror == failed_mirror)
7963 failrec->this_mirror++;
7964
7965 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007966 btrfs_debug(fs_info,
7967 "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
7968 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08007969 return 0;
7970 }
7971
7972 return 1;
7973}
7974
7975static int dio_read_error(struct inode *inode, struct bio *failed_bio,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307976 struct page *page, unsigned int pgoff,
7977 u64 start, u64 end, int failed_mirror,
7978 bio_end_io_t *repair_endio, void *repair_arg)
Miao Xie8b110e32014-09-12 18:44:03 +08007979{
7980 struct io_failure_record *failrec;
7981 struct bio *bio;
7982 int isector;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06007983 int read_mode = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08007984 int ret;
7985
Mike Christie37226b22016-06-05 14:31:52 -05007986 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie8b110e32014-09-12 18:44:03 +08007987
7988 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
7989 if (ret)
7990 return ret;
7991
7992 ret = btrfs_check_dio_repairable(inode, failed_bio, failrec,
7993 failed_mirror);
7994 if (!ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02007995 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08007996 return -EIO;
7997 }
7998
Chandan Rajendra2dabb322016-01-21 15:55:55 +05307999 if ((failed_bio->bi_vcnt > 1)
8000 || (failed_bio->bi_io_vec->bv_len
Jeff Mahoneyda170662016-06-15 09:22:56 -04008001 > btrfs_inode_sectorsize(inode)))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06008002 read_mode |= REQ_FAILFAST_DEV;
Miao Xie8b110e32014-09-12 18:44:03 +08008003
8004 isector = start - btrfs_io_bio(failed_bio)->logical;
8005 isector >>= inode->i_sb->s_blocksize_bits;
8006 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308007 pgoff, isector, repair_endio, repair_arg);
Miao Xie8b110e32014-09-12 18:44:03 +08008008 if (!bio) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02008009 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08008010 return -EIO;
8011 }
Mike Christie37226b22016-06-05 14:31:52 -05008012 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie8b110e32014-09-12 18:44:03 +08008013
8014 btrfs_debug(BTRFS_I(inode)->root->fs_info,
8015 "Repair DIO Read Error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d\n",
8016 read_mode, failrec->this_mirror, failrec->in_validation);
8017
Mike Christie81a75f62016-06-05 14:31:54 -05008018 ret = submit_dio_repair_bio(inode, bio, failrec->this_mirror);
Miao Xie8b110e32014-09-12 18:44:03 +08008019 if (ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02008020 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie8b110e32014-09-12 18:44:03 +08008021 bio_put(bio);
8022 }
8023
8024 return ret;
8025}
8026
8027struct btrfs_retry_complete {
8028 struct completion done;
8029 struct inode *inode;
8030 u64 start;
8031 int uptodate;
8032};
8033
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008034static void btrfs_retry_endio_nocsum(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08008035{
8036 struct btrfs_retry_complete *done = bio->bi_private;
8037 struct bio_vec *bvec;
8038 int i;
8039
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008040 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08008041 goto end;
8042
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308043 ASSERT(bio->bi_vcnt == 1);
Liu Bo2e949b02017-04-05 14:04:19 -07008044 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308045
Miao Xie8b110e32014-09-12 18:44:03 +08008046 done->uptodate = 1;
8047 bio_for_each_segment_all(bvec, bio, i)
Liu Bo2e949b02017-04-05 14:04:19 -07008048 clean_io_failure(BTRFS_I(done->inode), done->start,
8049 bvec->bv_page, 0);
Miao Xie8b110e32014-09-12 18:44:03 +08008050end:
8051 complete(&done->done);
8052 bio_put(bio);
8053}
8054
8055static int __btrfs_correct_data_nocsum(struct inode *inode,
8056 struct btrfs_io_bio *io_bio)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008057{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308058 struct btrfs_fs_info *fs_info;
Kent Overstreet2c30c712013-11-07 12:20:26 -08008059 struct bio_vec *bvec;
Miao Xie8b110e32014-09-12 18:44:03 +08008060 struct btrfs_retry_complete done;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008061 u64 start;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308062 unsigned int pgoff;
8063 u32 sectorsize;
8064 int nr_sectors;
Kent Overstreet2c30c712013-11-07 12:20:26 -08008065 int i;
Miao Xiec1dc0892014-09-12 18:43:56 +08008066 int ret;
Miao Xiedc380ae2014-09-12 18:43:55 +08008067
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308068 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008069 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308070
Miao Xiec1dc0892014-09-12 18:43:56 +08008071 start = io_bio->logical;
Miao Xie8b110e32014-09-12 18:44:03 +08008072 done.inode = inode;
8073
8074 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308075 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8076 pgoff = bvec->bv_offset;
8077
8078next_block_or_try_again:
Miao Xie8b110e32014-09-12 18:44:03 +08008079 done.uptodate = 0;
8080 done.start = start;
8081 init_completion(&done.done);
8082
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308083 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8084 pgoff, start, start + sectorsize - 1,
8085 io_bio->mirror_num,
8086 btrfs_retry_endio_nocsum, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008087 if (ret)
8088 return ret;
8089
8090 wait_for_completion(&done.done);
8091
8092 if (!done.uptodate) {
8093 /* We might have another mirror, so try again */
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308094 goto next_block_or_try_again;
Miao Xie8b110e32014-09-12 18:44:03 +08008095 }
8096
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308097 start += sectorsize;
8098
Liu Bo97bf5a52017-04-07 13:11:10 -07008099 nr_sectors--;
8100 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308101 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07008102 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308103 goto next_block_or_try_again;
8104 }
Miao Xie8b110e32014-09-12 18:44:03 +08008105 }
8106
8107 return 0;
8108}
8109
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008110static void btrfs_retry_endio(struct bio *bio)
Miao Xie8b110e32014-09-12 18:44:03 +08008111{
8112 struct btrfs_retry_complete *done = bio->bi_private;
8113 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8114 struct bio_vec *bvec;
8115 int uptodate;
8116 int ret;
8117 int i;
8118
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008119 if (bio->bi_error)
Miao Xie8b110e32014-09-12 18:44:03 +08008120 goto end;
8121
8122 uptodate = 1;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308123
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308124 ASSERT(bio->bi_vcnt == 1);
Liu Bo2e949b02017-04-05 14:04:19 -07008125 ASSERT(bio->bi_io_vec->bv_len == btrfs_inode_sectorsize(done->inode));
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308126
Miao Xie8b110e32014-09-12 18:44:03 +08008127 bio_for_each_segment_all(bvec, bio, i) {
8128 ret = __readpage_endio_check(done->inode, io_bio, i,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308129 bvec->bv_page, bvec->bv_offset,
8130 done->start, bvec->bv_len);
Miao Xie8b110e32014-09-12 18:44:03 +08008131 if (!ret)
Nikolay Borisovb30cb442017-02-20 13:50:56 +02008132 clean_io_failure(BTRFS_I(done->inode), done->start,
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308133 bvec->bv_page, bvec->bv_offset);
Miao Xie8b110e32014-09-12 18:44:03 +08008134 else
8135 uptodate = 0;
8136 }
8137
8138 done->uptodate = uptodate;
8139end:
8140 complete(&done->done);
8141 bio_put(bio);
8142}
8143
8144static int __btrfs_subio_endio_read(struct inode *inode,
8145 struct btrfs_io_bio *io_bio, int err)
8146{
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308147 struct btrfs_fs_info *fs_info;
Miao Xie8b110e32014-09-12 18:44:03 +08008148 struct bio_vec *bvec;
8149 struct btrfs_retry_complete done;
8150 u64 start;
8151 u64 offset = 0;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308152 u32 sectorsize;
8153 int nr_sectors;
8154 unsigned int pgoff;
8155 int csum_pos;
Miao Xie8b110e32014-09-12 18:44:03 +08008156 int i;
8157 int ret;
8158
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308159 fs_info = BTRFS_I(inode)->root->fs_info;
Jeff Mahoneyda170662016-06-15 09:22:56 -04008160 sectorsize = fs_info->sectorsize;
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308161
Miao Xie8b110e32014-09-12 18:44:03 +08008162 err = 0;
8163 start = io_bio->logical;
8164 done.inode = inode;
8165
Miao Xiec1dc0892014-09-12 18:43:56 +08008166 bio_for_each_segment_all(bvec, &io_bio->bio, i) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308167 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
8168
8169 pgoff = bvec->bv_offset;
8170next_block:
8171 csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset);
8172 ret = __readpage_endio_check(inode, io_bio, csum_pos,
8173 bvec->bv_page, pgoff, start,
8174 sectorsize);
Miao Xie8b110e32014-09-12 18:44:03 +08008175 if (likely(!ret))
8176 goto next;
8177try_again:
8178 done.uptodate = 0;
8179 done.start = start;
8180 init_completion(&done.done);
8181
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308182 ret = dio_read_error(inode, &io_bio->bio, bvec->bv_page,
8183 pgoff, start, start + sectorsize - 1,
8184 io_bio->mirror_num,
8185 btrfs_retry_endio, &done);
Miao Xie8b110e32014-09-12 18:44:03 +08008186 if (ret) {
8187 err = ret;
8188 goto next;
8189 }
8190
8191 wait_for_completion(&done.done);
8192
8193 if (!done.uptodate) {
8194 /* We might have another mirror, so try again */
8195 goto try_again;
8196 }
8197next:
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308198 offset += sectorsize;
8199 start += sectorsize;
8200
8201 ASSERT(nr_sectors);
8202
Liu Bo97bf5a52017-04-07 13:11:10 -07008203 nr_sectors--;
8204 if (nr_sectors) {
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308205 pgoff += sectorsize;
Liu Bo97bf5a52017-04-07 13:11:10 -07008206 ASSERT(pgoff < PAGE_SIZE);
Chandan Rajendra2dabb322016-01-21 15:55:55 +05308207 goto next_block;
8208 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08008209 }
Miao Xiec1dc0892014-09-12 18:43:56 +08008210
8211 return err;
8212}
8213
Miao Xie8b110e32014-09-12 18:44:03 +08008214static int btrfs_subio_endio_read(struct inode *inode,
8215 struct btrfs_io_bio *io_bio, int err)
8216{
8217 bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8218
8219 if (skip_csum) {
8220 if (unlikely(err))
8221 return __btrfs_correct_data_nocsum(inode, io_bio);
8222 else
8223 return 0;
8224 } else {
8225 return __btrfs_subio_endio_read(inode, io_bio, err);
8226 }
8227}
8228
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008229static void btrfs_endio_direct_read(struct bio *bio)
Miao Xiec1dc0892014-09-12 18:43:56 +08008230{
8231 struct btrfs_dio_private *dip = bio->bi_private;
8232 struct inode *inode = dip->inode;
8233 struct bio *dio_bio;
8234 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008235 int err = bio->bi_error;
Miao Xiec1dc0892014-09-12 18:43:56 +08008236
Miao Xie8b110e32014-09-12 18:44:03 +08008237 if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED)
8238 err = btrfs_subio_endio_read(inode, io_bio, err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008239
Josef Bacik4b46fce2010-05-23 11:00:55 -04008240 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01008241 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04008242 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008243
Josef Bacik4b46fce2010-05-23 11:00:55 -04008244 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008245
Filipe Manana1636d1d2016-02-15 16:20:26 +00008246 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008247 dio_end_io(dio_bio, bio->bi_error);
Miao Xie23ea8e52014-09-12 18:43:54 +08008248
8249 if (io_bio->end_io)
8250 io_bio->end_io(io_bio, err);
Chris Mason9be33952013-05-17 18:30:14 -04008251 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008252}
8253
Qu Wenruo524272602017-03-08 10:25:52 +08008254static void __endio_write_update_ordered(struct inode *inode,
8255 const u64 offset, const u64 bytes,
8256 const bool uptodate)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008258 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008259 struct btrfs_ordered_extent *ordered = NULL;
Qu Wenruo524272602017-03-08 10:25:52 +08008260 struct btrfs_workqueue *wq;
8261 btrfs_work_func_t func;
Filipe Manana14543772015-11-24 16:23:54 +00008262 u64 ordered_offset = offset;
8263 u64 ordered_bytes = bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008264 int ret;
8265
Qu Wenruo524272602017-03-08 10:25:52 +08008266 if (btrfs_is_free_space_inode(BTRFS_I(inode))) {
8267 wq = fs_info->endio_freespace_worker;
8268 func = btrfs_freespace_write_helper;
8269 } else {
8270 wq = fs_info->endio_write_workers;
8271 func = btrfs_endio_write_helper;
8272 }
8273
Chris Mason163cf092010-11-28 19:56:33 -05008274again:
8275 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
8276 &ordered_offset,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008277 ordered_bytes,
Filipe Manana14543772015-11-24 16:23:54 +00008278 uptodate);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008279 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05008280 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008281
Qu Wenruo524272602017-03-08 10:25:52 +08008282 btrfs_init_work(&ordered->work, func, finish_ordered_fn, NULL, NULL);
8283 btrfs_queue_work(wq, &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05008284out_test:
8285 /*
8286 * our bio might span multiple ordered extents. If we haven't
8287 * completed the accounting for the whole dio, go back and try again
8288 */
Filipe Manana14543772015-11-24 16:23:54 +00008289 if (ordered_offset < offset + bytes) {
8290 ordered_bytes = offset + bytes - ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04008291 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05008292 goto again;
8293 }
Filipe Manana14543772015-11-24 16:23:54 +00008294}
8295
8296static void btrfs_endio_direct_write(struct bio *bio)
8297{
8298 struct btrfs_dio_private *dip = bio->bi_private;
8299 struct bio *dio_bio = dip->dio_bio;
8300
Qu Wenruo524272602017-03-08 10:25:52 +08008301 __endio_write_update_ordered(dip->inode, dip->logical_offset,
8302 dip->bytes, !bio->bi_error);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008303
Josef Bacik4b46fce2010-05-23 11:00:55 -04008304 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04008305
Filipe Manana1636d1d2016-02-15 16:20:26 +00008306 dio_bio->bi_error = bio->bi_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008307 dio_end_io(dio_bio, bio->bi_error);
Chris Mason9be33952013-05-17 18:30:14 -04008308 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008309}
8310
Mike Christie81a75f62016-06-05 14:31:54 -05008311static int __btrfs_submit_bio_start_direct_io(struct inode *inode,
Chris Masoneaf25d92010-05-25 09:48:28 -04008312 struct bio *bio, int mirror_num,
8313 unsigned long bio_flags, u64 offset)
8314{
8315 int ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008316 ret = btrfs_csum_one_bio(inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008317 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04008318 return 0;
8319}
8320
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008321static void btrfs_end_dio_bio(struct bio *bio)
Miao Xiee65e1532010-11-22 03:04:43 +00008322{
8323 struct btrfs_dio_private *dip = bio->bi_private;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008324 int err = bio->bi_error;
Miao Xiee65e1532010-11-22 03:04:43 +00008325
Miao Xie8b110e32014-09-12 18:44:03 +08008326 if (err)
8327 btrfs_warn(BTRFS_I(dip->inode)->root->fs_info,
Mike Christie6296b962016-06-05 14:32:21 -05008328 "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d",
David Sterbaf85b7372017-01-20 14:54:07 +01008329 btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio),
8330 bio->bi_opf,
Miao Xie8b110e32014-09-12 18:44:03 +08008331 (unsigned long long)bio->bi_iter.bi_sector,
8332 bio->bi_iter.bi_size, err);
8333
8334 if (dip->subio_endio)
8335 err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err);
Miao Xiec1dc0892014-09-12 18:43:56 +08008336
8337 if (err) {
Miao Xiee65e1532010-11-22 03:04:43 +00008338 dip->errors = 1;
8339
8340 /*
8341 * before atomic variable goto zero, we must make sure
8342 * dip->errors is perceived to be set.
8343 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008344 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008345 }
8346
8347 /* if there are more bios still pending for this dio, just exit */
8348 if (!atomic_dec_and_test(&dip->pending_bios))
8349 goto out;
8350
Chris Mason9be33952013-05-17 18:30:14 -04008351 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00008352 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04008353 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008354 dip->dio_bio->bi_error = 0;
8355 bio_endio(dip->orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00008356 }
8357out:
8358 bio_put(bio);
8359}
8360
8361static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
8362 u64 first_sector, gfp_t gfp_flags)
8363{
Chris Masonda2f0f72015-07-02 13:57:22 -07008364 struct bio *bio;
Linus Torvalds22365972015-09-05 15:14:43 -07008365 bio = btrfs_bio_alloc(bdev, first_sector, BIO_MAX_PAGES, gfp_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07008366 if (bio)
8367 bio_associate_current(bio);
8368 return bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008369}
8370
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008371static inline int btrfs_lookup_and_bind_dio_csum(struct inode *inode,
Miao Xiec1dc0892014-09-12 18:43:56 +08008372 struct btrfs_dio_private *dip,
8373 struct bio *bio,
8374 u64 file_offset)
8375{
8376 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
8377 struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio);
8378 int ret;
8379
8380 /*
8381 * We load all the csum data we need when we submit
8382 * the first bio to reduce the csum tree search and
8383 * contention.
8384 */
8385 if (dip->logical_offset == file_offset) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008386 ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008387 file_offset);
8388 if (ret)
8389 return ret;
8390 }
8391
8392 if (bio == dip->orig_bio)
8393 return 0;
8394
8395 file_offset -= dip->logical_offset;
8396 file_offset >>= inode->i_sb->s_blocksize_bits;
8397 io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset);
8398
8399 return 0;
8400}
8401
Miao Xiee65e1532010-11-22 03:04:43 +00008402static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
Mike Christie81a75f62016-06-05 14:31:54 -05008403 u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008404 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00008405{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008406 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiefacc8a222013-07-25 19:22:34 +08008407 struct btrfs_dio_private *dip = bio->bi_private;
Mike Christie37226b22016-06-05 14:31:52 -05008408 bool write = bio_op(bio) == REQ_OP_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00008409 int ret;
8410
Josef Bacikb812ce22012-11-16 13:56:32 -05008411 if (async_submit)
8412 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
8413
Miao Xiee65e1532010-11-22 03:04:43 +00008414 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04008415
8416 if (!write) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008417 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Josef Bacik5fd02042012-05-02 14:00:54 -04008418 if (ret)
8419 goto err;
8420 }
Miao Xiee65e1532010-11-22 03:04:43 +00008421
Josef Bacik1ae39932011-04-06 14:41:34 -04008422 if (skip_sum)
8423 goto map;
8424
8425 if (write && async_submit) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008426 ret = btrfs_wq_submit_bio(fs_info, inode, bio, 0, 0,
8427 file_offset,
8428 __btrfs_submit_bio_start_direct_io,
8429 __btrfs_submit_bio_done);
Miao Xiee65e1532010-11-22 03:04:43 +00008430 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04008431 } else if (write) {
8432 /*
8433 * If we aren't doing async submit, calculate the csum of the
8434 * bio now.
8435 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008436 ret = btrfs_csum_one_bio(inode, bio, file_offset, 1);
Josef Bacik1ae39932011-04-06 14:41:34 -04008437 if (ret)
8438 goto err;
Miao Xie23ea8e52014-09-12 18:43:54 +08008439 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008440 ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio,
Miao Xiec1dc0892014-09-12 18:43:56 +08008441 file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00008442 if (ret)
8443 goto err;
8444 }
Josef Bacik1ae39932011-04-06 14:41:34 -04008445map:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008446 ret = btrfs_map_bio(fs_info, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008447err:
8448 bio_put(bio);
8449 return ret;
8450}
8451
Mike Christie81a75f62016-06-05 14:31:54 -05008452static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip,
Miao Xiee65e1532010-11-22 03:04:43 +00008453 int skip_sum)
8454{
8455 struct inode *inode = dip->inode;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008456 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xiee65e1532010-11-22 03:04:43 +00008457 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00008458 struct bio *bio;
8459 struct bio *orig_bio = dip->orig_bio;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008460 struct bio_vec *bvec;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008461 u64 start_sector = orig_bio->bi_iter.bi_sector;
Miao Xiee65e1532010-11-22 03:04:43 +00008462 u64 file_offset = dip->logical_offset;
8463 u64 submit_len = 0;
8464 u64 map_length;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008465 u32 blocksize = fs_info->sectorsize;
Josef Bacik1ae39932011-04-06 14:41:34 -04008466 int async_submit = 0;
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308467 int nr_sectors;
8468 int ret;
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008469 int i, j;
Miao Xiee65e1532010-11-22 03:04:43 +00008470
Kent Overstreet4f024f32013-10-11 15:44:27 -07008471 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008472 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9,
8473 &map_length, NULL, 0);
Miao Xie7a5c3c92014-06-17 18:58:59 +08008474 if (ret)
Miao Xiee65e1532010-11-22 03:04:43 +00008475 return -EIO;
Miao Xiefacc8a222013-07-25 19:22:34 +08008476
Kent Overstreet4f024f32013-10-11 15:44:27 -07008477 if (map_length >= orig_bio->bi_iter.bi_size) {
Josef Bacik02f57c72011-04-06 14:25:44 -04008478 bio = orig_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008479 dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED;
Josef Bacik02f57c72011-04-06 14:25:44 -04008480 goto submit;
8481 }
8482
David Woodhouse53b381b2013-01-29 18:40:14 -05008483 /* async crcs make it difficult to collect full stripe writes. */
Zhao Leiffe2d202015-01-20 15:11:44 +08008484 if (btrfs_get_alloc_profile(root, 1) & BTRFS_BLOCK_GROUP_RAID56_MASK)
David Woodhouse53b381b2013-01-29 18:40:14 -05008485 async_submit = 0;
8486 else
8487 async_submit = 1;
8488
Josef Bacik02f57c72011-04-06 14:25:44 -04008489 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
8490 if (!bio)
8491 return -ENOMEM;
Miao Xie7a5c3c92014-06-17 18:58:59 +08008492
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008493 bio->bi_opf = orig_bio->bi_opf;
Josef Bacik02f57c72011-04-06 14:25:44 -04008494 bio->bi_private = dip;
8495 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008496 btrfs_io_bio(bio)->logical = file_offset;
Josef Bacik02f57c72011-04-06 14:25:44 -04008497 atomic_inc(&dip->pending_bios);
8498
Christoph Hellwig6a2de222016-11-25 09:07:48 +01008499 bio_for_each_segment_all(bvec, orig_bio, j) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008500 nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec->bv_len);
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308501 i = 0;
8502next_block:
8503 if (unlikely(map_length < submit_len + blocksize ||
8504 bio_add_page(bio, bvec->bv_page, blocksize,
8505 bvec->bv_offset + (i * blocksize)) < blocksize)) {
Miao Xiee65e1532010-11-22 03:04:43 +00008506 /*
8507 * inc the count before we submit the bio so
8508 * we know the end IO handler won't happen before
8509 * we inc the count. Otherwise, the dip might get freed
8510 * before we're done setting it up
8511 */
8512 atomic_inc(&dip->pending_bios);
Mike Christie81a75f62016-06-05 14:31:54 -05008513 ret = __btrfs_submit_dio_bio(bio, inode,
Miao Xiee65e1532010-11-22 03:04:43 +00008514 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008515 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008516 if (ret) {
8517 bio_put(bio);
8518 atomic_dec(&dip->pending_bios);
8519 goto out_err;
8520 }
8521
Miao Xiee65e1532010-11-22 03:04:43 +00008522 start_sector += submit_len >> 9;
8523 file_offset += submit_len;
8524
8525 submit_len = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00008526
8527 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
8528 start_sector, GFP_NOFS);
8529 if (!bio)
8530 goto out_err;
Christoph Hellwigef295ec2016-10-28 08:48:16 -06008531 bio->bi_opf = orig_bio->bi_opf;
Miao Xiee65e1532010-11-22 03:04:43 +00008532 bio->bi_private = dip;
8533 bio->bi_end_io = btrfs_end_dio_bio;
Miao Xiec1dc0892014-09-12 18:43:56 +08008534 btrfs_io_bio(bio)->logical = file_offset;
Miao Xiee65e1532010-11-22 03:04:43 +00008535
Kent Overstreet4f024f32013-10-11 15:44:27 -07008536 map_length = orig_bio->bi_iter.bi_size;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008537 ret = btrfs_map_block(fs_info, btrfs_op(orig_bio),
Stefan Behrens3ec706c2012-11-05 15:46:42 +01008538 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00008539 &map_length, NULL, 0);
8540 if (ret) {
8541 bio_put(bio);
8542 goto out_err;
8543 }
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308544
8545 goto next_block;
Miao Xiee65e1532010-11-22 03:04:43 +00008546 } else {
Chandan Rajendra5f4dc8f2016-01-21 15:56:00 +05308547 submit_len += blocksize;
8548 if (--nr_sectors) {
8549 i++;
8550 goto next_block;
8551 }
Miao Xiee65e1532010-11-22 03:04:43 +00008552 }
8553 }
8554
Josef Bacik02f57c72011-04-06 14:25:44 -04008555submit:
Mike Christie81a75f62016-06-05 14:31:54 -05008556 ret = __btrfs_submit_dio_bio(bio, inode, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04008557 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00008558 if (!ret)
8559 return 0;
8560
8561 bio_put(bio);
8562out_err:
8563 dip->errors = 1;
8564 /*
8565 * before atomic variable goto zero, we must
8566 * make sure dip->errors is perceived to be set.
8567 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008568 smp_mb__before_atomic();
Miao Xiee65e1532010-11-22 03:04:43 +00008569 if (atomic_dec_and_test(&dip->pending_bios))
8570 bio_io_error(dip->orig_bio);
8571
8572 /* bio_end_io() will handle error, so we needn't return it */
8573 return 0;
8574}
8575
Mike Christie8a4c1e42016-06-05 14:31:50 -05008576static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
8577 loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04008578{
Filipe Manana61de7182015-07-01 12:13:10 +01008579 struct btrfs_dio_private *dip = NULL;
8580 struct bio *io_bio = NULL;
Miao Xie23ea8e52014-09-12 18:43:54 +08008581 struct btrfs_io_bio *btrfs_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008582 int skip_sum;
Mike Christie8a4c1e42016-06-05 14:31:50 -05008583 bool write = (bio_op(dio_bio) == REQ_OP_WRITE);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008584 int ret = 0;
8585
8586 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
8587
Chris Mason9be33952013-05-17 18:30:14 -04008588 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008589 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04008590 ret = -ENOMEM;
8591 goto free_ordered;
8592 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008593
Miao Xiec1dc0892014-09-12 18:43:56 +08008594 dip = kzalloc(sizeof(*dip), GFP_NOFS);
Chris Mason9be33952013-05-17 18:30:14 -04008595 if (!dip) {
8596 ret = -ENOMEM;
Filipe Manana61de7182015-07-01 12:13:10 +01008597 goto free_ordered;
Chris Mason9be33952013-05-17 18:30:14 -04008598 }
8599
8600 dip->private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008601 dip->inode = inode;
8602 dip->logical_offset = file_offset;
Kent Overstreet4f024f32013-10-11 15:44:27 -07008603 dip->bytes = dio_bio->bi_iter.bi_size;
8604 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
Chris Mason9be33952013-05-17 18:30:14 -04008605 io_bio->bi_private = dip;
Chris Mason9be33952013-05-17 18:30:14 -04008606 dip->orig_bio = io_bio;
8607 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00008608 atomic_set(&dip->pending_bios, 0);
Miao Xiec1dc0892014-09-12 18:43:56 +08008609 btrfs_bio = btrfs_io_bio(io_bio);
8610 btrfs_bio->logical = file_offset;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008611
Miao Xiec1dc0892014-09-12 18:43:56 +08008612 if (write) {
Chris Mason9be33952013-05-17 18:30:14 -04008613 io_bio->bi_end_io = btrfs_endio_direct_write;
Miao Xiec1dc0892014-09-12 18:43:56 +08008614 } else {
Chris Mason9be33952013-05-17 18:30:14 -04008615 io_bio->bi_end_io = btrfs_endio_direct_read;
Miao Xiec1dc0892014-09-12 18:43:56 +08008616 dip->subio_endio = btrfs_subio_endio_read;
8617 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04008618
Filipe Mananaf28a4922015-12-08 19:23:20 +00008619 /*
8620 * Reset the range for unsubmitted ordered extents (to a 0 length range)
8621 * even if we fail to submit a bio, because in such case we do the
8622 * corresponding error handling below and it must not be done a second
8623 * time by btrfs_direct_IO().
8624 */
8625 if (write) {
8626 struct btrfs_dio_data *dio_data = current->journal_info;
8627
8628 dio_data->unsubmitted_oe_range_end = dip->logical_offset +
8629 dip->bytes;
8630 dio_data->unsubmitted_oe_range_start =
8631 dio_data->unsubmitted_oe_range_end;
8632 }
8633
Mike Christie81a75f62016-06-05 14:31:54 -05008634 ret = btrfs_submit_direct_hook(dip, skip_sum);
Miao Xiee65e1532010-11-22 03:04:43 +00008635 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04008636 return;
Chris Mason9be33952013-05-17 18:30:14 -04008637
Miao Xie23ea8e52014-09-12 18:43:54 +08008638 if (btrfs_bio->end_io)
8639 btrfs_bio->end_io(btrfs_bio, ret);
Chris Mason9be33952013-05-17 18:30:14 -04008640
Josef Bacik4b46fce2010-05-23 11:00:55 -04008641free_ordered:
8642 /*
Filipe Manana61de7182015-07-01 12:13:10 +01008643 * If we arrived here it means either we failed to submit the dip
8644 * or we either failed to clone the dio_bio or failed to allocate the
8645 * dip. If we cloned the dio_bio and allocated the dip, we can just
8646 * call bio_endio against our io_bio so that we get proper resource
8647 * cleanup if we fail to submit the dip, otherwise, we must do the
8648 * same as btrfs_endio_direct_[write|read] because we can't call these
8649 * callbacks - they require an allocated dip and a clone of dio_bio.
Josef Bacik4b46fce2010-05-23 11:00:55 -04008650 */
Filipe Manana61de7182015-07-01 12:13:10 +01008651 if (io_bio && dip) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008652 io_bio->bi_error = -EIO;
8653 bio_endio(io_bio);
Filipe Manana61de7182015-07-01 12:13:10 +01008654 /*
8655 * The end io callbacks free our dip, do the final put on io_bio
8656 * and all the cleanup and final put for dio_bio (through
8657 * dio_end_io()).
8658 */
8659 dip = NULL;
8660 io_bio = NULL;
8661 } else {
Filipe Manana14543772015-11-24 16:23:54 +00008662 if (write)
Qu Wenruo524272602017-03-08 10:25:52 +08008663 __endio_write_update_ordered(inode,
Filipe Manana14543772015-11-24 16:23:54 +00008664 file_offset,
8665 dio_bio->bi_iter.bi_size,
Qu Wenruo524272602017-03-08 10:25:52 +08008666 false);
Filipe Manana14543772015-11-24 16:23:54 +00008667 else
Filipe Manana61de7182015-07-01 12:13:10 +01008668 unlock_extent(&BTRFS_I(inode)->io_tree, file_offset,
8669 file_offset + dio_bio->bi_iter.bi_size - 1);
Filipe Manana14543772015-11-24 16:23:54 +00008670
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02008671 dio_bio->bi_error = -EIO;
Filipe Manana61de7182015-07-01 12:13:10 +01008672 /*
8673 * Releases and cleans up our dio_bio, no need to bio_put()
8674 * nor bio_endio()/bio_io_error() against dio_bio.
8675 */
8676 dio_end_io(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008677 }
Filipe Manana61de7182015-07-01 12:13:10 +01008678 if (io_bio)
8679 bio_put(io_bio);
8680 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04008681}
8682
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008683static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info,
8684 struct kiocb *iocb,
8685 const struct iov_iter *iter, loff_t offset)
Chris Mason5a5f79b2010-05-26 21:33:37 -04008686{
8687 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00008688 int i;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008689 unsigned int blocksize_mask = fs_info->sectorsize - 1;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008690 ssize_t retval = -EINVAL;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008691
8692 if (offset & blocksize_mask)
8693 goto out;
8694
Al Viro28060d52014-03-22 05:15:17 -04008695 if (iov_iter_alignment(iter) & blocksize_mask)
8696 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00008697
Al Viro28060d52014-03-22 05:15:17 -04008698 /* If this is a write we don't need to check anymore */
Al Virocd27e452016-10-10 13:39:05 -04008699 if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter))
Al Viro28060d52014-03-22 05:15:17 -04008700 return 0;
8701 /*
8702 * Check to make sure we don't have duplicate iov_base's in this
8703 * iovec, if so return EINVAL, otherwise we'll get csum errors
8704 * when reading back.
8705 */
8706 for (seg = 0; seg < iter->nr_segs; seg++) {
8707 for (i = seg + 1; i < iter->nr_segs; i++) {
8708 if (iter->iov[seg].iov_base == iter->iov[i].iov_base)
Josef Bacika1b75f72011-04-08 15:51:18 +00008709 goto out;
8710 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04008711 }
8712 retval = 0;
8713out:
8714 return retval;
8715}
Josef Bacikeb838e72012-07-31 16:28:48 -04008716
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008717static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Chris Mason16432982008-04-10 10:23:21 -04008718{
Josef Bacik4b46fce2010-05-23 11:00:55 -04008719 struct file *file = iocb->ki_filp;
8720 struct inode *inode = file->f_mapping->host;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008721 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
chandan50745b02015-08-28 21:10:13 +05308722 struct btrfs_dio_data dio_data = { 0 };
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008723 loff_t offset = iocb->ki_pos;
Miao Xie09348562013-02-07 10:12:07 +00008724 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00008725 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00008726 bool wakeup = true;
8727 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00008728 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04008729
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008730 if (check_direct_IO(fs_info, iocb, iter, offset))
Chris Mason5a5f79b2010-05-26 21:33:37 -04008731 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04008732
Jens Axboefe0f07d2015-04-15 17:05:48 -06008733 inode_dio_begin(inode);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01008734 smp_mb__after_atomic();
Miao Xie38851cc2013-02-08 07:04:11 +00008735
Josef Bacik0e267c42013-07-02 10:38:02 -04008736 /*
Miao Xie41bd9ca2014-03-06 13:54:57 +08008737 * The generic stuff only does filemap_write_and_wait_range, which
8738 * isn't enough if we've written compressed pages to this area, so
8739 * we need to flush the dirty pages again to make absolutely sure
8740 * that any outstanding dirty pages are on disk.
Josef Bacik0e267c42013-07-02 10:38:02 -04008741 */
Al Viroa6cbcd42014-03-04 22:38:00 -05008742 count = iov_iter_count(iter);
Miao Xie41bd9ca2014-03-06 13:54:57 +08008743 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8744 &BTRFS_I(inode)->runtime_flags))
Wang Shilong9a025a02014-07-17 11:44:13 +08008745 filemap_fdatawrite_range(inode->i_mapping, offset,
8746 offset + count - 1);
Josef Bacik0e267c42013-07-02 10:38:02 -04008747
Omar Sandoval6f673762015-03-16 04:33:52 -07008748 if (iov_iter_rw(iter) == WRITE) {
Miao Xie38851cc2013-02-08 07:04:11 +00008749 /*
8750 * If the write DIO is beyond the EOF, we need update
8751 * the isize, but it is protected by i_mutex. So we can
8752 * not unlock the i_mutex at this case.
8753 */
8754 if (offset + count <= inode->i_size) {
Liu Bo4aaedfb2016-12-14 22:36:05 -08008755 dio_data.overwrite = 1;
Al Viro59551022016-01-22 15:40:57 -05008756 inode_unlock(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008757 relock = true;
8758 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008759 ret = btrfs_delalloc_reserve_space(inode, offset, count);
Miao Xie09348562013-02-07 10:12:07 +00008760 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00008761 goto out;
David Sterba823bb202017-01-04 11:09:51 +01008762 dio_data.outstanding_extents = count_max_extents(count);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008763
8764 /*
8765 * We need to know how many extents we reserved so that we can
8766 * do the accounting properly if we go over the number we
8767 * originally calculated. Abuse current->journal_info for this.
8768 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04008769 dio_data.reserve = round_up(count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008770 fs_info->sectorsize);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008771 dio_data.unsubmitted_oe_range_start = (u64)offset;
8772 dio_data.unsubmitted_oe_range_end = (u64)offset;
chandan50745b02015-08-28 21:10:13 +05308773 current->journal_info = &dio_data;
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308774 down_read(&BTRFS_I(inode)->dio_sem);
David Sterbaee39b432014-09-30 01:33:33 +02008775 } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
8776 &BTRFS_I(inode)->runtime_flags)) {
Jens Axboefe0f07d2015-04-15 17:05:48 -06008777 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008778 flags = DIO_LOCKING | DIO_SKIP_HOLES;
8779 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00008780 }
8781
Omar Sandoval17f8c842015-03-16 04:33:50 -07008782 ret = __blockdev_direct_IO(iocb, inode,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008783 fs_info->fs_devices->latest_bdev,
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07008784 iter, btrfs_get_blocks_direct, NULL,
Omar Sandoval17f8c842015-03-16 04:33:50 -07008785 btrfs_submit_direct, flags);
Omar Sandoval6f673762015-03-16 04:33:52 -07008786 if (iov_iter_rw(iter) == WRITE) {
Chandan Rajendra97dcdea2016-12-23 15:00:18 +05308787 up_read(&BTRFS_I(inode)->dio_sem);
Josef Bacike1cbbfa2015-03-17 10:52:28 -04008788 current->journal_info = NULL;
Liu Boddba1bf2015-06-17 16:59:58 +08008789 if (ret < 0 && ret != -EIOCBQUEUED) {
chandan50745b02015-08-28 21:10:13 +05308790 if (dio_data.reserve)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008791 btrfs_delalloc_release_space(inode, offset,
8792 dio_data.reserve);
Filipe Mananaf28a4922015-12-08 19:23:20 +00008793 /*
8794 * On error we might have left some ordered extents
8795 * without submitting corresponding bios for them, so
8796 * cleanup them up to avoid other tasks getting them
8797 * and waiting for them to complete forever.
8798 */
8799 if (dio_data.unsubmitted_oe_range_start <
8800 dio_data.unsubmitted_oe_range_end)
Qu Wenruo524272602017-03-08 10:25:52 +08008801 __endio_write_update_ordered(inode,
Filipe Mananaf28a4922015-12-08 19:23:20 +00008802 dio_data.unsubmitted_oe_range_start,
8803 dio_data.unsubmitted_oe_range_end -
8804 dio_data.unsubmitted_oe_range_start,
Qu Wenruo524272602017-03-08 10:25:52 +08008805 false);
Liu Boddba1bf2015-06-17 16:59:58 +08008806 } else if (ret >= 0 && (size_t)ret < count)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08008807 btrfs_delalloc_release_space(inode, offset,
8808 count - (size_t)ret);
Miao Xie09348562013-02-07 10:12:07 +00008809 }
Miao Xie38851cc2013-02-08 07:04:11 +00008810out:
Miao Xie2e60a512013-02-08 07:01:08 +00008811 if (wakeup)
Jens Axboefe0f07d2015-04-15 17:05:48 -06008812 inode_dio_end(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00008813 if (relock)
Al Viro59551022016-01-22 15:40:57 -05008814 inode_lock(inode);
Miao Xie09348562013-02-07 10:12:07 +00008815
8816 return ret;
Chris Mason16432982008-04-10 10:23:21 -04008817}
8818
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008819#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
8820
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008821static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
8822 __u64 start, __u64 len)
8823{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00008824 int ret;
8825
8826 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
8827 if (ret)
8828 return ret;
8829
Chris Masonec29ed52011-02-23 16:23:20 -05008830 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008831}
8832
Chris Mason9ebefb182007-06-15 13:50:00 -04008833int btrfs_readpage(struct file *file, struct page *page)
8834{
Chris Masond1310b22008-01-24 16:13:08 -05008835 struct extent_io_tree *tree;
8836 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02008837 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04008838}
Chris Mason1832a6d2007-12-21 16:27:21 -05008839
Chris Mason39279cc2007-06-12 06:35:45 -04008840static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
8841{
Chris Masond1310b22008-01-24 16:13:08 -05008842 struct extent_io_tree *tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008843 struct inode *inode = page->mapping->host;
8844 int ret;
Chris Masonb888db22007-08-27 16:49:44 -04008845
8846 if (current->flags & PF_MEMALLOC) {
8847 redirty_page_for_writepage(wbc, page);
8848 unlock_page(page);
8849 return 0;
8850 }
Josef Bacikbe7bd732015-10-22 15:05:09 -04008851
8852 /*
8853 * If we are under memory pressure we will call this directly from the
8854 * VM, we need to make sure we have the inode referenced for the ordered
8855 * extent. If not just return like we didn't do anything.
8856 */
8857 if (!igrab(inode)) {
8858 redirty_page_for_writepage(wbc, page);
8859 return AOP_WRITEPAGE_ACTIVATE;
8860 }
Chris Masond1310b22008-01-24 16:13:08 -05008861 tree = &BTRFS_I(page->mapping->host)->io_tree;
Josef Bacikbe7bd732015-10-22 15:05:09 -04008862 ret = extent_write_full_page(tree, page, btrfs_get_extent, wbc);
8863 btrfs_add_delayed_iput(inode);
8864 return ret;
Chris Masona52d9a82007-08-27 16:49:44 -04008865}
Chris Mason39279cc2007-06-12 06:35:45 -04008866
Eric Sandeen48a3b632013-04-25 20:41:01 +00008867static int btrfs_writepages(struct address_space *mapping,
8868 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04008869{
Chris Masond1310b22008-01-24 16:13:08 -05008870 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05008871
Chris Masond1310b22008-01-24 16:13:08 -05008872 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04008873 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
8874}
8875
Chris Mason3ab2fb52007-11-08 10:59:22 -05008876static int
8877btrfs_readpages(struct file *file, struct address_space *mapping,
8878 struct list_head *pages, unsigned nr_pages)
8879{
Chris Masond1310b22008-01-24 16:13:08 -05008880 struct extent_io_tree *tree;
8881 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05008882 return extent_readpages(tree, mapping, pages, nr_pages,
8883 btrfs_get_extent);
8884}
Chris Masone6dcd2d2008-07-17 12:53:50 -04008885static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04008886{
Chris Masond1310b22008-01-24 16:13:08 -05008887 struct extent_io_tree *tree;
8888 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04008889 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04008890
Chris Masond1310b22008-01-24 16:13:08 -05008891 tree = &BTRFS_I(page->mapping->host)->io_tree;
8892 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05008893 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04008894 if (ret == 1) {
8895 ClearPagePrivate(page);
8896 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008897 put_page(page);
Chris Masona52d9a82007-08-27 16:49:44 -04008898 }
8899 return ret;
8900}
Chris Mason39279cc2007-06-12 06:35:45 -04008901
Chris Masone6dcd2d2008-07-17 12:53:50 -04008902static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
8903{
Chris Mason98509cf2008-09-11 15:51:43 -04008904 if (PageWriteback(page) || PageDirty(page))
8905 return 0;
Michal Hocko3ba7ab22017-01-09 15:39:02 +01008906 return __btrfs_releasepage(page, gfp_flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008907}
8908
Lukas Czernerd47992f2013-05-21 23:17:23 -04008909static void btrfs_invalidatepage(struct page *page, unsigned int offset,
8910 unsigned int length)
Chris Masona52d9a82007-08-27 16:49:44 -04008911{
Josef Bacik5fd02042012-05-02 14:00:54 -04008912 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05008913 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008914 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00008915 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008916 u64 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03008917 u64 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308918 u64 start;
8919 u64 end;
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008920 int inode_evicting = inode->i_state & I_FREEING;
Chris Masona52d9a82007-08-27 16:49:44 -04008921
Chris Mason8b62b722009-09-02 16:53:46 -04008922 /*
8923 * we have the page locked, so new writeback can't start,
8924 * and the dirty bit won't be cleared while we are here.
8925 *
8926 * Wait for IO on this page so that we can safely clear
8927 * the PagePrivate2 bit and do ordered accounting
8928 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04008929 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04008930
Josef Bacik5fd02042012-05-02 14:00:54 -04008931 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008932 if (offset) {
8933 btrfs_releasepage(page, GFP_NOFS);
8934 return;
8935 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008936
8937 if (!inode_evicting)
David Sterbaff13db42015-12-03 14:30:40 +01008938 lock_extent_bits(tree, page_start, page_end, &cached_state);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308939again:
8940 start = page_start;
Nikolay Borisova776c6f2017-02-20 13:50:49 +02008941 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308942 page_end - start + 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008943 if (ordered) {
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308944 end = min(page_end, ordered->file_offset + ordered->len - 1);
Chris Masoneb84ae02008-07-17 13:53:27 -04008945 /*
8946 * IO on this page will never be started, so we need
8947 * to account for any ordered extents now
8948 */
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008949 if (!inode_evicting)
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308950 clear_extent_bit(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008951 EXTENT_DIRTY | EXTENT_DELALLOC |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01008952 EXTENT_DELALLOC_NEW |
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008953 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
8954 EXTENT_DEFRAG, 1, 0, &cached_state,
8955 GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04008956 /*
8957 * whoever cleared the private bit is responsible
8958 * for the finish_ordered_io
8959 */
Josef Bacik77cef2e2013-08-29 13:57:21 -04008960 if (TestClearPagePrivate2(page)) {
8961 struct btrfs_ordered_inode_tree *tree;
8962 u64 new_len;
8963
8964 tree = &BTRFS_I(inode)->ordered_tree;
8965
8966 spin_lock_irq(&tree->lock);
8967 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308968 new_len = start - ordered->file_offset;
Josef Bacik77cef2e2013-08-29 13:57:21 -04008969 if (new_len < ordered->truncated_len)
8970 ordered->truncated_len = new_len;
8971 spin_unlock_irq(&tree->lock);
8972
8973 if (btrfs_dec_test_ordered_pending(inode, &ordered,
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308974 start,
8975 end - start + 1, 1))
Josef Bacik77cef2e2013-08-29 13:57:21 -04008976 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04008977 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04008978 btrfs_put_ordered_extent(ordered);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008979 if (!inode_evicting) {
8980 cached_state = NULL;
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308981 lock_extent_bits(tree, start, end,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008982 &cached_state);
8983 }
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05308984
8985 start = end + 1;
8986 if (start < page_end)
8987 goto again;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008988 }
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00008989
Qu Wenruob9d0b382015-09-29 10:35:16 +08008990 /*
8991 * Qgroup reserved space handler
8992 * Page here will be either
8993 * 1) Already written to disk
8994 * In this case, its reserved space is released from data rsv map
8995 * and will be freed by delayed_ref handler finally.
8996 * So even we call qgroup_free_data(), it won't decrease reserved
8997 * space.
8998 * 2) Not written to disk
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05008999 * This means the reserved space should be freed here. However,
9000 * if a truncate invalidates the page (by clearing PageDirty)
9001 * and the page is accounted for while allocating extent
9002 * in btrfs_check_data_free_space() we let delayed_ref to
9003 * free the entire extent.
Qu Wenruob9d0b382015-09-29 10:35:16 +08009004 */
Goldwyn Rodrigues0b34c262016-09-30 10:40:52 -05009005 if (PageDirty(page))
9006 btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE);
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00009007 if (!inode_evicting) {
9008 clear_extent_bit(tree, page_start, page_end,
9009 EXTENT_LOCKED | EXTENT_DIRTY |
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009010 EXTENT_DELALLOC | EXTENT_DELALLOC_NEW |
9011 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
Filipe David Borba Manana131e4042013-11-19 22:29:35 +00009012 &cached_state, GFP_NOFS);
9013
9014 __btrfs_releasepage(page, GFP_NOFS);
9015 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009016
Chris Mason4a096752008-07-21 10:29:44 -04009017 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04009018 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04009019 ClearPagePrivate(page);
9020 set_page_private(page, 0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009021 put_page(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04009022 }
Chris Mason39279cc2007-06-12 06:35:45 -04009023}
9024
Chris Mason9ebefb182007-06-15 13:50:00 -04009025/*
9026 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
9027 * called from a page fault handler when a page is first dirtied. Hence we must
9028 * be careful to check for EOF conditions here. We set the page up correctly
9029 * for a written page which means we get ENOSPC checking when writing into
9030 * holes and correct delalloc and unwritten extent mapping on filesystems that
9031 * support these features.
9032 *
9033 * We are not allowed to take the i_mutex here so we have to play games to
9034 * protect against truncate races as the page could now be beyond EOF. Because
9035 * vmtruncate() writes the inode size before removing pages, once we have the
9036 * page lock we can determine safely if the page is beyond EOF. If it is not
9037 * beyond EOF, then the page is guaranteed safe against truncation until we
9038 * unlock the page.
9039 */
Dave Jiang11bac802017-02-24 14:56:41 -08009040int btrfs_page_mkwrite(struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04009041{
Nick Pigginc2ec1752009-03-31 15:23:21 -07009042 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08009043 struct inode *inode = file_inode(vmf->vma->vm_file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009044 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009045 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
9046 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00009047 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04009048 char *kaddr;
9049 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04009050 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05009051 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05009052 int reserved = 0;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309053 u64 reserved_space;
Chris Masona52d9a82007-08-27 16:49:44 -04009054 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04009055 u64 page_end;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309056 u64 end;
9057
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009058 reserved_space = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009059
Jan Karab2b5ef52012-06-12 16:20:45 +02009060 sb_start_pagefault(inode->i_sb);
Qu Wenruodf480632015-09-08 17:25:54 +08009061 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009062 page_end = page_start + PAGE_SIZE - 1;
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309063 end = page_end;
Qu Wenruodf480632015-09-08 17:25:54 +08009064
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309065 /*
9066 * Reserving delalloc space after obtaining the page lock can lead to
9067 * deadlock. For example, if a dirty page is locked by this function
9068 * and the call to btrfs_delalloc_reserve_space() ends up triggering
9069 * dirty page write out, then the btrfs_writepage() function could
9070 * end up waiting indefinitely to get a lock on the page currently
9071 * being processed by btrfs_page_mkwrite() function.
9072 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08009073 ret = btrfs_delalloc_reserve_space(inode, page_start,
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309074 reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009075 if (!ret) {
Dave Jiang11bac802017-02-24 14:56:41 -08009076 ret = file_update_time(vmf->vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05009077 reserved = 1;
9078 }
Nick Piggin56a76f82009-03-31 15:23:23 -07009079 if (ret) {
9080 if (ret == -ENOMEM)
9081 ret = VM_FAULT_OOM;
9082 else /* -ENOSPC, -EIO, etc */
9083 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05009084 if (reserved)
9085 goto out;
9086 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07009087 }
Chris Mason1832a6d2007-12-21 16:27:21 -05009088
Nick Piggin56a76f82009-03-31 15:23:23 -07009089 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04009090again:
Chris Mason9ebefb182007-06-15 13:50:00 -04009091 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04009092 size = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04009093
Chris Mason9ebefb182007-06-15 13:50:00 -04009094 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04009095 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04009096 /* page got truncated out from underneath us */
9097 goto out_unlock;
9098 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009099 wait_on_page_writeback(page);
9100
David Sterbaff13db42015-12-03 14:30:40 +01009101 lock_extent_bits(io_tree, page_start, page_end, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009102 set_page_extent_mapped(page);
9103
Chris Masoneb84ae02008-07-17 13:53:27 -04009104 /*
9105 * we can't set the delalloc bits if there are pending ordered
9106 * extents. Drop our locks and wait for them to finish
9107 */
Nikolay Borisova776c6f2017-02-20 13:50:49 +02009108 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start,
9109 PAGE_SIZE);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009110 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009111 unlock_extent_cached(io_tree, page_start, page_end,
9112 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009113 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04009114 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009115 btrfs_put_ordered_extent(ordered);
9116 goto again;
9117 }
9118
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009119 if (page->index == ((size - 1) >> PAGE_SHIFT)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04009120 reserved_space = round_up(size - page_start,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009121 fs_info->sectorsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009122 if (reserved_space < PAGE_SIZE) {
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309123 end = page_start + reserved_space - 1;
9124 spin_lock(&BTRFS_I(inode)->lock);
9125 BTRFS_I(inode)->outstanding_extents++;
9126 spin_unlock(&BTRFS_I(inode)->lock);
9127 btrfs_delalloc_release_space(inode, page_start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009128 PAGE_SIZE - reserved_space);
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309129 }
9130 }
9131
Josef Bacikfbf19082009-10-01 17:10:23 -04009132 /*
Liu Bo54160342016-12-13 12:15:19 -08009133 * page_mkwrite gets called when the page is firstly dirtied after it's
9134 * faulted in, but write(2) could also dirty a page and set delalloc
9135 * bits, thus in this case for space account reason, we still need to
9136 * clear any delalloc bits within this page range since we have to
9137 * reserve data&meta space before lock_page() (see above comments).
Josef Bacikfbf19082009-10-01 17:10:23 -04009138 */
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309139 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06009140 EXTENT_DIRTY | EXTENT_DELALLOC |
9141 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00009142 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04009143
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309144 ret = btrfs_set_extent_delalloc(inode, page_start, end,
Qu Wenruoba8b04c2016-07-19 16:50:36 +08009145 &cached_state, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009146 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00009147 unlock_extent_cached(io_tree, page_start, page_end,
9148 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04009149 ret = VM_FAULT_SIGBUS;
9150 goto out_unlock;
9151 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04009152 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04009153
9154 /* page is wholly or partially inside EOF */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009155 if (page_start + PAGE_SIZE > size)
9156 zero_start = size & ~PAGE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04009157 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009158 zero_start = PAGE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04009159
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009160 if (zero_start != PAGE_SIZE) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009161 kaddr = kmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03009162 memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009163 flush_dcache_page(page);
9164 kunmap(page);
9165 }
Chris Mason247e7432008-07-17 12:53:51 -04009166 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009167 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04009168 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04009169
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009170 BTRFS_I(inode)->last_trans = fs_info->generation;
Chris Mason257c62e2009-10-13 13:21:08 -04009171 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06009172 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04009173
Josef Bacik2ac55d42010-02-03 19:33:23 +00009174 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04009175
9176out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02009177 if (!ret) {
9178 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04009179 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02009180 }
Chris Mason9ebefb182007-06-15 13:50:00 -04009181 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05009182out:
Chandan Rajendrad0b7da882016-01-21 15:55:57 +05309183 btrfs_delalloc_release_space(inode, page_start, reserved_space);
Chris Mason9998eb72012-01-25 13:47:40 -05009184out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02009185 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04009186 return ret;
9187}
9188
Josef Bacika41ad392011-01-31 15:30:16 -05009189static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04009190{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009191 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009192 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04009193 struct btrfs_block_rsv *rsv;
Josef Bacika71754f2013-06-17 17:14:39 -04009194 int ret = 0;
Josef Bacik3893e332011-01-31 16:03:11 -05009195 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009196 struct btrfs_trans_handle *trans;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009197 u64 mask = fs_info->sectorsize - 1;
9198 u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04009199
Josef Bacik0ef8b722013-10-25 16:13:35 -04009200 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
9201 (u64)-1);
9202 if (ret)
9203 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04009204
Josef Bacikfcb80c22011-05-03 10:40:22 -04009205 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04009206 * Yes ladies and gentlemen, this is indeed ugly. The fact is we have
Josef Bacikfcb80c22011-05-03 10:40:22 -04009207 * 3 things going on here
9208 *
9209 * 1) We need to reserve space for our orphan item and the space to
9210 * delete our orphan item. Lord knows we don't want to have a dangling
9211 * orphan item because we didn't reserve space to remove it.
9212 *
9213 * 2) We need to reserve space to update our inode.
9214 *
9215 * 3) We need to have something to cache all the space that is going to
9216 * be free'd up by the truncate operation, but also have some slack
9217 * space reserved in case it uses space during the truncate (thank you
9218 * very much snapshotting).
9219 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04009220 * And we need these to all be separate. The fact is we can use a lot of
Josef Bacikfcb80c22011-05-03 10:40:22 -04009221 * space doing the truncate, and we have no earthly idea how much space
Nicholas D Steeves01327612016-05-19 21:18:45 -04009222 * we will use, so we need the truncate reservation to be separate so it
Josef Bacikfcb80c22011-05-03 10:40:22 -04009223 * doesn't end up using space reserved for updating the inode or
9224 * removing the orphan item. We also need to be able to stop the
9225 * transaction and start a new one, which means we need to be able to
9226 * update the inode several times, and we have no idea of knowing how
9227 * many times that will be, so we can't just reserve 1 item for the
Nicholas D Steeves01327612016-05-19 21:18:45 -04009228 * entirety of the operation, so that has to be done separately as well.
Josef Bacikfcb80c22011-05-03 10:40:22 -04009229 * Then there is the orphan item, which does indeed need to be held on
9230 * to for the whole operation, and we need nobody to touch this reserved
9231 * space except the orphan code.
9232 *
9233 * So that leaves us with
9234 *
9235 * 1) root->orphan_block_rsv - for the orphan deletion.
9236 * 2) rsv - for the truncate reservation, which we will steal from the
9237 * transaction reservation.
9238 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
9239 * updating the inode.
9240 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009241 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009242 if (!rsv)
9243 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04009244 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04009245 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05009246
Josef Bacik907cbce2011-08-08 13:46:15 -04009247 /*
Josef Bacik07127182011-08-19 10:29:59 -04009248 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04009249 * 1 for updating the inode.
9250 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05009251 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009252 if (IS_ERR(trans)) {
9253 err = PTR_ERR(trans);
9254 goto out;
9255 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05009256
Josef Bacik907cbce2011-08-08 13:46:15 -04009257 /* Migrate the slack space for the truncate to our reserve */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009258 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009259 min_size, 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009260 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05009261
Chris Mason5a3f23d2009-03-31 13:27:11 -04009262 /*
Josef Bacik5dc562c2012-08-17 13:14:17 -04009263 * So if we truncate and then write and fsync we normally would just
9264 * write the extents that changed, which is a problem if we need to
9265 * first truncate that entire inode. So set this flag so we write out
9266 * all of the extents in the inode to the sync log so we're completely
9267 * safe.
9268 */
9269 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009270 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04009271
Yan, Zheng80825102009-11-12 09:35:36 +00009272 while (1) {
9273 ret = btrfs_truncate_inode_items(trans, root, inode,
9274 inode->i_size,
9275 BTRFS_EXTENT_DATA_KEY);
Chris Mason28ed1342014-12-17 09:41:04 -08009276 if (ret != -ENOSPC && ret != -EAGAIN) {
Josef Bacik3893e332011-01-31 16:03:11 -05009277 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009278 break;
Josef Bacik3893e332011-01-31 16:03:11 -05009279 }
Chris Mason39279cc2007-06-12 06:35:45 -04009280
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009281 trans->block_rsv = &fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009282 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05009283 if (ret) {
9284 err = ret;
9285 break;
9286 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04009287
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009288 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009289 btrfs_btree_balance_dirty(fs_info);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009290
9291 trans = btrfs_start_transaction(root, 2);
9292 if (IS_ERR(trans)) {
9293 ret = err = PTR_ERR(trans);
9294 trans = NULL;
9295 break;
9296 }
9297
Wang Xiaoguang47b5d642016-09-07 20:17:38 +08009298 btrfs_block_rsv_release(fs_info, rsv, -1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009299 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
Josef Bacik25d609f2016-03-25 13:25:48 -04009300 rsv, min_size, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04009301 BUG_ON(ret); /* shouldn't happen */
9302 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00009303 }
9304
9305 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04009306 trans->block_rsv = root->orphan_block_rsv;
Nikolay Borisov3d6ae7b2017-02-20 13:50:58 +02009307 ret = btrfs_orphan_del(trans, BTRFS_I(inode));
Josef Bacik3893e332011-01-31 16:03:11 -05009308 if (ret)
9309 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00009310 }
9311
Chris Mason917c16b2011-11-08 14:49:59 -05009312 if (trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009313 trans->block_rsv = &fs_info->trans_block_rsv;
Chris Mason917c16b2011-11-08 14:49:59 -05009314 ret = btrfs_update_inode(trans, root, inode);
9315 if (ret && !err)
9316 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04009317
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009318 ret = btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009319 btrfs_btree_balance_dirty(fs_info);
Chris Mason917c16b2011-11-08 14:49:59 -05009320 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04009321out:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009322 btrfs_free_block_rsv(fs_info, rsv);
Josef Bacikfcb80c22011-05-03 10:40:22 -04009323
Josef Bacik3893e332011-01-31 16:03:11 -05009324 if (ret && !err)
9325 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05009326
Josef Bacik3893e332011-01-31 16:03:11 -05009327 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009328}
9329
Sven Wegener3b963622008-06-09 21:57:42 -04009330/*
Chris Masond352ac62008-09-29 15:18:18 -04009331 * create a new subvolume directory/inode (helper for the ioctl).
9332 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05009333int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009334 struct btrfs_root *new_root,
9335 struct btrfs_root *parent_root,
9336 u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04009337{
Chris Mason39279cc2007-06-12 06:35:45 -04009338 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04009339 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04009340 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04009341
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01009342 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
9343 new_dirid, new_dirid,
9344 S_IFDIR | (~current_umask() & S_IRWXUGO),
9345 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04009346 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04009347 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04009348 inode->i_op = &btrfs_dir_inode_operations;
9349 inode->i_fop = &btrfs_dir_file_operations;
9350
Miklos Szeredibfe86842011-10-28 14:13:29 +02009351 set_nlink(inode, 1);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02009352 btrfs_i_size_write(BTRFS_I(inode), 0);
Chris Masonb0d5d102014-09-08 13:08:51 -07009353 unlock_new_inode(inode);
Sven Wegener3b963622008-06-09 21:57:42 -04009354
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009355 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
9356 if (err)
9357 btrfs_err(new_root->fs_info,
David Sterba351fd352014-05-15 16:48:20 +02009358 "error inheriting subvolume %llu properties: %d",
Filipe David Borba Manana63541922014-01-07 11:47:46 +00009359 new_root->root_key.objectid, err);
9360
Yan, Zheng76dda932009-09-21 16:00:26 -04009361 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04009362
Yan, Zheng76dda932009-09-21 16:00:26 -04009363 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07009364 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04009365}
9366
Chris Mason39279cc2007-06-12 06:35:45 -04009367struct inode *btrfs_alloc_inode(struct super_block *sb)
9368{
9369 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009370 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009371
9372 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
9373 if (!ei)
9374 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009375
9376 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009377 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04009378 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04009379 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04009380 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009381 ei->delalloc_bytes = 0;
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009382 ei->new_delalloc_bytes = 0;
Wang Shilong47059d92014-07-03 18:22:07 +08009383 ei->defrag_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009384 ei->disk_i_size = 0;
9385 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04009386 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009387 ei->index_cnt = (u64)-1;
Miao Xie67de1172013-12-26 13:07:06 +08009388 ei->dir_index = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009389 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06009390 ei->last_log_commit = 0;
David Sterba8089fe62015-11-19 14:15:51 +01009391 ei->delayed_iput_count = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009392
Josef Bacik9e0baf62011-07-15 15:16:44 +00009393 spin_lock_init(&ei->lock);
9394 ei->outstanding_extents = 0;
9395 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009396
Josef Bacik72ac3c02012-05-23 14:13:11 -04009397 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08009398 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009399
Miao Xie16cdcec2011-04-22 18:12:22 +08009400 ei->delayed_node = NULL;
9401
chandan r9cc97d62012-07-04 12:48:07 +05309402 ei->i_otime.tv_sec = 0;
9403 ei->i_otime.tv_nsec = 0;
9404
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009405 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02009406 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02009407 extent_io_tree_init(&ei->io_tree, &inode->i_data);
9408 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04009409 ei->io_tree.track_uptodate = 1;
9410 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05009411 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009412 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05009413 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009414 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009415 INIT_LIST_HEAD(&ei->delalloc_inodes);
David Sterba8089fe62015-11-19 14:15:51 +01009416 INIT_LIST_HEAD(&ei->delayed_iput);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009417 RB_CLEAR_NODE(&ei->rb_node);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01009418 init_rwsem(&ei->dio_sem);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04009419
9420 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04009421}
9422
Josef Bacikaaedb552013-10-11 14:44:09 -04009423#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
9424void btrfs_test_destroy_inode(struct inode *inode)
9425{
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009426 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacikaaedb552013-10-11 14:44:09 -04009427 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9428}
9429#endif
9430
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009431static void btrfs_i_callback(struct rcu_head *head)
9432{
9433 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009434 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
9435}
9436
Chris Mason39279cc2007-06-12 06:35:45 -04009437void btrfs_destroy_inode(struct inode *inode)
9438{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009439 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009440 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009441 struct btrfs_root *root = BTRFS_I(inode)->root;
9442
Al Virob3d9b7a2012-06-09 13:51:19 -04009443 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04009444 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00009445 WARN_ON(BTRFS_I(inode)->outstanding_extents);
9446 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04009447 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009448 WARN_ON(BTRFS_I(inode)->new_delalloc_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04009449 WARN_ON(BTRFS_I(inode)->csum_bytes);
Wang Shilong47059d92014-07-03 18:22:07 +08009450 WARN_ON(BTRFS_I(inode)->defrag_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04009451
Chris Mason5a3f23d2009-03-31 13:27:11 -04009452 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05009453 * This can happen where we create an inode, but somebody else also
9454 * created the same inode and we need to destroy the one we already
9455 * created.
9456 */
9457 if (!root)
9458 goto free;
9459
Josef Bacik8a35d952012-05-23 14:26:42 -04009460 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
9461 &BTRFS_I(inode)->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009462 btrfs_info(fs_info, "inode %llu still on the orphan list",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009463 btrfs_ino(BTRFS_I(inode)));
Josef Bacik8a35d952012-05-23 14:26:42 -04009464 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04009465 }
Josef Bacik7b128762008-07-24 12:17:14 -04009466
Chris Masond3977122009-01-05 21:25:51 -05009467 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04009468 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
9469 if (!ordered)
9470 break;
9471 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009472 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009473 "found ordered extent %llu %llu on inode cleanup",
9474 ordered->file_offset, ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04009475 btrfs_remove_ordered_extent(inode, ordered);
9476 btrfs_put_ordered_extent(ordered);
9477 btrfs_put_ordered_extent(ordered);
9478 }
9479 }
Qu Wenruo56fa9d02015-10-13 09:53:10 +08009480 btrfs_qgroup_check_reserved_leak(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009481 inode_tree_del(inode);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02009482 btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05009483free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11009484 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04009485}
9486
Al Viro45321ac2010-06-07 13:43:19 -04009487int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04009488{
9489 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04009490
Naohiro Aota6379ef92013-06-06 09:56:34 +00009491 if (root == NULL)
9492 return 1;
9493
Liu Bofa6ac872013-02-20 14:10:23 +00009494 /* the snap/subvol tree is on deleting */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +02009495 if (btrfs_root_refs(&root->root_item) == 0)
Al Viro45321ac2010-06-07 13:43:19 -04009496 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04009497 else
Al Viro45321ac2010-06-07 13:43:19 -04009498 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04009499}
9500
Sven Wegener0ee0fda2008-07-30 16:54:26 -04009501static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04009502{
9503 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
9504
9505 inode_init_once(&ei->vfs_inode);
9506}
9507
9508void btrfs_destroy_cachep(void)
9509{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10009510 /*
9511 * Make sure all delayed rcu free inodes are flushed before we
9512 * destroy cache.
9513 */
9514 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +08009515 kmem_cache_destroy(btrfs_inode_cachep);
9516 kmem_cache_destroy(btrfs_trans_handle_cachep);
9517 kmem_cache_destroy(btrfs_transaction_cachep);
9518 kmem_cache_destroy(btrfs_path_cachep);
9519 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04009520}
9521
9522int btrfs_init_cachep(void)
9523{
David Sterba837e1972012-09-07 03:00:48 -06009524 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009525 sizeof(struct btrfs_inode), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -08009526 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT,
9527 init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04009528 if (!btrfs_inode_cachep)
9529 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009530
David Sterba837e1972012-09-07 03:00:48 -06009531 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009532 sizeof(struct btrfs_trans_handle), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009533 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009534 if (!btrfs_trans_handle_cachep)
9535 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009536
David Sterba837e1972012-09-07 03:00:48 -06009537 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009538 sizeof(struct btrfs_transaction), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009539 SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009540 if (!btrfs_transaction_cachep)
9541 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009542
David Sterba837e1972012-09-07 03:00:48 -06009543 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009544 sizeof(struct btrfs_path), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009545 SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04009546 if (!btrfs_path_cachep)
9547 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02009548
David Sterba837e1972012-09-07 03:00:48 -06009549 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05009550 sizeof(struct btrfs_free_space), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +03009551 SLAB_MEM_SPREAD, NULL);
Josef Bacikdc89e982011-01-28 17:05:48 -05009552 if (!btrfs_free_space_cachep)
9553 goto fail;
9554
Chris Mason39279cc2007-06-12 06:35:45 -04009555 return 0;
9556fail:
9557 btrfs_destroy_cachep();
9558 return -ENOMEM;
9559}
9560
David Howellsa528d352017-01-31 16:46:22 +00009561static int btrfs_getattr(const struct path *path, struct kstat *stat,
9562 u32 request_mask, unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009563{
Miao Xiedf0af1a2013-01-29 10:11:59 +00009564 u64 delalloc_bytes;
David Howellsa528d352017-01-31 16:46:22 +00009565 struct inode *inode = d_inode(path->dentry);
David Sterbafadc0d82011-11-20 07:33:38 -05009566 u32 blocksize = inode->i_sb->s_blocksize;
9567
Chris Mason39279cc2007-06-12 06:35:45 -04009568 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04009569 stat->dev = BTRFS_I(inode)->root->anon_dev;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009570
9571 spin_lock(&BTRFS_I(inode)->lock);
Filipe Mananaa7e3b972017-04-03 10:45:46 +01009572 delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes;
Miao Xiedf0af1a2013-01-29 10:11:59 +00009573 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05009574 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00009575 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04009576 return 0;
9577}
9578
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009579static int btrfs_rename_exchange(struct inode *old_dir,
9580 struct dentry *old_dentry,
9581 struct inode *new_dir,
9582 struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04009583{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009584 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009585 struct btrfs_trans_handle *trans;
9586 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009587 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009588 struct inode *new_inode = new_dentry->d_inode;
9589 struct inode *old_inode = old_dentry->d_inode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009590 struct timespec ctime = current_time(old_inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009591 struct dentry *parent;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009592 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
9593 u64 new_ino = btrfs_ino(BTRFS_I(new_inode));
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009594 u64 old_idx = 0;
9595 u64 new_idx = 0;
9596 u64 root_objectid;
9597 int ret;
Filipe Manana86e8aa02016-05-05 02:02:27 +01009598 bool root_log_pinned = false;
9599 bool dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009600
9601 /* we only allow rename subvolume link between subvolumes */
9602 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
9603 return -EXDEV;
9604
9605 /* close the race window with snapshot create/destroy ioctl */
9606 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009607 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009608 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009609 down_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009610
9611 /*
9612 * We want to reserve the absolute worst case amount of items. So if
9613 * both inodes are subvols and we need to unlink them then that would
9614 * require 4 item modifications, but if they are both normal inodes it
9615 * would require 5 item modifications, so we'll assume their normal
9616 * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items
9617 * should cover the worst case number of items we'll modify.
9618 */
9619 trans = btrfs_start_transaction(root, 12);
9620 if (IS_ERR(trans)) {
9621 ret = PTR_ERR(trans);
9622 goto out_notrans;
9623 }
9624
9625 /*
9626 * We need to find a free sequence number both in the source and
9627 * in the destination directory for the exchange.
9628 */
Nikolay Borisov877574e2017-02-20 13:50:33 +02009629 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009630 if (ret)
9631 goto out_fail;
Nikolay Borisov877574e2017-02-20 13:50:33 +02009632 ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009633 if (ret)
9634 goto out_fail;
9635
9636 BTRFS_I(old_inode)->dir_index = 0ULL;
9637 BTRFS_I(new_inode)->dir_index = 0ULL;
9638
9639 /* Reference for the source. */
9640 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9641 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009642 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009643 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009644 btrfs_pin_log_trans(root);
9645 root_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009646 ret = btrfs_insert_inode_ref(trans, dest,
9647 new_dentry->d_name.name,
9648 new_dentry->d_name.len,
9649 old_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009650 btrfs_ino(BTRFS_I(new_dir)),
9651 old_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009652 if (ret)
9653 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009654 }
9655
9656 /* And now for the dest. */
9657 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9658 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009659 btrfs_set_log_full_commit(fs_info, trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009660 } else {
Filipe Manana376e5a52016-05-05 02:08:56 +01009661 btrfs_pin_log_trans(dest);
9662 dest_log_pinned = true;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009663 ret = btrfs_insert_inode_ref(trans, root,
9664 old_dentry->d_name.name,
9665 old_dentry->d_name.len,
9666 new_ino,
David Sterbaf85b7372017-01-20 14:54:07 +01009667 btrfs_ino(BTRFS_I(old_dir)),
9668 new_idx);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009669 if (ret)
9670 goto out_fail;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009671 }
9672
9673 /* Update inode version and ctime/mtime. */
9674 inode_inc_iversion(old_dir);
9675 inode_inc_iversion(new_dir);
9676 inode_inc_iversion(old_inode);
9677 inode_inc_iversion(new_inode);
9678 old_dir->i_ctime = old_dir->i_mtime = ctime;
9679 new_dir->i_ctime = new_dir->i_mtime = ctime;
9680 old_inode->i_ctime = ctime;
9681 new_inode->i_ctime = ctime;
9682
9683 if (old_dentry->d_parent != new_dentry->d_parent) {
David Sterbaf85b7372017-01-20 14:54:07 +01009684 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9685 BTRFS_I(old_inode), 1);
9686 btrfs_record_unlink_dir(trans, BTRFS_I(new_dir),
9687 BTRFS_I(new_inode), 1);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009688 }
9689
9690 /* src is a subvolume */
9691 if (old_ino == BTRFS_FIRST_FREE_OBJECTID) {
9692 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9693 ret = btrfs_unlink_subvol(trans, root, old_dir,
9694 root_objectid,
9695 old_dentry->d_name.name,
9696 old_dentry->d_name.len);
9697 } else { /* src is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009698 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9699 BTRFS_I(old_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009700 old_dentry->d_name.name,
9701 old_dentry->d_name.len);
9702 if (!ret)
9703 ret = btrfs_update_inode(trans, root, old_inode);
9704 }
9705 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009706 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009707 goto out_fail;
9708 }
9709
9710 /* dest is a subvolume */
9711 if (new_ino == BTRFS_FIRST_FREE_OBJECTID) {
9712 root_objectid = BTRFS_I(new_inode)->root->root_key.objectid;
9713 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9714 root_objectid,
9715 new_dentry->d_name.name,
9716 new_dentry->d_name.len);
9717 } else { /* dest is an inode */
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009718 ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
9719 BTRFS_I(new_dentry->d_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009720 new_dentry->d_name.name,
9721 new_dentry->d_name.len);
9722 if (!ret)
9723 ret = btrfs_update_inode(trans, dest, new_inode);
9724 }
9725 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009726 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009727 goto out_fail;
9728 }
9729
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009730 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009731 new_dentry->d_name.name,
9732 new_dentry->d_name.len, 0, old_idx);
9733 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009734 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009735 goto out_fail;
9736 }
9737
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02009738 ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009739 old_dentry->d_name.name,
9740 old_dentry->d_name.len, 0, new_idx);
9741 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009742 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009743 goto out_fail;
9744 }
9745
9746 if (old_inode->i_nlink == 1)
9747 BTRFS_I(old_inode)->dir_index = old_idx;
9748 if (new_inode->i_nlink == 1)
9749 BTRFS_I(new_inode)->dir_index = new_idx;
9750
Filipe Manana86e8aa02016-05-05 02:02:27 +01009751 if (root_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009752 parent = new_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009753 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
9754 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009755 btrfs_end_log_trans(root);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009756 root_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009757 }
Filipe Manana86e8aa02016-05-05 02:02:27 +01009758 if (dest_log_pinned) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009759 parent = old_dentry->d_parent;
David Sterbaf85b7372017-01-20 14:54:07 +01009760 btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir),
9761 parent);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009762 btrfs_end_log_trans(dest);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009763 dest_log_pinned = false;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009764 }
9765out_fail:
Filipe Manana86e8aa02016-05-05 02:02:27 +01009766 /*
9767 * If we have pinned a log and an error happened, we unpin tasks
9768 * trying to sync the log and force them to fallback to a transaction
9769 * commit if the log currently contains any of the inodes involved in
9770 * this rename operation (to ensure we do not persist a log with an
9771 * inconsistent state for any of these inodes or leading to any
9772 * inconsistencies when replayed). If the transaction was aborted, the
9773 * abortion reason is propagated to userspace when attempting to commit
9774 * the transaction. If the log does not contain any of these inodes, we
9775 * allow the tasks to sync it.
9776 */
9777 if (ret && (root_log_pinned || dest_log_pinned)) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009778 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
9779 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
9780 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana86e8aa02016-05-05 02:02:27 +01009781 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02009782 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009783 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana86e8aa02016-05-05 02:02:27 +01009784
9785 if (root_log_pinned) {
9786 btrfs_end_log_trans(root);
9787 root_log_pinned = false;
9788 }
9789 if (dest_log_pinned) {
9790 btrfs_end_log_trans(dest);
9791 dest_log_pinned = false;
9792 }
9793 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009794 ret = btrfs_end_transaction(trans);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009795out_notrans:
9796 if (new_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009797 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009798 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009799 up_read(&fs_info->subvol_sem);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009800
9801 return ret;
9802}
9803
9804static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans,
9805 struct btrfs_root *root,
9806 struct inode *dir,
9807 struct dentry *dentry)
9808{
9809 int ret;
9810 struct inode *inode;
9811 u64 objectid;
9812 u64 index;
9813
9814 ret = btrfs_find_free_ino(root, &objectid);
9815 if (ret)
9816 return ret;
9817
9818 inode = btrfs_new_inode(trans, root, dir,
9819 dentry->d_name.name,
9820 dentry->d_name.len,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009821 btrfs_ino(BTRFS_I(dir)),
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009822 objectid,
9823 S_IFCHR | WHITEOUT_MODE,
9824 &index);
9825
9826 if (IS_ERR(inode)) {
9827 ret = PTR_ERR(inode);
9828 return ret;
9829 }
9830
9831 inode->i_op = &btrfs_special_inode_operations;
9832 init_special_inode(inode, inode->i_mode,
9833 WHITEOUT_DEV);
9834
9835 ret = btrfs_init_inode_security(trans, inode, dir,
9836 &dentry->d_name);
9837 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009838 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009839
Nikolay Borisovcef415a2017-02-20 13:51:09 +02009840 ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
9841 BTRFS_I(inode), 0, index);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009842 if (ret)
Filipe Mananac9901612016-05-05 01:41:57 +01009843 goto out;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009844
9845 ret = btrfs_update_inode(trans, root, inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009846out:
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009847 unlock_new_inode(inode);
Filipe Mananac9901612016-05-05 01:41:57 +01009848 if (ret)
9849 inode_dec_link_count(inode);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009850 iput(inode);
9851
Filipe Mananac9901612016-05-05 01:41:57 +01009852 return ret;
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009853}
9854
Chris Mason39279cc2007-06-12 06:35:45 -04009855static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009856 struct inode *new_dir, struct dentry *new_dentry,
9857 unsigned int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04009858{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009859 struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04009860 struct btrfs_trans_handle *trans;
Filipe Manana5062af32016-05-05 10:26:26 +01009861 unsigned int trans_num_items;
Chris Mason39279cc2007-06-12 06:35:45 -04009862 struct btrfs_root *root = BTRFS_I(old_dir)->root;
9863 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
David Howells2b0143b2015-03-17 22:25:59 +00009864 struct inode *new_inode = d_inode(new_dentry);
9865 struct inode *old_inode = d_inode(old_dentry);
Chris Mason00e4e6b2008-08-05 11:18:09 -04009866 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009867 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04009868 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009869 u64 old_ino = btrfs_ino(BTRFS_I(old_inode));
Filipe Manana3dc9e8f2016-04-29 11:34:22 +01009870 bool log_pinned = false;
Chris Mason39279cc2007-06-12 06:35:45 -04009871
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009872 if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04009873 return -EPERM;
9874
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009875 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08009876 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05009877 return -EXDEV;
9878
Li Zefan33345d012011-04-20 10:31:50 +08009879 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009880 (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009881 return -ENOTEMPTY;
9882
Chris Mason39279cc2007-06-12 06:35:45 -04009883 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009884 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04009885 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05009886
9887
9888 /* check for collisions, even if the name isn't there */
Josef Bacik4871c152013-10-09 12:24:04 -04009889 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05009890 new_dentry->d_name.name,
9891 new_dentry->d_name.len);
9892
9893 if (ret) {
9894 if (ret == -EEXIST) {
9895 /* we shouldn't get
9896 * eexist without a new_inode */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309897 if (WARN_ON(!new_inode)) {
Chris Mason9c520572012-12-17 14:26:57 -05009898 return ret;
9899 }
9900 } else {
9901 /* maybe -EOVERFLOW */
9902 return ret;
9903 }
9904 }
9905 ret = 0;
9906
Chris Mason5a3f23d2009-03-31 13:27:11 -04009907 /*
Chris Mason8d875f92014-08-12 10:47:42 -07009908 * we're using rename to replace one file with another. Start IO on it
9909 * now so we don't add too much work to the end of the transaction
Chris Mason5a3f23d2009-03-31 13:27:11 -04009910 */
Chris Mason8d875f92014-08-12 10:47:42 -07009911 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size)
Chris Mason5a3f23d2009-03-31 13:27:11 -04009912 filemap_flush(old_inode->i_mapping);
9913
Yan, Zheng76dda932009-09-21 16:00:26 -04009914 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08009915 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009916 down_read(&fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04009917 /*
9918 * We want to reserve the absolute worst case amount of items. So if
9919 * both inodes are subvols and we need to unlink them then that would
9920 * require 4 item modifications, but if they are both normal inodes it
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009921 * would require 5 item modifications, so we'll assume they are normal
Yan, Zhenga22285a2010-05-16 10:48:46 -04009922 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
9923 * should cover the worst case number of items we'll modify.
Filipe Manana5062af32016-05-05 10:26:26 +01009924 * If our rename has the whiteout flag, we need more 5 units for the
9925 * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item
9926 * when selinux is enabled).
Yan, Zhenga22285a2010-05-16 10:48:46 -04009927 */
Filipe Manana5062af32016-05-05 10:26:26 +01009928 trans_num_items = 11;
9929 if (flags & RENAME_WHITEOUT)
9930 trans_num_items += 5;
9931 trans = btrfs_start_transaction(root, trans_num_items);
Johann Lombardib44c59a2011-03-31 13:23:47 +00009932 if (IS_ERR(trans)) {
Dan Fuhrycdd1fed2016-03-17 15:23:38 +01009933 ret = PTR_ERR(trans);
9934 goto out_notrans;
9935 }
Chris Mason5f39d392007-10-15 16:14:19 -04009936
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009937 if (dest != root)
9938 btrfs_record_root_in_trans(trans, dest);
9939
Nikolay Borisov877574e2017-02-20 13:50:33 +02009940 ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009941 if (ret)
9942 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04009943
Miao Xie67de1172013-12-26 13:07:06 +08009944 BTRFS_I(old_inode)->dir_index = 0ULL;
Li Zefan33345d012011-04-20 10:31:50 +08009945 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009946 /* force full log commit if subvolume involved. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009947 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009948 } else {
Filipe Mananac4aba952016-04-29 13:14:42 +01009949 btrfs_pin_log_trans(root);
9950 log_pinned = true;
Yan, Zhenga5719522009-09-24 09:17:31 -04009951 ret = btrfs_insert_inode_ref(trans, dest,
9952 new_dentry->d_name.name,
9953 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08009954 old_ino,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009955 btrfs_ino(BTRFS_I(new_dir)), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04009956 if (ret)
9957 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009958 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04009959
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009960 inode_inc_iversion(old_dir);
9961 inode_inc_iversion(new_dir);
9962 inode_inc_iversion(old_inode);
Deepa Dinamani04b285f2016-02-06 23:57:21 -08009963 old_dir->i_ctime = old_dir->i_mtime =
9964 new_dir->i_ctime = new_dir->i_mtime =
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009965 old_inode->i_ctime = current_time(old_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04009966
Chris Mason12fcfd22009-03-24 10:24:20 -04009967 if (old_dentry->d_parent != new_dentry->d_parent)
David Sterbaf85b7372017-01-20 14:54:07 +01009968 btrfs_record_unlink_dir(trans, BTRFS_I(old_dir),
9969 BTRFS_I(old_inode), 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04009970
Li Zefan33345d012011-04-20 10:31:50 +08009971 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009972 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
9973 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
9974 old_dentry->d_name.name,
9975 old_dentry->d_name.len);
9976 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +02009977 ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir),
9978 BTRFS_I(d_inode(old_dentry)),
Al Viro92986792011-03-04 17:14:37 +00009979 old_dentry->d_name.name,
9980 old_dentry->d_name.len);
9981 if (!ret)
9982 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009983 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009984 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009985 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009986 goto out_fail;
9987 }
Chris Mason39279cc2007-06-12 06:35:45 -04009988
9989 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04009990 inode_inc_iversion(new_inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -07009991 new_inode->i_ctime = current_time(new_inode);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02009992 if (unlikely(btrfs_ino(BTRFS_I(new_inode)) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04009993 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
9994 root_objectid = BTRFS_I(new_inode)->location.objectid;
9995 ret = btrfs_unlink_subvol(trans, dest, new_dir,
9996 root_objectid,
9997 new_dentry->d_name.name,
9998 new_dentry->d_name.len);
9999 BUG_ON(new_inode->i_nlink == 0);
10000 } else {
Nikolay Borisov4ec59342017-01-18 00:31:44 +020010001 ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir),
10002 BTRFS_I(d_inode(new_dentry)),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040010003 new_dentry->d_name.name,
10004 new_dentry->d_name.len);
10005 }
Josef Bacik4ef31a42013-08-13 14:10:08 -040010006 if (!ret && new_inode->i_nlink == 0)
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010007 ret = btrfs_orphan_add(trans,
10008 BTRFS_I(d_inode(new_dentry)));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010009 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010010 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010011 goto out_fail;
10012 }
Chris Mason39279cc2007-06-12 06:35:45 -040010013 }
Josef Bacikaec74772008-07-24 12:12:38 -040010014
Nikolay Borisovdb0a6692017-02-20 13:51:08 +020010015 ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode),
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040010016 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -040010017 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010018 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010019 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010020 goto out_fail;
10021 }
Chris Mason39279cc2007-06-12 06:35:45 -040010022
Miao Xie67de1172013-12-26 13:07:06 +080010023 if (old_inode->i_nlink == 1)
10024 BTRFS_I(old_inode)->dir_index = index;
10025
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010026 if (log_pinned) {
Al Viro10d9f302011-07-16 23:09:10 -040010027 struct dentry *parent = new_dentry->d_parent;
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010028
David Sterbaf85b7372017-01-20 14:54:07 +010010029 btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir),
10030 parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040010031 btrfs_end_log_trans(root);
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010032 log_pinned = false;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -040010033 }
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010034
10035 if (flags & RENAME_WHITEOUT) {
10036 ret = btrfs_whiteout_for_rename(trans, root, old_dir,
10037 old_dentry);
10038
10039 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010040 btrfs_abort_transaction(trans, ret);
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010041 goto out_fail;
10042 }
Chris Mason12fcfd22009-03-24 10:24:20 -040010043 }
Chris Mason39279cc2007-06-12 06:35:45 -040010044out_fail:
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010045 /*
10046 * If we have pinned the log and an error happened, we unpin tasks
10047 * trying to sync the log and force them to fallback to a transaction
10048 * commit if the log currently contains any of the inodes involved in
10049 * this rename operation (to ensure we do not persist a log with an
10050 * inconsistent state for any of these inodes or leading to any
10051 * inconsistencies when replayed). If the transaction was aborted, the
10052 * abortion reason is propagated to userspace when attempting to commit
10053 * the transaction. If the log does not contain any of these inodes, we
10054 * allow the tasks to sync it.
10055 */
10056 if (ret && log_pinned) {
Nikolay Borisov0f8939b2017-01-18 00:31:30 +020010057 if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) ||
10058 btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) ||
10059 btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) ||
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010060 (new_inode &&
Nikolay Borisov0f8939b2017-01-18 00:31:30 +020010061 btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation)))
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010062 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana3dc9e8f2016-04-29 11:34:22 +010010063
10064 btrfs_end_log_trans(root);
10065 log_pinned = false;
10066 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010067 btrfs_end_transaction(trans);
Johann Lombardib44c59a2011-03-31 13:23:47 +000010068out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +080010069 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010070 up_read(&fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -040010071
Chris Mason39279cc2007-06-12 06:35:45 -040010072 return ret;
10073}
10074
Miklos Szeredi80ace852014-07-23 15:15:32 +020010075static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
10076 struct inode *new_dir, struct dentry *new_dentry,
10077 unsigned int flags)
10078{
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010079 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi80ace852014-07-23 15:15:32 +020010080 return -EINVAL;
10081
Dan Fuhrycdd1fed2016-03-17 15:23:38 +010010082 if (flags & RENAME_EXCHANGE)
10083 return btrfs_rename_exchange(old_dir, old_dentry, new_dir,
10084 new_dentry);
10085
10086 return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi80ace852014-07-23 15:15:32 +020010087}
10088
Miao Xie8ccf6f192012-10-25 09:28:04 +000010089static void btrfs_run_delalloc_work(struct btrfs_work *work)
10090{
10091 struct btrfs_delalloc_work *delalloc_work;
Josef Bacik9f23e282013-10-28 15:03:41 -040010092 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010093
10094 delalloc_work = container_of(work, struct btrfs_delalloc_work,
10095 work);
Josef Bacik9f23e282013-10-28 15:03:41 -040010096 inode = delalloc_work->inode;
David Sterba30424602015-11-27 19:27:11 +010010097 filemap_flush(inode->i_mapping);
10098 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
10099 &BTRFS_I(inode)->runtime_flags))
Josef Bacik9f23e282013-10-28 15:03:41 -040010100 filemap_flush(inode->i_mapping);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010101
10102 if (delalloc_work->delay_iput)
Josef Bacik9f23e282013-10-28 15:03:41 -040010103 btrfs_add_delayed_iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010104 else
Josef Bacik9f23e282013-10-28 15:03:41 -040010105 iput(inode);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010106 complete(&delalloc_work->completion);
10107}
10108
10109struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
David Sterba651d4942015-11-27 19:24:16 +010010110 int delay_iput)
Miao Xie8ccf6f192012-10-25 09:28:04 +000010111{
10112 struct btrfs_delalloc_work *work;
10113
David Sterba100d5702015-12-08 14:39:32 +010010114 work = kmalloc(sizeof(*work), GFP_NOFS);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010115 if (!work)
10116 return NULL;
10117
10118 init_completion(&work->completion);
10119 INIT_LIST_HEAD(&work->list);
10120 work->inode = inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010121 work->delay_iput = delay_iput;
Liu Bo9e0af232014-08-15 23:36:53 +080010122 WARN_ON_ONCE(!inode);
10123 btrfs_init_work(&work->work, btrfs_flush_delalloc_helper,
10124 btrfs_run_delalloc_work, NULL, NULL);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010125
10126 return work;
10127}
10128
10129void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
10130{
10131 wait_for_completion(&work->completion);
David Sterba100d5702015-12-08 14:39:32 +010010132 kfree(work);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010133}
10134
Chris Masond352ac62008-09-29 15:18:18 -040010135/*
10136 * some fairly slow code that needs optimization. This walks the list
10137 * of all the inodes with pending delalloc and forces them to disk.
10138 */
Miao Xie6c255e62014-03-06 13:55:01 +080010139static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
10140 int nr)
Chris Masonea8c2812008-08-04 23:17:27 -040010141{
Chris Masonea8c2812008-08-04 23:17:27 -040010142 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010143 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010144 struct btrfs_delalloc_work *work, *next;
10145 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +000010146 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +000010147 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -040010148
Miao Xie8ccf6f192012-10-25 09:28:04 +000010149 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010150 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +000010151
Miao Xie573bfb72014-03-06 13:55:03 +080010152 mutex_lock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010153 spin_lock(&root->delalloc_lock);
10154 list_splice_init(&root->delalloc_inodes, &splice);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010155 while (!list_empty(&splice)) {
10156 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -040010157 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010158
Miao Xieeb73c1b2013-05-15 07:48:22 +000010159 list_move_tail(&binode->delalloc_inodes,
10160 &root->delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010161 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +000010162 if (!inode) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010163 cond_resched_lock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010164 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +000010165 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010166 spin_unlock(&root->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010167
David Sterba651d4942015-11-27 19:24:16 +010010168 work = btrfs_alloc_delalloc_work(inode, delay_iput);
David Sterba5d99a9982014-09-29 19:20:37 +020010169 if (!work) {
Josef Bacikf4ab9ea2013-09-17 11:25:44 -040010170 if (delay_iput)
10171 btrfs_add_delayed_iput(inode);
10172 else
10173 iput(inode);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010174 ret = -ENOMEM;
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010175 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010176 }
Miao Xie1eafa6c2013-01-22 10:49:00 +000010177 list_add_tail(&work->list, &works);
Qu Wenruoa44903a2014-02-28 10:46:09 +080010178 btrfs_queue_work(root->fs_info->flush_workers,
10179 &work->work);
Miao Xie6c255e62014-03-06 13:55:01 +080010180 ret++;
10181 if (nr != -1 && ret >= nr)
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010182 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -040010183 cond_resched();
Miao Xieeb73c1b2013-05-15 07:48:22 +000010184 spin_lock(&root->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -040010185 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010186 spin_unlock(&root->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -040010187
Wang Shilonga1ecaab2014-04-02 19:53:32 +080010188out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010189 list_for_each_entry_safe(work, next, &works, list) {
10190 list_del_init(&work->list);
10191 btrfs_wait_and_free_delalloc_work(work);
10192 }
10193
Miao Xieeb73c1b2013-05-15 07:48:22 +000010194 if (!list_empty_careful(&splice)) {
10195 spin_lock(&root->delalloc_lock);
10196 list_splice_tail(&splice, &root->delalloc_inodes);
10197 spin_unlock(&root->delalloc_lock);
10198 }
Miao Xie573bfb72014-03-06 13:55:03 +080010199 mutex_unlock(&root->delalloc_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010200 return ret;
10201}
10202
10203int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
10204{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010205 struct btrfs_fs_info *fs_info = root->fs_info;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010206 int ret;
10207
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010208 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010209 return -EROFS;
10210
Miao Xie6c255e62014-03-06 13:55:01 +080010211 ret = __start_delalloc_inodes(root, delay_iput, -1);
10212 if (ret > 0)
10213 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010214 /*
10215 * the filemap_flush will queue IO into the worker threads, but
Chris Mason8c8bee12008-09-29 11:19:10 -040010216 * we have to make sure the IO is actually started and that
10217 * ordered extents get created before we return
10218 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010219 atomic_inc(&fs_info->async_submit_draining);
10220 while (atomic_read(&fs_info->nr_async_submits) ||
10221 atomic_read(&fs_info->async_delalloc_pages)) {
10222 wait_event(fs_info->async_submit_wait,
10223 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10224 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -040010225 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010226 atomic_dec(&fs_info->async_submit_draining);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010227 return ret;
10228}
10229
Miao Xie6c255e62014-03-06 13:55:01 +080010230int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
10231 int nr)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010232{
10233 struct btrfs_root *root;
10234 struct list_head splice;
10235 int ret;
10236
Wang Shilong2c21b4d2014-01-14 19:42:20 +080010237 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
Miao Xieeb73c1b2013-05-15 07:48:22 +000010238 return -EROFS;
10239
10240 INIT_LIST_HEAD(&splice);
10241
Miao Xie573bfb72014-03-06 13:55:03 +080010242 mutex_lock(&fs_info->delalloc_root_mutex);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010243 spin_lock(&fs_info->delalloc_root_lock);
10244 list_splice_init(&fs_info->delalloc_roots, &splice);
Miao Xie6c255e62014-03-06 13:55:01 +080010245 while (!list_empty(&splice) && nr) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010246 root = list_first_entry(&splice, struct btrfs_root,
10247 delalloc_root);
10248 root = btrfs_grab_fs_root(root);
10249 BUG_ON(!root);
10250 list_move_tail(&root->delalloc_root,
10251 &fs_info->delalloc_roots);
10252 spin_unlock(&fs_info->delalloc_root_lock);
10253
Miao Xie6c255e62014-03-06 13:55:01 +080010254 ret = __start_delalloc_inodes(root, delay_iput, nr);
Miao Xieeb73c1b2013-05-15 07:48:22 +000010255 btrfs_put_fs_root(root);
Miao Xie6c255e62014-03-06 13:55:01 +080010256 if (ret < 0)
Miao Xieeb73c1b2013-05-15 07:48:22 +000010257 goto out;
10258
Miao Xie6c255e62014-03-06 13:55:01 +080010259 if (nr != -1) {
10260 nr -= ret;
10261 WARN_ON(nr < 0);
10262 }
Miao Xieeb73c1b2013-05-15 07:48:22 +000010263 spin_lock(&fs_info->delalloc_root_lock);
10264 }
10265 spin_unlock(&fs_info->delalloc_root_lock);
10266
Miao Xie6c255e62014-03-06 13:55:01 +080010267 ret = 0;
Miao Xieeb73c1b2013-05-15 07:48:22 +000010268 atomic_inc(&fs_info->async_submit_draining);
10269 while (atomic_read(&fs_info->nr_async_submits) ||
10270 atomic_read(&fs_info->async_delalloc_pages)) {
10271 wait_event(fs_info->async_submit_wait,
10272 (atomic_read(&fs_info->nr_async_submits) == 0 &&
10273 atomic_read(&fs_info->async_delalloc_pages) == 0));
10274 }
10275 atomic_dec(&fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010276out:
Miao Xie1eafa6c2013-01-22 10:49:00 +000010277 if (!list_empty_careful(&splice)) {
Miao Xieeb73c1b2013-05-15 07:48:22 +000010278 spin_lock(&fs_info->delalloc_root_lock);
10279 list_splice_tail(&splice, &fs_info->delalloc_roots);
10280 spin_unlock(&fs_info->delalloc_root_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +000010281 }
Miao Xie573bfb72014-03-06 13:55:03 +080010282 mutex_unlock(&fs_info->delalloc_root_mutex);
Miao Xie8ccf6f192012-10-25 09:28:04 +000010283 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -040010284}
10285
Chris Mason39279cc2007-06-12 06:35:45 -040010286static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
10287 const char *symname)
10288{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010289 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -040010290 struct btrfs_trans_handle *trans;
10291 struct btrfs_root *root = BTRFS_I(dir)->root;
10292 struct btrfs_path *path;
10293 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -050010294 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -040010295 int err;
10296 int drop_inode = 0;
10297 u64 objectid;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010298 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040010299 int name_len;
10300 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -040010301 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -040010302 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -040010303 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -040010304
Filipe David Borba Mananaf06becc2013-09-16 09:53:28 +010010305 name_len = strlen(symname);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010306 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info))
Chris Mason39279cc2007-06-12 06:35:45 -040010307 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -050010308
Josef Bacik9ed74f22009-09-11 16:12:44 -040010309 /*
10310 * 2 items for inode item and ref
10311 * 2 items for dir items
Filipe Manana9269d122015-12-31 18:16:29 +000010312 * 1 item for updating parent inode item
10313 * 1 item for the inline extent item
Josef Bacik9ed74f22009-09-11 16:12:44 -040010314 * 1 item for xattr if selinux is on
10315 */
Filipe Manana9269d122015-12-31 18:16:29 +000010316 trans = btrfs_start_transaction(root, 7);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010317 if (IS_ERR(trans))
10318 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -050010319
Li Zefan581bb052011-04-20 10:06:11 +080010320 err = btrfs_find_free_ino(root, &objectid);
10321 if (err)
10322 goto out_unlock;
10323
Josef Bacikaec74772008-07-24 12:12:38 -040010324 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
David Sterbaf85b7372017-01-20 14:54:07 +010010325 dentry->d_name.len, btrfs_ino(BTRFS_I(dir)),
10326 objectid, S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010327 if (IS_ERR(inode)) {
10328 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010329 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -040010330 }
Chris Mason39279cc2007-06-12 06:35:45 -040010331
Casey Schauflerad19db72011-12-15 10:09:07 -050010332 /*
10333 * If the active LSM wants to access the inode during
10334 * d_instantiate it needs these. Smack checks to see
10335 * if the filesystem supports xattrs by looking at the
10336 * ops vector.
10337 */
10338 inode->i_fop = &btrfs_file_operations;
10339 inode->i_op = &btrfs_file_inode_operations;
Chris Masonb0d5d102014-09-08 13:08:51 -070010340 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masonb0d5d102014-09-08 13:08:51 -070010341 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10342
10343 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
10344 if (err)
10345 goto out_unlock_inode;
Casey Schauflerad19db72011-12-15 10:09:07 -050010346
Chris Mason39279cc2007-06-12 06:35:45 -040010347 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010348 if (!path) {
10349 err = -ENOMEM;
Chris Masonb0d5d102014-09-08 13:08:51 -070010350 goto out_unlock_inode;
Mark Fashehd8926bb2011-07-13 10:38:47 -070010351 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +020010352 key.objectid = btrfs_ino(BTRFS_I(inode));
Chris Mason39279cc2007-06-12 06:35:45 -040010353 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010354 key.type = BTRFS_EXTENT_DATA_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -040010355 datasize = btrfs_file_extent_calc_inline_size(name_len);
10356 err = btrfs_insert_empty_item(trans, root, path, &key,
10357 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -040010358 if (err) {
Julia Lawallb0839162011-05-14 07:10:51 +000010359 btrfs_free_path(path);
Chris Masonb0d5d102014-09-08 13:08:51 -070010360 goto out_unlock_inode;
Chris Mason54aa1f42007-06-22 14:16:25 -040010361 }
Chris Mason5f39d392007-10-15 16:14:19 -040010362 leaf = path->nodes[0];
10363 ei = btrfs_item_ptr(leaf, path->slots[0],
10364 struct btrfs_file_extent_item);
10365 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
10366 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -040010367 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -040010368 btrfs_set_file_extent_encryption(leaf, ei, 0);
10369 btrfs_set_file_extent_compression(leaf, ei, 0);
10370 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
10371 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
10372
Chris Mason39279cc2007-06-12 06:35:45 -040010373 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -040010374 write_extent_buffer(leaf, symname, ptr, name_len);
10375 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -040010376 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -040010377
Chris Mason39279cc2007-06-12 06:35:45 -040010378 inode->i_op = &btrfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050010379 inode_nohighmem(inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010380 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Yan Zhengd899e052008-10-30 14:25:28 -040010381 inode_set_bytes(inode, name_len);
Nikolay Borisov6ef06d22017-02-20 13:50:34 +020010382 btrfs_i_size_write(BTRFS_I(inode), name_len);
Chris Mason54aa1f42007-06-22 14:16:25 -040010383 err = btrfs_update_inode(trans, root, inode);
Filipe Mananad50866d2015-12-31 18:08:24 +000010384 /*
10385 * Last step, add directory indexes for our symlink inode. This is the
10386 * last step to avoid extra cleanup of these indexes if an error happens
10387 * elsewhere above.
10388 */
10389 if (!err)
Nikolay Borisovcef415a2017-02-20 13:51:09 +020010390 err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry,
10391 BTRFS_I(inode), 0, index);
Chris Masonb0d5d102014-09-08 13:08:51 -070010392 if (err) {
Chris Mason54aa1f42007-06-22 14:16:25 -040010393 drop_inode = 1;
Chris Masonb0d5d102014-09-08 13:08:51 -070010394 goto out_unlock_inode;
10395 }
10396
10397 unlock_new_inode(inode);
10398 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -040010399
10400out_unlock:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010401 btrfs_end_transaction(trans);
Chris Mason39279cc2007-06-12 06:35:45 -040010402 if (drop_inode) {
10403 inode_dec_link_count(inode);
10404 iput(inode);
10405 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010406 btrfs_btree_balance_dirty(fs_info);
Chris Mason39279cc2007-06-12 06:35:45 -040010407 return err;
Chris Masonb0d5d102014-09-08 13:08:51 -070010408
10409out_unlock_inode:
10410 drop_inode = 1;
10411 unlock_new_inode(inode);
10412 goto out_unlock;
Chris Mason39279cc2007-06-12 06:35:45 -040010413}
Chris Mason16432982008-04-10 10:23:21 -040010414
Josef Bacik0af3d002010-06-21 14:48:16 -040010415static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
10416 u64 start, u64 num_bytes, u64 min_size,
10417 loff_t actual_len, u64 *alloc_hint,
10418 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -040010419{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010420 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010421 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
10422 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -040010423 struct btrfs_root *root = BTRFS_I(inode)->root;
10424 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -040010425 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +000010426 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -050010427 u64 cur_bytes;
Josef Bacik0b670dc2015-09-23 17:11:16 -040010428 u64 last_alloc = (u64)-1;
Yan Zhengd899e052008-10-30 14:25:28 -040010429 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -040010430 bool own_trans = true;
Wang Xiaoguang18513092016-07-25 15:51:40 +080010431 u64 end = start + num_bytes - 1;
Yan Zhengd899e052008-10-30 14:25:28 -040010432
Josef Bacik0af3d002010-06-21 14:48:16 -040010433 if (trans)
10434 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -040010435 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010436 if (own_trans) {
10437 trans = btrfs_start_transaction(root, 3);
10438 if (IS_ERR(trans)) {
10439 ret = PTR_ERR(trans);
10440 break;
10441 }
Yan Zhengd899e052008-10-30 14:25:28 -040010442 }
Yan, Zheng5a303d52009-11-12 09:34:52 +000010443
Byongho Leeee221842015-12-15 01:42:10 +090010444 cur_bytes = min_t(u64, num_bytes, SZ_256M);
Chris Mason154ea282013-03-05 11:11:26 -050010445 cur_bytes = max(cur_bytes, min_size);
Josef Bacik0b670dc2015-09-23 17:11:16 -040010446 /*
10447 * If we are severely fragmented we could end up with really
10448 * small allocations, so if the allocator is returning small
10449 * chunks lets make its job easier by only searching for those
10450 * sized chunks.
10451 */
10452 cur_bytes = min(cur_bytes, last_alloc);
Wang Xiaoguang18513092016-07-25 15:51:40 +080010453 ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes,
10454 min_size, 0, *alloc_hint, &ins, 1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010455 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -040010456 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010457 btrfs_end_transaction(trans);
Yan, Zhenga22285a2010-05-16 10:48:46 -040010458 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010459 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010460 btrfs_dec_block_group_reservations(fs_info, ins.objectid);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010461
Josef Bacik0b670dc2015-09-23 17:11:16 -040010462 last_alloc = ins.offset;
Yan Zhengd899e052008-10-30 14:25:28 -040010463 ret = insert_reserved_file_extent(trans, inode,
10464 cur_offset, ins.objectid,
10465 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +000010466 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -040010467 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010468 if (ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010469 btrfs_free_reserved_extent(fs_info, ins.objectid,
Miao Xiee570fd22014-06-19 10:42:50 +080010470 ins.offset, 0);
Jeff Mahoney66642832016-06-10 18:19:25 -040010471 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010472 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010473 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010474 break;
10475 }
Dongsheng Yang31193212014-12-12 16:44:35 +080010476
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010477 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Chris Masona1ed8352009-09-11 12:27:37 -040010478 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010479
Josef Bacik5dc562c2012-08-17 13:14:17 -040010480 em = alloc_extent_map();
10481 if (!em) {
10482 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
10483 &BTRFS_I(inode)->runtime_flags);
10484 goto next;
10485 }
10486
10487 em->start = cur_offset;
10488 em->orig_start = cur_offset;
10489 em->len = ins.offset;
10490 em->block_start = ins.objectid;
10491 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -050010492 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -040010493 em->ram_bytes = ins.offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010494 em->bdev = fs_info->fs_devices->latest_bdev;
Josef Bacik5dc562c2012-08-17 13:14:17 -040010495 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
10496 em->generation = trans->transid;
10497
10498 while (1) {
10499 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -040010500 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040010501 write_unlock(&em_tree->lock);
10502 if (ret != -EEXIST)
10503 break;
Nikolay Borisovdcdbc052017-02-20 13:50:45 +020010504 btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset,
Josef Bacik5dc562c2012-08-17 13:14:17 -040010505 cur_offset + ins.offset - 1,
10506 0);
10507 }
10508 free_extent_map(em);
10509next:
Yan Zhengd899e052008-10-30 14:25:28 -040010510 num_bytes -= ins.offset;
10511 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -040010512 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +000010513
Josef Bacik0c4d2d92012-04-05 15:03:02 -040010514 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -070010515 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +020010516 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -040010517 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -040010518 (actual_len > inode->i_size) &&
10519 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010520 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +000010521 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +000010522 else
Josef Bacik55a61d12010-11-22 18:50:32 +000010523 i_size = cur_offset;
10524 i_size_write(inode, i_size);
10525 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010526 }
10527
Yan Zhengd899e052008-10-30 14:25:28 -040010528 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010529
10530 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -040010531 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010532 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010533 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010534 break;
10535 }
Yan Zhengd899e052008-10-30 14:25:28 -040010536
Josef Bacik0af3d002010-06-21 14:48:16 -040010537 if (own_trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010538 btrfs_end_transaction(trans);
Yan, Zheng5a303d52009-11-12 09:34:52 +000010539 }
Wang Xiaoguang18513092016-07-25 15:51:40 +080010540 if (cur_offset < end)
10541 btrfs_free_reserved_data_space(inode, cur_offset,
10542 end - cur_offset + 1);
Yan Zhengd899e052008-10-30 14:25:28 -040010543 return ret;
10544}
10545
Josef Bacik0af3d002010-06-21 14:48:16 -040010546int btrfs_prealloc_file_range(struct inode *inode, int mode,
10547 u64 start, u64 num_bytes, u64 min_size,
10548 loff_t actual_len, u64 *alloc_hint)
10549{
10550 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10551 min_size, actual_len, alloc_hint,
10552 NULL);
10553}
10554
10555int btrfs_prealloc_file_range_trans(struct inode *inode,
10556 struct btrfs_trans_handle *trans, int mode,
10557 u64 start, u64 num_bytes, u64 min_size,
10558 loff_t actual_len, u64 *alloc_hint)
10559{
10560 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
10561 min_size, actual_len, alloc_hint, trans);
10562}
10563
Chris Masone6dcd2d2008-07-17 12:53:50 -040010564static int btrfs_set_page_dirty(struct page *page)
10565{
Chris Masone6dcd2d2008-07-17 12:53:50 -040010566 return __set_page_dirty_nobuffers(page);
10567}
10568
Al Viro10556cb2011-06-20 19:28:19 -040010569static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -050010570{
Li Zefanb83cc962010-12-20 16:04:08 +080010571 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010572 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +080010573
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +000010574 if (mask & MAY_WRITE &&
10575 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
10576 if (btrfs_root_readonly(root))
10577 return -EROFS;
10578 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
10579 return -EACCES;
10580 }
Al Viro2830ba72011-06-20 19:16:29 -040010581 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -050010582}
Chris Mason39279cc2007-06-12 06:35:45 -040010583
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010584static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
10585{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010586 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010587 struct btrfs_trans_handle *trans;
10588 struct btrfs_root *root = BTRFS_I(dir)->root;
10589 struct inode *inode = NULL;
10590 u64 objectid;
10591 u64 index;
10592 int ret = 0;
10593
10594 /*
10595 * 5 units required for adding orphan entry
10596 */
10597 trans = btrfs_start_transaction(root, 5);
10598 if (IS_ERR(trans))
10599 return PTR_ERR(trans);
10600
10601 ret = btrfs_find_free_ino(root, &objectid);
10602 if (ret)
10603 goto out;
10604
10605 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
David Sterbaf85b7372017-01-20 14:54:07 +010010606 btrfs_ino(BTRFS_I(dir)), objectid, mode, &index);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010607 if (IS_ERR(inode)) {
10608 ret = PTR_ERR(inode);
10609 inode = NULL;
10610 goto out;
10611 }
10612
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010613 inode->i_fop = &btrfs_file_operations;
10614 inode->i_op = &btrfs_file_inode_operations;
10615
10616 inode->i_mapping->a_ops = &btrfs_aops;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010617 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
10618
Chris Masonb0d5d102014-09-08 13:08:51 -070010619 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
10620 if (ret)
10621 goto out_inode;
10622
10623 ret = btrfs_update_inode(trans, root, inode);
10624 if (ret)
10625 goto out_inode;
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010626 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010627 if (ret)
Chris Masonb0d5d102014-09-08 13:08:51 -070010628 goto out_inode;
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010629
Filipe Manana5762b5c2014-08-01 00:10:32 +010010630 /*
10631 * We set number of links to 0 in btrfs_new_inode(), and here we set
10632 * it to 1 because d_tmpfile() will issue a warning if the count is 0,
10633 * through:
10634 *
10635 * d_tmpfile() -> inode_dec_link_count() -> drop_nlink()
10636 */
10637 set_nlink(inode, 1);
Chris Masonb0d5d102014-09-08 13:08:51 -070010638 unlock_new_inode(inode);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010639 d_tmpfile(dentry, inode);
10640 mark_inode_dirty(inode);
10641
10642out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010643 btrfs_end_transaction(trans);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010644 if (ret)
10645 iput(inode);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010646 btrfs_balance_delayed_items(fs_info);
10647 btrfs_btree_balance_dirty(fs_info);
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010648 return ret;
Chris Masonb0d5d102014-09-08 13:08:51 -070010649
10650out_inode:
10651 unlock_new_inode(inode);
10652 goto out;
10653
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010654}
10655
David Sterba20a7db82017-02-17 16:24:29 +010010656__attribute__((const))
Liu Bo9d0d1c82017-03-24 15:04:50 -070010657static int btrfs_readpage_io_failed_hook(struct page *page, int failed_mirror)
David Sterba20a7db82017-02-17 16:24:29 +010010658{
Liu Bo9d0d1c82017-03-24 15:04:50 -070010659 return -EAGAIN;
David Sterba20a7db82017-02-17 16:24:29 +010010660}
10661
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010662static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -050010663 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -040010664 .lookup = btrfs_lookup,
10665 .create = btrfs_create,
10666 .unlink = btrfs_unlink,
10667 .link = btrfs_link,
10668 .mkdir = btrfs_mkdir,
10669 .rmdir = btrfs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020010670 .rename = btrfs_rename2,
Chris Mason39279cc2007-06-12 06:35:45 -040010671 .symlink = btrfs_symlink,
10672 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -040010673 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -050010674 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010675 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010676 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010677 .set_acl = btrfs_set_acl,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010678 .update_time = btrfs_update_time,
Filipe Mananaef3b9af2014-04-27 20:40:45 +010010679 .tmpfile = btrfs_tmpfile,
Chris Mason39279cc2007-06-12 06:35:45 -040010680};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010681static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010682 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -050010683 .permission = btrfs_permission,
Guangyu Sun93fd63c2013-09-16 10:42:03 -070010684 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010685};
Yan, Zheng76dda932009-09-21 16:00:26 -040010686
Alexey Dobriyan828c0952009-10-01 15:43:56 -070010687static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010688 .llseek = generic_file_llseek,
10689 .read = generic_read_dir,
Omar Sandoval02dbfc92016-05-20 13:50:33 -070010690 .iterate_shared = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -040010691 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010692#ifdef CONFIG_COMPAT
Luke Dashjr4c63c242015-10-29 08:22:21 +000010693 .compat_ioctl = btrfs_compat_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -040010694#endif
Sage Weil6bf13c02008-06-10 10:07:39 -040010695 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -040010696 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -040010697};
10698
David Sterba20e55062015-11-19 11:42:28 +010010699static const struct extent_io_ops btrfs_extent_io_ops = {
David Sterba4d53ddd2017-02-17 15:27:44 +010010700 /* mandatory callbacks */
Chris Mason065631f2008-02-20 12:07:25 -050010701 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010702 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
David Sterba4d53ddd2017-02-17 15:27:44 +010010703 .merge_bio_hook = btrfs_merge_bio_hook,
Liu Bo9d0d1c82017-03-24 15:04:50 -070010704 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
David Sterba4d53ddd2017-02-17 15:27:44 +010010705
10706 /* optional callbacks */
10707 .fill_delalloc = run_delalloc_range,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010708 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -040010709 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -050010710 .set_bit_hook = btrfs_set_bit_hook,
10711 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -040010712 .merge_extent_hook = btrfs_merge_extent_hook,
10713 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -040010714};
10715
Chris Mason35054392009-01-21 13:11:13 -050010716/*
10717 * btrfs doesn't support the bmap operation because swapfiles
10718 * use bmap to make a mapping of extents in the file. They assume
10719 * these extents won't change over the life of the file and they
10720 * use the bmap result to do IO directly to the drive.
10721 *
10722 * the btrfs bmap call would return logical addresses that aren't
10723 * suitable for IO and they also will change frequently as COW
10724 * operations happen. So, swapfile + btrfs == corruption.
10725 *
10726 * For now we're avoiding this by dropping bmap.
10727 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010728static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010729 .readpage = btrfs_readpage,
10730 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -040010731 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -050010732 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -040010733 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -040010734 .invalidatepage = btrfs_invalidatepage,
10735 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -040010736 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +020010737 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -040010738};
10739
Alexey Dobriyan7f094102009-09-21 17:01:10 -070010740static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -040010741 .readpage = btrfs_readpage,
10742 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -040010743 .invalidatepage = btrfs_invalidatepage,
10744 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -040010745};
10746
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010747static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -040010748 .getattr = btrfs_getattr,
10749 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -050010750 .listxattr = btrfs_listxattr,
Yanfdebe2b2008-01-14 13:26:08 -050010751 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -050010752 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010753 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010754 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010755 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010756};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010757static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -040010758 .getattr = btrfs_getattr,
10759 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010760 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -040010761 .listxattr = btrfs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +020010762 .get_acl = btrfs_get_acl,
Christoph Hellwig996a7102013-12-20 05:16:43 -080010763 .set_acl = btrfs_set_acl,
Josef Bacike41f9412012-03-26 09:46:47 -040010764 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -040010765};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070010766static const struct inode_operations btrfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -050010767 .get_link = page_get_link,
Li Zefanf2095612010-11-19 02:05:24 +000010768 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -050010769 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -050010770 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -050010771 .listxattr = btrfs_listxattr,
Josef Bacike41f9412012-03-26 09:46:47 -040010772 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -040010773};
Yan, Zheng76dda932009-09-21 16:00:26 -040010774
Alexey Dobriyan82d339d2009-10-09 09:54:36 -040010775const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -040010776 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -040010777 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -040010778};